2013-05-14 17:34:26 +02:00
|
|
|
package mekanism.client;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import mekanism.api.Object3D;
|
2013-05-28 06:29:29 +02:00
|
|
|
import mekanism.common.Mekanism;
|
2013-05-14 17:34:26 +02:00
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.gui.FontRenderer;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.util.MathHelper;
|
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import cpw.mods.fml.client.FMLClientHandler;
|
|
|
|
import cpw.mods.fml.common.ITickHandler;
|
|
|
|
import cpw.mods.fml.common.TickType;
|
2013-05-29 17:35:30 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2013-05-14 17:34:26 +02:00
|
|
|
|
2013-05-29 17:35:30 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-05-14 17:34:26 +02:00
|
|
|
public class RenderTickHandler implements ITickHandler
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void tickStart(EnumSet<TickType> type, Object... tickData)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tickEnd(EnumSet<TickType> type, Object... tickData)
|
|
|
|
{
|
2013-05-23 19:30:12 +02:00
|
|
|
float partialTick = (Float)tickData[0];
|
2013-05-14 17:34:26 +02:00
|
|
|
Minecraft mc = FMLClientHandler.instance().getClient();
|
|
|
|
|
2013-05-23 19:30:12 +02:00
|
|
|
if(mc.thePlayer != null && mc.theWorld != null)
|
2013-05-14 17:34:26 +02:00
|
|
|
{
|
|
|
|
EntityPlayer player = mc.thePlayer;
|
2013-05-23 19:30:12 +02:00
|
|
|
World world = mc.thePlayer.worldObj;
|
2013-05-14 17:34:26 +02:00
|
|
|
|
|
|
|
FontRenderer font = mc.fontRenderer;
|
|
|
|
|
|
|
|
MovingObjectPosition pos = player.rayTrace(40.0D, 1.0F);
|
|
|
|
|
|
|
|
if(pos != null)
|
|
|
|
{
|
|
|
|
int x = MathHelper.floor_double(pos.blockX);
|
|
|
|
int y = MathHelper.floor_double(pos.blockY);
|
|
|
|
int z = MathHelper.floor_double(pos.blockZ);
|
|
|
|
|
|
|
|
Object3D obj = new Object3D(x, y, z);
|
|
|
|
|
2013-05-28 06:29:29 +02:00
|
|
|
if(Mekanism.debug && mc.currentScreen == null && !mc.gameSettings.showDebugInfo)
|
2013-05-14 17:34:26 +02:00
|
|
|
{
|
2013-05-23 19:30:12 +02:00
|
|
|
String tileDisplay = "";
|
|
|
|
|
|
|
|
if(obj.getTileEntity(world) != null)
|
2013-05-14 17:34:26 +02:00
|
|
|
{
|
2013-05-23 19:30:12 +02:00
|
|
|
if(obj.getTileEntity(world).getClass() != null)
|
|
|
|
{
|
|
|
|
tileDisplay = obj.getTileEntity(world).getClass().getSimpleName();
|
|
|
|
}
|
2013-05-14 17:34:26 +02:00
|
|
|
}
|
|
|
|
|
2013-05-23 19:30:12 +02:00
|
|
|
font.drawStringWithShadow("Block ID: " + obj.getBlockId(world), 1, 1, 0x404040);
|
|
|
|
font.drawStringWithShadow("Metadata: " + obj.getMetadata(world), 1, 10, 0x404040);
|
|
|
|
font.drawStringWithShadow("TileEntity: " + tileDisplay, 1, 19, 0x404040);
|
|
|
|
font.drawStringWithShadow("Side: " + pos.sideHit, 1, 28, 0x404040);
|
|
|
|
}
|
2013-05-14 17:34:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumSet<TickType> ticks()
|
|
|
|
{
|
|
|
|
return EnumSet.of(TickType.RENDER);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getLabel()
|
|
|
|
{
|
|
|
|
return "MekanismRender";
|
|
|
|
}
|
2013-05-23 19:30:12 +02:00
|
|
|
}
|