/TreeDrops/src/TreeDropsProps.java

https://github.com/darkdiplomat/TreeDrops · Java · 93 lines · 85 code · 8 blank · 0 comment · 1 complexity · 9db325266d640a23d2af29afd154ac29 MD5 · raw file

  1. import java.io.BufferedWriter;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileWriter;
  5. import java.util.Properties;
  6. import java.util.logging.Level;
  7. import java.util.logging.Logger;
  8. public class TreeDropsProps {
  9. private static String INIFILE = "plugins/config/TreeDrops/TreeDropsConfig.ini";
  10. static Logger log = Logger.getLogger("Minecraft");
  11. static String AppleDropsChance = "0.05";
  12. static String GoldenAppleDropsChance = "0.02";
  13. static String CocobeanDropsChance = "0.01";
  14. static String DropOnLeafDecay = "false";
  15. static String DropOnLeafDestroy = "true";
  16. public static double getAppleDrops(){
  17. double AppleDrops = 0.05;
  18. try{
  19. AppleDrops = Double.parseDouble(AppleDropsChance);
  20. }catch (NumberFormatException n){
  21. log.log(Level.SEVERE, "[TreeDrops] Unable to parse Apple-Drops-Chance, using defaults");
  22. }
  23. return AppleDrops;
  24. }
  25. public static double getGoldenAppleDrops(){
  26. double GoldenAppleDrops = 0.02;
  27. try{
  28. GoldenAppleDrops = Double.parseDouble(GoldenAppleDropsChance);
  29. }catch (NumberFormatException n){
  30. log.log(Level.SEVERE, "[TreeDrops] Unable to parse Apple-Drops-Chance, using defaults");
  31. }
  32. return GoldenAppleDrops;
  33. }
  34. public static double getCocobeanDrops(){
  35. double CocobeanDrops = 0.01;
  36. try{
  37. CocobeanDrops = Double.parseDouble(CocobeanDropsChance);
  38. }catch (NumberFormatException n){
  39. log.log(Level.SEVERE, "[TreeDrops] Unable to parse Apple-Drops-Chance, using defaults");
  40. }
  41. return CocobeanDrops;
  42. }
  43. public static boolean getUseOnLeafDecay(){
  44. boolean decay = Boolean.parseBoolean(DropOnLeafDecay);
  45. return decay;
  46. }
  47. public static boolean getUseOnLeafDestory(){
  48. boolean destroy = Boolean.parseBoolean(DropOnLeafDestroy);
  49. return destroy;
  50. }
  51. public static void loadIni() {
  52. File inifile = new File(INIFILE);
  53. if (inifile.exists()) {
  54. try {
  55. Properties iniSettings = new Properties();
  56. iniSettings.load(new FileInputStream(inifile));
  57. AppleDropsChance = iniSettings.getProperty("Apple-Drops-Chance", AppleDropsChance);
  58. GoldenAppleDropsChance = iniSettings.getProperty("GoldenApple-Drops-Chance", GoldenAppleDropsChance);
  59. CocobeanDropsChance = iniSettings.getProperty("Cocobean-Drops-Chance", CocobeanDropsChance);
  60. DropOnLeafDecay = iniSettings.getProperty("DropOnLeafDecay", DropOnLeafDecay);
  61. DropOnLeafDestroy = iniSettings.getProperty("DropOnLeafDestroy", DropOnLeafDestroy);
  62. }catch (Exception e) {
  63. log.log(Level.SEVERE, "[TreeDrops] file load failed, using defaults.");
  64. }
  65. createIni();
  66. }else {
  67. createIni();
  68. }
  69. }
  70. public static void createIni() {
  71. File inifile = new File(INIFILE);
  72. try {
  73. inifile.getParentFile().mkdirs();
  74. BufferedWriter outChannel = new BufferedWriter(new FileWriter(inifile));
  75. outChannel.write("Apple-Drops-Chance = " + AppleDropsChance); outChannel.newLine();
  76. outChannel.write("GoldenApple-Drops-Chance = " + GoldenAppleDropsChance); outChannel.newLine();
  77. outChannel.write("Cocobean-Drops-Chance = " + CocobeanDropsChance); outChannel.newLine();
  78. outChannel.write("DropOnLeafDecay = " + DropOnLeafDecay); outChannel.newLine();
  79. outChannel.write("DropOnLeafDestroy = " + DropOnLeafDestroy); outChannel.newLine();
  80. outChannel.close();
  81. } catch (Exception e) {
  82. log.log(Level.SEVERE, "[TreeDrops] file creation failed, using defaults.");
  83. }
  84. }
  85. }