/src/BlockThread.java

https://github.com/Theino/Towny-Obsidian · Java · 101 lines · 67 code · 20 blank · 14 comment · 11 complexity · 4fcbc3227f7959f06e7d9683bdd74d7c MD5 · raw file

  1. import java.util.*;
  2. import java.util.logging.Logger;
  3. public class BlockThread extends Thread {
  4. protected static final Logger log = Logger.getLogger("Minecraft");
  5. private BlockQueue blockQueue;
  6. public static final Object NO_MORE_WORK = new Object();
  7. public static final Object END_JOB = new Object();
  8. private boolean running;
  9. private Job currentJob;
  10. private int blocks, skipped;
  11. public BlockThread(BlockQueue blockQueue) {
  12. this.blockQueue = blockQueue;
  13. setRunning(true);
  14. }
  15. public synchronized void setRunning(boolean running) {
  16. this.running = running;
  17. }
  18. public void run() {
  19. blocks = 0;
  20. skipped = 0;
  21. try {
  22. while (running) {
  23. Object obj = blockQueue.getWork();
  24. if (obj == NO_MORE_WORK)
  25. break;
  26. if (obj == END_JOB)
  27. currentJob.done(blocks, skipped);
  28. if (obj instanceof Block) {
  29. try { buildBlock((Block)obj); } catch (Exception e) { skipped++; };
  30. blocks++;
  31. }
  32. if (obj instanceof Job) {
  33. currentJob = (Job)obj;
  34. blocks = 0;
  35. skipped = 0;
  36. }
  37. }
  38. } catch (InterruptedException e) { };
  39. log.info("[Blocker] BlockQueue Thread stoped.");
  40. blockQueue = null;
  41. }
  42. public void buildBlock(Block block) {
  43. try { sleep(25); } catch (InterruptedException e) {}
  44. if (block.getType() == etc.getServer().getBlockIdAt(block.getX(), block.getY(), block.getZ()))
  45. return;
  46. boolean result = etc.getServer().setBlock(block);
  47. /*
  48. int tries = 0;
  49. while (tries < 3) {
  50. try { sleep(50); } catch (InterruptedException e) { break; }
  51. if (block.getType() == etc.getServer().getBlockIdAt(block.getX(), block.getY(), block.getZ()))
  52. break;
  53. tries++;
  54. try { sleep(50); } catch (InterruptedException e) { break; }
  55. }
  56. if (tries == 3)
  57. skipped++;
  58. */
  59. }
  60. }
  61. class Job {
  62. String boss;
  63. boolean notify;
  64. public Job(String boss) {
  65. this(boss, true);
  66. }
  67. public Job(String boss, boolean notify) {
  68. this.boss = boss;
  69. this.notify = notify;
  70. }
  71. public void done(int blocks, int skipped) {
  72. if (notify) {
  73. Player player = etc.getServer().matchPlayer(boss);
  74. player.sendMessage("Generated: "+blocks+" Blocks");
  75. if (skipped > 0)
  76. player.sendMessage("Skipped: "+blocks+" Blocks");
  77. }
  78. }
  79. }