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

https://bitbucket.org/prupe/mcpatcher · Java · 302 lines · 261 code · 28 blank · 13 comment · 45 complexity · f838e5b2d130ca6e1722a91ad37982ae 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.ctm.CTMUtils18;
  5. import com.prupe.mcpatcher.mal.biome.ColorUtils;
  6. import com.prupe.mcpatcher.mal.biome.IColorMap;
  7. import com.prupe.mcpatcher.mal.block.BlockAPI;
  8. import com.prupe.mcpatcher.mal.block.BlockStateMatcher;
  9. import com.prupe.mcpatcher.mal.block.RenderPassAPI;
  10. import com.prupe.mcpatcher.mal.resource.PropertiesFile;
  11. import com.prupe.mcpatcher.mal.resource.TexturePackAPI;
  12. import com.prupe.mcpatcher.mal.resource.TexturePackChangeHandler;
  13. import com.prupe.mcpatcher.mal.tessellator.TessellatorAPI;
  14. import net.minecraft.src.*;
  15. import java.util.List;
  16. public class ColorizeBlock18 {
  17. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  18. private static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
  19. private static Block grassBlock;
  20. private static Block mycelBlock;
  21. private final CTMUtils18 ctm;
  22. private boolean useCM;
  23. private IColorMap colorMap;
  24. private boolean isSmooth;
  25. private final float[][] vertexColors = new float[4][3];
  26. public final float[] vertexColor = new float[3];
  27. private static final int[][][] FACE_VERTICES = new int[][][]{
  28. // bottom face (y=0)
  29. {
  30. {0, 0, 1}, // top left
  31. {0, 0, 0}, // bottom left
  32. {1, 0, 0}, // bottom right
  33. {1, 0, 1}, // top right
  34. },
  35. // top face (y=1)
  36. {
  37. {0, 1, 0},
  38. {0, 1, 1},
  39. {1, 1, 1},
  40. {1, 1, 0},
  41. },
  42. // north face (z=0)
  43. {
  44. {1, 1, 0},
  45. {1, 0, 0},
  46. {0, 0, 0},
  47. {0, 1, 0},
  48. },
  49. // south face (z=1)
  50. {
  51. {0, 1, 1},
  52. {0, 0, 1},
  53. {1, 0, 1},
  54. {1, 1, 1},
  55. },
  56. // west face (x=0)
  57. {
  58. {0, 1, 0},
  59. {0, 0, 0},
  60. {0, 0, 1},
  61. {0, 1, 1},
  62. },
  63. // east face (x=1)
  64. {
  65. {1, 1, 1},
  66. {1, 0, 1},
  67. {1, 0, 0},
  68. {1, 1, 0},
  69. }
  70. };
  71. private static final int[][][] FACE_VERTICES_WATER = new int[][][]{
  72. // bottom face (y=0)
  73. {
  74. {0, 0, 1}, // top left
  75. {0, 0, 0}, // bottom left
  76. {1, 0, 0}, // bottom right
  77. {1, 0, 1}, // top right
  78. },
  79. // top face (y=1)
  80. {
  81. {0, 1, 0},
  82. {0, 1, 1},
  83. {1, 1, 1},
  84. {1, 1, 0},
  85. },
  86. // north face (z=0)
  87. {
  88. {0, 1, 0},
  89. {1, 1, 0},
  90. {1, 0, 0},
  91. {0, 0, 0},
  92. },
  93. // south face (z=1)
  94. {
  95. {1, 1, 1},
  96. {0, 1, 1},
  97. {0, 0, 1},
  98. {1, 0, 1},
  99. },
  100. // west face (x=0)
  101. {
  102. {0, 1, 1},
  103. {0, 1, 0},
  104. {0, 0, 0},
  105. {0, 0, 1},
  106. },
  107. // east face (x=1)
  108. {
  109. {1, 1, 0},
  110. {1, 1, 1},
  111. {1, 0, 1},
  112. {1, 0, 0},
  113. }
  114. };
  115. static {
  116. TexturePackChangeHandler.register(new TexturePackChangeHandler(MCPatcherUtils.CUSTOM_COLORS, 2) {
  117. @Override
  118. public void beforeChange() {
  119. reset();
  120. }
  121. @Override
  122. public void afterChange() {
  123. PropertiesFile properties = PropertiesFile.getNonNull(logger, COLOR_PROPERTIES);
  124. ColorizeBlock.reloadAll(properties);
  125. }
  126. });
  127. }
  128. public static void reset() {
  129. try {
  130. grassBlock = BlockAPI.getFixedBlock("minecraft:grass");
  131. mycelBlock = BlockAPI.getFixedBlock("minecraft:mycelium");
  132. ColorizeBlock.reset();
  133. } catch (Throwable e) {
  134. e.printStackTrace();
  135. }
  136. }
  137. public ColorizeBlock18(CTMUtils18 ctm) {
  138. this.ctm = ctm;
  139. }
  140. public void preRender(IBlockAccess blockAccess, IModel model, IBlockState blockState, Position position, Block block, boolean useAO) {
  141. colorMap = null;
  142. useCM = RenderPassAPI.instance.useColorMultiplierThisPass(block);
  143. if (useCM) {
  144. List<BlockStateMatcher> maps = ColorizeBlock.findColorMaps(block);
  145. if (maps != null) {
  146. for (BlockStateMatcher matcher : maps) {
  147. if (matcher.matchBlockState(blockState)) {
  148. colorMap = ColorizeBlock.getThreadLocal(matcher);
  149. break;
  150. }
  151. }
  152. }
  153. }
  154. isSmooth = false;
  155. }
  156. public void preRenderHeld(IModel model, IBlockState blockState, Block block) {
  157. colorMap = null;
  158. isSmooth = false;
  159. List<BlockStateMatcher> maps = ColorizeBlock.findColorMaps(block);
  160. if (maps != null) {
  161. for (BlockStateMatcher matcher : maps) {
  162. if (matcher.matchBlockState(blockState)) {
  163. colorMap = ColorizeBlock.getThreadLocal(matcher);
  164. break;
  165. }
  166. }
  167. }
  168. }
  169. public void clear() {
  170. colorMap = null;
  171. isSmooth = false;
  172. }
  173. public void setDirection(Direction direction) {
  174. setDirection(direction, FACE_VERTICES);
  175. }
  176. public void setDirectionWater(Direction direction) {
  177. setDirection(direction, FACE_VERTICES_WATER);
  178. }
  179. private void setDirection(Direction direction, int[][][] faceVertices) {
  180. if (ColorizeBlock.enableSmoothBiomes && direction != null && colorMap != null && ctm.isInWorld()) {
  181. isSmooth = true;
  182. int[][] offsets = faceVertices[direction.ordinal()];
  183. computeVertexColor(offsets[0], vertexColors[0]);
  184. computeVertexColor(offsets[1], vertexColors[1]);
  185. computeVertexColor(offsets[2], vertexColors[2]);
  186. computeVertexColor(offsets[3], vertexColors[3]);
  187. } else {
  188. isSmooth = false;
  189. }
  190. }
  191. private void computeVertexColor(int[] offsets, float[] color) {
  192. int i = ctm.getI() + offsets[0];
  193. int j = ctm.getJ() + offsets[1];
  194. int k = ctm.getK() + offsets[2];
  195. if (ColorizeBlock.enableTestColorSmoothing) {
  196. int rgb = 0;
  197. if (i % 2 == 0) {
  198. rgb |= 0xff0000;
  199. }
  200. if (j % 2 == 0) {
  201. rgb |= 0x00ff00;
  202. }
  203. if (k % 2 == 0) {
  204. rgb |= 0x0000ff;
  205. }
  206. ColorUtils.intToFloat3(rgb, color);
  207. } else {
  208. float[] tmp = colorMap.getColorMultiplierF(ctm.getBlockAccess(), i, j, k);
  209. color[0] = tmp[0];
  210. color[1] = tmp[1];
  211. color[2] = tmp[2];
  212. }
  213. }
  214. public boolean useColormap(ModelFace face) {
  215. return useCM && (face.useColormap() || (colorMap != null && ctm.getBlock() != grassBlock && ctm.getBlock() != mycelBlock));
  216. }
  217. public int colorMultiplier(int color) {
  218. if (colorMap == null) {
  219. return color;
  220. } else if (ctm.isInWorld()) {
  221. return colorMap.getColorMultiplier(ctm.getBlockAccess(), ctm.getI(), ctm.getJ(), ctm.getK());
  222. } else {
  223. return colorMap.getColorMultiplier();
  224. }
  225. }
  226. public float getVertexColor(float color, int vertex, int channel) {
  227. if (isSmooth) {
  228. return vertexColors[vertex][channel];
  229. } else {
  230. return color;
  231. }
  232. }
  233. public void applyVertexColor(Tessellator tessellator, float base, int vertex) {
  234. if (isSmooth) {
  235. float[] rgb = vertexColors[vertex];
  236. TessellatorAPI.setColorOpaque_F(tessellator, base * rgb[0], base * rgb[1], base * rgb[2]);
  237. }
  238. }
  239. public float applyVertexColor(float base, int vertex, float r, float g, float b) {
  240. if (isSmooth) {
  241. float[] rgb = vertexColors[vertex];
  242. vertexColor[0] = base * rgb[0];
  243. vertexColor[1] = base * rgb[1];
  244. vertexColor[2] = base * rgb[2];
  245. } else {
  246. vertexColor[0] = r;
  247. vertexColor[1] = g;
  248. vertexColor[2] = b;
  249. }
  250. return vertexColor[0];
  251. }
  252. public float getVertexColor(int index) {
  253. return vertexColor[index];
  254. }
  255. public int getParticleColor(IBlockAccess blockAccess, IBlockState blockState, Position position, int defaultColor) {
  256. return getColorMultiplier(blockAccess, blockState, position, defaultColor);
  257. }
  258. // public static methods requested by MamiyaOtaru for VoxelMap
  259. public static int getColorMultiplier(IBlockAccess blockAccess, IBlockState blockState, Position position, int defaultColor) {
  260. List<BlockStateMatcher> maps = ColorizeBlock.findColorMaps(blockState.getBlock());
  261. if (maps != null) {
  262. for (BlockStateMatcher matcher : maps) {
  263. if (matcher.matchBlockState(blockState)) {
  264. IColorMap colorMap = ColorizeBlock.getThreadLocal(matcher);
  265. return colorMap.getColorMultiplier(blockAccess, position.getI(), position.getJ(), position.getK());
  266. }
  267. }
  268. }
  269. return defaultColor;
  270. }
  271. public static int getColorMultiplier(IBlockAccess blockAccess, IBlockState blockState, Position position) {
  272. return getColorMultiplier(blockAccess, blockState, position, 0xffffff);
  273. }
  274. }