/waypointplugin/src/WaypointPlugin.java

https://github.com/ricin/minecraft-hey0-plugins · Java · 368 lines · 341 code · 21 blank · 6 comment · 56 complexity · 15ea587b206713cf741ee85ff8ac39cb MD5 · raw file

  1. import java.io.IOException;
  2. import java.io.File;
  3. import java.io.FileWriter;
  4. import java.io.FileReader;
  5. import java.io.BufferedReader;
  6. import java.util.Scanner;
  7. import java.util.Iterator;
  8. import java.util.ArrayList;
  9. import java.util.Dictionary;
  10. import java.util.Enumeration;
  11. import java.util.Hashtable;
  12. import java.util.Random;
  13. import java.util.logging.Level;
  14. import java.util.logging.Logger;
  15. public class WaypointPlugin extends Plugin
  16. {
  17. private static Logger a = Logger.getLogger("Minecraft");
  18. private Dictionary<String, User> users = new Hashtable<String, User>();
  19. private boolean initialized = false;
  20. public String wpLoc = "waypoints.txt";
  21. public class Waypoint {
  22. public String name;
  23. public Location location = new Location();
  24. public Waypoint(String wp)
  25. {
  26. String[] locs = wp.split(" ");
  27. if(locs.length == 3)
  28. {
  29. try {
  30. location.x = Double.parseDouble(locs[0]);
  31. location.y = Double.parseDouble(locs[1]);
  32. location.z = Double.parseDouble(locs[2]);
  33. location.rotX = 0.0F;
  34. location.rotY = 0.0F;
  35. } catch (NumberFormatException e) {
  36. Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
  37. }
  38. } else if(locs.length == 4)
  39. {
  40. try {
  41. name = locs[0];
  42. location.x = Double.parseDouble(locs[1]);
  43. location.y = Double.parseDouble(locs[2]);
  44. location.z = Double.parseDouble(locs[3]);
  45. location.rotX = 0.0F;
  46. location.rotY = 0.0F;
  47. } catch (NumberFormatException e) {
  48. Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
  49. }
  50. }
  51. }
  52. public String toString()
  53. {
  54. try {
  55. StringBuilder builder = new StringBuilder();
  56. if(name != "home")
  57. {
  58. builder.append(name);
  59. builder.append(" ");
  60. }
  61. builder.append(location.x);
  62. builder.append(" ");
  63. builder.append(location.y);
  64. builder.append(" ");
  65. builder.append(location.z);
  66. return builder.toString();
  67. } catch (Exception e2) {
  68. a.log(Level.SEVERE, "Exception while building waypoint string", e2);
  69. }
  70. return "";
  71. }
  72. }
  73. public class User {
  74. public Dictionary<String, Waypoint> waypoints = new Hashtable<String, Waypoint>();
  75. public Waypoint spawnPoint = new Waypoint("");
  76. public User()
  77. {
  78. this.spawnPoint.name = "home";
  79. this.spawnPoint.location = etc.getServer().getSpawnLocation();
  80. }
  81. }
  82. public WaypointPlugin()
  83. {
  84. setName("Waypoints by chrisinajar");
  85. }
  86. public void init()
  87. {
  88. if(initialized)
  89. return;
  90. initialized = true;
  91. if (!(new File(wpLoc).exists())) {
  92. FileWriter writer = null;
  93. try {
  94. writer = new FileWriter(wpLoc);
  95. writer.write("#Don't edit this file\r\n");
  96. } catch (Exception e) {
  97. a.log(Level.SEVERE, "Exception while creating " + wpLoc, e);
  98. } finally {
  99. if (writer != null) {
  100. try {
  101. writer.close();
  102. } catch (IOException e) {
  103. }
  104. }
  105. }
  106. }
  107. this.reload();
  108. }
  109. public void enable()
  110. {
  111. }
  112. public void disable()
  113. {
  114. }
  115. public boolean onCommand(Player e, String[] split)
  116. {
  117. init();
  118. try {
  119. if (split[0].equalsIgnoreCase("/setwp")) {
  120. if (split.length < 2) {
  121. e.sendMessage("§cCorrect usage is: /setwp [name]");
  122. return true;
  123. }
  124. setWaypoint(e, split[1]);
  125. } else if (split[0].equalsIgnoreCase("/wp")) {
  126. if (split.length < 2) {
  127. e.sendMessage("§cCorrect usage is: /wp (player) [name] -- only name is required");
  128. return true;
  129. }
  130. String wpname = split[1];
  131. String player = e.getName();
  132. if (split.length > 2) {
  133. player = split[1];
  134. wpname = split[2];
  135. }
  136. Waypoint wp = getWaypoint(player, wpname);
  137. if(wp == null)
  138. {
  139. e.sendMessage("§cFailed to find a waypoint by that name");
  140. return true;
  141. }
  142. a.info(e.getName() + " used " + player + "'s wp");
  143. e.teleportTo(wp.location);
  144. } else if (split[0].equalsIgnoreCase("/listwp")) {
  145. String player = e.getName();
  146. if (split.length > 1) {
  147. player = split[1];
  148. }
  149. e.sendMessage("§cWaypoints: " + listWaypoints(player));
  150. } else if (split[0].equalsIgnoreCase("/rmwp")) {
  151. if (split.length < 2) {
  152. e.sendMessage("§cCorrect usage is: /rmwp [name]");
  153. return true;
  154. }
  155. removeWaypoint(e, split[1]);
  156. e.sendMessage("§cWaypoint removed.");
  157. } else if (split[0].equalsIgnoreCase("/loc")) {
  158. a.info(e.getName() + " is located at " + e.getX() + ", " + e.getY() + ", " + e.getZ());
  159. e.sendMessage("§cCurrect location:" + (int)e.getX() + ", " + (int)e.getY() + ", " + (int)e.getZ());
  160. } else {
  161. return false;
  162. }
  163. } catch (Exception ex) {
  164. a.log(Level.SEVERE, "Exception in command handler (Report this to chrisinajar):", ex);
  165. return false;
  166. }
  167. return true;
  168. }
  169. public static String combineSplit(int startIndex, String[] string, String seperator) {
  170. StringBuilder builder = new StringBuilder();
  171. for (int i = startIndex; i < string.length; i++)
  172. builder.append(string[i] + seperator);
  173. builder.deleteCharAt(builder.length() - 1); // remove the extra
  174. // seperator
  175. return builder.toString();
  176. }
  177. public String getPlayerName(String name) {
  178. for (Enumeration i = users.keys(); i.hasMoreElements();)
  179. {
  180. String pname = i.nextElement().toString();
  181. if(name.equalsIgnoreCase(pname))
  182. return pname;
  183. }
  184. return etc.getServer().matchPlayer(name).getName();
  185. }
  186. public String listWaypoints(String player)
  187. {
  188. player = getPlayerName(player);
  189. StringBuilder builder = new StringBuilder();
  190. try {
  191. for (Enumeration i = users.get(player).waypoints.keys(); i.hasMoreElements();)
  192. {
  193. builder.append(i.nextElement().toString());
  194. if(i.hasMoreElements())
  195. builder.append(", ");
  196. }
  197. } catch (Exception e1) {
  198. }
  199. return builder.toString();
  200. }
  201. public Waypoint getWaypoint(String player, String name)
  202. {
  203. player = getPlayerName(player);
  204. try {
  205. return users.get(player).waypoints.get(name);
  206. } catch (Exception e1) {
  207. }
  208. return null;
  209. }
  210. public void setWaypoint(Player e, String name) {
  211. User user = null;
  212. try {
  213. user = users.get(e.getName());
  214. } catch (Exception e1) {
  215. }
  216. if (user == null) {
  217. // User doesn't exist, add it to the array.
  218. try {
  219. user = new User();
  220. users.put(e.getName(), user);
  221. } catch (Exception e2) {
  222. a.log(Level.SEVERE, "Exception while adding user to array", e2);
  223. return;
  224. }
  225. }
  226. Waypoint wp = null;
  227. try {
  228. wp = user.waypoints.get(name);
  229. } catch (Exception e1) {
  230. }
  231. if(wp == null)
  232. {
  233. wp = new Waypoint("");
  234. user.waypoints.put(name, wp);
  235. wp.name = name;
  236. }
  237. wp.location = e.getLocation();
  238. writeWaypoint(e, user);
  239. }
  240. public void removeWaypoint(Player e, String name) {
  241. User user = null;
  242. try {
  243. user = users.get(e.getName());
  244. } catch (Exception e1) {
  245. }
  246. if (user == null) {
  247. // User doesn't exist, add it to the array.
  248. try {
  249. user = new User();
  250. users.put(e.getName(), user);
  251. } catch (Exception e2) {
  252. a.log(Level.SEVERE, "Exception while adding user to array", e2);
  253. return;
  254. }
  255. }
  256. try {
  257. user.waypoints.remove(name);
  258. } catch (Exception e1) {
  259. }
  260. writeWaypoint(e, user);
  261. }
  262. private void writeWaypoint(Player e, User user) {
  263. try {
  264. BufferedReader reader = new BufferedReader(new FileReader(new File(wpLoc)));
  265. String line = "", text = "", newline = "";
  266. boolean foundIt = false;
  267. StringBuilder builder = new StringBuilder();
  268. builder.append(e.getName());
  269. builder.append(":");
  270. builder.append(user.spawnPoint.toString());
  271. builder.append(":");
  272. for (Enumeration i = user.waypoints.elements(); i.hasMoreElements();)
  273. {
  274. builder.append(i.nextElement().toString());
  275. builder.append(":");
  276. }
  277. newline = builder.toString();
  278. while ((line = reader.readLine()) != null) {
  279. if (!line.contains(e.getName() + ":"))
  280. text += line + "\r\n";
  281. else {
  282. if(!foundIt)
  283. {
  284. foundIt = true;
  285. text += newline + "\r\n";
  286. }
  287. }
  288. }
  289. if(!foundIt)
  290. text += newline + "\r\n";
  291. reader.close();
  292. FileWriter writer = new FileWriter(wpLoc);
  293. writer.write(text);
  294. writer.close();
  295. } catch (Exception e1) {
  296. a.log(Level.SEVERE, "Exception while editing waypoints in " + wpLoc, e);
  297. }
  298. }
  299. public void reload() {
  300. if (new File(wpLoc).exists()) {
  301. try {
  302. Scanner scanner = new Scanner(new File(wpLoc));
  303. while (scanner.hasNextLine()) {
  304. String line = scanner.nextLine();
  305. if (line.startsWith("#") || line.length() == 0)
  306. continue;
  307. String[] split = line.split(":");
  308. if(split.length < 2)
  309. continue;
  310. String name = split[0];
  311. User user = null;
  312. try {
  313. user = users.get(name);
  314. } catch (Exception e1) {
  315. // do nothing!
  316. }
  317. if (user == null) {
  318. // User doesn't exist, add it to the array.
  319. try {
  320. user = new User();
  321. users.put(name, user);
  322. } catch (Exception e2) {
  323. a.log(Level.SEVERE, "Exception while adding user to array", e2);
  324. }
  325. }
  326. a.info("Loading in waypoints for: " + name);
  327. user.waypoints = new Hashtable<String, Waypoint>();
  328. if (split[1].length() > 5)
  329. {
  330. // they have a custom spawn point!
  331. user.spawnPoint = new Waypoint(split[1]);
  332. user.spawnPoint.name = "home";
  333. a.info("Loading in spawn point: " + split[1]);
  334. }
  335. for(int i = 2; i < split.length; i++)
  336. {
  337. Waypoint wp = new Waypoint(split[i]);
  338. user.waypoints.put(wp.name, wp);
  339. a.info("Loading in waypoint: " + split[i]);
  340. }
  341. }
  342. } catch (Exception e) {
  343. a.log(Level.SEVERE, "Exception while reading " + wpLoc, e);
  344. }
  345. }
  346. }
  347. }