/source/src/com/nanomediasystems/speeddemon92/GlobalEconomy/Settings.java

https://bitbucket.org/Skriglitz/globaleconomy · Java · 219 lines · 172 code · 46 blank · 1 comment · 12 complexity · 930f41714cedf3c48991fc15989be063 MD5 · raw file

  1. package com.nanomediasystems.speeddemon92.GlobalEconomy;
  2. import java.io.BufferedReader;
  3. import java.io.BufferedWriter;
  4. import java.io.File;
  5. import java.io.FileReader;
  6. import java.io.FileWriter;
  7. import java.io.IOException;
  8. import java.util.HashMap;
  9. import java.util.Map;
  10. import java.util.logging.Level;
  11. import java.util.logging.Logger;
  12. public class Settings {
  13. private static final Logger log = Logger.getLogger("Minecraft");
  14. Map<String, String> map = new HashMap<String, String>();
  15. private String fileName;
  16. public Settings(String fileName)
  17. {
  18. this.fileName = fileName;
  19. File file = new File(fileName);
  20. if (file.exists())
  21. {
  22. load();
  23. }
  24. else
  25. {
  26. createDefaultSettings();
  27. }
  28. }
  29. public void load() {
  30. try
  31. {
  32. BufferedReader reader = new BufferedReader(new FileReader(this.fileName));
  33. String line;
  34. while ((line = reader.readLine()) != null) {
  35. if (line.trim().length() == 0) {
  36. continue;
  37. }
  38. if (line.charAt(0) == '#') {
  39. continue;
  40. }
  41. int delimPosition = line.indexOf('=');
  42. String key = line.substring(0, delimPosition).trim();
  43. String value = line.substring(delimPosition + 1).trim();
  44. map.put(key, value);
  45. }
  46. reader.close();
  47. //return map;
  48. }
  49. catch (Exception ex)
  50. {
  51. log.log(Level.SEVERE, "Unable to load " + this.fileName, ex);
  52. }
  53. }
  54. public boolean getBoolean(String key) {
  55. if (this.map.containsKey(key)) {
  56. return Boolean.parseBoolean(this.map.get(key));
  57. }
  58. return false;
  59. }
  60. public long getLong(String key) {
  61. if (this.map.containsKey(key)) {
  62. return Long.parseLong(this.map.get(key));
  63. }
  64. return 0L;
  65. }
  66. public double getDouble(String key) {
  67. if (this.map.containsKey(key)) {
  68. return Double.parseDouble(this.map.get(key));
  69. }
  70. return 0.0D;
  71. }
  72. public int getInt(String key) {
  73. if (this.map.containsKey(key)) {
  74. return Integer.parseInt(this.map.get(key));
  75. }
  76. return 0;
  77. }
  78. public String getString(String key) {
  79. if (this.map.containsKey(key)) {
  80. return this.map.get(key);
  81. }
  82. return "";
  83. }
  84. public boolean keyExists(String key) {
  85. return this.map.containsKey(key);
  86. }
  87. private void createDefaultSettings() {
  88. try {
  89. FileWriter fstream = new FileWriter(this.fileName, true);
  90. BufferedWriter out = new BufferedWriter(fstream);
  91. out.write("############################################################");
  92. out.newLine();
  93. out.write("# GlobalEconomy Configuration File #");
  94. out.newLine();
  95. out.write("############################################################");
  96. out.newLine();
  97. out.newLine();
  98. out.newLine();
  99. out.write("# Log Transactions");
  100. out.newLine();
  101. out.write("log-transactions=false");
  102. out.newLine();
  103. out.newLine();
  104. out.newLine();
  105. out.write("# Database Types: flat, mysql, sqlite (default)");
  106. out.newLine();
  107. out.write("DBType=sqlite");
  108. out.newLine();
  109. out.newLine();
  110. out.newLine();
  111. out.write("# SQLite Options");
  112. out.newLine();
  113. out.write("#");
  114. out.newLine();
  115. out.write("# SQLite folder: root, main (default)");
  116. out.newLine();
  117. out.write("sqlitefolder=main");
  118. out.newLine();
  119. out.write("# SQLite database file");
  120. out.newLine();
  121. out.write("sqlitedb=GlobalEconomy.db");
  122. out.newLine();
  123. out.newLine();
  124. out.newLine();
  125. out.write("# MySQL Options");
  126. out.newLine();
  127. out.write("#");
  128. out.newLine();
  129. out.write("# MySQL server address (default: localhost)");
  130. out.newLine();
  131. out.write("server=localhost");
  132. out.newLine();
  133. out.write("# MySQL server port number (default: 3306)");
  134. out.newLine();
  135. out.write("port=3306");
  136. out.newLine();
  137. out.write("# MySQL database to use (default: GlobalEconomy)");
  138. out.newLine();
  139. out.write("database=GlobalEconomy");
  140. out.newLine();
  141. out.write("# MySQL user (default: root)");
  142. out.newLine();
  143. out.write("user=root");
  144. out.newLine();
  145. out.write("# MySQL user password");
  146. out.newLine();
  147. out.write("pass=pass");
  148. out.newLine();
  149. out.newLine();
  150. out.newLine();
  151. out.write("# Initial Currency Settings only used once");
  152. out.newLine();
  153. out.write("#");
  154. out.newLine();
  155. out.write("# Initial balance for new players");
  156. out.newLine();
  157. out.write("initial-balance=100");
  158. out.newLine();
  159. out.write("# Initial Global currency name (singular if possible)");
  160. out.newLine();
  161. out.write("currency-name=Coin");
  162. out.newLine();
  163. out.write("# Global Region Owners - semicolon delimited. permission groups use \"g:[groupname]\"");
  164. out.newLine();
  165. out.write("globalowners=g:Admins;g:Moderators");
  166. out.newLine();
  167. out.newLine();
  168. out.close();
  169. } catch (IOException ex) {
  170. log.log(Level.SEVERE, "Unable to save " + this.fileName, ex);
  171. }
  172. }
  173. }