/src/TownyProperties.java

https://github.com/Theino/Towny-Obsidian · Java · 190 lines · 169 code · 16 blank · 5 comment · 54 complexity · 4ca4b8eed7b0af2e3e71db683b603fae MD5 · raw file

  1. import java.io.*;
  2. import java.util.*;
  3. import java.util.logging.Logger;
  4. public class TownyProperties {
  5. protected static final Logger log = Logger.getLogger("Minecraft");
  6. public static long activePeriod;
  7. public static int timeTillWar, blockSize;
  8. public static String source, flatFileFolder, settingsFolder;
  9. public static HashMap<Integer, HashMap<String, String>> townLevel = new HashMap<Integer, HashMap<String,String>>();
  10. public static HashMap<Integer, HashMap<String, String>> nationLevel = new HashMap<Integer, HashMap<String,String>>();
  11. public static boolean townCreationAdminOnly, unclaimedZoneBuildRights,
  12. wallGenOn, townNotifications, noMobsInTown, friendlyfire;
  13. public static int claimRatio, townRegen;
  14. public static String[] firstLoginMsg;
  15. public static Town defaultTown;
  16. @SuppressWarnings ("unchecked")
  17. public static void load() {
  18. //Default values
  19. HashMap<String, String> temp = new HashMap<String, String>();
  20. temp.put("description", "Country");
  21. temp.put("capital", "Capital");
  22. temp.put("monarch", "King");
  23. nationLevel.put(0, (HashMap<String, String>)temp.clone());
  24. temp.clear();
  25. temp.put("description", "Town");
  26. temp.put("mayor", "Mayor");
  27. temp.put("blocklimit", "0");
  28. townLevel.put(0, (HashMap<String, String>)temp.clone());
  29. BufferedReader fin;
  30. String line;
  31. String[] tokens;
  32. if (source.equalsIgnoreCase("flatfile")) {
  33. // Load Nation Levels
  34. try {
  35. fin = new BufferedReader(new FileReader(flatFileFolder + "/settings/nationLevels.txt"));
  36. while ((line = fin.readLine()) != null) {
  37. if (!line.startsWith("#")) { //Ignore comment lines
  38. tokens = line.split(":");
  39. if (tokens.length == 4) {
  40. try {
  41. int size = Integer.parseInt(tokens[0]);
  42. temp = new HashMap<String, String>();
  43. temp.put("description", tokens[1]);
  44. temp.put("capital", tokens[2]);
  45. temp.put("monarch", tokens[3]);
  46. nationLevel.put(size, temp);
  47. } catch (Exception e) { log.info("[Towny] Input Error: Nation level ignored: " + line); }
  48. }
  49. }
  50. }
  51. fin.close();
  52. } catch (Exception e) {
  53. e.printStackTrace();
  54. }
  55. // Load Town Levels
  56. try {
  57. fin = new BufferedReader(new FileReader(flatFileFolder + "/settings/townLevels.txt"));
  58. while ((line = fin.readLine()) != null) {
  59. if (!line.startsWith("#")) { //Ignore comment lines
  60. tokens = line.split(":");
  61. if (tokens.length == 3 || tokens.length == 4) {
  62. try {
  63. int size = Integer.parseInt(tokens[0]);
  64. temp = new HashMap<String, String>();
  65. temp.put("description", tokens[1]);
  66. temp.put("mayor", tokens[2]);
  67. if (claimRatio == 0 && tokens.length == 4)
  68. temp.put("blocklimit", tokens[3]);
  69. townLevel.put(size, temp);
  70. //log.info("Added town level: "+size+" "+Arrays.toString(temp.values().toArray()));
  71. } catch (Exception e) { log.info("[Towny] Input Error: Town level ignored: " + line); }
  72. }
  73. }
  74. }
  75. fin.close();
  76. } catch (Exception e) {
  77. e.printStackTrace();
  78. }
  79. } else {
  80. log.info("[Towny] Input Error: Unsupported database type.");
  81. }
  82. }
  83. public static HashMap<String, String> getNationProperties(int size) {
  84. HashMap<String, String> nationProperties = new HashMap<String, String>();;
  85. for (int n=size; n >= 0; n--) {
  86. nationProperties = nationLevel.get(n);
  87. if (nationProperties != null)
  88. break;
  89. }
  90. return nationProperties;
  91. }
  92. public static HashMap<String, String> getTownProperties(int size) {
  93. HashMap<String, String> townProperties = new HashMap<String, String>();;
  94. for (int n=size; n >= 0; n--) {
  95. townProperties = townLevel.get(n);
  96. if (townProperties != null)
  97. n = -1;
  98. }
  99. return townProperties;
  100. }
  101. public static String getMayorPrefix(int townSize) {
  102. HashMap<String, String> townProperties = getTownProperties(townSize);
  103. if (townProperties == null) {
  104. return "";
  105. } else {
  106. String prefix = townProperties.get("mayor");
  107. if (prefix == null)
  108. return "";
  109. else
  110. return prefix + " ";
  111. }
  112. }
  113. public static String getTownPrefix (int townSize) {
  114. HashMap<String, String> townProperties = getTownProperties(townSize);
  115. if (townProperties == null) {
  116. return "";
  117. } else {
  118. String prefix = townProperties.get("description");
  119. if (prefix == null)
  120. return "";
  121. else
  122. return " " + prefix;
  123. }
  124. }
  125. public static String getNationPrefix(int nationSize) {
  126. HashMap<String, String> nationProperties = getNationProperties(nationSize);
  127. if (nationProperties == null) {
  128. return "";
  129. } else {
  130. String prefix = nationProperties.get("description");
  131. if (prefix == null)
  132. return "";
  133. else
  134. return " " + prefix;
  135. }
  136. }
  137. public static String getCapitalPrefix (int nationSize) {
  138. HashMap<String, String> nationProperties = getNationProperties(nationSize);
  139. if (nationProperties == null) {
  140. return "";
  141. } else {
  142. String prefix = nationProperties.get("capital");
  143. if (prefix == null)
  144. return "";
  145. else
  146. return " " + prefix;
  147. }
  148. }
  149. public static String getKingPrefix (int nationSize) {
  150. HashMap<String, String> nationProperties = getNationProperties(nationSize);
  151. if (nationProperties == null) {
  152. return "";
  153. } else {
  154. String prefix = nationProperties.get("king");
  155. if (prefix == null)
  156. return "";
  157. else
  158. return prefix + " ";
  159. }
  160. }
  161. public static int getTownBlockLimit(int townSize) {
  162. if (claimRatio > 0) {
  163. return townSize*claimRatio;
  164. } else {
  165. HashMap<String, String> townProperties = getTownProperties(townSize);
  166. if (townProperties == null) {
  167. return 0;
  168. } else {
  169. //log.info("BlockLimit="+townProperties.get("blocklimit"));
  170. return Integer.parseInt(townProperties.get("blocklimit"));
  171. }
  172. }
  173. }
  174. }