/src/CraftBookDelegateListener.java

https://github.com/yofreke/craftbook · Java · 114 lines · 28 code · 13 blank · 73 comment · 0 complexity · 7e0009f9000768be53f8ecac8748c18a MD5 · raw file

  1. // $Id$
  2. /*
  3. * CraftBook
  4. * Copyright (C) 2010 sk89q <http://www.sk89q.com>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. import java.util.logging.Logger;
  20. import com.sk89q.craftbook.InsufficientArgumentsException;
  21. import com.sk89q.craftbook.Vector;
  22. /**
  23. * Proxy plugin listener called by CraftBook. It has additional hooks
  24. * that are called by the main CraftBook listener, namely the Redstone
  25. * input hook.
  26. *
  27. * @author sk89q
  28. */
  29. public abstract class CraftBookDelegateListener extends PluginListener {
  30. /**
  31. * Logger instance.
  32. */
  33. protected static final Logger logger = Logger.getLogger("Minecraft.CraftBook");
  34. /**
  35. * CraftBook.
  36. */
  37. protected CraftBook craftBook;
  38. /**
  39. * Reference to the parent listener.
  40. */
  41. protected CraftBookListener listener;
  42. /**
  43. * Properties file for CraftBook.
  44. */
  45. protected PropertiesFile properties;
  46. /**
  47. * Construct the object.
  48. *
  49. * @param craftBook
  50. * @param listener
  51. */
  52. public CraftBookDelegateListener(
  53. CraftBook craftBook,
  54. CraftBookListener listener) {
  55. this.craftBook = craftBook;
  56. this.listener = listener;
  57. this.properties = listener.getProperties();
  58. }
  59. /**
  60. * Reads the configuration from the properties file.
  61. */
  62. public abstract void loadConfiguration();
  63. /**
  64. * Get a block bag.
  65. *
  66. * @param origin
  67. * @return
  68. */
  69. protected BlockBag getBlockBag(Vector origin) {
  70. return listener.getBlockBag(origin);
  71. }
  72. /**
  73. * Called when a block has been given directed Redstone input. "Directed"
  74. * applies in the context of wires -- if a wire merely passes by a block,
  75. * it is not considered directed.
  76. *
  77. * @param pt
  78. * @param isOn
  79. * @param changed
  80. */
  81. public void onDirectWireInput(Vector pt, boolean isOn, Vector changed) {
  82. }
  83. /**
  84. * Called on a command that will be checked.
  85. *
  86. * @param player
  87. * @param split
  88. * @return
  89. * @throws InsufficientArgumentsException
  90. * @throws LocalWorldEditBridgeException
  91. */
  92. public boolean onCheckedCommand(Player player, String[] split)
  93. throws InsufficientArgumentsException, LocalWorldEditBridgeException {
  94. return false;
  95. }
  96. /**
  97. * Called on plugin unload.
  98. */
  99. public void disable() {
  100. }
  101. }