2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("RenderItems.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
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
package ellpeck.actuallyadditions.blocks.render;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
2015-03-29 15:29:05 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
|
import net.minecraftforge.client.IItemRenderer;
|
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
|
|
|
|
|
public class RenderItems implements IItemRenderer{
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
ModelBaseAA theModel;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
ResourceLocation theTexture;
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
public RenderItems(ModelBaseAA model){
|
2015-03-07 02:23:31 +01:00
|
|
|
|
this.theModel = model;
|
2015-03-29 15:29:05 +02:00
|
|
|
|
this.theTexture = new ResourceLocation(ModUtil.MOD_ID_LOWER, "textures/blocks/models/" + this.theModel.getName() + ".png");
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean handleRenderType(ItemStack item, ItemRenderType type){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item, ItemRendererHelper helper){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-03-30 18:42:14 +02:00
|
|
|
|
public void renderItem(ItemRenderType type, ItemStack stack, Object... data){
|
2015-03-07 02:23:31 +01:00
|
|
|
|
switch(type){
|
|
|
|
|
case INVENTORY:
|
|
|
|
|
GL11.glPushMatrix();
|
|
|
|
|
GL11.glTranslatef(0.5F, 0.5F, 0.5F);
|
|
|
|
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
|
|
|
|
GL11.glTranslatef(-0.5F, -1.27F, 0.5F);
|
2015-09-27 16:48:58 +02:00
|
|
|
|
GL11.glRotatef(180F, 0F, 1F, 0F);
|
2015-03-07 02:23:31 +01:00
|
|
|
|
Minecraft.getMinecraft().renderEngine.bindTexture(theTexture);
|
|
|
|
|
theModel.render(0.0625F);
|
|
|
|
|
GL11.glPopMatrix();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case EQUIPPED:
|
|
|
|
|
GL11.glPushMatrix();
|
|
|
|
|
GL11.glTranslatef(0.5F, 0.5F, 0.5F);
|
|
|
|
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
|
|
|
|
GL11.glTranslatef(0.6F, -1.2F, -0.0F);
|
2015-09-27 16:48:58 +02:00
|
|
|
|
GL11.glRotatef(180F, 0F, 1F, 0F);
|
2015-03-07 02:23:31 +01:00
|
|
|
|
Minecraft.getMinecraft().renderEngine.bindTexture(theTexture);
|
|
|
|
|
theModel.render(0.0625F);
|
|
|
|
|
GL11.glPopMatrix();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case EQUIPPED_FIRST_PERSON:
|
|
|
|
|
GL11.glPushMatrix();
|
|
|
|
|
GL11.glScalef(1.2F, 1.2F, 1.2F);
|
|
|
|
|
GL11.glRotatef(180, 2F, -0F, 0.1F);
|
|
|
|
|
GL11.glTranslatef(1.5F, -1.2F, -0.3F);
|
2015-09-27 16:48:58 +02:00
|
|
|
|
GL11.glRotatef(180F, 0F, 1F, 0F);
|
2015-03-07 02:23:31 +01:00
|
|
|
|
Minecraft.getMinecraft().renderEngine.bindTexture(theTexture);
|
|
|
|
|
theModel.render(0.0625F);
|
|
|
|
|
GL11.glPopMatrix();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
GL11.glPushMatrix();
|
|
|
|
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
|
|
|
|
GL11.glTranslatef(0.0F, -1.27F, 0.0F);
|
2015-09-27 16:48:58 +02:00
|
|
|
|
GL11.glRotatef(180F, 0F, 1F, 0F);
|
2015-03-07 02:23:31 +01:00
|
|
|
|
Minecraft.getMinecraft().renderEngine.bindTexture(theTexture);
|
|
|
|
|
theModel.render(0.0625F);
|
|
|
|
|
GL11.glPopMatrix();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|