/Stargate/src/StargateData.java

https://github.com/ricin/minecraft-hey0-plugins · Java · 280 lines · 233 code · 47 blank · 0 comment · 48 complexity · 9d111b519f83e0a77e5f9514dc6826c1 MD5 · raw file

  1. import java.io.BufferedReader;
  2. import java.io.BufferedWriter;
  3. import java.io.File;
  4. import java.io.FileReader;
  5. import java.io.FileWriter;
  6. import java.io.IOException;
  7. import java.util.ArrayList;
  8. import java.util.Scanner;
  9. import java.util.logging.Level;
  10. import java.util.logging.Logger;
  11. public class StargateData {
  12. static Server world = etc.getServer();
  13. static final Logger log = Logger.getLogger("Minecraft");
  14. static ArrayList<String> StargateList = new ArrayList<String>();
  15. static ArrayList<Integer> StargateLocations = new ArrayList<Integer>();
  16. static ArrayList<String> playerList = new ArrayList<String>();
  17. static ArrayList<Integer> selectionStatus = new ArrayList<Integer>();
  18. static ArrayList<Integer> pointsCoordinates = new ArrayList<Integer>();
  19. static ArrayList<Integer> landing = new ArrayList<Integer>();
  20. private static int getPlayerIndex(String playerName){
  21. boolean inList = false;
  22. for (String p : playerList){
  23. if (p==playerName)
  24. inList = true;
  25. }
  26. if (!inList){
  27. playerList.add(playerName);
  28. selectionStatus.add(1);
  29. landing.add(-1);
  30. pointsCoordinates.add(null);
  31. pointsCoordinates.add(null);
  32. pointsCoordinates.add(null);
  33. pointsCoordinates.add(null);
  34. pointsCoordinates.add(null);
  35. pointsCoordinates.add(null);
  36. pointsCoordinates.add(null);
  37. pointsCoordinates.add(null);
  38. pointsCoordinates.add(null);
  39. pointsCoordinates.add(null);
  40. pointsCoordinates.add(null);
  41. pointsCoordinates.add(null);
  42. }
  43. return playerList.indexOf(playerName);
  44. }
  45. public static int setPoint(String playerName, int X, int Y, int Z){
  46. int index = getPlayerIndex(playerName);
  47. int secondPoint = selectionStatus.get(index);
  48. if ( selectionStatus.get(index) == 1 ){
  49. pointsCoordinates.set(index*12, X);
  50. pointsCoordinates.set(index*12+1, Y);
  51. pointsCoordinates.set(index*12+2, Z);
  52. pointsCoordinates.set(index*12+3, null);
  53. pointsCoordinates.set(index*12+4, null);
  54. pointsCoordinates.set(index*12+5, null);
  55. pointsCoordinates.set(index*12+6, null);
  56. pointsCoordinates.set(index*12+7, null);
  57. pointsCoordinates.set(index*12+8, null);
  58. pointsCoordinates.set(index*12+9, null);
  59. pointsCoordinates.set(index*12+10, null);
  60. pointsCoordinates.set(index*12+11, null);
  61. selectionStatus.set(index, 2);
  62. }
  63. else if ( selectionStatus.get(index) == 2){
  64. pointsCoordinates.set(index*12+3, X);
  65. pointsCoordinates.set(index*12+4, Y);
  66. pointsCoordinates.set(index*12+5, Z);
  67. selectionStatus.set(index, 3);
  68. }
  69. else if ( selectionStatus.get(index) == 3){
  70. pointsCoordinates.set(index*12+6, X);
  71. pointsCoordinates.set(index*12+7, Y);
  72. pointsCoordinates.set(index*12+8, Z);
  73. selectionStatus.set(index, 4);
  74. }
  75. else {
  76. pointsCoordinates.set(index*12+9, X);
  77. pointsCoordinates.set(index*12+10, Y);
  78. pointsCoordinates.set(index*12+11, Z);
  79. selectionStatus.set(index, 1);
  80. }
  81. return selectionStatus.get(index);
  82. }
  83. public static void Savestargate(Player player, String[] split) {
  84. int playerindex = getPlayerIndex(player.getName())*12;
  85. if(pointsCoordinates.get(playerindex+11) != null) {
  86. int facingin =enumdirections(split[2]);
  87. int facingout = enumdirections(split[3]);
  88. if( (facingin == -1) || (facingout == -1) ) {
  89. player.sendMessage("Incorrect");
  90. return;
  91. }
  92. StargateList.add(split[1]);
  93. for(int i=0;i<3;i++) {
  94. if(pointsCoordinates.get(playerindex+i) > pointsCoordinates.get(playerindex+i+3)) {
  95. StargateLocations.add(pointsCoordinates.get(playerindex+i+3));
  96. StargateLocations.add(pointsCoordinates.get(playerindex+i)+1);
  97. } else {
  98. StargateLocations.add(pointsCoordinates.get(playerindex+i));
  99. StargateLocations.add(pointsCoordinates.get(playerindex+i+3)+1);
  100. }
  101. }
  102. for(int i=6;i<9;i++) {
  103. if(pointsCoordinates.get(playerindex+i) > pointsCoordinates.get(playerindex+i+3)) {
  104. StargateLocations.add(pointsCoordinates.get(playerindex+i+3));
  105. StargateLocations.add(pointsCoordinates.get(playerindex+i)+1);
  106. } else {
  107. StargateLocations.add(pointsCoordinates.get(playerindex+i));
  108. StargateLocations.add(pointsCoordinates.get(playerindex+i+3)+1);
  109. }
  110. }
  111. StargateLocations.add(facingout-facingin);
  112. try {
  113. BufferedWriter writer = new BufferedWriter(new FileWriter("Stargatedata.txt", true));
  114. String throwawaystring = split[1];
  115. int stargateindex = StargateList.indexOf(split[1])*13;
  116. player.sendMessage("stargate length : " + StargateLocations.size());
  117. for(int i=0; i<13;i++) {
  118. throwawaystring = throwawaystring + ',' + StargateLocations.get(stargateindex+i);
  119. }
  120. writer.append(throwawaystring);
  121. writer.newLine();
  122. writer.close();
  123. } catch (Exception e) {
  124. log.log(Level.SEVERE, "[Stargate] : Error while writing Stargatedata.txt", e);
  125. return;
  126. }
  127. player.sendMessage("Stargate saved");
  128. } else {
  129. player.sendMessage("Incorrect");
  130. }
  131. return;
  132. }
  133. public static int enumdirections(String dir) {
  134. switch (dir.toLowerCase().charAt(0)) {
  135. case 'n': return 0;
  136. case 'e': return 1;
  137. case 's': return 2;
  138. case 'w': return 3;
  139. default: return -1;
  140. }
  141. }
  142. public static void Checkplayerpos(Location to,Player player) {
  143. if(StargateLocations.size()>0) {
  144. int playerIndex = getPlayerIndex(player.getName());
  145. if(landing.get(playerIndex) >= 0) {
  146. int i = landing.get(playerIndex);
  147. if(player.getX()>=StargateLocations.get(i*13+6) && player.getX()<StargateLocations.get(i*13+7) &&
  148. player.getY()>=StargateLocations.get(i*13+8) && player.getY()<StargateLocations.get(i*13+9) &&
  149. player.getZ()>=StargateLocations.get(i*13+10) && player.getZ()<StargateLocations.get(i*13+11) ) {
  150. return;
  151. } else {
  152. landing.set(playerIndex,-1);
  153. return;
  154. }
  155. } else {
  156. for(int i=0;i<StargateLocations.size()/13;i++) {
  157. if(player.getX()>=StargateLocations.get(i*13) && player.getX()<StargateLocations.get(i*13+1) &&
  158. player.getY()>=StargateLocations.get(i*13+2) && player.getY()<StargateLocations.get(i*13+3) &&
  159. player.getZ()>=StargateLocations.get(i*13+4) && player.getZ()<StargateLocations.get(i*13+5) ) {
  160. player.sendMessage("Woosh!");
  161. player.teleportTo(fromto((double)StargateLocations.get(i*13),
  162. (double)StargateLocations.get(i*13+1),
  163. (double)StargateLocations.get(i*13+6),
  164. (double)StargateLocations.get(i*13+7),
  165. player.getX()),
  166. fromto((double)StargateLocations.get(i*13+2),
  167. (double)StargateLocations.get(i*13+3),
  168. (double)StargateLocations.get(i*13+8),
  169. (double)StargateLocations.get(i*13+9),
  170. player.getY()),
  171. fromto((double)StargateLocations.get(i*13+4),
  172. (double)StargateLocations.get(i*13+5),
  173. (double)StargateLocations.get(i*13+10),
  174. (double)StargateLocations.get(i*13+11),
  175. player.getZ()),
  176. player.getRotation() + (float)StargateLocations.get(i*13+12) * 90,
  177. player.getPitch());
  178. landing.set(playerIndex,i);
  179. return;
  180. }
  181. }
  182. }
  183. }
  184. }
  185. public static double fromto(double minfrom, double maxfrom, double minto, double maxto, double playerloc) {
  186. return (minto + ((maxto-minto) * (playerloc - minfrom) / (maxfrom - minfrom)));
  187. }
  188. public static void loadStargateData(){
  189. File dataSource = new File("Stargatedata.txt");
  190. if (!dataSource.exists()){
  191. FileWriter writer = null;
  192. try {
  193. writer = new FileWriter("Stargatedata.txt", true);
  194. writer.append("#Data for the Stargate plugin is located in this file\r\n");
  195. writer.close();
  196. } catch (Exception e) {
  197. log.log(Level.SEVERE, "[Stargate] : Exception while creating Stargatedata.txt");
  198. } finally {
  199. try{
  200. writer.close();
  201. }
  202. catch(IOException e){
  203. log.log(Level.SEVERE, "[Stargate] : Exception while closing StargateData writer", e);
  204. }
  205. }
  206. } else {
  207. try {
  208. StargateList = new ArrayList<String>();
  209. StargateLocations = new ArrayList<Integer>();
  210. Scanner scanner = new Scanner(dataSource);
  211. while (scanner.hasNextLine()) {
  212. String line = scanner.nextLine();
  213. if (line.startsWith("#") || line.equals("")) {
  214. continue;
  215. }
  216. String[] split = line.split(",");
  217. if (split.length != 14) {
  218. continue;
  219. }
  220. StargateList.add(split[0]);
  221. for(int i=1;i<14;i++) {
  222. StargateLocations.add(Integer.parseInt(split[i]));
  223. }
  224. }
  225. scanner.close();
  226. log.info("Stargate plugin : successfuly loaded.");
  227. } catch (Exception e) {
  228. log.log(Level.SEVERE, "Stargate plugin : Error while reading Stargatedata.txt", e);
  229. }
  230. }
  231. return;
  232. }
  233. }