/src/info/luciddevelopment/leco/MainClass.java
https://bitbucket.org/LucidDevelopment/lucideco · Java · 128 lines · 88 code · 35 blank · 5 comment · 10 complexity · 815fe21d1d1644d53798652839adfb7a MD5 · raw file
- package info.luciddevelopment.leco;
- import java.io.File;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.logging.Logger;
- import info.luciddevelopment.leco.commands.CommandWrapper;
- import info.luciddevelopment.leco.util.ExecutionTimer;
- import org.bukkit.command.Command;
- import org.bukkit.command.CommandSender;
- import org.bukkit.configuration.file.FileConfiguration;
- import org.bukkit.configuration.file.YamlConfiguration;
- import org.bukkit.entity.Player;
- import org.bukkit.plugin.java.JavaPlugin;
- public class MainClass extends JavaPlugin {
- public static final Logger log = Logger.getLogger("Minecraft");
- public static EcoWrapper eco;
-
- public static List<EcoPlayer> onlinePlayers = new ArrayList<EcoPlayer>();
-
- public static int StarterMoney = -1;
- public static boolean allowNegative = false;
- public static File dataFolder;
-
- public void onEnable() {
-
-
-
- ExecutionTimer eTimer = new ExecutionTimer();
- log("Starting up...");
- eTimer.start();
-
- for (Player p : this.getServer().getOnlinePlayers()) {
- if (p.isOp()) {
- p.sendMessage("Some Message");
- }
- }
-
- dataFolder = this.getDataFolder();
-
- if (!this.getConfig().getBoolean("ChangeMeToResetConfig")) {
- this.getConfig().set("ChangeMeToResetConfig", true);
- this.getConfig().set("StarterMoney", 500);
- this.getConfig().set("AllowNegativeBalance", false);
- this.getConfig().set("NotEnoughMoneyString", "You don't have the required funds!");
- }
-
- this.getServer().getPluginManager().registerEvents(new MainListener(this), this);
- eco = new EcoWrapper(this);
-
- this.saveConfig();
-
- StarterMoney = this.getConfig().getInt("StarterMoney");
- allowNegative = this.getConfig().getBoolean("AllowNegativeBalance");
-
-
-
- for (Player p : this.getServer().getOnlinePlayers()) {
- handleLogin(p);
- }
-
- eTimer.stop();
- log("Done, took "+eTimer.getTime()+"ms");
-
-
-
- }
-
- public void onDisable() {
- log("Shutting down");
- }
-
- public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
- return (CommandWrapper.Process(sender, command, label, args));
- }
-
-
-
-
-
- public static void logNoPrefix(String message) {
- log.info(message);
- }
- public static void log(String message) {
- log.info("[Lucid Economy] " + message);
- }
-
- public static void handleLogin(Player p) {
- EcoPlayer player = getEcoPlayer(p);
- if (onlinePlayers.contains(player)) {
- } else {
- onlinePlayers.add(player);
- }
- }
-
- public static void handleLogout(Player p) {
- EcoPlayer player = getEcoPlayer(p);
- if (onlinePlayers.contains(player)) {
- player.save();
- onlinePlayers.remove(player);
- } else {
- }
- }
-
- public static EcoPlayer getEcoPlayer(Player p) {
- return new EcoPlayer(p.getName());
- }
-
- /**
- *
- * @param name The name to search for (<b>not</b> case-sensitive)
- * @return Null if not exist, an EcoPlayer if it does.
- */
- public static EcoPlayer getEcoPlayer(String name) {
- File file = new File(MainClass.dataFolder, "players"+File.separator+name+".yml");
- if (file.exists()) {
- FileConfiguration file1 = YamlConfiguration.loadConfiguration(file);
- if (file1.getString("Username").equalsIgnoreCase(name)) {
- return new EcoPlayer(name);
- }
- }
- return null;
- }
-
- }