/EssentialsSigns/src/net/ess3/signs/SignBlockListener.java

https://github.com/mbax/Essentials · Java · 265 lines · 243 code · 21 blank · 1 comment · 74 complexity · 9142b92ad4248dd17830fb4d6507e737 MD5 · raw file

  1. package net.ess3.signs;
  2. import net.ess3.api.IEssentials;
  3. import net.ess3.api.ISettings;
  4. import net.ess3.api.IUser;
  5. import net.ess3.utils.Util;
  6. import java.util.logging.Level;
  7. import java.util.logging.Logger;
  8. import net.ess3.utils.FormatUtil;
  9. import org.bukkit.Material;
  10. import org.bukkit.block.Block;
  11. import org.bukkit.block.Sign;
  12. import org.bukkit.entity.Player;
  13. import org.bukkit.event.EventHandler;
  14. import org.bukkit.event.EventPriority;
  15. import org.bukkit.event.Listener;
  16. import org.bukkit.event.block.*;
  17. public class SignBlockListener implements Listener
  18. {
  19. private final transient IEssentials ess;
  20. private final transient ISignsPlugin plugin;
  21. private final static Logger LOGGER = Logger.getLogger("Minecraft");
  22. private final static int WALL_SIGN = Material.WALL_SIGN.getId();
  23. private final static int SIGN_POST = Material.SIGN_POST.getId();
  24. public SignBlockListener(final IEssentials ess, final ISignsPlugin plugin)
  25. {
  26. this.ess = ess;
  27. this.plugin = plugin;
  28. }
  29. @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
  30. public void onBlockBreak(final BlockBreakEvent event)
  31. {
  32. ISettings settings = ess.getSettings();
  33. settings.acquireReadLock();
  34. if (plugin.getSettings().areSignsDisabled())
  35. {
  36. return;
  37. }
  38. if (protectSignsAndBlocks(event.getBlock(), event.getPlayer()))
  39. {
  40. event.setCancelled(true);
  41. }
  42. }
  43. public boolean protectSignsAndBlocks(final Block block, final Player player)
  44. {
  45. final int mat = block.getTypeId();
  46. if (mat == SIGN_POST || mat == WALL_SIGN)
  47. {
  48. final Sign csign = (Sign)block.getState();
  49. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  50. {
  51. if (csign.getLine(0).equalsIgnoreCase(sign.getSuccessName())
  52. && !sign.onSignBreak(block, player, ess))
  53. {
  54. return true;
  55. }
  56. }
  57. }
  58. // prevent any signs be broken by destroying the block they are attached to
  59. if (EssentialsSign.checkIfBlockBreaksSigns(block))
  60. {
  61. LOGGER.log(Level.INFO, "Prevented that a block was broken next to a sign.");
  62. return true;
  63. }
  64. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  65. {
  66. if (sign.getBlocks().contains(block.getType())
  67. && !sign.onBlockBreak(block, player, ess))
  68. {
  69. LOGGER.log(Level.INFO, "A block was protected by a sign.");
  70. return true;
  71. }
  72. }
  73. return false;
  74. }
  75. @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
  76. public void onSignChange(final SignChangeEvent event)
  77. {
  78. if (plugin.getSettings().areSignsDisabled())
  79. {
  80. return;
  81. }
  82. IUser user = ess.getUserMap().getUser(event.getPlayer());
  83. for (int i = 0; i < 4; i++)
  84. {
  85. event.setLine(i, FormatUtil.formatString(user, "essentials.signs", event.getLine(i)));
  86. }
  87. for (Signs signs : Signs.values())
  88. {
  89. final EssentialsSign sign = signs.getSign();
  90. if (event.getLine(0).equalsIgnoreCase(sign.getSuccessName()))
  91. {
  92. event.setCancelled(true);
  93. return;
  94. }
  95. if (event.getLine(0).equalsIgnoreCase(sign.getTemplateName())
  96. && !sign.onSignCreate(event, ess))
  97. {
  98. event.setCancelled(true);
  99. return;
  100. }
  101. }
  102. }
  103. @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
  104. public void onBlockPlace(final BlockPlaceEvent event)
  105. {
  106. if (plugin.getSettings().areSignsDisabled())
  107. {
  108. return;
  109. }
  110. final Block against = event.getBlockAgainst();
  111. if ((against.getTypeId() == WALL_SIGN
  112. || against.getTypeId() == SIGN_POST)
  113. && EssentialsSign.isValidSign(new EssentialsSign.BlockSign(against)))
  114. {
  115. event.setCancelled(true);
  116. return;
  117. }
  118. final Block block = event.getBlock();
  119. if (block.getTypeId() == WALL_SIGN
  120. || block.getTypeId() == SIGN_POST)
  121. {
  122. return;
  123. }
  124. for (Signs signs : Signs.values())
  125. {
  126. final EssentialsSign sign = signs.getSign();
  127. if (sign.getBlocks().contains(block.getType())
  128. && !sign.onBlockPlace(block, event.getPlayer(), ess))
  129. {
  130. event.setCancelled(true);
  131. return;
  132. }
  133. }
  134. }
  135. @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
  136. public void onBlockBurn(final BlockBurnEvent event)
  137. {
  138. if (plugin.getSettings().areSignsDisabled())
  139. {
  140. return;
  141. }
  142. final Block block = event.getBlock();
  143. if (((block.getTypeId() == WALL_SIGN
  144. || block.getTypeId() == SIGN_POST)
  145. && EssentialsSign.isValidSign(new EssentialsSign.BlockSign(block)))
  146. || EssentialsSign.checkIfBlockBreaksSigns(block))
  147. {
  148. event.setCancelled(true);
  149. return;
  150. }
  151. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  152. {
  153. if (sign.getBlocks().contains(block.getType())
  154. && !sign.onBlockBurn(block, ess))
  155. {
  156. event.setCancelled(true);
  157. return;
  158. }
  159. }
  160. }
  161. @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
  162. public void onBlockIgnite(final BlockIgniteEvent event)
  163. {
  164. if (plugin.getSettings().areSignsDisabled())
  165. {
  166. return;
  167. }
  168. final Block block = event.getBlock();
  169. if (((block.getTypeId() == WALL_SIGN
  170. || block.getTypeId() == SIGN_POST)
  171. && EssentialsSign.isValidSign(new EssentialsSign.BlockSign(block)))
  172. || EssentialsSign.checkIfBlockBreaksSigns(block))
  173. {
  174. event.setCancelled(true);
  175. return;
  176. }
  177. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  178. {
  179. if (sign.getBlocks().contains(block.getType())
  180. && !sign.onBlockIgnite(block, ess))
  181. {
  182. event.setCancelled(true);
  183. return;
  184. }
  185. }
  186. }
  187. @EventHandler(priority = EventPriority.LOW)
  188. public void onBlockPistonExtend(final BlockPistonExtendEvent event)
  189. {
  190. if (plugin.getSettings().areSignsDisabled())
  191. {
  192. return;
  193. }
  194. for (Block block : event.getBlocks())
  195. {
  196. if (((block.getTypeId() == WALL_SIGN
  197. || block.getTypeId() == SIGN_POST)
  198. && EssentialsSign.isValidSign(new EssentialsSign.BlockSign(block)))
  199. || EssentialsSign.checkIfBlockBreaksSigns(block))
  200. {
  201. event.setCancelled(true);
  202. return;
  203. }
  204. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  205. {
  206. if (sign.getBlocks().contains(block.getType())
  207. && !sign.onBlockPush(block, ess))
  208. {
  209. event.setCancelled(true);
  210. return;
  211. }
  212. }
  213. }
  214. }
  215. @EventHandler(priority = EventPriority.LOW)
  216. public void onBlockPistonRetract(final BlockPistonRetractEvent event)
  217. {
  218. if (plugin.getSettings().areSignsDisabled())
  219. {
  220. return;
  221. }
  222. if (event.isSticky())
  223. {
  224. final Block block = event.getBlock();
  225. if (((block.getTypeId() == WALL_SIGN
  226. || block.getTypeId() == SIGN_POST)
  227. && EssentialsSign.isValidSign(new EssentialsSign.BlockSign(block)))
  228. || EssentialsSign.checkIfBlockBreaksSigns(block))
  229. {
  230. event.setCancelled(true);
  231. return;
  232. }
  233. for (EssentialsSign sign : plugin.getSettings().getEnabledSigns())
  234. {
  235. if (sign.getBlocks().contains(block.getType())
  236. && !sign.onBlockPush(block, ess))
  237. {
  238. event.setCancelled(true);
  239. return;
  240. }
  241. }
  242. }
  243. }
  244. }