2015-12-21 22:18:33 +01:00
|
|
|
/*
|
|
|
|
* This file ("HudEvent.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
|
|
|
* © 2015 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package ellpeck.actuallyadditions.event;
|
|
|
|
|
|
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
|
|
|
import ellpeck.actuallyadditions.blocks.IHudDisplay;
|
|
|
|
import ellpeck.actuallyadditions.tile.IEnergyDisplay;
|
|
|
|
import ellpeck.actuallyadditions.tile.IRedstoneToggle;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockRedstoneTorch;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.gui.FontRenderer;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-12-22 00:30:08 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-12-21 22:18:33 +01:00
|
|
|
import net.minecraft.profiler.Profiler;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.EnumChatFormatting;
|
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
|
|
import net.minecraftforge.client.event.RenderGameOverlayEvent;
|
|
|
|
|
|
|
|
public class HudEvent{
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onGameOverlay(RenderGameOverlayEvent.Post event){
|
2015-12-22 00:30:08 +01:00
|
|
|
if(event.type == RenderGameOverlayEvent.ElementType.ALL && Minecraft.getMinecraft().currentScreen == null){
|
2015-12-21 22:18:33 +01:00
|
|
|
Minecraft minecraft = Minecraft.getMinecraft();
|
|
|
|
Profiler profiler = minecraft.mcProfiler;
|
|
|
|
EntityPlayer player = minecraft.thePlayer;
|
|
|
|
MovingObjectPosition posHit = minecraft.objectMouseOver;
|
|
|
|
FontRenderer font = minecraft.fontRenderer;
|
2015-12-22 00:30:08 +01:00
|
|
|
ItemStack stack = player.getCurrentEquippedItem();
|
2015-12-21 22:18:33 +01:00
|
|
|
|
|
|
|
profiler.startSection(ModUtil.MOD_ID+"Hud");
|
|
|
|
|
2015-12-22 16:08:53 +01:00
|
|
|
if(stack != null){
|
|
|
|
if(stack.getItem() instanceof IHudDisplay){
|
|
|
|
profiler.startSection("ItemHudDisplay");
|
|
|
|
((IHudDisplay)stack.getItem()).displayHud(minecraft, player, stack, posHit, profiler, event.resolution);
|
|
|
|
profiler.endSection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-21 22:18:33 +01:00
|
|
|
if(posHit != null){
|
|
|
|
Block blockHit = minecraft.theWorld.getBlock(posHit.blockX, posHit.blockY, posHit.blockZ);
|
|
|
|
TileEntity tileHit = minecraft.theWorld.getTileEntity(posHit.blockX, posHit.blockY, posHit.blockZ);
|
|
|
|
|
|
|
|
if(blockHit instanceof IHudDisplay){
|
|
|
|
profiler.startSection("BlockHudDisplay");
|
2015-12-22 00:30:08 +01:00
|
|
|
((IHudDisplay)blockHit).displayHud(minecraft, player, stack, posHit, profiler, event.resolution);
|
2015-12-21 22:18:33 +01:00
|
|
|
profiler.endSection();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tileHit instanceof IRedstoneToggle){
|
2015-12-22 00:30:08 +01:00
|
|
|
profiler.startSection("RedstoneToggleHudDisplay");
|
2015-12-21 22:18:33 +01:00
|
|
|
|
2015-12-22 00:30:08 +01:00
|
|
|
String strg = "Redstone Mode: "+EnumChatFormatting.DARK_RED+(((IRedstoneToggle)tileHit).isPulseMode() ? "Pulse" : "Deactivation")+EnumChatFormatting.RESET;
|
|
|
|
font.drawStringWithShadow(strg, event.resolution.getScaledWidth()/2+5, event.resolution.getScaledHeight()/2+5, StringUtil.DECIMAL_COLOR_WHITE);
|
2015-12-21 22:18:33 +01:00
|
|
|
|
2015-12-22 00:30:08 +01:00
|
|
|
if(stack != null && Block.getBlockFromItem(stack.getItem()) instanceof BlockRedstoneTorch){
|
|
|
|
String expl = EnumChatFormatting.GREEN+"Right-Click to toggle!";
|
|
|
|
font.drawStringWithShadow(expl, event.resolution.getScaledWidth()/2+5, event.resolution.getScaledHeight()/2+15, StringUtil.DECIMAL_COLOR_WHITE);
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
2015-12-22 00:30:08 +01:00
|
|
|
|
|
|
|
profiler.endSection();
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(tileHit instanceof IEnergyDisplay){
|
|
|
|
profiler.startSection("EnergyDisplay");
|
|
|
|
String strg = ((IEnergyDisplay)tileHit).getEnergy()+"/"+((IEnergyDisplay)tileHit).getMaxEnergy()+" RF";
|
|
|
|
font.drawStringWithShadow(EnumChatFormatting.GOLD+strg, event.resolution.getScaledWidth()/2+5, event.resolution.getScaledHeight()/2-10, StringUtil.DECIMAL_COLOR_WHITE);
|
|
|
|
profiler.endSection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
profiler.endSection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|