/src/main/java/com/crimsonrpg/personas/personas/PersonasPlugin.java

https://github.com/simplyianm/Personas · Java · 191 lines · 141 code · 38 blank · 12 comment · 21 complexity · 4b42e5f35236793633f0a83eb0b39ce5 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.crimsonrpg.personas.personas;
  6. import com.crimsonrpg.personas.personasapi.persona.GenericPersona;
  7. import com.crimsonrpg.flaggables.api.Flaggables;
  8. import com.crimsonrpg.personas.personas.flag.FlagNPCCore;
  9. import com.crimsonrpg.personas.personas.flag.FlagNPCName;
  10. import com.crimsonrpg.personas.personas.flag.FlagNPCPersona;
  11. import com.crimsonrpg.personas.personas.listener.PEntityListener;
  12. import com.crimsonrpg.personas.personas.listener.PPlayerListener;
  13. import java.io.File;
  14. import java.io.IOException;
  15. import java.util.List;
  16. import java.util.logging.Level;
  17. import java.util.logging.Logger;
  18. import org.bukkit.command.Command;
  19. import org.bukkit.command.CommandSender;
  20. import org.bukkit.configuration.file.FileConfiguration;
  21. import org.bukkit.configuration.file.YamlConfiguration;
  22. import org.bukkit.entity.LivingEntity;
  23. import org.bukkit.plugin.java.JavaPlugin;
  24. import com.crimsonrpg.personas.personasapi.Personas;
  25. import com.crimsonrpg.personas.personasapi.npc.HumanNPC;
  26. import com.crimsonrpg.personas.personasapi.npc.NPC;
  27. import com.crimsonrpg.personas.personasapi.npc.NPCManager;
  28. import org.bukkit.Bukkit;
  29. import org.bukkit.ChatColor;
  30. import org.bukkit.event.Event;
  31. import org.bukkit.event.Event.Priority;
  32. import org.bukkit.event.player.PlayerListener;
  33. import org.bukkit.plugin.PluginManager;
  34. /**
  35. * The main Persons plugin.
  36. */
  37. public class PersonasPlugin extends JavaPlugin {
  38. public static final Logger LOGGER = Logger.getLogger("Minecraft");
  39. public PersonasPlugin() {
  40. super();
  41. Personas.getInstance().setNPCManager(new SimpleNPCManager());
  42. Personas.getInstance().setPersonaManager(new SimplePersonaManager());
  43. }
  44. public void onDisable() {
  45. save();
  46. LOGGER.info("[Personas] Plugin disabled.");
  47. }
  48. public void onEnable() {
  49. NPCManager npcManager = Personas.getNPCManager();
  50. ((SimpleNPCManager) npcManager).load(this);
  51. Personas.getPersonaManager().registerPersona(new GenericPersona("null"));
  52. Flaggables.getFlagManager().registerFlags(
  53. FlagNPCCore.class,
  54. FlagNPCName.class,
  55. FlagNPCPersona.class);
  56. //Register events
  57. PluginManager pm = Bukkit.getPluginManager();
  58. PlayerListener pl = new PPlayerListener(this);
  59. pm.registerEvent(Event.Type.ENTITY_DAMAGE, new PEntityListener(), Priority.Highest, this);
  60. pm.registerEvent(Event.Type.PLAYER_INTERACT_ENTITY, pl, Priority.Highest, this);
  61. pm.registerEvent(Event.Type.PLAYER_MOVE, pl, Priority.Highest, this);
  62. LOGGER.info("[Personas] Plugin enabled.");
  63. }
  64. @Override
  65. public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
  66. if (args.length < 1) {
  67. sender.sendMessage("This server is sporting " + this.getDescription().getFullName() + " "
  68. + getDescription().getVersion() + " by " + getDescription().getAuthors() + ".");
  69. return true;
  70. }
  71. String function = args[0];
  72. if (function.equals("reload")) {
  73. if (!sender.hasPermission("personas.reload")) {
  74. sender.sendMessage(ChatColor.DARK_RED + "You're not allowed to use this command.");
  75. return false;
  76. }
  77. load();
  78. } else if (function.equals("save")) {
  79. if (!sender.hasPermission("personas.save")) {
  80. sender.sendMessage(ChatColor.DARK_RED + "You're not allowed to use this command.");
  81. return false;
  82. }
  83. save();
  84. }
  85. return true;
  86. }
  87. public void load() {
  88. LOGGER.info("[Personas] Loading NPCs...");
  89. FileConfiguration npcsConfig = getNPCsFile();
  90. if (npcsConfig == null) {
  91. LOGGER.severe("[Personas] The NPC file was unable to be loaded.");
  92. return;
  93. }
  94. Personas.getNPCManager().load(npcsConfig);
  95. for (NPC npc : Personas.getNPCManager().getList()) {
  96. FlagNPCCore flag = npc.getFlag(FlagNPCCore.class);
  97. //Check if the npc is manifested
  98. if (flag.getLocation() == null) {
  99. return;
  100. }
  101. Personas.getNPCManager().spawnNPC(npc, flag.getLocation());
  102. LivingEntity handle = npc.getBukkitHandle();
  103. //Valid health amount
  104. int health = flag.getHealth();
  105. if (health >= 0 && health <= 20) {
  106. handle.setHealth(health);
  107. }
  108. if (npc instanceof HumanNPC) {
  109. HumanNPC human = (HumanNPC) npc;
  110. //TODO: inventory loader
  111. }
  112. }
  113. }
  114. public void save() {
  115. LOGGER.info("[Personas] Saving NPCs...");
  116. FileConfiguration npcsConfig = getNPCsFile();
  117. if (npcsConfig == null) {
  118. LOGGER.severe("[Personas] The NPC file was unable to be loaded.");
  119. return;
  120. }
  121. List<NPC> npcList = Personas.getNPCManager().getList();
  122. for (NPC npc : npcList) {
  123. LivingEntity handle = npc.getBukkitHandle();
  124. if (handle != null) {
  125. npc.getFlag(FlagNPCCore.class).setLocation(handle.getLocation()).setHealth(handle.getHealth());
  126. } else {
  127. npc.getFlag(FlagNPCCore.class).reset();
  128. }
  129. if (npc instanceof HumanNPC) {
  130. HumanNPC human = (HumanNPC) npc;
  131. //TODO: save inventory
  132. }
  133. }
  134. Personas.getNPCManager().save(npcsConfig);
  135. try {
  136. npcsConfig.save("./plugins/Personas/npcs.yml");
  137. } catch (IOException ex) {
  138. LOGGER.severe("[Personas] Could not write the NPC file.");
  139. }
  140. }
  141. private FileConfiguration getNPCsFile() {
  142. File pluginFolder = new File("./plugins/Personas/");
  143. pluginFolder.mkdirs();
  144. File npcsFile = new File(pluginFolder.getPath() + File.separator + "npcs.yml");
  145. try {
  146. npcsFile.createNewFile();
  147. } catch (IOException ex) {
  148. LOGGER.severe("[Personas] Could not create the NPCs file.");
  149. return null;
  150. }
  151. return YamlConfiguration.loadConfiguration(npcsFile);
  152. }
  153. }