/src/org/getspout/spout/config/ConfigReader.java

https://gitlab.com/N3X15/Spout · Java · 223 lines · 171 code · 36 blank · 16 comment · 45 complexity · 49525ccef4a5cb6b724a58bef015a8e2 MD5 · raw file

  1. /*
  2. * This file is part of Spout (http://wiki.getspout.org/).
  3. *
  4. * Spout is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * Spout is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package org.getspout.spout.config;
  18. import java.io.File;
  19. import java.io.IOException;
  20. import java.util.logging.Logger;
  21. import org.bukkit.util.config.Configuration;
  22. import org.getspout.spout.Spout;
  23. @SuppressWarnings("deprecation")
  24. public class ConfigReader {
  25. private static boolean forceClient = false;
  26. private static boolean autoUpdate = false;
  27. private static int authTicks = 200;
  28. private static String kickMessage = "This server requires Spoutcraft! http://bit.ly/unleashtheflow";
  29. private static boolean allowSkyCheat = false;
  30. private static boolean allowClearWaterCheat = false;
  31. private static boolean allowStarsCheat = false;
  32. private static boolean allowWeatherCheat = false;
  33. private static boolean allowTimeCheat = false;
  34. private static boolean allowCoordsCheat = false;
  35. private static boolean allowEntityLabelCheat = false;
  36. private static boolean chunkDataCache = true;
  37. private static boolean teleportSmoothing = true;
  38. private static boolean authenticateSpoutcraft = true;
  39. public void read() {
  40. try {
  41. File directory = Spout.getInstance().getDataFolder();
  42. if (!directory.exists()) {
  43. try {
  44. directory.mkdir();
  45. }
  46. catch (SecurityException e1) {}
  47. }
  48. File config = new File(directory, "config.yml");
  49. if (!config.exists()) {
  50. try {
  51. config.createNewFile();
  52. }
  53. catch (SecurityException e1) {}
  54. }
  55. Configuration configuration = Spout.getInstance().getConfiguration();
  56. configuration.load();
  57. if (configuration.getProperty("ForceSinglePlayerClient") != null) {
  58. forceClient = configuration.getBoolean("ForceSinglePlayerClient", false);
  59. }
  60. else {
  61. configuration.setProperty("ForceSinglePlayerClient", false);
  62. }
  63. if (configuration.getProperty("ForceSinglePlayerClientKickMessage") != null) {
  64. kickMessage = configuration.getString("ForceSinglePlayerClientKickMessage");
  65. }
  66. else {
  67. configuration.setProperty("ForceSinglePlayerClientKickMessage", kickMessage);
  68. }
  69. if (configuration.getProperty("AuthenticateTicks") != null) {
  70. authTicks = configuration.getInt("AuthenticateTicks", 200);
  71. }
  72. else {
  73. configuration.setProperty("AuthenticateTicks", authTicks);
  74. }
  75. if (configuration.getProperty("AutoUpdate") != null) {
  76. autoUpdate = configuration.getBoolean("AutoUpdate", true);
  77. }
  78. else {
  79. configuration.setProperty("AutoUpdate", true);
  80. }
  81. if (configuration.getProperty("AllowSkyCheat") != null) {
  82. allowSkyCheat = configuration.getBoolean("AllowSkyCheat", false);
  83. }
  84. else {
  85. configuration.setProperty("AllowSkyCheat", false);
  86. }
  87. if (configuration.getProperty("AllowClearWaterCheat") != null) {
  88. allowClearWaterCheat = configuration.getBoolean("AllowClearWaterCheat", false);
  89. }
  90. else {
  91. configuration.setProperty("AllowClearWaterCheat", false);
  92. }
  93. if (configuration.getProperty("AllowStarsCheat") != null) {
  94. allowStarsCheat = configuration.getBoolean("AllowStarsCheat", false);
  95. }
  96. else {
  97. configuration.setProperty("AllowStarsCheat", false);
  98. }
  99. if (configuration.getProperty("AllowWeatherCheat") != null) {
  100. allowWeatherCheat = configuration.getBoolean("AllowWeatherCheat", false);
  101. }
  102. else {
  103. configuration.setProperty("AllowWeatherCheat", false);
  104. }
  105. if (configuration.getProperty("AllowTimeCheat") != null) {
  106. allowTimeCheat = configuration.getBoolean("AllowTimeCheat", false);
  107. }
  108. else {
  109. configuration.setProperty("AllowTimeCheat", false);
  110. }
  111. if (configuration.getProperty("AllowCoordsCheat") != null) {
  112. allowCoordsCheat = configuration.getBoolean("AllowCoordsCheat", false);
  113. }
  114. else {
  115. configuration.setProperty("AllowCoordsCheat", false);
  116. }
  117. if (configuration.getProperty("AllowEntityLabelCheat") != null) {
  118. allowEntityLabelCheat = configuration.getBoolean("AllowEntityLabelCheat", false);
  119. }
  120. else {
  121. configuration.setProperty("AllowEntityLabelCheat", false);
  122. }
  123. if (configuration.getProperty("ChunkDataCache") != null) {
  124. chunkDataCache = configuration.getBoolean("ChunkDataCache", true);
  125. } else {
  126. configuration.setProperty("ChunkDataCache", true);
  127. }
  128. if (configuration.getProperty("TeleportSmoothing") != null) {
  129. teleportSmoothing = configuration.getBoolean("TeleportSmoothing", true);
  130. } else {
  131. configuration.setProperty("TeleportSmoothing", true);
  132. }
  133. if (configuration.getProperty("AuthenticateSpoutcraft") != null) {
  134. authenticateSpoutcraft = configuration.getBoolean("AuthenticateSpoutcraft", true);
  135. } else {
  136. configuration.setProperty("AuthenticateSpoutcraft", true);
  137. }
  138. if (!configuration.save()) {
  139. throw new IOException();
  140. }
  141. } catch (Exception e) {
  142. Logger.getLogger("minecraft").severe("[Spout] Failed to read configuration!");
  143. }
  144. }
  145. public static boolean isForceClient() {
  146. return forceClient;
  147. }
  148. public static boolean isAutoUpdate() {
  149. return autoUpdate;
  150. }
  151. public static String getKickMessage() {
  152. return kickMessage;
  153. }
  154. public static int getAuthenticateTicks() {
  155. return authTicks;
  156. }
  157. public static boolean isAllowSkyCheat() {
  158. return allowSkyCheat;
  159. }
  160. public static boolean isAllowClearWaterCheat() {
  161. return allowClearWaterCheat;
  162. }
  163. public static boolean isAllowStarsCheat() {
  164. return allowStarsCheat;
  165. }
  166. public static boolean isAllowWeatherCheat() {
  167. return allowWeatherCheat;
  168. }
  169. public static boolean isAllowTimeCheat() {
  170. return allowTimeCheat;
  171. }
  172. public static boolean isAllowCoordsCheat() {
  173. return allowCoordsCheat;
  174. }
  175. public static boolean isAllowEntityLabelCheat() {
  176. return allowEntityLabelCheat;
  177. }
  178. public static boolean isChunkDataCache() {
  179. return chunkDataCache;
  180. }
  181. public static boolean isTeleportSmoothing() {
  182. return teleportSmoothing;
  183. }
  184. public static boolean authenticateSpoutcraft() {
  185. return authenticateSpoutcraft;
  186. }
  187. }