/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
- package com.nanomediasystems.speeddemon92.NoOPs;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.io.InputStream;
- import java.util.HashMap;
- import java.util.logging.Logger;
- import org.bukkit.Server;
- import org.bukkit.entity.Player;
- import org.bukkit.event.Event;
- import org.bukkit.plugin.PluginManager;
- import org.bukkit.plugin.java.JavaPlugin;
- import org.bukkit.util.config.Configuration;
- public class NoOPs extends JavaPlugin
- {
- /*
- * Final Variables
- */
-
- public final NOPPlayerListener PListen = new NOPPlayerListener();
- private final HashMap<Player, Boolean> debugees = new HashMap<Player, Boolean>();
- public static final Logger log = Logger.getLogger("Minecraft");
-
- /*
- * Version Information
- */
- public static String name = "NoOPs";
- public static String codename = "DevilEye";
- public static String version = "v1.0";
- /*
- * Working Folders and Files
- */
- public static String baseDir = "plugins" + File.separator;
- public static String mainDir = baseDir + "NoOPs" + File.separator;
- public static String NOPconfig = mainDir + "config.yml";
-
-
-
-
- /*
- * Static Variables
- */
- public static Server curServer = null;
- public static Settings ymlConfig = new Settings(new Configuration(new File(NOPconfig)));
-
-
-
- public void onDisable()
- {
- log.info("[NoOPs] version " + version + " (" + codename + ") successfully disabled and unloaded" );
- }
-
- public void onEnable()
- {
- baseSetup();
- registerEvents();
- log.info( "[NoOPs] version " + version + " (" + codename + ") successfully enabled and loaded" );
- }
-
- private void baseSetup()
- {
- curServer = getServer();
- // Check if the main directory ("WolfNames/") exists and if not create it
- if ( !(new File(mainDir).exists() ) )
- {
- new File(mainDir).mkdir();
- }
- if ( !(new File(NOPconfig).exists() ) )
- {
- extractConfigFile("config.yml",NOPconfig);
- }
-
- Settings.load();
-
- }
-
- private void registerEvents()
- {
- PluginManager pm = getServer().getPluginManager();
-
- pm.registerEvent(Event.Type.PLAYER_LOGIN, PListen, Event.Priority.Normal,this);
-
- }
-
-
-
- public void extractConfigFile(String name,String config) {
- File actual = new File(config);
- if (!actual.exists())
- {
- InputStream input = getClass().getResourceAsStream("/default/" + name);
- if (input != null)
- {
- FileOutputStream output = null;
- try
- {
- output = new FileOutputStream(actual);
- byte[] buf = new byte[8192];
- int length = 0;
- while ((length = input.read(buf)) > 0)
- {
- output.write(buf, 0, length);
- }
- log.info("[NoOPs] Config file extracted and written to disk : " + name);
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- finally
- {
- try
- {
- if (input != null)
- {
- input.close();
- }
- }
- catch (Exception e)
- {
- }
- try
- {
- if (output != null)
- {
- output.close();
- }
- }
- catch (Exception e)
- {
- }
- }
- }
- }
- }
-
- public boolean isDebugging(final Player player) {
- if (debugees.containsKey(player)) {
- return debugees.get(player);
- } else {
- return false;
- }
- }
- public void setDebugging(final Player player, final boolean value) {
- debugees.put(player, value);
- }
- }