/src/co/dwent/BlockRespawn/BlockRespawn.java

https://bitbucket.org/SwiftSwamp/blockrespawn · Java · 152 lines · 125 code · 27 blank · 0 comment · 29 complexity · e55c5698e9d05b19c32760fd6afcbb09 MD5 · raw file

  1. package co.dwent.BlockRespawn;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import java.util.logging.Logger;
  5. import org.bukkit.Bukkit;
  6. import org.bukkit.ChatColor;
  7. import org.bukkit.Location;
  8. import org.bukkit.block.Block;
  9. import org.bukkit.command.Command;
  10. import org.bukkit.command.CommandSender;
  11. import org.bukkit.entity.Player;
  12. import org.bukkit.event.EventHandler;
  13. import org.bukkit.event.Listener;
  14. import org.bukkit.event.block.Action;
  15. import org.bukkit.event.block.BlockBreakEvent;
  16. import org.bukkit.event.player.PlayerInteractEvent;
  17. import org.bukkit.plugin.java.JavaPlugin;
  18. public class BlockRespawn extends JavaPlugin implements Listener
  19. {
  20. public static int respawnTimer;
  21. public static int longHour;
  22. public static int longMin;
  23. public static int longSec;
  24. public Logger pluginLog = Logger.getLogger("Minecraft");
  25. public Map<Player, Boolean> blockClickEnabled = new HashMap<Player,Boolean>();
  26. public void onEnable() {
  27. this.pluginLog.info("[BlockRespawn v" + getDescription().getVersion() + "] has been enabled!");
  28. getServer().getPluginManager().registerEvents(this, this);
  29. getConfig().options().copyDefaults(true);
  30. startRespawnTimer();
  31. saveConfig();
  32. }
  33. public void onDisable() {
  34. this.pluginLog.info("[BlockRespawn] has been disabled!");
  35. }
  36. @EventHandler
  37. public void onPlayerInteract(PlayerInteractEvent event) {
  38. Player player = event.getPlayer();
  39. if (!this.blockClickEnabled.containsKey(player)) {
  40. this.blockClickEnabled.put(player, Boolean.valueOf(false));
  41. }
  42. if ((event.getAction() == Action.RIGHT_CLICK_BLOCK) && (((Boolean)this.blockClickEnabled.get(player)).booleanValue())) {
  43. player.sendMessage(ChatColor.DARK_RED + "You have set the new respawn!");
  44. getConfig().set("BlockInfo.BlockID", Integer.valueOf(event.getClickedBlock().getTypeId()));
  45. getConfig().set("BlockInfo.Type", Byte.valueOf(event.getClickedBlock().getData()));
  46. getConfig().set("BlockInfo.X", Integer.valueOf(event.getClickedBlock().getX()));
  47. getConfig().set("BlockInfo.Y", Integer.valueOf(event.getClickedBlock().getY()));
  48. getConfig().set("BlockInfo.Z", Integer.valueOf(event.getClickedBlock().getZ()));
  49. this.blockClickEnabled.put(player, Boolean.valueOf(false));
  50. saveConfig();
  51. reloadConfig();
  52. if (getServer().getScheduler().isCurrentlyRunning(respawnTimer)) {
  53. getServer().getScheduler().cancelTask(respawnTimer);
  54. }
  55. }
  56. }
  57. @EventHandler
  58. public void onBlockBreak(BlockBreakEvent event) {
  59. int blockID = getConfig().getInt("BlockInfo.BlockID");
  60. int blockX = getConfig().getInt("BlockInfo.X");
  61. int blockY = getConfig().getInt("BlockInfo.Y");
  62. int blockZ = getConfig().getInt("BlockInfo.Z");
  63. Block block = event.getBlock();
  64. if ((block.getX() == blockX) && (block.getY() == blockY) && (block.getZ() == blockZ) && (block.getTypeId() == blockID)) {
  65. startRespawnTimer();
  66. }
  67. }
  68. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
  69. if (cmd.getName().equalsIgnoreCase("blockRespawn")) {
  70. Player player = (Player)sender;
  71. if ((!player.isOp()) && ((player instanceof Player))) {
  72. player.sendMessage(ChatColor.RED + "You do not have access to that command");
  73. return true;
  74. }
  75. if (args.length != 1) {
  76. player.sendMessage(ChatColor.RED + "[BlockRespawn] " + ChatColor.WHITE + "Usage: /blockRespawn {setblock, reload}");
  77. return false;
  78. }
  79. if (args[0].equals("setblock")) {
  80. this.blockClickEnabled.put(player, Boolean.valueOf(true));
  81. player.sendMessage(ChatColor.RED + "[BlockRespawn] " + ChatColor.WHITE + "Right-click at the block you want to be respawned!");
  82. } else if (args[0].equals("reload")) {
  83. reloadConfig();
  84. player.sendMessage(ChatColor.RED + "[BlockRespawn] " + ChatColor.WHITE + "The config file has been reloaded!");
  85. } else {
  86. player.sendMessage(ChatColor.RED + "[BlockRespawn] commands:");
  87. player.sendMessage(ChatColor.WHITE + "/blockRespawn setblock " + ChatColor.GRAY + "Will set the block that will be respawned.");
  88. player.sendMessage(ChatColor.WHITE + "/blockRespawn reload " + ChatColor.GRAY + "Reloads the config file.");
  89. }
  90. return true;
  91. }
  92. return false;
  93. }
  94. private void startRespawnTimer() {
  95. int configSec = getConfig().getInt("RespawnTime.Second");
  96. int configMin = getConfig().getInt("RespawnTime.Minute");
  97. int configHour = getConfig().getInt("RespawnTime.Hour");
  98. if (configSec != 0) {
  99. longSec = configSec * 20;
  100. }
  101. if (configMin != 0) {
  102. longMin = configMin * 1200;
  103. }
  104. if (configHour != 0) {
  105. longHour = configHour * 72000;
  106. }
  107. long finalTick = longSec + longMin + longHour;
  108. respawnTimer = getServer().getScheduler().scheduleSyncDelayedTask(this, new Runnable()
  109. {
  110. public void run() {
  111. int blockID = BlockRespawn.this.getConfig().getInt("BlockInfo.BlockID");
  112. int blockType = BlockRespawn.this.getConfig().getInt("BlockInfo.Type");
  113. int blockX = BlockRespawn.this.getConfig().getInt("BlockInfo.X");
  114. int blockY = BlockRespawn.this.getConfig().getInt("BlockInfo.Y");
  115. int blockZ = BlockRespawn.this.getConfig().getInt("BlockInfo.Z");
  116. Location blockLocation = new Location(Bukkit.getWorld(BlockRespawn.this.getConfig().getString("BlockInfo.World")), blockX, blockY, blockZ);
  117. Block createdBlock = blockLocation.getWorld().getBlockAt(blockLocation);
  118. if (createdBlock.isEmpty()) {
  119. createdBlock.setTypeIdAndData(blockID, (byte)blockType, false);
  120. }
  121. }
  122. }
  123. , finalTick);
  124. }
  125. }