NmsUtilities.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. package me.km.nms;
  2. import java.util.List;
  3. import me.km.api.Location;
  4. import me.km.exception.IllegalItemStackStringException;
  5. import me.km.exception.IllegalStringException;
  6. import net.minecraft.block.Block;
  7. import net.minecraft.block.state.IBlockState;
  8. import net.minecraft.entity.Entity;
  9. import net.minecraft.entity.EntityLiving;
  10. import net.minecraft.entity.ai.attributes.AttributeModifier;
  11. import net.minecraft.entity.player.EntityPlayerMP;
  12. import net.minecraft.init.Blocks;
  13. import net.minecraft.inventory.EntityEquipmentSlot;
  14. import net.minecraft.inventory.IInventory;
  15. import net.minecraft.item.ItemStack;
  16. import net.minecraft.nbt.JsonToNBT;
  17. import net.minecraft.nbt.NBTException;
  18. import net.minecraft.nbt.NBTTagCompound;
  19. import net.minecraft.network.play.server.SPacketChat;
  20. import net.minecraft.tileentity.TileEntity;
  21. import net.minecraft.util.math.BlockPos;
  22. import net.minecraft.util.math.Vec3d;
  23. import net.minecraft.util.text.TextComponentString;
  24. import net.minecraft.world.World;
  25. import net.minecraft.world.chunk.storage.AnvilChunkLoader;
  26. public class NmsUtilities
  27. {
  28. // -----------------------------------------------------------------------------------
  29. // Entity Tools
  30. // -----------------------------------------------------------------------------------
  31. public static List<Entity> getCollidingEntities(Entity e, double x, double y, double z)
  32. {
  33. return e.getEntityWorld().getEntitiesWithinAABBExcludingEntity(e, e.getCollisionBoundingBox().expand(x, y, z));
  34. }
  35. public static List<Entity> getCollidingEntities(Entity e)
  36. {
  37. return getCollidingEntities(e, 0, 0, 0);
  38. }
  39. /*public static void walkTo(org.bukkit.entity.Entity e, org.bukkit.Location l, double speed, double radius)
  40. {
  41. EntityCreature el = ((CraftCreature) e).getHandle();
  42. el.goalSelector.a(1, new PathfinderGoalWalkToLocation(el, l, speed, radius));
  43. }
  44. public static void canDestroyBlocks(org.bukkit.entity.LivingEntity e)
  45. {
  46. EntityCreature el = ((CraftCreature) e).getHandle();
  47. el.goalSelector.a(1, new PathfinderGoalDestroyBlock(el));
  48. }*/
  49. public static String getNbtString(Entity ent)
  50. {
  51. NBTTagCompound tag = new NBTTagCompound();
  52. ent.writeToNBTAtomically(tag);
  53. return tag.toString();
  54. }
  55. public static Entity getEntityFromNbtString(String s, Location l)
  56. {
  57. try
  58. {
  59. NBTTagCompound nbt = JsonToNBT.getTagFromJson(s);
  60. Vec3d v = l.getPos();
  61. Entity ent = AnvilChunkLoader.readWorldEntityPos(nbt, l.getWorld(), v.xCoord, v.yCoord, v.zCoord, true);
  62. if(ent == null)
  63. {
  64. return null;
  65. }
  66. else
  67. {
  68. ent.setLocationAndAngles(v.xCoord, v.yCoord, v.zCoord, ent.rotationYaw, ent.rotationPitch);
  69. if(ent instanceof EntityLiving)
  70. {
  71. ((EntityLiving) ent).onInitialSpawn(ent.getEntityWorld().getDifficultyForLocation(new BlockPos(ent)), null);
  72. }
  73. }
  74. return ent;
  75. }
  76. catch(NBTException ex)
  77. {
  78. throw new IllegalStringException(s);
  79. }
  80. }
  81. // -------------------------------------------------------------------------
  82. // Block Tools
  83. // -------------------------------------------------------------------------
  84. @SuppressWarnings(value = {"unchecked", "deprecation"})
  85. public static void setBlockWithData(World w, BlockPos pos, int dv, Block block, String data)
  86. {
  87. NBTTagCompound nbttagcompound = new NBTTagCompound();
  88. boolean flag = false;
  89. if (data != null && block.hasTileEntity())
  90. {
  91. try
  92. {
  93. nbttagcompound = JsonToNBT.getTagFromJson(data);
  94. flag = true;
  95. }
  96. catch(NBTException ex)
  97. {
  98. throw new IllegalStringException(data);
  99. }
  100. }
  101. TileEntity tileentity = w.getTileEntity(pos);
  102. if (tileentity != null)
  103. {
  104. if (tileentity instanceof IInventory)
  105. {
  106. ((IInventory) tileentity).clear();
  107. }
  108. w.setBlockState(pos, Blocks.AIR.getDefaultState(), block == Blocks.AIR ? 2 : 4);
  109. }
  110. IBlockState iblockdata = block.getStateFromMeta(dv);
  111. if(w.setBlockState(pos, iblockdata, 2))
  112. {
  113. if (flag)
  114. {
  115. TileEntity tileentity1 = w.getTileEntity(pos);
  116. if (tileentity1 != null)
  117. {
  118. nbttagcompound.setInteger("x", pos.getX());
  119. nbttagcompound.setInteger("y", pos.getY());
  120. nbttagcompound.setInteger("z", pos.getZ());
  121. tileentity1.readFromNBT(nbttagcompound);
  122. }
  123. }
  124. w.notifyNeighborsRespectDebug(pos, iblockdata.getBlock(), false);
  125. }
  126. }
  127. // -------------------------------------------------------------------------
  128. // ItemStack Tools
  129. // -------------------------------------------------------------------------
  130. public enum Attribute
  131. {
  132. /**
  133. * Wert von 0 bis 30;
  134. */
  135. ARMOR("generic.armor"),
  136. /**
  137. * Wert von 0 bis 20;
  138. */
  139. ARMOR_TOUGHNESS("generic.armorToughness"),
  140. /**
  141. * Wert von 0 bis 1.7E308;
  142. */
  143. ATTACK_DAMAGE("generic.attackDamage"),
  144. /**
  145. * Wert von 0 bis 1;
  146. */
  147. KNOCKBACK_RESISTANCE("generic.knockbackResistance"),
  148. /**
  149. * Wert von 0 bis 1.7E308;
  150. */
  151. MAX_HEALTH("generic.maxHealth"),
  152. /**
  153. * Wert von 0 bis 1.7E308;
  154. */
  155. MOVEMENT_SPEED("generic.movementSpeed"),
  156. /**
  157. * Wert von 0 bis 1024;
  158. */
  159. ATTACK_SPEED("generic.attackSpeed"),
  160. /**
  161. * Wert von -1024 bis 1024;
  162. */
  163. LUCK("generic.luck");
  164. private final String name;
  165. Attribute(String name)
  166. {
  167. this.name = name;
  168. }
  169. public String getName()
  170. {
  171. return name;
  172. }
  173. }
  174. public enum Operation
  175. {
  176. ADD, MUL, MUL_CHANGED
  177. }
  178. public static void addAttribute(ItemStack stack, Attribute a, EntityEquipmentSlot slot, double amount, Operation op)
  179. {
  180. stack.addAttributeModifier(a.getName(), new AttributeModifier("modifier", amount, op.ordinal()), slot);
  181. }
  182. public static String getNbtString(ItemStack stack)
  183. {
  184. if(stack == null)
  185. {
  186. return "null";
  187. }
  188. return stack.writeToNBT(new NBTTagCompound()).toString();
  189. }
  190. public static ItemStack getStackFromNbtString(String s) throws IllegalItemStackStringException
  191. {
  192. try
  193. {
  194. NBTTagCompound c = JsonToNBT.getTagFromJson(s);
  195. return new ItemStack(c);
  196. }
  197. catch(NBTException ex)
  198. {
  199. throw new IllegalItemStackStringException(s);
  200. }
  201. }
  202. // -------------------------------------------------------------------------
  203. // NBT Tools
  204. // -------------------------------------------------------------------------
  205. public static String highlightNbtSyntax(String text)
  206. {
  207. StringBuilder sb = new StringBuilder(text);
  208. int counter = 0;
  209. for(char c : text.toCharArray())
  210. {
  211. switch(c)
  212. {
  213. case '}':
  214. sb.replace(counter, counter + 1, "§c} §r");
  215. counter += 6;
  216. continue;
  217. case '{':
  218. sb.replace(counter, counter + 1, "§c{§r");
  219. counter += 5;
  220. continue;
  221. case ']':
  222. sb.replace(counter, counter + 1, "§c] §r");
  223. counter += 6;
  224. continue;
  225. case '[':
  226. sb.replace(counter, counter + 1, "§c[§r");
  227. counter += 5;
  228. continue;
  229. case ',':
  230. sb.replace(counter, counter + 1, "§6, §r");
  231. counter += 6;
  232. continue;
  233. case '"':
  234. sb.replace(counter, counter + 1, "§a\"");
  235. counter += 3;
  236. continue;
  237. case ':':
  238. sb.replace(counter, counter + 1, "§8:");
  239. counter += 3;
  240. continue;
  241. case '0':
  242. sb.replace(counter, counter + 1, "§50");
  243. counter += 3;
  244. continue;
  245. case '1':
  246. sb.replace(counter, counter + 1, "§51");
  247. counter += 3;
  248. continue;
  249. case '2':
  250. sb.replace(counter, counter + 1, "§52");
  251. counter += 3;
  252. continue;
  253. case '3':
  254. sb.replace(counter, counter + 1, "§53");
  255. counter += 3;
  256. continue;
  257. case '4':
  258. sb.replace(counter, counter + 1, "§54");
  259. counter += 3;
  260. continue;
  261. case '5':
  262. sb.replace(counter, counter + 1, "§55");
  263. counter += 3;
  264. continue;
  265. case '6':
  266. sb.replace(counter, counter + 1, "§56");
  267. counter += 3;
  268. continue;
  269. case '7':
  270. sb.replace(counter, counter + 1, "§57");
  271. counter += 3;
  272. continue;
  273. case '8':
  274. sb.replace(counter, counter + 1, "§58");
  275. counter += 3;
  276. continue;
  277. case '9':
  278. sb.replace(counter, counter + 1, "§59");
  279. counter += 3;
  280. continue;
  281. default:
  282. counter++;
  283. }
  284. }
  285. return sb.toString();
  286. }
  287. // -------------------------------------------------------------------------
  288. // Copy Tools
  289. // -------------------------------------------------------------------------
  290. public static void sendCopyableText(EntityPlayerMP p, String s)
  291. {
  292. s = s.replaceAll("\\{", "(");
  293. s = s.replaceAll("\\}", ")");
  294. s = s.replaceAll(" ", "%20");
  295. s = s.replaceAll("\"", "'");
  296. SPacketChat packet = new SPacketChat(new TextComponentString(
  297. "[{\"text\":\"Hier drücken zum Kopieren.\",\"color\":\"red\",\"bold\":\"true\",\"clickEvent\":" +
  298. "{\"action\":\"open_url\",\"value\":\"http://ts.hammerle.me/showtext.php/?text=" + s + "\"}}]"), (byte) 0);
  299. p.connection.sendPacket(packet);
  300. }
  301. // -------------------------------------------------------------------------
  302. // Action-Bar
  303. // -------------------------------------------------------------------------
  304. public static void sendActionBar(EntityPlayerMP p, String message)
  305. {
  306. p.connection.sendPacket(new SPacketChat(new TextComponentString(message), (byte) 2));
  307. }
  308. }