package net.minecraft.client.renderer.entity; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; import net.minecraft.block.BlockAnvil; import net.minecraft.block.BlockDragonEgg; import net.minecraft.client.renderer.RenderBlocks; import net.minecraft.client.renderer.Tessellator; import net.minecraft.entity.Entity; import net.minecraft.entity.item.EntityFallingSand; import net.minecraft.util.MathHelper; import net.minecraft.world.World; import org.lwjgl.opengl.GL11; @SideOnly(Side.CLIENT) public class RenderFallingSand extends Render { private RenderBlocks sandRenderBlocks = new RenderBlocks(); public RenderFallingSand() { this.shadowSize = 0.5F; } /** * The actual render method that is used in doRender */ public void doRenderFallingSand(EntityFallingSand par1EntityFallingSand, double par2, double par4, double par6, float par8, float par9) { GL11.glPushMatrix(); GL11.glTranslatef((float)par2, (float)par4, (float)par6); this.loadTexture("/terrain.png"); Block var10 = Block.blocksList[par1EntityFallingSand.blockID]; World var11 = par1EntityFallingSand.getWorld(); GL11.glDisable(GL11.GL_LIGHTING); Tessellator var12; if (var10 instanceof BlockAnvil && var10.getRenderType() == 35) { this.sandRenderBlocks.blockAccess = var11; var12 = Tessellator.instance; var12.startDrawingQuads(); var12.setTranslation((double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posX)) - 0.5F), (double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posY)) - 0.5F), (double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posZ)) - 0.5F)); this.sandRenderBlocks.renderBlockAnvilMetadata((BlockAnvil)var10, MathHelper.floor_double(par1EntityFallingSand.posX), MathHelper.floor_double(par1EntityFallingSand.posY), MathHelper.floor_double(par1EntityFallingSand.posZ), par1EntityFallingSand.metadata); var12.setTranslation(0.0D, 0.0D, 0.0D); var12.draw(); } else if (var10.getRenderType() == 27) { this.sandRenderBlocks.blockAccess = var11; var12 = Tessellator.instance; var12.startDrawingQuads(); var12.setTranslation((double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posX)) - 0.5F), (double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posY)) - 0.5F), (double)((float)(-MathHelper.floor_double(par1EntityFallingSand.posZ)) - 0.5F)); this.sandRenderBlocks.renderBlockDragonEgg((BlockDragonEgg)var10, MathHelper.floor_double(par1EntityFallingSand.posX), MathHelper.floor_double(par1EntityFallingSand.posY), MathHelper.floor_double(par1EntityFallingSand.posZ)); var12.setTranslation(0.0D, 0.0D, 0.0D); var12.draw(); } else if (var10 != null) { this.sandRenderBlocks.setRenderBoundsFromBlock(var10); this.sandRenderBlocks.renderBlockSandFalling(var10, var11, MathHelper.floor_double(par1EntityFallingSand.posX), MathHelper.floor_double(par1EntityFallingSand.posY), MathHelper.floor_double(par1EntityFallingSand.posZ), par1EntityFallingSand.metadata); } GL11.glEnable(GL11.GL_LIGHTING); GL11.glPopMatrix(); } /** * Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then * handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic * (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1, * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that. */ public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9) { this.doRenderFallingSand((EntityFallingSand)par1Entity, par2, par4, par6, par8, par9); } }