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

https://bitbucket.org/prupe/mcpatcher · Java · 210 lines · 184 code · 26 blank · 0 comment · 34 complexity · cf6baccf72aa7f5910b303daf9b0303b MD5 · raw file

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