/MCDocs/src/com/tazzernator/bukkit/mcdocs/MCDocs.java

https://bitbucket.org/atajsic/bukkit-plugins · Java · 69 lines · 27 code · 14 blank · 28 comment · 0 complexity · bccf670dcacc56b8fb7a69b438fe4f97 MD5 · raw file

  1. /*
  2. * MCDocs by Tazzernator
  3. * (Andrew Tajsic ~ atajsicDesigns ~ http://atajsic.com)
  4. *
  5. * THIS PLUGIN IS LICENSED UNDER THE WTFPL - (Do What The Fuck You Want To Public License)
  6. *
  7. * This program is free software. It comes without any warranty, to
  8. * the extent permitted by applicable law. You can redistribute it
  9. * and/or modify it under the terms of the Do What The Fuck You Want
  10. * To Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. *
  13. * TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  14. *
  15. * 0. You just DO WHAT THE FUCK YOU WANT TO.
  16. *
  17. * */
  18. package com.tazzernator.bukkit.mcdocs;
  19. //Java Import
  20. import java.util.logging.Logger;
  21. //Bukkit Import
  22. import org.bukkit.event.Event.Priority;
  23. import org.bukkit.event.Event;
  24. import org.bukkit.plugin.PluginDescriptionFile;
  25. import org.bukkit.plugin.java.JavaPlugin;
  26. import org.bukkit.plugin.PluginManager;
  27. import org.bukkit.configuration.file.FileConfiguration;
  28. /**
  29. * MCDocs Plugin for Bukkit
  30. *
  31. * @author Tazzernator
  32. *(Andrew Tajsic - atajsicDesigns - http://atajsic.com)
  33. *
  34. */
  35. public class MCDocs extends JavaPlugin {
  36. //Listener, Logger, Config.
  37. private final MCDocsListener playerListener = new MCDocsListener(this);
  38. public static final Logger log = Logger.getLogger("Minecraft");
  39. FileConfiguration config;
  40. public void onDisable() {
  41. PluginDescriptionFile pdfFile = this.getDescription();
  42. log.info("[" + pdfFile.getName() + "] (Tazzernator/Andrew Tajsic) - v" + pdfFile.getVersion() + " shutdown.");
  43. }
  44. public void onEnable() {
  45. config = this.getConfig();
  46. this.playerListener.setupConfig(config);
  47. //Register our events
  48. PluginManager pm = getServer().getPluginManager();
  49. pm.registerEvent(Event.Type.PLAYER_JOIN, this.playerListener, Priority.Normal, this);
  50. pm.registerEvent(Event.Type.PLAYER_COMMAND_PREPROCESS, this.playerListener, Priority.Normal, this);
  51. pm.registerEvent(Event.Type.PLAYER_QUIT, this.playerListener, Priority.Normal, this);
  52. PluginDescriptionFile pdfFile = this.getDescription();
  53. log.info("[" + pdfFile.getName() + "] (Tazzernator/Andrew Tajsic) - v" + pdfFile.getVersion() + " loaded.");
  54. }
  55. }