/src/com/nanomediasystems/speeddemon92/NoOPs/NoOPs.java

https://bitbucket.org/Skriglitz/no-ops · Java · 161 lines · 113 code · 35 blank · 13 comment · 12 complexity · 4fdb53be3170928b6e1a08a4136d7236 MD5 · raw file

  1. package com.nanomediasystems.speeddemon92.NoOPs;
  2. import java.io.File;
  3. import java.io.FileOutputStream;
  4. import java.io.InputStream;
  5. import java.util.HashMap;
  6. import java.util.logging.Logger;
  7. import org.bukkit.Server;
  8. import org.bukkit.entity.Player;
  9. import org.bukkit.event.Event;
  10. import org.bukkit.plugin.PluginManager;
  11. import org.bukkit.plugin.java.JavaPlugin;
  12. import org.bukkit.util.config.Configuration;
  13. public class NoOPs extends JavaPlugin
  14. {
  15. /*
  16. * Final Variables
  17. */
  18. public final NOPPlayerListener PListen = new NOPPlayerListener();
  19. private final HashMap<Player, Boolean> debugees = new HashMap<Player, Boolean>();
  20. public static final Logger log = Logger.getLogger("Minecraft");
  21. /*
  22. * Version Information
  23. */
  24. public static String name = "NoOPs";
  25. public static String codename = "DevilEye";
  26. public static String version = "v1.0";
  27. /*
  28. * Working Folders and Files
  29. */
  30. public static String baseDir = "plugins" + File.separator;
  31. public static String mainDir = baseDir + "NoOPs" + File.separator;
  32. public static String NOPconfig = mainDir + "config.yml";
  33. /*
  34. * Static Variables
  35. */
  36. public static Server curServer = null;
  37. public static Settings ymlConfig = new Settings(new Configuration(new File(NOPconfig)));
  38. public void onDisable()
  39. {
  40. log.info("[NoOPs] version " + version + " (" + codename + ") successfully disabled and unloaded" );
  41. }
  42. public void onEnable()
  43. {
  44. baseSetup();
  45. registerEvents();
  46. log.info( "[NoOPs] version " + version + " (" + codename + ") successfully enabled and loaded" );
  47. }
  48. private void baseSetup()
  49. {
  50. curServer = getServer();
  51. // Check if the main directory ("WolfNames/") exists and if not create it
  52. if ( !(new File(mainDir).exists() ) )
  53. {
  54. new File(mainDir).mkdir();
  55. }
  56. if ( !(new File(NOPconfig).exists() ) )
  57. {
  58. extractConfigFile("config.yml",NOPconfig);
  59. }
  60. Settings.load();
  61. }
  62. private void registerEvents()
  63. {
  64. PluginManager pm = getServer().getPluginManager();
  65. pm.registerEvent(Event.Type.PLAYER_LOGIN, PListen, Event.Priority.Normal,this);
  66. }
  67. public void extractConfigFile(String name,String config) {
  68. File actual = new File(config);
  69. if (!actual.exists())
  70. {
  71. InputStream input = getClass().getResourceAsStream("/default/" + name);
  72. if (input != null)
  73. {
  74. FileOutputStream output = null;
  75. try
  76. {
  77. output = new FileOutputStream(actual);
  78. byte[] buf = new byte[8192];
  79. int length = 0;
  80. while ((length = input.read(buf)) > 0)
  81. {
  82. output.write(buf, 0, length);
  83. }
  84. log.info("[NoOPs] Config file extracted and written to disk : " + name);
  85. }
  86. catch (Exception e)
  87. {
  88. e.printStackTrace();
  89. }
  90. finally
  91. {
  92. try
  93. {
  94. if (input != null)
  95. {
  96. input.close();
  97. }
  98. }
  99. catch (Exception e)
  100. {
  101. }
  102. try
  103. {
  104. if (output != null)
  105. {
  106. output.close();
  107. }
  108. }
  109. catch (Exception e)
  110. {
  111. }
  112. }
  113. }
  114. }
  115. }
  116. public boolean isDebugging(final Player player) {
  117. if (debugees.containsKey(player)) {
  118. return debugees.get(player);
  119. } else {
  120. return false;
  121. }
  122. }
  123. public void setDebugging(final Player player, final boolean value) {
  124. debugees.put(player, value);
  125. }
  126. }