109 lines
4.9 KiB
Java
109 lines
4.9 KiB
Java
package electroblob.wizardry.client.renderer;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import electroblob.wizardry.entity.living.EntitySilverfishMinion;
|
|
import net.minecraft.client.model.ModelSilverfish;
|
|
import net.minecraft.client.renderer.entity.RenderLiving;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLiving;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class RenderSilverfishMinion extends RenderLiving
|
|
{
|
|
private static final ResourceLocation silverfishTextures = new ResourceLocation("textures/entity/silverfish.png");
|
|
private static final String __OBFID = "CL_00001022";
|
|
|
|
public RenderSilverfishMinion()
|
|
{
|
|
super(new ModelSilverfish(), 0.3F);
|
|
}
|
|
|
|
protected float getDeathMaxRotation(EntitySilverfishMinion p_77037_1_)
|
|
{
|
|
return 180.0F;
|
|
}
|
|
|
|
/**
|
|
* 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 func_76986_a(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(EntitySilverfishMinion p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_)
|
|
{
|
|
super.doRender((EntityLiving)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_);
|
|
}
|
|
|
|
/**
|
|
* Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
|
|
*/
|
|
protected ResourceLocation getEntityTexture(EntitySilverfishMinion p_110775_1_)
|
|
{
|
|
return silverfishTextures;
|
|
}
|
|
|
|
/**
|
|
* Queries whether should render the specified pass or not.
|
|
*/
|
|
protected int shouldRenderPass(EntitySilverfishMinion p_77032_1_, int p_77032_2_, float p_77032_3_)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
/**
|
|
* 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 func_76986_a(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(EntityLiving p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_)
|
|
{
|
|
this.doRender((EntitySilverfishMinion)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_);
|
|
}
|
|
|
|
protected float getDeathMaxRotation(EntityLivingBase p_77037_1_)
|
|
{
|
|
return this.getDeathMaxRotation((EntitySilverfishMinion)p_77037_1_);
|
|
}
|
|
|
|
/**
|
|
* Queries whether should render the specified pass or not.
|
|
*/
|
|
protected int shouldRenderPass(EntityLivingBase p_77032_1_, int p_77032_2_, float p_77032_3_)
|
|
{
|
|
return this.shouldRenderPass((EntitySilverfishMinion)p_77032_1_, p_77032_2_, p_77032_3_);
|
|
}
|
|
|
|
/**
|
|
* 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 func_76986_a(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(EntityLivingBase p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_)
|
|
{
|
|
this.doRender((EntitySilverfishMinion)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_);
|
|
}
|
|
|
|
/**
|
|
* Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
|
|
*/
|
|
protected ResourceLocation getEntityTexture(Entity p_110775_1_)
|
|
{
|
|
return this.getEntityTexture((EntitySilverfishMinion)p_110775_1_);
|
|
}
|
|
|
|
/**
|
|
* 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 func_76986_a(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 p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_)
|
|
{
|
|
this.doRender((EntitySilverfishMinion)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_);
|
|
}
|
|
} |