Java tutorial
/** * MrCrayfish's Furniture Mod * Copyright (C) 2014 MrCrayfish (http://www.mrcrayfish.com/) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.mrcrayfish.furniture.render.tileentity; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; import net.minecraft.entity.item.EntityItem; import net.minecraft.tileentity.TileEntity; import org.lwjgl.opengl.GL11; import com.mrcrayfish.furniture.blocks.BlockChoppingBoard; import com.mrcrayfish.furniture.tileentity.TileEntityChoppingBoard; public class ChoppingBoardRenderer extends TileEntitySpecialRenderer { private EntityItem entityFood = new EntityItem(Minecraft.getMinecraft().theWorld, 0D, 0D, 0D); @Override public void renderTileEntityAt(TileEntity tileEntity, double posX, double posY, double posZ, float p_180535_8_, int p_180535_9_) { TileEntityChoppingBoard board = (TileEntityChoppingBoard) tileEntity; BlockChoppingBoard choppingBoard = (BlockChoppingBoard) tileEntity.getBlockType(); int metadata = choppingBoard.getMetaFromState(tileEntity.getWorld().getBlockState(tileEntity.getPos())); if (board.getFood() != null) { entityFood.setEntityItemStack(board.getFood()); GL11.glPushMatrix(); this.entityFood.hoverStart = 0.0F; float xOffset = 0.0F; float zOffset = 0.0F; switch (metadata) { case 0: zOffset -= 0.1F; break; case 1: xOffset += 0.3F; zOffset += 0.2F; break; case 2: zOffset += 0.5F; break; case 3: xOffset -= 0.3F; zOffset += 0.2F; break; } GL11.glTranslatef((float) posX + 0.5F + xOffset, (float) posY + 0.02F, (float) posZ + 0.3F + zOffset); GL11.glRotatef(metadata * -90F, 0, 1, 0); GL11.glRotatef(180, 0, 1, 1); Minecraft.getMinecraft().getRenderManager().renderEntityWithPosYaw(entityFood, 0.0D, 0.0D, 0.075D, 0.0F, 0.0F); GL11.glPopMatrix(); } } }