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

https://bitbucket.org/SevenBits/mcpatcher · Java · 207 lines · 181 code · 26 blank · 0 comment · 35 complexity · e4f322d2292671e227b5ec8c0b6b1af2 MD5 · raw file

  1. package com.prupe.mcpatcher.cc;
  2. import com.prupe.mcpatcher.*;
  3. import net.minecraft.src.Potion;
  4. import net.minecraft.src.ResourceLocation;
  5. import java.util.Properties;
  6. public class Colorizer {
  7. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  8. static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
  9. private static Properties properties;
  10. static final boolean useWaterColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "water", true);
  11. static final boolean useSwampColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "swamp", true);
  12. static final boolean useTreeColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "tree", true);
  13. static final boolean usePotionColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "potion", true);
  14. static final boolean useParticleColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "particle", true);
  15. static final boolean useFogColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "fog", true);
  16. static final boolean useCloudType = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "clouds", true);
  17. static final boolean useRedstoneColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "redstone", true);
  18. static final boolean useStemColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "stem", true);
  19. static final boolean useMapColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "map", true);
  20. static final boolean useDyeColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "dye", true);
  21. static final boolean useBlockColors = Config.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "otherBlocks", 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. if (useTreeColors) {
  45. ColorizeBlock.reloadFoliageColors(properties);
  46. }
  47. if (useWaterColors) {
  48. ColorizeBlock.reloadWaterColors(properties);
  49. }
  50. if (useBlockColors) {
  51. ColorizeBlock.reloadBlockColors(properties);
  52. }
  53. if (useSwampColors) {
  54. ColorizeBlock.reloadSwampColors(properties);
  55. }
  56. if (useRedstoneColors) {
  57. ColorizeBlock.reloadRedstoneColors(properties);
  58. }
  59. if (useStemColors) {
  60. ColorizeBlock.reloadStemColors(properties);
  61. }
  62. if (useFogColors) {
  63. ColorizeWorld.reloadFogColors(properties);
  64. }
  65. if (usePotionColors) {
  66. ColorizeItem.reloadPotionColors(properties);
  67. }
  68. if (useCloudType) {
  69. ColorizeWorld.reloadCloudType(properties);
  70. }
  71. if (useMapColors) {
  72. ColorizeItem.reloadMapColors(properties);
  73. }
  74. if (useDyeColors) {
  75. ColorizeEntity.reloadDyeColors(properties);
  76. }
  77. if (useTextColors) {
  78. ColorizeWorld.reloadTextColors(properties);
  79. }
  80. if (useXPOrbColors) {
  81. ColorizeEntity.reloadXPOrbColors(properties);
  82. }
  83. }
  84. });
  85. }
  86. public static void setColorF(int color) {
  87. intToFloat3(color, setColor);
  88. }
  89. static void setColorF(float[] color) {
  90. setColor[0] = color[0];
  91. setColor[1] = color[1];
  92. setColor[2] = color[2];
  93. }
  94. static void init() {
  95. }
  96. private static void reset() {
  97. properties = new Properties();
  98. ColorMap.reset();
  99. ColorizeBlock.reset();
  100. Lightmap.reset();
  101. ColorizeItem.reset();
  102. ColorizeWorld.reset();
  103. ColorizeEntity.reset();
  104. }
  105. private static void reloadColorProperties() {
  106. if (TexturePackAPI.getProperties(COLOR_PROPERTIES, properties)) {
  107. logger.finer("reloading %s", COLOR_PROPERTIES);
  108. }
  109. }
  110. static String getStringKey(String[] keys, int index) {
  111. if (keys != null && index >= 0 && index < keys.length && keys[index] != null) {
  112. return keys[index];
  113. } else {
  114. return "" + index;
  115. }
  116. }
  117. static void loadIntColor(String key, Potion potion) {
  118. potion.color = loadIntColor(key, potion.color);
  119. }
  120. static boolean loadIntColor(String key, int[] color, int index) {
  121. logger.config("%s=%06x", key, color[index]);
  122. String value = properties.getProperty(key, "");
  123. if (!value.equals("")) {
  124. try {
  125. color[index] = Integer.parseInt(value, 16);
  126. return true;
  127. } catch (NumberFormatException e) {
  128. }
  129. }
  130. return false;
  131. }
  132. static int loadIntColor(String key, int color) {
  133. logger.config("%s=%06x", key, color);
  134. return MCPatcherUtils.getHexProperty(properties, key, color);
  135. }
  136. static void loadFloatColor(String key, float[] color) {
  137. int intColor = float3ToInt(color);
  138. intToFloat3(loadIntColor(key, intColor), color);
  139. }
  140. static void intToFloat3(int rgb, float[] f, int offset) {
  141. if ((rgb & 0xffffff) == 0xffffff) {
  142. f[offset] = f[offset + 1] = f[offset + 2] = 1.0f;
  143. } else {
  144. f[offset] = (float) (rgb & 0xff0000) / (float) 0xff0000;
  145. f[offset + 1] = (float) (rgb & 0xff00) / (float) 0xff00;
  146. f[offset + 2] = (float) (rgb & 0xff) / (float) 0xff;
  147. }
  148. }
  149. static void intToFloat3(int rgb, float[] f) {
  150. intToFloat3(rgb, f, 0);
  151. }
  152. static int float3ToInt(float[] f, int offset) {
  153. return ((int) (255.0f * f[offset])) << 16 | ((int) (255.0f * f[offset + 1])) << 8 | (int) (255.0f * f[offset + 2]);
  154. }
  155. static int float3ToInt(float[] f) {
  156. return float3ToInt(f, 0);
  157. }
  158. static float clamp(float f) {
  159. if (f < 0.0f) {
  160. return 0.0f;
  161. } else if (f > 1.0f) {
  162. return 1.0f;
  163. } else {
  164. return f;
  165. }
  166. }
  167. static double clamp(double d) {
  168. if (d < 0.0) {
  169. return 0.0;
  170. } else if (d > 1.0) {
  171. return 1.0;
  172. } else {
  173. return d;
  174. }
  175. }
  176. static void clamp(float[] f) {
  177. for (int i = 0; i < f.length; i++) {
  178. f[i] = clamp(f[i]);
  179. }
  180. }
  181. }