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

https://bitbucket.org/SevenBits/mcpatcher · Java · 118 lines · 102 code · 16 blank · 0 comment · 19 complexity · 4844d40a2e247e78d350e6458dd1f8ea MD5 · raw file

  1. package com.prupe.mcpatcher.cc;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import net.minecraft.src.MapColor;
  5. import net.minecraft.src.Potion;
  6. import net.minecraft.src.PotionHelper;
  7. import java.util.*;
  8. public class ColorizeItem {
  9. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  10. private static final Map<Integer, String> entityNamesByID = new HashMap<Integer, String>();
  11. private static final Map<Integer, Integer> spawnerEggShellColors = new HashMap<Integer, Integer>(); // egg.shell.*
  12. private static final Map<Integer, Integer> spawnerEggSpotColors = new HashMap<Integer, Integer>(); // egg.spots.*
  13. private static int waterBottleColor; // potion.water
  14. private static final List<Potion> potions = new ArrayList<Potion>(); // potion.*
  15. private static final String[] MAP_MATERIALS = new String[]{
  16. "air",
  17. "grass",
  18. "sand",
  19. "cloth",
  20. "tnt",
  21. "ice",
  22. "iron",
  23. "foliage",
  24. "snow",
  25. "clay",
  26. "dirt",
  27. "stone",
  28. "water",
  29. "wood",
  30. };
  31. static {
  32. try {
  33. reset();
  34. } catch (Throwable e) {
  35. e.printStackTrace();
  36. }
  37. }
  38. static void reset() {
  39. spawnerEggShellColors.clear();
  40. spawnerEggSpotColors.clear();
  41. if (PotionHelper.getPotionColorCache() != null) {
  42. PotionHelper.getPotionColorCache().clear();
  43. }
  44. waterBottleColor = 0x385dc6;
  45. for (Potion potion : potions) {
  46. potion.color = potion.origColor;
  47. }
  48. for (MapColor mapColor : MapColor.mapColorArray) {
  49. if (mapColor != null) {
  50. mapColor.colorValue = mapColor.origColorValue;
  51. }
  52. }
  53. }
  54. static void reloadPotionColors(Properties properties) {
  55. for (Potion potion : potions) {
  56. Colorizer.loadIntColor(potion.name, potion);
  57. }
  58. int[] temp = new int[]{waterBottleColor};
  59. Colorizer.loadIntColor("potion.water", temp, 0);
  60. waterBottleColor = temp[0];
  61. }
  62. static void reloadMapColors(Properties properties) {
  63. for (int i = 0; i < MapColor.mapColorArray.length; i++) {
  64. if (MapColor.mapColorArray[i] != null) {
  65. int[] rgb = new int[]{MapColor.mapColorArray[i].origColorValue};
  66. Colorizer.loadIntColor("map." + Colorizer.getStringKey(MAP_MATERIALS, i), rgb, 0);
  67. MapColor.mapColorArray[i].colorValue = rgb[0];
  68. }
  69. }
  70. }
  71. public static void setupSpawnerEgg(String entityName, int entityID, int defaultShellColor, int defaultSpotColor) {
  72. logger.config("egg.shell.%s=%06x", entityName, defaultShellColor);
  73. logger.config("egg.spots.%s=%06x", entityName, defaultSpotColor);
  74. entityNamesByID.put(entityID, entityName);
  75. }
  76. public static void setupPotion(Potion potion) {
  77. potion.origColor = potion.color;
  78. potions.add(potion);
  79. }
  80. public static int colorizeSpawnerEgg(int defaultColor, int entityID, int spots) {
  81. if (!Colorizer.useEggColors) {
  82. return defaultColor;
  83. }
  84. Integer value = null;
  85. Map<Integer, Integer> eggMap = (spots == 0 ? spawnerEggShellColors : spawnerEggSpotColors);
  86. if (eggMap.containsKey(entityID)) {
  87. value = eggMap.get(entityID);
  88. } else if (entityNamesByID.containsKey(entityID)) {
  89. String name = entityNamesByID.get(entityID);
  90. if (name != null) {
  91. int[] tmp = new int[]{defaultColor};
  92. Colorizer.loadIntColor((spots == 0 ? "egg.shell." : "egg.spots.") + name, tmp, 0);
  93. eggMap.put(entityID, tmp[0]);
  94. value = tmp[0];
  95. }
  96. }
  97. return value == null ? defaultColor : value;
  98. }
  99. public static int getWaterBottleColor() {
  100. return waterBottleColor;
  101. }
  102. }