/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

  1. package info.luciddevelopment.leco;
  2. import java.io.File;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.logging.Logger;
  6. import info.luciddevelopment.leco.commands.CommandWrapper;
  7. import info.luciddevelopment.leco.util.ExecutionTimer;
  8. import org.bukkit.command.Command;
  9. import org.bukkit.command.CommandSender;
  10. import org.bukkit.configuration.file.FileConfiguration;
  11. import org.bukkit.configuration.file.YamlConfiguration;
  12. import org.bukkit.entity.Player;
  13. import org.bukkit.plugin.java.JavaPlugin;
  14. public class MainClass extends JavaPlugin {
  15. public static final Logger log = Logger.getLogger("Minecraft");
  16. public static EcoWrapper eco;
  17. public static List<EcoPlayer> onlinePlayers = new ArrayList<EcoPlayer>();
  18. public static int StarterMoney = -1;
  19. public static boolean allowNegative = false;
  20. public static File dataFolder;
  21. public void onEnable() {
  22. ExecutionTimer eTimer = new ExecutionTimer();
  23. log("Starting up...");
  24. eTimer.start();
  25. for (Player p : this.getServer().getOnlinePlayers()) {
  26. if (p.isOp()) {
  27. p.sendMessage("Some Message");
  28. }
  29. }
  30. dataFolder = this.getDataFolder();
  31. if (!this.getConfig().getBoolean("ChangeMeToResetConfig")) {
  32. this.getConfig().set("ChangeMeToResetConfig", true);
  33. this.getConfig().set("StarterMoney", 500);
  34. this.getConfig().set("AllowNegativeBalance", false);
  35. this.getConfig().set("NotEnoughMoneyString", "You don't have the required funds!");
  36. }
  37. this.getServer().getPluginManager().registerEvents(new MainListener(this), this);
  38. eco = new EcoWrapper(this);
  39. this.saveConfig();
  40. StarterMoney = this.getConfig().getInt("StarterMoney");
  41. allowNegative = this.getConfig().getBoolean("AllowNegativeBalance");
  42. for (Player p : this.getServer().getOnlinePlayers()) {
  43. handleLogin(p);
  44. }
  45. eTimer.stop();
  46. log("Done, took "+eTimer.getTime()+"ms");
  47. }
  48. public void onDisable() {
  49. log("Shutting down");
  50. }
  51. public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
  52. return (CommandWrapper.Process(sender, command, label, args));
  53. }
  54. public static void logNoPrefix(String message) {
  55. log.info(message);
  56. }
  57. public static void log(String message) {
  58. log.info("[Lucid Economy] " + message);
  59. }
  60. public static void handleLogin(Player p) {
  61. EcoPlayer player = getEcoPlayer(p);
  62. if (onlinePlayers.contains(player)) {
  63. } else {
  64. onlinePlayers.add(player);
  65. }
  66. }
  67. public static void handleLogout(Player p) {
  68. EcoPlayer player = getEcoPlayer(p);
  69. if (onlinePlayers.contains(player)) {
  70. player.save();
  71. onlinePlayers.remove(player);
  72. } else {
  73. }
  74. }
  75. public static EcoPlayer getEcoPlayer(Player p) {
  76. return new EcoPlayer(p.getName());
  77. }
  78. /**
  79. *
  80. * @param name The name to search for (<b>not</b> case-sensitive)
  81. * @return Null if not exist, an EcoPlayer if it does.
  82. */
  83. public static EcoPlayer getEcoPlayer(String name) {
  84. File file = new File(MainClass.dataFolder, "players"+File.separator+name+".yml");
  85. if (file.exists()) {
  86. FileConfiguration file1 = YamlConfiguration.loadConfiguration(file);
  87. if (file1.getString("Username").equalsIgnoreCase(name)) {
  88. return new EcoPlayer(name);
  89. }
  90. }
  91. return null;
  92. }
  93. }