EffectUtils.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. package me.km.effects;
  2. import java.util.Collection;
  3. import java.util.stream.Collectors;
  4. import me.km.KajetansMod;
  5. import me.km.api.Utils;
  6. import me.km.entities.EntityItemProjectile;
  7. import me.km.jobsystem.JobAPI;
  8. import me.km.plots.ProtectionBank;
  9. import net.minecraft.entity.Entity;
  10. import net.minecraft.entity.EntityLivingBase;
  11. import net.minecraft.entity.item.EntityEnderPearl;
  12. import net.minecraft.entity.item.EntityExpBottle;
  13. import net.minecraft.entity.passive.EntityAnimal;
  14. import net.minecraft.entity.player.EntityPlayer;
  15. import net.minecraft.entity.player.EntityPlayerMP;
  16. import net.minecraft.entity.projectile.*;
  17. import net.minecraft.init.Items;
  18. import net.minecraft.item.ItemStack;
  19. import net.minecraft.potion.Potion;
  20. import net.minecraft.potion.PotionEffect;
  21. import net.minecraft.potion.PotionType;
  22. import net.minecraft.potion.PotionUtils;
  23. import net.minecraft.util.EnumParticleTypes;
  24. import net.minecraft.util.SoundCategory;
  25. import net.minecraft.util.SoundEvent;
  26. import net.minecraft.util.math.BlockPos;
  27. import net.minecraft.util.math.Vec3d;
  28. import net.minecraft.world.World;
  29. import net.minecraft.world.WorldServer;
  30. public class EffectUtils
  31. {
  32. // -----------------------------------------------------------------------------------
  33. // Entity-Level
  34. // -----------------------------------------------------------------------------------
  35. /** Returns the level of a players effect, this is used for passive effects
  36. *
  37. * @param p a player
  38. * @param eff an effect
  39. * @return the level of the effect, 0 on non existance for the player
  40. */
  41. public static int getEffectLevel(EntityPlayer p, Effect eff)
  42. {
  43. JobAPI job = KajetansMod.jobs;
  44. return eff.getSkills().stream().mapToInt(s -> job.getSkillLevel(p, s)).max().orElse(0);
  45. }
  46. // -----------------------------------------------------------------------------------
  47. // Entity-Collections
  48. // -----------------------------------------------------------------------------------
  49. public static Collection<EntityPlayer> getPlayersOfGuild(EntityPlayer p, World w, double x, double y, double z, double radius)
  50. {
  51. Collection<EntityPlayer> col = Utils.getPlayers(w, x, y, z, radius);
  52. if(col.isEmpty())
  53. {
  54. return col;
  55. }
  56. int id = KajetansMod.playerbank.getGuildId(p);
  57. col.removeIf(pl -> KajetansMod.playerbank.getGuildId(pl) != id);
  58. return col;
  59. }
  60. public static Collection<EntityPlayer> getPlayersOfGuild(EntityPlayer p, double radius)
  61. {
  62. return getPlayersOfGuild(p, p.world, p.posX, p.posY, p.posZ, radius);
  63. }
  64. public static Collection<EntityLivingBase> getEntsOfNotGuild(EntityPlayer p, World w, double x, double y, double z, double radius)
  65. {
  66. boolean animals = KajetansMod.plots.getDataBank(ProtectionBank.class).canBuild(w, new BlockPos(x, y, z), p);
  67. boolean pvp = !KajetansMod.worldManager.getWorldPreferences(w).pvpProtection;
  68. boolean ppvp = KajetansMod.playerbank.getPvpStatus(p);
  69. int id = KajetansMod.playerbank.getGuildId(p);
  70. return Utils.getEntities(w, x, y, z, radius, EntityLivingBase.class).stream()
  71. .filter(ent -> animals || !(ent instanceof EntityAnimal))
  72. .filter(ent -> pvp || !(ent instanceof EntityPlayer) || (ppvp &&
  73. KajetansMod.playerbank.getPvpStatus((EntityPlayer) ent)))
  74. .filter(ent -> !(ent instanceof EntityPlayer) ||
  75. (id != KajetansMod.playerbank.getGuildId((EntityPlayer) ent)))
  76. .filter(ent -> ent != p)
  77. .collect(Collectors.toList());
  78. }
  79. public static Collection<EntityLivingBase> getEntsOfNotGuild(EntityPlayer p, double radius)
  80. {
  81. return getEntsOfNotGuild(p, p.world, p.posX, p.posY, p.posZ, radius);
  82. }
  83. // -----------------------------------------------------------------------------------
  84. // Particles
  85. // -----------------------------------------------------------------------------------
  86. public static void spawnParticle(WorldServer w, EnumParticleTypes particle, double x, double y, double z, double offX, double offY, double offZ, int count, int... data)
  87. {
  88. w.spawnParticle(particle, false, x, y, z, count, offX, offY, offZ, 1, data);
  89. }
  90. public static void spawnParticle(WorldServer w, EnumParticleTypes particle, double x, double y, double z, double offX, double offY, double offZ, int count)
  91. {
  92. spawnParticle(w, particle, x, y, z, offX, offY, offZ, count, new int[0]);
  93. }
  94. public static void spawnParticle(WorldServer w, EnumParticleTypes particle, double x, double y, double z, int count)
  95. {
  96. spawnParticle(w, particle, x, y, z, 0, 0, 0, count);
  97. }
  98. public static void spawnParticle(WorldServer w, EnumParticleTypes particle, Entity ent, int count)
  99. {
  100. spawnParticle(w, particle, ent.posX, ent.posY, ent.posZ, count);
  101. }
  102. public static void spawnSpell(EntityPlayerMP p, int level)
  103. {
  104. spawnParticle(p.getServerWorld(), EnumParticleTypes.SPELL, p.posX, p.posY + 1, p.posZ, 0.5f, 0.5f, 0.5f, 10 + level);
  105. }
  106. public static void spawnParticleCircle(WorldServer w, double x, double y, double z, EnumParticleTypes particle, double radius, int counter, int... data)
  107. {
  108. double angle = 2 * Math.PI / counter;
  109. for(int i = 0; i < counter; i++)
  110. {
  111. spawnParticle(w, particle, x + Math.cos(i * angle) * radius, y, z + Math.sin(i * angle) * radius, 0, 0, 0, 1, data);
  112. }
  113. }
  114. public static void spawnParticleCircle(WorldServer w, Entity ent, EnumParticleTypes particle, double radius, int counter, int... data)
  115. {
  116. spawnParticleCircle(w, ent.posX, ent.posY, ent.posZ, particle, radius, counter, data);
  117. }
  118. public static void spawnParticleCircle(WorldServer w, double x, double y, double z, EnumParticleTypes particle, double radius, int counter)
  119. {
  120. spawnParticleCircle(w, x, y, z, particle, radius, counter, new int[0]);
  121. }
  122. public static void spawnParticleCircle(WorldServer w, Entity ent, EnumParticleTypes particle, double radius, int counter)
  123. {
  124. spawnParticleCircle(w, ent.posX, ent.posY, ent.posZ, particle, radius, counter, new int[0]);
  125. }
  126. // -----------------------------------------------------------------------------------
  127. // Sounds
  128. // -----------------------------------------------------------------------------------
  129. public static void playSound(World w, SoundEvent se, SoundCategory sc, double x, double y, double z)
  130. {
  131. w.playSound(null, x, y, z, se, sc, 1, w.rand.nextFloat() * 0.1f + 0.9f);
  132. }
  133. public static void playSound(EntityPlayer p, SoundEvent se, SoundCategory sc)
  134. {
  135. playSound(p.world, se, sc, p.posX, p.posY, p.posZ);
  136. }
  137. public static void playSound(EntityPlayer p, SoundEvent se)
  138. {
  139. playSound(p.world, se, SoundCategory.PLAYERS, p.posX, p.posY, p.posZ);
  140. }
  141. // -----------------------------------------------------------------------------------
  142. // Potions
  143. // -----------------------------------------------------------------------------------
  144. public static void addPotionTo(EntityLivingBase ent, Potion potion, int duration, int amplifier)
  145. {
  146. if(ent.isPotionActive(potion))
  147. {
  148. ent.removePotionEffect(potion);
  149. }
  150. ent.addPotionEffect(new PotionEffect(potion, duration, amplifier));
  151. }
  152. // -----------------------------------------------------------------------------------
  153. // Projectiles
  154. // -----------------------------------------------------------------------------------
  155. public static <T> T launchProjectile(EntityPlayer p, Class<? extends T> projectile, double scale, Object data)
  156. {
  157. World w = p.world;
  158. Entity launch = null;
  159. if(EntityItemProjectile.class == projectile)
  160. {
  161. if(data == null)
  162. {
  163. throw new NullPointerException("Data musn't be null for EntityItemProjectile");
  164. }
  165. ItemStack stack = (ItemStack) data;
  166. if(stack.isEmpty())
  167. {
  168. throw new IllegalArgumentException("Empty ItemStack not allowed here");
  169. }
  170. launch = new EntityItemProjectile(p, stack.copy());
  171. ((EntityItemProjectile) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, 0.0f, 1.5f, 1.0f);
  172. }
  173. else if(EntitySnowball.class == projectile)
  174. {
  175. launch = new EntitySnowball(w, p);
  176. ((EntitySnowball) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, 0.0f, 1.5f, 1.0f);
  177. }
  178. else if(EntityEgg.class == projectile)
  179. {
  180. launch = new EntityEgg(w, p);
  181. ((EntityEgg) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, 0.0f, 1.5f, 1.0f);
  182. }
  183. else if(EntityEnderPearl.class == projectile)
  184. {
  185. launch = new EntityEnderPearl(w, p);
  186. ((EntityEnderPearl) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, 0.0f, 1.5f, 1.0f);
  187. }
  188. else if(EntityPotion.class == projectile)
  189. {
  190. launch = new EntityPotion(w, p, (ItemStack) data);
  191. ((EntityPotion) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, -20.0f, 0.5f, 1.0f);
  192. }
  193. else if(EntityExpBottle.class == projectile)
  194. {
  195. launch = new EntityExpBottle(w, p);
  196. ((EntityExpBottle) launch).setHeadingFromThrower(p, p.rotationPitch, p.rotationYaw, -20.0f, 0.7f, 1.0f);
  197. }
  198. else if(EntityArrow.class.isAssignableFrom(projectile))
  199. {
  200. if(EntityTippedArrow.class == projectile)
  201. {
  202. launch = new EntityTippedArrow(w, p);
  203. ((EntityTippedArrow) launch).setPotionEffect((ItemStack) data);
  204. }
  205. else if(EntitySpectralArrow.class == projectile)
  206. {
  207. launch = new EntitySpectralArrow(w, p);
  208. }
  209. else
  210. {
  211. launch = new EntityTippedArrow(w, p);
  212. }
  213. ((EntityArrow) launch).setAim(p, p.rotationPitch, p.rotationYaw, 0.0F, 3.0F, 1.0F);
  214. }
  215. else if(EntityFireball.class.isAssignableFrom(projectile))
  216. {
  217. Vec3d v = p.getLookVec().scale(10);
  218. if (EntitySmallFireball.class == projectile)
  219. {
  220. launch = new EntitySmallFireball(w, p, v.x, v.y, v.z);
  221. }
  222. else if (EntityWitherSkull.class == projectile)
  223. {
  224. launch = new EntityWitherSkull(w, p, v.x, v.y, v.z);
  225. }
  226. else if (EntityDragonFireball.class == projectile)
  227. {
  228. launch = new EntityDragonFireball(w, p, v.x, v.y, v.z);
  229. }
  230. else
  231. {
  232. launch = new EntityLargeFireball(w, p, v.x, v.y, v.z);
  233. }
  234. }
  235. Utils.scaleVelocity(launch, scale);
  236. w.spawnEntity(launch);
  237. return (T) launch;
  238. }
  239. public static EntityTippedArrow launchTippedArrow(EntityPlayer p, double scale, Potion potion, int duration, int amplifier)
  240. {
  241. ItemStack stack = new ItemStack(Items.TIPPED_ARROW);
  242. PotionUtils.addPotionToItemStack(stack, new PotionType(new PotionEffect(potion, duration, amplifier)));
  243. EntityTippedArrow arrow = launchProjectile(p, EntityTippedArrow.class, scale, stack);
  244. return arrow;
  245. }
  246. public static void jumpTo(EntityLivingBase j, EntityLivingBase g)
  247. {
  248. Utils.setVelocity(j, (g.posX - g.posX) * 0.2, (g.posY - g.posY) * 0.2 + 0.9, (g.posZ - g.posZ) * 0.2);
  249. KajetansMod.scheduler.scheduleTask(() ->
  250. {
  251. Utils.setVelocity(j, (g.posX - j.posX) * 0.2, (g.posY - j.posY) * 0.2, (g.posZ - j.posZ) * 0.2);
  252. }, 12);
  253. }
  254. }