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

https://bitbucket.org/prupe/mcpatcher · Java · 152 lines · 132 code · 18 blank · 2 comment · 20 complexity · 96bbb36588d017c4c81e3e93c733b7ab MD5 · raw file

  1. package com.prupe.mcpatcher.cc;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import com.prupe.mcpatcher.mal.resource.PropertiesFile;
  5. import net.minecraft.src.MapColor;
  6. import net.minecraft.src.Potion;
  7. import net.minecraft.src.PotionHelper;
  8. import java.util.ArrayList;
  9. import java.util.HashMap;
  10. import java.util.List;
  11. import java.util.Map;
  12. public class ColorizeItem {
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  14. private static final Map<Integer, String> entityNamesByID = new HashMap<Integer, String>();
  15. private static final Map<Integer, Integer> spawnerEggShellColors = new HashMap<Integer, Integer>(); // egg.shell.*
  16. private static final Map<Integer, Integer> spawnerEggSpotColors = new HashMap<Integer, Integer>(); // egg.spots.*
  17. private static int waterBottleColor; // potion.water
  18. private static final List<Potion> potions = new ArrayList<Potion>(); // potion.*
  19. private static boolean potionsInitialized;
  20. private static final String[] MAP_MATERIALS = new String[]{
  21. "air",
  22. "grass",
  23. "sand",
  24. "cloth",
  25. "tnt",
  26. "ice",
  27. "iron",
  28. "foliage",
  29. "snow",
  30. "clay",
  31. "dirt",
  32. "stone",
  33. "water",
  34. "wood",
  35. "quartz",
  36. "adobe",
  37. "magenta",
  38. "lightBlue",
  39. "yellow",
  40. "lime",
  41. "pink",
  42. "gray",
  43. "silver",
  44. "cyan",
  45. "purple",
  46. "blue",
  47. "brown",
  48. "green",
  49. "red",
  50. "black",
  51. "gold",
  52. "diamond",
  53. "lapis",
  54. "emerald",
  55. "obsidian",
  56. "netherrack",
  57. };
  58. static {
  59. try {
  60. reset();
  61. } catch (Throwable e) {
  62. e.printStackTrace();
  63. }
  64. }
  65. static void reset() {
  66. spawnerEggShellColors.clear();
  67. spawnerEggSpotColors.clear();
  68. // 1.5+btw: Calling PotionHelper on startup runs the static initializer which crashes because Potion class
  69. // hasn't finished initializing yet.
  70. if (potionsInitialized) {
  71. if (PotionHelper.getPotionColorCache() != null) {
  72. PotionHelper.getPotionColorCache().clear();
  73. }
  74. }
  75. potionsInitialized = true;
  76. waterBottleColor = 0x385dc6;
  77. for (Potion potion : potions) {
  78. potion.color = potion.origColor;
  79. }
  80. for (MapColor mapColor : MapColor.mapColorArray) {
  81. if (mapColor != null) {
  82. mapColor.colorValue = mapColor.origColorValue;
  83. }
  84. }
  85. }
  86. static void reloadPotionColors(PropertiesFile properties) {
  87. for (Potion potion : potions) {
  88. Colorizer.loadIntColor(potion.name, potion);
  89. }
  90. int[] temp = new int[]{waterBottleColor};
  91. Colorizer.loadIntColor("potion.water", temp, 0);
  92. waterBottleColor = temp[0];
  93. }
  94. static void reloadMapColors(PropertiesFile properties) {
  95. for (int i = 0; i < MapColor.mapColorArray.length; i++) {
  96. if (MapColor.mapColorArray[i] != null) {
  97. int[] rgb = new int[]{MapColor.mapColorArray[i].origColorValue};
  98. Colorizer.loadIntColor("map." + Colorizer.getStringKey(MAP_MATERIALS, i), rgb, 0);
  99. MapColor.mapColorArray[i].colorValue = rgb[0];
  100. }
  101. }
  102. }
  103. public static void setupSpawnerEgg(String entityName, int entityID, int defaultShellColor, int defaultSpotColor) {
  104. logger.config("egg.shell.%s=%06x", entityName, defaultShellColor);
  105. logger.config("egg.spots.%s=%06x", entityName, defaultSpotColor);
  106. entityNamesByID.put(entityID, entityName);
  107. }
  108. public static void setupPotion(Potion potion) {
  109. potion.origColor = potion.color;
  110. potions.add(potion);
  111. }
  112. public static int colorizeSpawnerEgg(int defaultColor, int entityID, int spots) {
  113. if (!Colorizer.useEggColors) {
  114. return defaultColor;
  115. }
  116. Integer value = null;
  117. Map<Integer, Integer> eggMap = (spots == 0 ? spawnerEggShellColors : spawnerEggSpotColors);
  118. if (eggMap.containsKey(entityID)) {
  119. value = eggMap.get(entityID);
  120. } else if (entityNamesByID.containsKey(entityID)) {
  121. String name = entityNamesByID.get(entityID);
  122. if (name != null) {
  123. int[] tmp = new int[]{defaultColor};
  124. Colorizer.loadIntColor((spots == 0 ? "egg.shell." : "egg.spots.") + name, tmp, 0);
  125. eggMap.put(entityID, tmp[0]);
  126. value = tmp[0];
  127. }
  128. }
  129. return value == null ? defaultColor : value;
  130. }
  131. public static int getWaterBottleColor() {
  132. return waterBottleColor;
  133. }
  134. }