001 package net.minecraft.src;
002
003 import cpw.mods.fml.common.Side;
004 import cpw.mods.fml.common.asm.SideOnly;
005
006 @SideOnly(Side.CLIENT)
007 public class RenderChicken extends RenderLiving
008 {
009 public RenderChicken(ModelBase par1ModelBase, float par2)
010 {
011 super(par1ModelBase, par2);
012 }
013
014 public void renderChicken(EntityChicken par1EntityChicken, double par2, double par4, double par6, float par8, float par9)
015 {
016 super.doRenderLiving(par1EntityChicken, par2, par4, par6, par8, par9);
017 }
018
019 protected float getWingRotation(EntityChicken par1EntityChicken, float par2)
020 {
021 float var3 = par1EntityChicken.field_70888_h + (par1EntityChicken.field_70886_e - par1EntityChicken.field_70888_h) * par2;
022 float var4 = par1EntityChicken.field_70884_g + (par1EntityChicken.destPos - par1EntityChicken.field_70884_g) * par2;
023 return (MathHelper.sin(var3) + 1.0F) * var4;
024 }
025
026 /**
027 * Defines what float the third param in setRotationAngles of ModelBase is
028 */
029 protected float handleRotationFloat(EntityLiving par1EntityLiving, float par2)
030 {
031 return this.getWingRotation((EntityChicken)par1EntityLiving, par2);
032 }
033
034 public void doRenderLiving(EntityLiving par1EntityLiving, double par2, double par4, double par6, float par8, float par9)
035 {
036 this.renderChicken((EntityChicken)par1EntityLiving, par2, par4, par6, par8, par9);
037 }
038
039 /**
040 * Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then
041 * handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic
042 * (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,
043 * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.
044 */
045 public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)
046 {
047 this.renderChicken((EntityChicken)par1Entity, par2, par4, par6, par8, par9);
048 }
049 }