/src/TownyListener.java

https://github.com/Theino/Towny-Obsidian · Java · 173 lines · 137 code · 25 blank · 11 comment · 64 complexity · 3f1b3a6e4d8b71554512641f1d17acf0 MD5 · raw file

  1. import java.util.*;
  2. import java.util.logging.Logger;
  3. public class TownyListener extends PluginListener {
  4. protected static final Logger log = Logger.getLogger("Minecraft");
  5. public TownyThread towny;
  6. public CommandQueue<Object> commandQueue;
  7. private ArrayList<String> commands;
  8. public TownyListener() {
  9. commands = new ArrayList<String>();
  10. commands.add("/resident");commands.add("/player");
  11. commands.add("/town");
  12. commands.add("/nation");
  13. commands.add("/towny");
  14. commands.add("/claim");
  15. commands.add("/ally");
  16. commands.add("/townyadmin");
  17. //Debug Commands
  18. commands.add("/wait");
  19. commands.add("/loc");
  20. }
  21. public void onLogin(Player player) {
  22. towny.onLogin(player);
  23. }
  24. public void onDisconnect(Player player) {
  25. towny.playerZone.remove(player.getName());
  26. // End claim mode for player
  27. if (towny.playerClaim.contains(player.getName())) {
  28. for (int i = 0; i < towny.playerClaim.size(); i++) {
  29. if (towny.playerClaim.get(i) == player.getName()) {
  30. towny.playerClaim.remove(i);
  31. break;
  32. }
  33. }
  34. }
  35. // End claim mode for player
  36. if (towny.playerMap.contains(player.getName())) {
  37. for (int i = 0; i < towny.playerMap.size(); i++) {
  38. if (towny.playerMap.get(i) == player.getName()) {
  39. towny.playerMap.remove(i);
  40. break;
  41. }
  42. }
  43. }
  44. }
  45. public boolean onCommand(Player player, String[] split) {
  46. if (!player.canUseCommand(split[0]))
  47. return false;
  48. if (commands.contains(split[0])) {
  49. Object[] objs = {player, split};
  50. commandQueue.addWork(objs);
  51. return true;
  52. }
  53. return false;
  54. }
  55. public void onPlayerMove(Player player, Location from, Location to) {
  56. Object[] objs = {player, from, to};
  57. commandQueue.addWork(objs);
  58. }
  59. public boolean onDamage(PluginLoader.DamageType type, BaseEntity attacker,BaseEntity defender, int amount){
  60. if (type == PluginLoader.DamageType.ENTITY && attacker.isPlayer() && defender.isPlayer()) {
  61. Player a = attacker.getPlayer();
  62. // Check Town PvP status
  63. long[] posTownBlock = TownyUtil.getTownBlock((long)a.getX(), (long)a.getZ());
  64. String key = posTownBlock[0]+","+posTownBlock[1];
  65. TownBlock townblock = towny.world.townblocks.get(key);
  66. if (townblock == null) return false;
  67. log.info("Has townblock");
  68. if (townblock.town == null) return false;
  69. log.info("Has town");
  70. if (!townblock.town.pvp) return true;
  71. log.info("Has PVP Zone!");
  72. // Check Allies
  73. if (!TownyProperties.friendlyfire) {
  74. Resident residenA = towny.world.residents.get(a.getName());
  75. if (residenA == null) return false;
  76. if (residenA.town == null) return false;
  77. Player b = defender.getPlayer();
  78. Resident residenB = towny.world.residents.get(b.getName());
  79. if (residenB == null) return false;
  80. if (residenB.town == null) return false;
  81. if (residenA.town == residenB.town) return true;
  82. if (residenA.town.nation == null || residenB.town.nation == null) return false;
  83. if (residenA.town.nation == residenB.town.nation) return true;
  84. if (residenA.town.nation.friends.contains(residenB.town.nation)) return true;
  85. }
  86. }
  87. return false;
  88. }
  89. public boolean onBlockPlace(Player player, Block blockPlaced, Block blockClicked, Item itemInHand) {
  90. if (player.canUseCommand("/townyadmin")) // Ignore PlayerZones when admin.
  91. return false;
  92. int zone;
  93. if (towny == null || towny.playerZone == null)
  94. zone = -1;
  95. else
  96. zone = (towny.playerZone.get(player.getName()) == null) ? -1 : towny.playerZone.get(player.getName());
  97. if (zone == -1) {
  98. player.sendMessage(Colors.Rose + "Error: You don't have a playerZone.");
  99. player.sendMessage(Colors.Rose + "Notify admin. Shade (coder) needs to know what");
  100. player.sendMessage(Colors.Rose + "happened. Tell admin what you interactions with");
  101. player.sendMessage(Colors.Rose + "Towny this login. Thank you. -Shade");
  102. return true;
  103. }
  104. // Stop creation if player doesn't belong to town or if he's an enemy
  105. // ToDo: Let enemies place TNT and/or fire.
  106. if (zone == 3 || zone == 2) {
  107. player.sendMessage(Colors.Rose + "The nearby town's barrier prevents you from creation.");
  108. return true;
  109. }
  110. // Stop creation outside towns if configured so.
  111. if (zone == 0 && !TownyProperties.unclaimedZoneBuildRights && !player.canUseCommand("/towny-worldbuilder")) {
  112. player.sendMessage(Colors.Rose + "You should start a town first before building.");
  113. return true;
  114. }
  115. // Otherwise let the block be placed.
  116. return false;
  117. }
  118. public boolean onBlockDestroy(Player player, Block block) {
  119. if (player.canUseCommand("/townyadmin")) // Ignore PlayerZones when admin.
  120. return false;
  121. int zone = (towny.playerZone.get(player.getName()) == null) ? -1 : towny.playerZone.get(player.getName());
  122. if (zone == -1) {
  123. player.sendMessage(Colors.Rose + "Error: You don't have a playerZone.");
  124. player.sendMessage(Colors.Rose + "Notify admin. Shade (coder) needs to know what");
  125. player.sendMessage(Colors.Rose + "happened. Tell admin what you interactions with");
  126. player.sendMessage(Colors.Rose + "Towny this login. Thank you. -Shade");
  127. return true;
  128. }
  129. // Stop destruction only if player doesn't belong to town.
  130. if (zone == 3 || zone == 5) {
  131. if (block.getStatus() == 3)
  132. player.sendMessage(Colors.Rose + "The nearby town's barrier prevents you from destruction.");
  133. return true;
  134. }
  135. // Otherwise, destroy it.
  136. return false;
  137. }
  138. public void onArmSwing(Player player) {
  139. if (towny.playerClaim.contains(player.getName())) {
  140. towny.claimSingleTownBlock(player);
  141. }
  142. }
  143. public boolean onTeleport(Player player, Location from, Location to) {
  144. Object[] objs = {player, from, to};
  145. commandQueue.addWork(objs);
  146. return false;
  147. }
  148. }