mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
made aura bar not display when the f3 screen is open so that it doesn't overlap
This commit is contained in:
parent
713d8c45f0
commit
3ea561ec3e
1 changed files with 23 additions and 18 deletions
|
@ -32,6 +32,7 @@ import net.minecraftforge.fml.relauncher.Side;
|
||||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||||
import net.minecraftforge.items.IItemHandler;
|
import net.minecraftforge.items.IItemHandler;
|
||||||
import org.apache.commons.lang3.mutable.MutableInt;
|
import org.apache.commons.lang3.mutable.MutableInt;
|
||||||
|
import vazkii.patchouli.api.PatchouliAPI;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -153,6 +154,7 @@ public class ClientEvents {
|
||||||
GlStateManager.pushMatrix();
|
GlStateManager.pushMatrix();
|
||||||
mc.getTextureManager().bindTexture(OVERLAYS);
|
mc.getTextureManager().bindTexture(OVERLAYS);
|
||||||
|
|
||||||
|
if (!mc.gameSettings.showDebugInfo) {
|
||||||
GlStateManager.color(0.8F, 0.25F, 0.25F);
|
GlStateManager.color(0.8F, 0.25F, 0.25F);
|
||||||
float totalPercentage = AuraChunk.getAuraInArea(mc.world, mc.player.getPosition(), 15) / (AuraChunk.DEFAULT_AURA * 2F);
|
float totalPercentage = AuraChunk.getAuraInArea(mc.world, mc.player.getPosition(), 15) / (AuraChunk.DEFAULT_AURA * 2F);
|
||||||
int tHeight = MathHelper.ceil(MathHelper.clamp(totalPercentage, 0F, 1F) * 50);
|
int tHeight = MathHelper.ceil(MathHelper.clamp(totalPercentage, 0F, 1F) * 50);
|
||||||
|
@ -161,6 +163,18 @@ public class ClientEvents {
|
||||||
if (tHeight > 0)
|
if (tHeight > 0)
|
||||||
Gui.drawModalRectWithCustomSizedTexture(3, 10 + 50 - tHeight, 0, 12 + 50 - tHeight, 6, tHeight, 256, 256);
|
Gui.drawModalRectWithCustomSizedTexture(3, 10 + 50 - tHeight, 0, 12 + 50 - tHeight, 6, tHeight, 256, 256);
|
||||||
|
|
||||||
|
if (totalPercentage > 1F)
|
||||||
|
mc.fontRenderer.drawString("+", 10F, 9.5F, 0xBB3333, true);
|
||||||
|
if (totalPercentage < 0F)
|
||||||
|
mc.fontRenderer.drawString("-", 10F, 53.5F, 0xBB3333, true);
|
||||||
|
|
||||||
|
GlStateManager.pushMatrix();
|
||||||
|
float scale = 0.75F;
|
||||||
|
GlStateManager.scale(scale, scale, scale);
|
||||||
|
mc.fontRenderer.drawString(I18n.format("info." + NaturesAura.MOD_ID + ".aura_in_area"), 3 / scale, 3 / scale, 0xBB3333, true);
|
||||||
|
GlStateManager.popMatrix();
|
||||||
|
}
|
||||||
|
|
||||||
if (mc.objectMouseOver != null) {
|
if (mc.objectMouseOver != null) {
|
||||||
BlockPos pos = mc.objectMouseOver.getBlockPos();
|
BlockPos pos = mc.objectMouseOver.getBlockPos();
|
||||||
if (pos != null) {
|
if (pos != null) {
|
||||||
|
@ -170,28 +184,19 @@ public class ClientEvents {
|
||||||
|
|
||||||
IBlockState state = mc.world.getBlockState(pos);
|
IBlockState state = mc.world.getBlockState(pos);
|
||||||
ItemStack blockStack = state.getBlock().getPickBlock(state, mc.objectMouseOver, mc.world, pos, mc.player);
|
ItemStack blockStack = state.getBlock().getPickBlock(state, mc.objectMouseOver, mc.world, pos, mc.player);
|
||||||
this.drawContainerInfo(container, mc, res, 25, blockStack.getDisplayName());
|
this.drawContainerInfo(container, mc, res, 35, blockStack.getDisplayName());
|
||||||
|
|
||||||
if (tile instanceof TileEntityNatureAltar) {
|
if (tile instanceof TileEntityNatureAltar) {
|
||||||
ItemStack tileStack = ((TileEntityNatureAltar) tile).getItemHandler(null).getStackInSlot(0);
|
ItemStack tileStack = ((TileEntityNatureAltar) tile).getItemHandler(null).getStackInSlot(0);
|
||||||
if (!tileStack.isEmpty() && tileStack.hasCapability(Capabilities.auraContainer, null)) {
|
if (!tileStack.isEmpty() && tileStack.hasCapability(Capabilities.auraContainer, null)) {
|
||||||
IAuraContainer stackContainer = tileStack.getCapability(Capabilities.auraContainer, null);
|
IAuraContainer stackContainer = tileStack.getCapability(Capabilities.auraContainer, null);
|
||||||
this.drawContainerInfo(stackContainer, mc, res, 45, tileStack.getDisplayName());
|
this.drawContainerInfo(stackContainer, mc, res, 55, tileStack.getDisplayName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (totalPercentage > 1F)
|
|
||||||
mc.fontRenderer.drawString("+", 10F, 9.5F, 0xBB3333, true);
|
|
||||||
if (totalPercentage < 0F)
|
|
||||||
mc.fontRenderer.drawString("-", 10F, 53.5F, 0xBB3333, true);
|
|
||||||
|
|
||||||
float scale = 0.75F;
|
|
||||||
GlStateManager.scale(scale, scale, scale);
|
|
||||||
mc.fontRenderer.drawString(I18n.format("info." + NaturesAura.MOD_ID + ".aura_in_area"), 3 / scale, 3 / scale, 0xBB3333, true);
|
|
||||||
|
|
||||||
GlStateManager.color(1F, 1F, 1F);
|
GlStateManager.color(1F, 1F, 1F);
|
||||||
GlStateManager.popMatrix();
|
GlStateManager.popMatrix();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue