ProtectionEntity.java 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package me.km.plots;
  2. import me.km.api.Module;
  3. import me.km.permissions.Permission;
  4. import me.km.permissions.Permissions;
  5. import net.minecraft.entity.Entity;
  6. import net.minecraft.entity.EntityLivingBase;
  7. import net.minecraft.entity.passive.EntityAnimal;
  8. import net.minecraft.entity.player.EntityPlayer;
  9. import net.minecraft.entity.projectile.EntityPotion;
  10. import net.minecraft.util.math.BlockPos;
  11. import net.minecraft.world.World;
  12. import net.minecraftforge.event.entity.ThrowableImpactEvent;
  13. import net.minecraftforge.event.entity.living.LivingAttackEvent;
  14. import net.minecraftforge.fml.common.eventhandler.EventPriority;
  15. import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
  16. public class ProtectionEntity extends Protection
  17. {
  18. public ProtectionEntity(Module m)
  19. {
  20. super(m);
  21. }
  22. @SubscribeEvent(priority = EventPriority.HIGHEST)
  23. public void EntityProtection(LivingAttackEvent e)
  24. {
  25. EntityLivingBase ent = e.getEntityLiving();
  26. if(!this.getProtectionBank().isProtected(ent.getClass()))
  27. {
  28. return;
  29. }
  30. World w = ent.world;
  31. BlockPos pos = ent.getPosition();
  32. if(!this.getProtectionBank().hasProtection(w, pos) ||
  33. (ent instanceof EntityAnimal && this.getProtectionBank().hasTag(w, pos, "animal")))
  34. {
  35. return;
  36. }
  37. if(e.getSource().getSourceOfDamage() != null)
  38. {
  39. Entity source = e.getSource().getSourceOfDamage();
  40. if(source instanceof EntityPlayer)
  41. {
  42. EntityPlayer p = (EntityPlayer) source;
  43. if(Permission.hasPermission(p, Permissions.PLOT_BYPASS) || this.getProtectionBank().canBuild(w, pos, p))
  44. {
  45. return;
  46. }
  47. e.setCanceled(true);
  48. }
  49. }
  50. e.setCanceled(true);
  51. }
  52. @SubscribeEvent(priority = EventPriority.HIGHEST)
  53. public void EntityProtectionPotion(ThrowableImpactEvent e)
  54. {
  55. if(e.getEntityThrowable() instanceof EntityPotion)
  56. {
  57. EntityPotion potion = (EntityPotion) e.getEntityThrowable();
  58. EntityLivingBase ent = potion.getThrower();
  59. if(ent instanceof EntityPlayer && !Permission.hasPermission(ent, Permissions.PLOT_BYPASS) &&
  60. !this.getProtectionBank().canBuild(potion.world, potion.getPosition(), (EntityPlayer) ent))
  61. {
  62. e.setCanceled(true);
  63. }
  64. }
  65. }
  66. }