/src/main/java/com/killersmurf/antilogger/AntiLogger.java

https://bitbucket.org/itskafei/antipvplogger · Java · 171 lines · 104 code · 17 blank · 50 comment · 4 complexity · c91fb7bdc7dc923f17ada581e75d44f3 MD5 · raw file

  1. package com.killersmurf.antilogger;
  2. import com.killersmurf.antilogger.listeners.ALEntityListener;
  3. import com.killersmurf.antilogger.listeners.ALPlayerListener;
  4. import com.topcat.npclib.NPCManager;
  5. import com.topcat.npclib.entity.HumanNPC;
  6. import java.util.ArrayList;
  7. import java.util.HashMap;
  8. import java.util.List;
  9. import java.util.Map;
  10. import java.util.logging.Logger;
  11. import org.bukkit.Bukkit;
  12. import org.bukkit.entity.Player;
  13. import org.bukkit.inventory.ItemStack;
  14. import org.bukkit.plugin.java.JavaPlugin;
  15. /**
  16. *
  17. * @author Dylan_Holmes
  18. */
  19. public class AntiLogger extends JavaPlugin {
  20. //The battle status Hashmap, assigns a boolean to a Player.
  21. public Map<Player, Boolean> battleStatus = new HashMap<Player, Boolean>();
  22. //The task hashmap, assigns a TaskId(Integer) to a player.
  23. public Map<Player, Integer> tasks = new HashMap<Player, Integer>();
  24. //Creates a NPCManager pointer.
  25. public NPCManager nm;
  26. final int x = 5;
  27. //Creates a statis AntiLogger pointer.
  28. //Creates a static final logger.
  29. static final Logger logger = Logger.getLogger("Minecraft");
  30. //Creates a list of strings, called dead players.
  31. public List<String> deadPlayers = new ArrayList<String>();
  32. public boolean alwaysSpawn;
  33. public boolean defendSelf;
  34. public long time;
  35. //This is what happens when the plugin is Disabled.
  36. @Override
  37. public void onDisable() {
  38. //Logger.info("Sends a Message that is with the qoutes");
  39. logger.info("[AntiLogger] Deleting NPCs...");
  40. //Despawns all the NPCs.
  41. nm.despawnAll();
  42. logger.info("[AntiLogger] NPCs deleted..");
  43. logger.info("[AntiLogger] Disabled.");
  44. }
  45. //This is what happens when the plugin is enabled.
  46. @Override
  47. public void onEnable() {
  48. //Loads the config file, gets the config file contents, and sets the message boolean to what ever the config file says it is.
  49. load();
  50. //Sets the playerListener pointer to a new instance of the ALPlayerListener class.I am lazy.
  51. ALPlayerListener playerL = new ALPlayerListener(this);
  52. ALEntityListener entityL = new ALEntityListener(this);
  53. Bukkit.getPluginManager().registerEvents(entityL, this);
  54. Bukkit.getPluginManager().registerEvents(playerL, this);
  55. //Sets the nm pointer to a new instance of the NPCManager.
  56. nm = new NPCManager(this);
  57. logger.info("[AntiLogger] Enabled.");
  58. }
  59. /**
  60. * Spawns a NPC with the name of the player it is given.
  61. * Then copies the inventory contents of the player, and adds it to the NPCs contents. Same for the armour.
  62. *
  63. * @param player
  64. */
  65. public void spawnHumanNPC(final Player player) {
  66. //Creating Pointers
  67. String playerName = player.getName();
  68. ItemStack[] copiedArmour = player.getInventory().getArmorContents();
  69. ItemStack[] copiedContents = player.getInventory().getContents();
  70. final HumanNPC playerNPC = (HumanNPC) nm.spawnHumanNPC(playerName, player.getLocation());
  71. playerNPC.getInventory().setArmorContents(copiedArmour);
  72. playerNPC.getInventory().setContents(copiedContents);
  73. playerNPC.updateInventory();
  74. //Creating a Task...
  75. Bukkit.getServer().getScheduler().scheduleSyncDelayedTask(this,
  76. new Runnable() {
  77. @Override
  78. public void run() {
  79. nm.despawnHumanByName(playerNPC.getName());
  80. }
  81. }, (time * 20L));
  82. }
  83. /**
  84. * Checks to see if the List of strings called "deadPlayers", contains a given player name.
  85. *
  86. * @param name
  87. * @return True, if it does contain, false if it does not.
  88. */
  89. public boolean isDead(String name) {
  90. if (!deadPlayers.contains(name)) {
  91. return false;
  92. }
  93. return true;
  94. }
  95. /**
  96. * Takes in a players name, and adds it to the list of dead players.
  97. *
  98. * @param name
  99. */
  100. public void addDead(String name) {
  101. if (deadPlayers.contains(name)) {
  102. return;
  103. }
  104. deadPlayers.add(name);
  105. }
  106. /**
  107. * Removes a players name from the "deadPlayers" list.
  108. *
  109. * @param name
  110. */
  111. public void removeDead(String name) {
  112. deadPlayers.remove(name);
  113. }
  114. /**
  115. * Loads the config variables, and saves the config.
  116. *
  117. */
  118. public void load() {
  119. String npcPath = "npc";
  120. //Defending...
  121. getConfig().addDefault(npcPath + ".defendSelf", false);
  122. getConfig().set(npcPath + ".defendSelf", getConfig().getBoolean(npcPath + ".defendSelf"));
  123. defendSelf = getConfig().getBoolean(npcPath + ".defendSelf");
  124. //Spawning...
  125. getConfig().addDefault(npcPath + ".alwaysSpawn", false);
  126. getConfig().set(npcPath + ".alwaysSpawn", getConfig().getBoolean(npcPath + ".alwaysSpawn"));
  127. alwaysSpawn = getConfig().getBoolean(npcPath + ".alwaysSpawn");
  128. //Spawning Time....
  129. getConfig().addDefault(npcPath + ".time", 15);
  130. getConfig().set(npcPath + ".time", getConfig().getLong(npcPath + ".time"));
  131. time = getConfig().getLong(npcPath + ".time");
  132. //Info alerts...
  133. getConfig().options().copyDefaults(true);
  134. this.saveConfig();
  135. }
  136. //Makes a NPC attack a player.
  137. public void attackEntity(final HumanNPC attacker, final Player attacked) {
  138. final int task = Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable() {
  139. public void run() {
  140. if (attacker.getBukkitEntity().getLocation().distance(attacked.getLocation()) < 6 && nm.getNPCs().contains(attacker)) {
  141. attacker.walkTo(attacked.getLocation());
  142. attacked.damage(2);
  143. }
  144. Bukkit.getScheduler().scheduleSyncDelayedTask(AntiLogger.this, new Runnable() {
  145. public void run() {
  146. Bukkit.getScheduler().cancelTask(tasks.get(attacked));
  147. tasks.remove(attacked);
  148. }
  149. }, 250L);
  150. }
  151. }, 5L, 20L);
  152. tasks.put(attacked, task);
  153. }
  154. }