mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
108 lines
3.1 KiB
Java
108 lines
3.1 KiB
Java
package com.hbm.render.item;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import com.hbm.render.util.RenderItemStack;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.renderer.ItemRenderer;
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
import net.minecraft.client.renderer.texture.TextureUtil;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraftforge.client.IItemRenderer;
|
|
|
|
public class ItemRenderTransformer implements IItemRenderer {
|
|
|
|
double[] rtp;
|
|
double[] ttp;
|
|
double[] stp;
|
|
double[] rfp;
|
|
double[] tfp;
|
|
double[] sfp;
|
|
double[] rir;
|
|
double[] tir;
|
|
double[] sir;
|
|
|
|
public ItemRenderTransformer(double[] rtp, double[] ttp, double[] stp, double[] rfp, double[] tfp, double[] sfp, double[] rir, double[] tir, double[] sir) {
|
|
this.rtp = rtp;
|
|
this.ttp = ttp;
|
|
this.stp = stp;
|
|
this.rfp = rfp;
|
|
this.tfp = tfp;
|
|
this.sfp = sfp;
|
|
this.rir = rir;
|
|
this.tir = tir;
|
|
this.sir = sir;
|
|
}
|
|
|
|
@Override
|
|
public boolean handleRenderType(ItemStack item, ItemRenderType type) {
|
|
return type != ItemRenderType.ENTITY;
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item, ItemRendererHelper helper) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void renderItem(ItemRenderType type, ItemStack item, Object... data) {
|
|
|
|
switch(type) {
|
|
|
|
case EQUIPPED_FIRST_PERSON:
|
|
GL11.glRotated(rfp[1], 0, 1, 0);
|
|
GL11.glRotated(rfp[2], 0, 0, 1);
|
|
GL11.glRotated(rfp[0], 1, 0, 0);
|
|
GL11.glTranslated(0.5, 0.5, 0);
|
|
GL11.glTranslated(-0.5, -0.5, 0);
|
|
GL11.glRotated(180, 0, 1, 0);
|
|
GL11.glRotated(-90, 0, 0, 1);
|
|
GL11.glTranslated(0.5, 0.5, 0);
|
|
GL11.glScaled(sfp[0] * 2, sfp[1] * 2, sfp[2] * 2);
|
|
GL11.glTranslated(-0.5, -0.5, 0.25);
|
|
break;
|
|
case EQUIPPED:
|
|
GL11.glRotated(rtp[1], 0, 1, 0);
|
|
GL11.glRotated(rtp[2], 0, 0, 1);
|
|
GL11.glRotated(rtp[0], 1, 0, 0);
|
|
GL11.glTranslated(ttp[0], ttp[1], ttp[2]);
|
|
GL11.glRotated(45, 0, 0, 1);
|
|
GL11.glRotated(180, 0, 1, 0);
|
|
GL11.glRotated(-45, 0, 0, 1);
|
|
GL11.glScaled(stp[0], stp[1], stp[2]);
|
|
break;
|
|
case INVENTORY:
|
|
GL11.glRotated(rir[0], 1, 0, 0);
|
|
GL11.glRotated(rir[1], 0, 1, 0);
|
|
GL11.glRotated(rir[2], 0, 0, 1);
|
|
GL11.glTranslated(tir[0] * 0.0625, tir[1] * 0.0625, tir[2] * 0.0625);
|
|
GL11.glTranslated(8, 8, 0);
|
|
GL11.glScaled(sir[0], sir[1], sir[2]);
|
|
GL11.glTranslated(-8, -8, 0);
|
|
break;
|
|
|
|
default: break;
|
|
}
|
|
|
|
if(data.length > 1 && data[1] instanceof EntityLivingBase) {
|
|
EntityLivingBase entity = (EntityLivingBase) data[1];
|
|
IIcon iicon = entity.getItemIcon(item, 0);
|
|
|
|
if(iicon == null) {
|
|
return;
|
|
}
|
|
|
|
Minecraft.getMinecraft().getTextureManager().bindTexture(Minecraft.getMinecraft().getTextureManager().getResourceLocation(item.getItemSpriteNumber()));
|
|
TextureUtil.func_152777_a(false, false, 1.0F);
|
|
Tessellator tessellator = Tessellator.instance;
|
|
ItemRenderer.renderItemIn2D(tessellator, iicon.getMaxU(), iicon.getMinV(), iicon.getMinU(), iicon.getMaxV(), iicon.getIconWidth(), iicon.getIconHeight(), 0.0625F);
|
|
} else {
|
|
RenderItemStack.renderItemStackNoEffect(0, 0, 0, item);
|
|
}
|
|
}
|
|
|
|
}
|