Advertisement
Mr_Rockers

Untitled

Dec 3rd, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. package com.lyesdoesmods.ieeps;
  2.  
  3. import com.lyesdoesmods.lib.ReferenceVariables;
  4.  
  5. import net.minecraft.entity.Entity;
  6. import net.minecraft.nbt.NBTTagCompound;
  7. import net.minecraft.world.World;
  8. import net.minecraftforge.common.IExtendedEntityProperties;
  9.  
  10. public class BloodLiquidEEP implements IExtendedEntityProperties{
  11.  
  12. public static final String EXT_PROP_NAME = "BloodLiquid_IEEP";
  13. private final Entity entity;
  14. private boolean inBloodLiquid = false;
  15.  
  16. public BloodLiquidEEP(Entity en)
  17. {
  18. this.entity = en;
  19. }
  20.  
  21. public static final void register(Entity en)
  22. {
  23. en.registerExtendedProperties(BloodLiquidEEP.EXT_PROP_NAME, new BloodLiquidEEP(en));
  24. }
  25.  
  26. public static final BloodLiquidEEP get(Entity en)
  27. {
  28. return (BloodLiquidEEP) en.getExtendedProperties(EXT_PROP_NAME);
  29. }
  30.  
  31. @Override
  32. public void saveNBTData(NBTTagCompound compound)
  33. {
  34. NBTTagCompound properties = new NBTTagCompound();
  35. properties.setBoolean("isInBloodLiquid", inBloodLiquid);
  36. compound.setTag(EXT_PROP_NAME, properties);
  37. }
  38.  
  39. @Override
  40. public void loadNBTData(NBTTagCompound compound)
  41. {
  42. NBTTagCompound properties = (NBTTagCompound)compound.getTag(EXT_PROP_NAME);
  43. this.inBloodLiquid = properties.getBoolean("isInBloodLiquid");
  44.  
  45. }
  46.  
  47. @Override
  48. public void init(Entity entity, World world) {
  49. }
  50.  
  51. public void checkIfInLiquid()
  52. {
  53. World world = this.entity.worldObj;
  54. if(world.isAABBInMaterial(this.entity.getBoundingBox(), ReferenceVariables.bloodLiq))
  55. {
  56. this.inBloodLiquid = true;
  57. }
  58. else
  59. {
  60. this.inBloodLiquid = false;
  61. }
  62. }
  63.  
  64. public boolean getIsInLiquid()
  65. {
  66. return this.inBloodLiquid;
  67. }
  68.  
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement