/src/com/perditio/core/commands/CommandPrognuke.java

https://bitbucket.org/simplyianm/perditio · Java · 117 lines · 81 code · 23 blank · 13 comment · 7 complexity · d2de73d8552461941232f5a3d6898e5d MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.perditio.core.commands;
  6. import com.perditio.client.Perditio;
  7. import com.perditio.client.imperatum.Imperatum;
  8. import com.perditio.client.telum.Telum;
  9. import com.perditio.client.util.ChatColor;
  10. import java.util.logging.Level;
  11. import java.util.logging.Logger;
  12. import net.minecraft.src.Block;
  13. import net.minecraft.src.Packet14BlockDig;
  14. /**
  15. *
  16. * @author simplyianm
  17. */
  18. public class CommandPrognuke extends BaseCommand {
  19. private boolean toggled;
  20. @Override
  21. public String getLabel() {
  22. return "prognuke";
  23. }
  24. @Override
  25. public String getDescription() {
  26. return "Progressively flattens a map.";
  27. }
  28. @Override
  29. public void onImperatum(Imperatum imperatum) {
  30. int xLength = 50;
  31. int zLength = 50;
  32. int yMin = 50;
  33. int yMax = 70;
  34. String[] args = imperatum.getArgs();
  35. if (args.length > 0) {
  36. xLength = Integer.valueOf(args[0]);
  37. zLength = Integer.valueOf(args[0]);
  38. }
  39. toggled = !toggled;
  40. if (toggled) {
  41. Thread prognukeThread = new Thread(new Prognuker(xLength, zLength, yMin, yMax), "TelumPrognuke");
  42. prognukeThread.start();
  43. }
  44. String toggleMessage = toggled ? "enabled" : "disabled";
  45. perditio.getMinecraft().thePlayer.addChatMessage(ChatColor.RED + this.getLabel() + " " + toggleMessage + ".");
  46. }
  47. private class Prognuker implements Runnable {
  48. private int xLength;
  49. private int zLength;
  50. private int yMin;
  51. private int yMax;
  52. public Prognuker(int xLength, int zLength, int yMin, int yMax) {
  53. this.xLength = xLength;
  54. this.zLength = zLength;
  55. this.yMin = yMin;
  56. this.yMax = yMax;
  57. }
  58. /**
  59. * Run
  60. */
  61. @Override
  62. public void run() {
  63. int playerX = (int) perditio.getMinecraft().thePlayer.posX;
  64. int playerZ = (int) perditio.getMinecraft().thePlayer.posZ;
  65. int minX = playerX - (xLength / 2);
  66. int minZ = playerZ - (zLength / 2);
  67. int maxX = playerX + (xLength / 2);
  68. int maxZ = playerZ + (zLength / 2);
  69. for (int curBlockX = minX; curBlockX < maxX; curBlockX++) {
  70. //Column
  71. for (int curBlockY = yMin; curBlockY < yMax; curBlockY++) {
  72. //Row
  73. for (int curBlockZ = minZ; curBlockZ < maxZ; curBlockZ++) {
  74. int theCurBlockID = perditio.getMinecraft().theWorld.getBlockId(curBlockX, curBlockY, curBlockZ);
  75. Block blok = theCurBlockID <= 0 ? null : Block.blocksList[theCurBlockID];
  76. if(blok != null) {//Check if block is valid to send to the instant break queue
  77. perditio.getMinecraft().getSendQueue().addToSendQueue(new Packet14BlockDig(0, curBlockX, curBlockY, curBlockZ, 1));
  78. }
  79. try {
  80. Thread.sleep(1L);
  81. } catch (InterruptedException ex) {
  82. Logger.getLogger(CommandPrognuke.class.getName()).log(Level.SEVERE, null, ex);
  83. }
  84. }
  85. } //End columns
  86. try {
  87. Thread.sleep(1000L);
  88. } catch (InterruptedException ex) {
  89. Logger.getLogger(CommandPrognuke.class.getName()).log(Level.SEVERE, null, ex);
  90. }
  91. }
  92. }
  93. }
  94. }