/net/minecraft/server/PropertyManager.java

https://bitbucket.org/agaricusb/mc-dev · Java · 102 lines · 88 code · 14 blank · 0 comment · 7 complexity · 1b3fcab96d8d86189afc4a86eabb2471 MD5 · raw file

  1. package net.minecraft.server;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.util.Properties;
  7. import java.util.logging.Level;
  8. import java.util.logging.Logger;
  9. public class PropertyManager {
  10. public static Logger a = Logger.getLogger("Minecraft");
  11. private Properties properties = new Properties();
  12. private File c;
  13. public PropertyManager(File file1) {
  14. this.c = file1;
  15. if (file1.exists()) {
  16. FileInputStream fileinputstream = null;
  17. try {
  18. fileinputstream = new FileInputStream(file1);
  19. this.properties.load(fileinputstream);
  20. } catch (Exception exception) {
  21. a.log(Level.WARNING, "Failed to load " + file1, exception);
  22. this.a();
  23. } finally {
  24. if (fileinputstream != null) {
  25. try {
  26. fileinputstream.close();
  27. } catch (IOException ioexception) {
  28. ;
  29. }
  30. }
  31. }
  32. } else {
  33. a.log(Level.WARNING, file1 + " does not exist");
  34. this.a();
  35. }
  36. }
  37. public void a() {
  38. a.log(Level.INFO, "Generating new properties file");
  39. this.savePropertiesFile();
  40. }
  41. public void savePropertiesFile() {
  42. FileOutputStream fileoutputstream = null;
  43. try {
  44. fileoutputstream = new FileOutputStream(this.c);
  45. this.properties.store(fileoutputstream, "Minecraft server properties");
  46. } catch (Exception exception) {
  47. a.log(Level.WARNING, "Failed to save " + this.c, exception);
  48. this.a();
  49. } finally {
  50. if (fileoutputstream != null) {
  51. try {
  52. fileoutputstream.close();
  53. } catch (IOException ioexception) {
  54. ;
  55. }
  56. }
  57. }
  58. }
  59. public File c() {
  60. return this.c;
  61. }
  62. public String getString(String s, String s1) {
  63. if (!this.properties.containsKey(s)) {
  64. this.properties.setProperty(s, s1);
  65. this.savePropertiesFile();
  66. }
  67. return this.properties.getProperty(s, s1);
  68. }
  69. public int getInt(String s, int i) {
  70. try {
  71. return Integer.parseInt(this.getString(s, "" + i));
  72. } catch (Exception exception) {
  73. this.properties.setProperty(s, "" + i);
  74. return i;
  75. }
  76. }
  77. public boolean getBoolean(String s, boolean flag) {
  78. try {
  79. return Boolean.parseBoolean(this.getString(s, "" + flag));
  80. } catch (Exception exception) {
  81. this.properties.setProperty(s, "" + flag);
  82. return flag;
  83. }
  84. }
  85. public void a(String s, Object object) {
  86. this.properties.setProperty(s, "" + object);
  87. }
  88. }