/newcode/src/com/prupe/mcpatcher/mal/resource/PropertiesFile.java

https://bitbucket.org/prupe/mcpatcher · Java · 182 lines · 145 code · 37 blank · 0 comment · 16 complexity · 973b52a0775b941162c0d4f887f3b5ac MD5 · raw file

  1. package com.prupe.mcpatcher.mal.resource;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import net.minecraft.src.ResourceLocation;
  5. import java.util.Map;
  6. import java.util.Properties;
  7. import java.util.Set;
  8. import java.util.logging.Level;
  9. final public class PropertiesFile {
  10. private static final MCLogger staticLogger = MCLogger.getLogger("Texture Pack");
  11. private final MCLogger logger;
  12. private final ResourceLocation resource;
  13. private final String prefix;
  14. private final Properties properties;
  15. private int warningCount;
  16. private int errorCount;
  17. public static PropertiesFile get(ResourceLocation resource) {
  18. return get(staticLogger, resource);
  19. }
  20. public static PropertiesFile getNonNull(ResourceLocation resource) {
  21. return getNonNull(staticLogger, resource);
  22. }
  23. public static PropertiesFile get(MCLogger logger, ResourceLocation resource) {
  24. Properties properties = TexturePackAPI.getProperties(resource);
  25. if (properties == null) {
  26. return null;
  27. } else {
  28. return new PropertiesFile(logger, resource, properties);
  29. }
  30. }
  31. public static PropertiesFile getNonNull(MCLogger logger, ResourceLocation resource) {
  32. PropertiesFile propertiesFile = get(logger, resource);
  33. if (propertiesFile == null) {
  34. return new PropertiesFile(logger, resource, new Properties());
  35. } else {
  36. return propertiesFile;
  37. }
  38. }
  39. public PropertiesFile(MCLogger logger, ResourceLocation resource) {
  40. this(logger, resource, new Properties());
  41. }
  42. public PropertiesFile(MCLogger logger, ResourceLocation resource, Properties properties) {
  43. this.logger = logger;
  44. this.resource = resource;
  45. prefix = resource == null ? "" : (resource.toString() + ": ").replace("%", "%%");
  46. this.properties = properties;
  47. }
  48. public String getString(String key, String defaultValue) {
  49. return MCPatcherUtils.getStringProperty(properties, key, defaultValue);
  50. }
  51. public ResourceLocation getResourceLocation(String key, String defaultValue) {
  52. String value = getString(key, defaultValue);
  53. return TexturePackAPI.parseResourceLocation(resource, value);
  54. }
  55. public int getInt(String key, int defaultValue) {
  56. return MCPatcherUtils.getIntProperty(properties, key, defaultValue);
  57. }
  58. public int getHex(String key, int defaultValue) {
  59. return MCPatcherUtils.getHexProperty(properties, key, defaultValue);
  60. }
  61. public float getFloat(String key, float defaultValue) {
  62. return MCPatcherUtils.getFloatProperty(properties, key, defaultValue);
  63. }
  64. public double getDouble(String key, double defaultValue) {
  65. return MCPatcherUtils.getDoubleProperty(properties, key, defaultValue);
  66. }
  67. public int[] getIntList(String key, int minValue, int maxValue) {
  68. return getIntList(key, minValue, maxValue, null);
  69. }
  70. public int[] getIntList(String key, int minValue, int maxValue, String defaultValue) {
  71. String value = getString(key, defaultValue);
  72. if (value == null) {
  73. return null;
  74. } else {
  75. return MCPatcherUtils.parseIntegerList(value, minValue, maxValue);
  76. }
  77. }
  78. public boolean getBoolean(String key, boolean defaultValue) {
  79. return MCPatcherUtils.getBooleanProperty(properties, key, defaultValue);
  80. }
  81. public void setProperty(String key, String value) {
  82. properties.setProperty(key, value);
  83. }
  84. public boolean isLoggable(Level level) {
  85. return logger.isLoggable(level);
  86. }
  87. public void finest(String format, Object... params) {
  88. logger.finest(prefix + format, params);
  89. }
  90. public void finer(String format, Object... params) {
  91. logger.finer(prefix + format, params);
  92. }
  93. public void fine(String format, Object... params) {
  94. logger.fine(prefix + format, params);
  95. }
  96. public void info(String format, Object... params) {
  97. logger.info(prefix + format, params);
  98. }
  99. public void config(String format, Object... params) {
  100. logger.config(format, params);
  101. }
  102. public void warning(String format, Object... params) {
  103. logger.warning(prefix + format, params);
  104. warningCount++;
  105. }
  106. public boolean error(String format, Object... params) {
  107. logger.error(prefix + format, params);
  108. errorCount++;
  109. return false;
  110. }
  111. public int getWarningCount() {
  112. return warningCount;
  113. }
  114. public int getErrorCount() {
  115. return errorCount;
  116. }
  117. public boolean valid() {
  118. return getErrorCount() == 0;
  119. }
  120. @SuppressWarnings("unchecked")
  121. public Set<Map.Entry<String, String>> entrySet() {
  122. return (Set<Map.Entry<String, String>>) (Set) properties.entrySet();
  123. }
  124. public ResourceLocation getResource() {
  125. return resource;
  126. }
  127. @Override
  128. public String toString() {
  129. return resource.toString();
  130. }
  131. @Override
  132. public int hashCode() {
  133. return resource.hashCode();
  134. }
  135. @Override
  136. public boolean equals(Object that) {
  137. if (this == that) {
  138. return true;
  139. } else if (!(that instanceof PropertiesFile)) {
  140. return false;
  141. } else {
  142. return resource.equals(((PropertiesFile) that).resource);
  143. }
  144. }
  145. }