73 lines
1.9 KiB
Java
73 lines
1.9 KiB
Java
package resonantinduction.electrical.levitator;
|
|
|
|
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import resonantinduction.core.Reference;
|
|
import resonantinduction.core.ResonantInduction;
|
|
|
|
public class RenderLevitator extends TileEntitySpecialRenderer
|
|
{
|
|
public static final ModelEMContractor MODEL = new ModelEMContractor(false);
|
|
public static final ModelEMContractor MODEL_SPIN = new ModelEMContractor(true);
|
|
public static final ResourceLocation TEXTURE = new ResourceLocation(Reference.DOMAIN, Reference.MODEL_TEXTURE_DIRECTORY + "em_contractor.png");
|
|
public static final ResourceLocation TEXTURE_PUSH = new ResourceLocation(Reference.DOMAIN, Reference.MODEL_TEXTURE_DIRECTORY + "em_contractor_push.png");
|
|
|
|
@Override
|
|
public void renderTileEntityAt(TileEntity t, double x, double y, double z, float f)
|
|
{
|
|
GL11.glPushMatrix();
|
|
GL11.glTranslated(x + 0.5, y + 1.5, z + 0.5);
|
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
|
GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);
|
|
|
|
switch (((TileEMLevitator) t).getDirection())
|
|
{
|
|
case DOWN:
|
|
GL11.glRotatef(180, 0, 0, 1);
|
|
GL11.glTranslatef(0, -2, 0);
|
|
break;
|
|
case UP:
|
|
break;
|
|
case NORTH:
|
|
GL11.glTranslatef(1, 1, 0);
|
|
GL11.glRotatef(90, 0, 0, 1);
|
|
break;
|
|
case SOUTH:
|
|
GL11.glTranslatef(-1, 1, 0);
|
|
GL11.glRotatef(-90, 0, 0, 1);
|
|
break;
|
|
case WEST:
|
|
GL11.glTranslatef(0, 1, 1);
|
|
GL11.glRotatef(-90, 1, 0, 0);
|
|
break;
|
|
case EAST:
|
|
GL11.glTranslatef(0, 1, -1);
|
|
GL11.glRotatef(90, 1, 0, 0);
|
|
break;
|
|
}
|
|
|
|
if (((TileEMLevitator) t).suck)
|
|
{
|
|
this.bindTexture(TEXTURE);
|
|
}
|
|
else
|
|
{
|
|
this.bindTexture(TEXTURE_PUSH);
|
|
}
|
|
|
|
if (((TileEMLevitator) t).canFunction() && !ResonantInduction.proxy.isPaused())
|
|
{
|
|
MODEL_SPIN.render(0.0625f);
|
|
}
|
|
else
|
|
{
|
|
MODEL.render(0.0625f);
|
|
}
|
|
|
|
GL11.glPopMatrix();
|
|
}
|
|
}
|