2013-07-02 11:05:59 +00:00
|
|
|
package biomesoplenty.entities.render;
|
2013-05-17 07:18:08 +00:00
|
|
|
|
|
|
|
import net.minecraft.client.model.ModelBase;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderLiving;
|
2013-07-02 03:57:49 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
2013-07-02 11:05:59 +00:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2013-07-09 03:55:12 +00:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2013-05-29 01:05:27 +00:00
|
|
|
|
2013-05-17 07:18:08 +00:00
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
|
2013-07-02 11:05:59 +00:00
|
|
|
import biomesoplenty.entities.EntityGlob;
|
2013-05-29 01:05:27 +00:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
2013-05-17 07:18:08 +00:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public class RenderGlob extends RenderLiving
|
|
|
|
{
|
2013-05-31 10:34:02 +00:00
|
|
|
private ModelBase scaleAmount;
|
2013-05-17 07:18:08 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
public RenderGlob(ModelBase par1ModelBase, ModelBase par2ModelBase, float par3)
|
|
|
|
{
|
|
|
|
super(par1ModelBase, par3);
|
|
|
|
scaleAmount = par2ModelBase;
|
|
|
|
}
|
2013-05-17 07:18:08 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
protected int shouldGlobRenderPass(EntityGlob par1EntityGlob, int par2, float par3)
|
|
|
|
{
|
|
|
|
if (par1EntityGlob.isInvisible())
|
|
|
|
return 0;
|
|
|
|
else if (par2 == 0)
|
|
|
|
{
|
|
|
|
this.setRenderPassModel(scaleAmount);
|
|
|
|
GL11.glEnable(GL11.GL_NORMALIZE);
|
|
|
|
GL11.glEnable(GL11.GL_BLEND);
|
|
|
|
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (par2 == 1)
|
|
|
|
{
|
|
|
|
GL11.glDisable(GL11.GL_BLEND);
|
|
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
|
|
}
|
2013-05-17 07:18:08 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 07:18:08 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
/**
|
|
|
|
* sets the scale for the Glob based on getGlobSize in EntityGlob
|
|
|
|
*/
|
|
|
|
protected void scaleGlob(EntityGlob par1EntityGlob, float par2)
|
|
|
|
{
|
|
|
|
float f1 = par1EntityGlob.getGlobSize();
|
2013-09-13 08:17:21 +00:00
|
|
|
float f2 = (par1EntityGlob.prevSquishFactor + (par1EntityGlob.squishFactor - par1EntityGlob.prevSquishFactor) * par2) / (f1 * 0.5F + 1.0F);
|
2013-05-31 10:34:02 +00:00
|
|
|
float f3 = 1.0F / (f2 + 1.0F);
|
|
|
|
GL11.glScalef(f3 * f1, 1.0F / f3 * f1, f3 * f1);
|
|
|
|
}
|
2013-07-02 11:05:59 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void preRenderCallback(EntityLivingBase par1EntityLivingBase, float par2)
|
|
|
|
{
|
|
|
|
this.scaleGlob((EntityGlob)par1EntityLivingBase, par2);
|
|
|
|
}
|
2013-05-17 07:18:08 +00:00
|
|
|
|
2013-05-31 10:34:02 +00:00
|
|
|
@Override
|
2013-09-13 08:17:21 +00:00
|
|
|
protected ResourceLocation getEntityTexture(Entity entity)
|
2013-05-31 10:34:02 +00:00
|
|
|
{
|
2013-07-03 06:01:28 +00:00
|
|
|
return new ResourceLocation("biomesoplenty:textures/mobs/glob.png");
|
2013-05-31 10:34:02 +00:00
|
|
|
}
|
2013-07-02 11:05:59 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected int shouldRenderPass(EntityLivingBase par1EntityLivingBase, int par2, float par3)
|
|
|
|
{
|
|
|
|
return this.shouldGlobRenderPass((EntityGlob)par1EntityLivingBase, par2, par3);
|
|
|
|
}
|
2013-05-17 07:18:08 +00:00
|
|
|
}
|