2013-05-03 13:00:44 +00:00
|
|
|
package biomesoplenty;
|
|
|
|
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.particle.EntityBreakingFX;
|
|
|
|
import net.minecraft.client.particle.EntityFX;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderSnowball;
|
|
|
|
import biomesoplenty.api.Items;
|
|
|
|
import biomesoplenty.blocks.renderers.FoliageRenderer;
|
|
|
|
import biomesoplenty.blocks.renderers.PlantsRenderer;
|
2013-05-07 01:02:25 +00:00
|
|
|
import biomesoplenty.items.projectiles.EntityDart;
|
2013-05-03 13:00:44 +00:00
|
|
|
import biomesoplenty.items.projectiles.EntityMudball;
|
2013-05-11 12:51:16 +00:00
|
|
|
import biomesoplenty.items.projectiles.RenderDart;
|
2013-05-13 07:49:06 +00:00
|
|
|
import biomesoplenty.particles.EntityDandelionFX;
|
2013-05-03 13:00:44 +00:00
|
|
|
import cpw.mods.fml.client.registry.RenderingRegistry;
|
|
|
|
|
|
|
|
public class ClientProxy extends CommonProxy {
|
|
|
|
|
|
|
|
public static Minecraft mc = Minecraft.getMinecraft();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void registerRenderers()
|
|
|
|
{
|
|
|
|
RenderingRegistry.registerEntityRenderingHandler(EntityMudball.class, new RenderSnowball(Items.mudball.get(), 0));
|
2013-05-15 09:15:31 +00:00
|
|
|
RenderingRegistry.registerEntityRenderingHandler(EntityDart.class, new RenderDart());
|
2013-05-16 13:50:12 +00:00
|
|
|
//RenderingRegistry.registerEntityRenderingHandler(EntityPoisonDart.class, new RenderPoisonDart());
|
2013-05-03 13:00:44 +00:00
|
|
|
|
|
|
|
RenderingRegistry.registerBlockHandler(new FoliageRenderer());
|
|
|
|
RenderingRegistry.registerBlockHandler(new PlantsRenderer());
|
|
|
|
}
|
2013-05-11 12:51:16 +00:00
|
|
|
|
|
|
|
@Override
|
2013-05-13 08:20:06 +00:00
|
|
|
public void spawnParticle(String string, double x, double y, double z)
|
2013-05-11 12:51:16 +00:00
|
|
|
{
|
|
|
|
EntityFX entityfx = null;
|
|
|
|
|
2013-05-13 08:20:06 +00:00
|
|
|
if (string == "mud")
|
|
|
|
entityfx = new EntityBreakingFX(mc.theWorld, x, y, z, Items.mudball.get(), mc.renderEngine);
|
|
|
|
else if (string == "dart")
|
|
|
|
entityfx = new EntityBreakingFX(mc.theWorld, x, y, z, Items.dart.get(), mc.renderEngine);
|
|
|
|
else if (string == "dandelion")
|
|
|
|
entityfx = new EntityDandelionFX(mc.theWorld, x, y, z, 1.0F);
|
|
|
|
|
|
|
|
mc.effectRenderer.addEffect(entityfx);
|
|
|
|
}
|
2013-05-03 13:00:44 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int addArmor(String armor)
|
|
|
|
{
|
|
|
|
return RenderingRegistry.addNewArmourRendererPrefix(armor);
|
|
|
|
}
|
|
|
|
}
|