2013-10-16 05:33:43 +00:00
|
|
|
package biomesoplenty.eventhandlers;
|
2013-05-11 11:19:28 +00:00
|
|
|
|
2013-06-15 08:46:50 +00:00
|
|
|
import net.minecraft.block.Block;
|
2013-07-02 03:57:49 +00:00
|
|
|
import net.minecraft.block.BlockColored;
|
2013-05-11 11:19:28 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.EntityCreature;
|
|
|
|
import net.minecraft.entity.EntityLiving;
|
2013-11-13 03:48:32 +00:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2013-05-11 11:19:28 +00:00
|
|
|
import net.minecraft.entity.passive.EntityChicken;
|
|
|
|
import net.minecraft.entity.passive.EntityCow;
|
|
|
|
import net.minecraft.entity.passive.EntityPig;
|
|
|
|
import net.minecraft.entity.passive.EntitySheep;
|
2013-06-20 08:43:33 +00:00
|
|
|
import net.minecraft.entity.passive.EntityWolf;
|
2013-06-15 08:46:50 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2013-05-29 22:37:21 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
2013-06-20 08:43:33 +00:00
|
|
|
import net.minecraft.item.ItemStack;
|
2013-05-25 13:01:16 +00:00
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
2013-05-29 22:37:21 +00:00
|
|
|
import net.minecraft.util.DamageSource;
|
2013-05-12 22:22:17 +00:00
|
|
|
import net.minecraft.util.MathHelper;
|
2013-06-15 08:46:50 +00:00
|
|
|
import net.minecraft.world.World;
|
2013-05-12 22:22:17 +00:00
|
|
|
import net.minecraftforge.event.Event.Result;
|
2013-05-11 11:19:28 +00:00
|
|
|
import net.minecraftforge.event.ForgeSubscribe;
|
|
|
|
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
|
2013-05-29 22:37:21 +00:00
|
|
|
import net.minecraftforge.event.entity.living.LivingHurtEvent;
|
2013-06-20 08:43:33 +00:00
|
|
|
import net.minecraftforge.event.entity.player.EntityInteractEvent;
|
2013-05-12 22:22:17 +00:00
|
|
|
import biomesoplenty.api.Blocks;
|
2013-05-11 11:19:28 +00:00
|
|
|
import biomesoplenty.api.Items;
|
2013-10-18 23:57:56 +00:00
|
|
|
import biomesoplenty.configuration.BOPAchievements;
|
2013-09-14 10:16:39 +00:00
|
|
|
import biomesoplenty.configuration.configfile.BOPConfigurationIDs;
|
2013-06-15 08:46:50 +00:00
|
|
|
import biomesoplenty.entities.ai.EntityAITemptArmour;
|
2013-06-15 11:08:58 +00:00
|
|
|
import biomesoplenty.helpers.TeleporterPromised;
|
2013-05-11 11:19:28 +00:00
|
|
|
|
2013-06-15 11:08:58 +00:00
|
|
|
public class EntityEventHandler
|
2013-05-11 11:19:28 +00:00
|
|
|
{
|
2013-05-31 10:34:02 +00:00
|
|
|
@ForgeSubscribe
|
|
|
|
public void onEntitySpawn(EntityJoinWorldEvent event)
|
|
|
|
{
|
|
|
|
Entity entity = event.entity;
|
|
|
|
|
|
|
|
if (!(entity instanceof EntityLiving))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (entity instanceof EntityChicken) {
|
|
|
|
((EntityLiving)entity).tasks.addTask(3, new EntityAITemptArmour((EntityCreature) entity, 0.25F, Items.flowerBand.get().itemID, 0, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity instanceof EntitySheep) {
|
|
|
|
((EntityLiving)entity).tasks.addTask(3, new EntityAITemptArmour((EntityCreature) entity, 0.25F, Items.flowerBand.get().itemID, 1, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity instanceof EntityPig) {
|
|
|
|
((EntityLiving)entity).tasks.addTask(4, new EntityAITemptArmour((EntityCreature) entity, 0.25F, Items.flowerBand.get().itemID, 2, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity instanceof EntityCow) {
|
|
|
|
((EntityLiving)entity).tasks.addTask(3, new EntityAITemptArmour((EntityCreature) entity, 0.25F, Items.flowerBand.get().itemID, 3, false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-02 08:55:34 +00:00
|
|
|
//Currently unused, as mobs don't spawn in the Promised Lands *yet*
|
2013-07-02 03:57:49 +00:00
|
|
|
/*@ForgeSubscribe
|
2013-05-31 10:34:02 +00:00
|
|
|
public void canEntitySpawn(CheckSpawn event)
|
|
|
|
{
|
|
|
|
if (event.entityLiving instanceof EntityAnimal)
|
|
|
|
{
|
|
|
|
int i = MathHelper.floor_double(event.entityLiving.posX);
|
|
|
|
int j = MathHelper.floor_double(event.entityLiving.boundingBox.minY);
|
|
|
|
int k = MathHelper.floor_double(event.entityLiving.posZ);
|
|
|
|
|
2013-07-02 03:57:49 +00:00
|
|
|
if (event.entityLiving. <= event.world.getEntitiesWithinAABB(event.entityLiving.getClass(), AxisAlignedBB.getAABBPool().getAABB(i - 16, j - 4, k - 16, i + 17, j + 5, k + 17)).size())
|
2013-05-31 10:34:02 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (event.entityLiving.worldObj.getBlockId(i, j - 1, k) == Blocks.holyGrass.get().blockID && event.entityLiving.worldObj.getFullBlockLightValue(i, j, k) > 8
|
|
|
|
&& event.entityLiving.worldObj.checkNoEntityCollision(event.entity.boundingBox) && !event.entityLiving.worldObj.isAnyLiquid(event.entityLiving.boundingBox)
|
|
|
|
&& event.entityLiving.worldObj.getCollidingBoundingBoxes(event.entityLiving, event.entityLiving.boundingBox).isEmpty()) {
|
|
|
|
event.setResult(Result.ALLOW);
|
|
|
|
}
|
|
|
|
}
|
2013-07-02 03:57:49 +00:00
|
|
|
}*/
|
2013-05-31 10:34:02 +00:00
|
|
|
|
2013-07-02 08:45:52 +00:00
|
|
|
@ForgeSubscribe
|
2013-05-31 10:34:02 +00:00
|
|
|
public void fallingFromPromisedLand(LivingHurtEvent event)
|
|
|
|
{
|
2013-09-14 10:16:39 +00:00
|
|
|
if (event.source == DamageSource.outOfWorld && event.entityLiving.dimension == BOPConfigurationIDs.promisedLandDimID)
|
2013-05-31 10:34:02 +00:00
|
|
|
{
|
|
|
|
event.setCanceled(true);
|
|
|
|
|
|
|
|
if (!event.entityLiving.worldObj.isRemote && !event.entityLiving.isDead)
|
|
|
|
{
|
|
|
|
if (event.entityLiving instanceof EntityPlayerMP)
|
|
|
|
{
|
|
|
|
EntityPlayerMP thePlayer = (EntityPlayerMP) event.entityLiving;
|
|
|
|
thePlayer.mcServer.getConfigurationManager().transferPlayerToDimension(thePlayer, 0, new TeleporterPromised(thePlayer.mcServer.worldServerForDimension(0), true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-02 08:45:52 +00:00
|
|
|
}
|
2013-06-15 08:46:50 +00:00
|
|
|
|
2013-06-20 08:43:33 +00:00
|
|
|
@ForgeSubscribe
|
|
|
|
public void entityInteract(EntityInteractEvent event)
|
|
|
|
{
|
|
|
|
ItemStack itemstack = event.entityPlayer.getCurrentEquippedItem();
|
|
|
|
Entity entity = event.target;
|
|
|
|
EntityPlayer player = event.entityPlayer;
|
2013-07-19 22:42:53 +00:00
|
|
|
|
2013-06-20 08:43:33 +00:00
|
|
|
if (itemstack != null)
|
|
|
|
{
|
2013-06-22 21:34:48 +00:00
|
|
|
int itemDamage = itemstack.getItemDamage();
|
|
|
|
|
2013-11-12 19:12:51 +00:00
|
|
|
if (itemstack.itemID == Items.miscItems.get().itemID && (itemDamage == 5 || itemDamage == 6 || itemDamage == 7 || itemDamage == 8 || itemDamage == 9))
|
2013-06-20 08:43:33 +00:00
|
|
|
{
|
|
|
|
int dyeMeta = convertToDyeMeta(itemDamage);
|
2013-07-02 03:57:49 +00:00
|
|
|
int i = BlockColored.getBlockFromDye(dyeMeta);
|
2013-06-20 08:43:33 +00:00
|
|
|
|
|
|
|
if (entity instanceof EntityWolf)
|
|
|
|
{
|
|
|
|
EntityWolf entitywolf = (EntityWolf)entity;
|
|
|
|
|
|
|
|
if (i != entitywolf.getCollarColor())
|
|
|
|
{
|
|
|
|
entitywolf.setCollarColor(i)
|
|
|
|
;
|
2013-06-22 21:39:18 +00:00
|
|
|
if (!event.entityPlayer.capabilities.isCreativeMode)
|
2013-06-20 08:43:33 +00:00
|
|
|
{
|
|
|
|
--itemstack.stackSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.setResult(Result.ALLOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (entity instanceof EntitySheep)
|
|
|
|
{
|
|
|
|
EntitySheep entitysheep = (EntitySheep)entity;
|
|
|
|
|
|
|
|
if (!entitysheep.getSheared() && entitysheep.getFleeceColor() != i)
|
|
|
|
{
|
|
|
|
entitysheep.setFleeceColor(i);
|
|
|
|
|
2013-06-22 21:39:18 +00:00
|
|
|
if (!event.entityPlayer.capabilities.isCreativeMode)
|
2013-06-20 08:43:33 +00:00
|
|
|
{
|
|
|
|
--itemstack.stackSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
event.setResult(Result.ALLOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int convertToDyeMeta(int meta)
|
|
|
|
{
|
|
|
|
switch (meta)
|
|
|
|
{
|
|
|
|
case 5:
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
return 15;
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2013-06-15 08:46:50 +00:00
|
|
|
|
|
|
|
public boolean isBlockInBB(World world, AxisAlignedBB par1AxisAlignedBB, int blockID, int blockMeta)
|
|
|
|
{
|
|
|
|
int i = MathHelper.floor_double(par1AxisAlignedBB.minX);
|
|
|
|
int j = MathHelper.floor_double(par1AxisAlignedBB.maxX + 1.0D);
|
|
|
|
int k = MathHelper.floor_double(par1AxisAlignedBB.minY);
|
|
|
|
int l = MathHelper.floor_double(par1AxisAlignedBB.maxY + 1.0D);
|
|
|
|
int i1 = MathHelper.floor_double(par1AxisAlignedBB.minZ);
|
|
|
|
int j1 = MathHelper.floor_double(par1AxisAlignedBB.maxZ + 1.0D);
|
|
|
|
|
|
|
|
for (int k1 = i; k1 < j; ++k1)
|
|
|
|
{
|
|
|
|
for (int l1 = k; l1 < l; ++l1)
|
|
|
|
{
|
|
|
|
for (int i2 = i1; i2 < j1; ++i2)
|
|
|
|
{
|
|
|
|
Block block = Block.blocksList[world.getBlockId(k1, l1, i2)];
|
|
|
|
|
|
|
|
if (block != null && block.blockID == blockID && world.getBlockMetadata(k1, l1, i2) == blockMeta)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-11 11:19:28 +00:00
|
|
|
}
|