/newcode/src/com/prupe/mcpatcher/cc/Colorizer.java

https://bitbucket.org/prupe/mcpatcher · Java · 168 lines · 146 code · 20 blank · 2 comment · 21 complexity · 484233caabe2970862a315538fbb8e23 MD5 · raw file

  1. package com.prupe.mcpatcher.cc;
  2. import com.prupe.mcpatcher.Config;
  3. import com.prupe.mcpatcher.MCLogger;
  4. import com.prupe.mcpatcher.MCPatcherUtils;
  5. import com.prupe.mcpatcher.mal.biome.ColorMap;
  6. import com.prupe.mcpatcher.mal.biome.ColorUtils;
  7. import com.prupe.mcpatcher.mal.resource.PropertiesFile;
  8. import com.prupe.mcpatcher.mal.resource.TexturePackAPI;
  9. import com.prupe.mcpatcher.mal.resource.TexturePackChangeHandler;
  10. import net.minecraft.src.Potion;
  11. import net.minecraft.src.ResourceLocation;
  12. public class Colorizer {
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  14. static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
  15. private static PropertiesFile properties;
  16. static final boolean usePotionColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "potion", true);
  17. static final boolean useParticleColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "particle", true);
  18. static final boolean useFogColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "fog", true);
  19. static final boolean useCloudType = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "clouds", true);
  20. static final boolean useMapColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "map", true);
  21. static final boolean useDyeColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "dye", true);
  22. static final boolean useTextColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "text", true);
  23. static final boolean useXPOrbColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "xporb", true);
  24. static final boolean useEggColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "egg", true);
  25. public static final float[] setColor = new float[3];
  26. static {
  27. try {
  28. reset();
  29. } catch (Throwable e) {
  30. e.printStackTrace();
  31. }
  32. TexturePackChangeHandler.register(new TexturePackChangeHandler(MCPatcherUtils.CUSTOM_COLORS, 2) {
  33. @Override
  34. public void beforeChange() {
  35. reset();
  36. }
  37. @Override
  38. public void afterChange() {
  39. reloadColorProperties();
  40. ColorMap.reloadColorMapSettings(properties);
  41. if (useParticleColors) {
  42. ColorizeEntity.reloadParticleColors(properties);
  43. }
  44. try {
  45. ColorizeBlock.reloadAll(properties);
  46. } catch (NoClassDefFoundError e) {
  47. // not present in 1.8
  48. }
  49. if (useFogColors) {
  50. ColorizeWorld.reloadFogColors(properties);
  51. }
  52. if (usePotionColors) {
  53. ColorizeItem.reloadPotionColors(properties);
  54. }
  55. if (useCloudType) {
  56. ColorizeWorld.reloadCloudType(properties);
  57. }
  58. if (useMapColors) {
  59. ColorizeItem.reloadMapColors(properties);
  60. }
  61. if (useDyeColors) {
  62. ColorizeEntity.reloadDyeColors(properties);
  63. }
  64. if (useTextColors) {
  65. ColorizeWorld.reloadTextColors(properties);
  66. }
  67. if (useXPOrbColors) {
  68. ColorizeEntity.reloadXPOrbColors(properties);
  69. }
  70. }
  71. });
  72. }
  73. public static void setColorF(int color) {
  74. ColorUtils.intToFloat3(color, setColor);
  75. }
  76. static void setColorF(float[] color) {
  77. setColor[0] = color[0];
  78. setColor[1] = color[1];
  79. setColor[2] = color[2];
  80. }
  81. static void init() {
  82. }
  83. private static void reset() {
  84. properties = new PropertiesFile(logger, COLOR_PROPERTIES);
  85. ColorMap.reset();
  86. try {
  87. ColorizeBlock.reset();
  88. } catch (NoClassDefFoundError e) {
  89. // not present in 1.8
  90. }
  91. Lightmap.reset();
  92. ColorizeItem.reset();
  93. ColorizeWorld.reset();
  94. ColorizeEntity.reset();
  95. }
  96. private static void reloadColorProperties() {
  97. properties = PropertiesFile.getNonNull(logger, COLOR_PROPERTIES);
  98. logger.finer("reloading %s", properties);
  99. }
  100. static String getStringKey(String[] keys, int index) {
  101. if (keys != null && index >= 0 && index < keys.length && keys[index] != null) {
  102. return keys[index];
  103. } else {
  104. return "" + index;
  105. }
  106. }
  107. static void loadIntColor(String key, Potion potion) {
  108. potion.color = loadIntColor(key, potion.color);
  109. }
  110. static boolean loadIntColor(String key, int[] color, int index) {
  111. logger.config("%s=%06x", key, color[index]);
  112. String value = properties.getString(key, "");
  113. if (!value.equals("")) {
  114. try {
  115. color[index] = Integer.parseInt(value, 16);
  116. return true;
  117. } catch (NumberFormatException e) {
  118. }
  119. }
  120. return false;
  121. }
  122. static int loadIntColor(String key, int color) {
  123. logger.config("%s=%06x", key, color);
  124. return properties.getHex(key, color);
  125. }
  126. static void loadFloatColor(String key, float[] color) {
  127. int intColor = ColorUtils.float3ToInt(color);
  128. ColorUtils.intToFloat3(loadIntColor(key, intColor), color);
  129. }
  130. static Integer loadIntegerColor(String key) {
  131. int[] tmp = new int[1];
  132. if (loadIntColor(key, tmp, 0)) {
  133. return tmp[0];
  134. } else {
  135. return null;
  136. }
  137. }
  138. static float[] loadFloatColor(String key) {
  139. Integer color = loadIntegerColor(key);
  140. if (color == null) {
  141. return null;
  142. } else {
  143. float[] rgb = new float[3];
  144. ColorUtils.intToFloat3(color, rgb);
  145. return rgb;
  146. }
  147. }
  148. }