/newcode/src/com/prupe/mcpatcher/mal/biome/BiomeAPI.java

https://bitbucket.org/SevenBits/mcpatcher · Java · 252 lines · 210 code · 42 blank · 0 comment · 40 complexity · ffec5677c859412ba12e8a1b4250f748 MD5 · raw file

  1. package com.prupe.mcpatcher.mal.biome;
  2. import com.prupe.mcpatcher.MAL;
  3. import com.prupe.mcpatcher.MCLogger;
  4. import com.prupe.mcpatcher.MCPatcherUtils;
  5. import net.minecraft.client.Minecraft;
  6. import net.minecraft.src.BiomeGenBase;
  7. import net.minecraft.src.IBlockAccess;
  8. import net.minecraft.src.Position;
  9. import java.lang.reflect.Method;
  10. import java.util.BitSet;
  11. import java.util.Properties;
  12. abstract public class BiomeAPI {
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  14. private static final BiomeAPI instance = MAL.newInstance(BiomeAPI.class, "biome");
  15. public static final int WORLD_MAX_HEIGHT = 255;
  16. public static final boolean isColorHeightDependent = instance.isColorHeightDependent();
  17. private static boolean biomesLogged;
  18. private static Method getWaterColorMultiplier;
  19. private static BiomeGenBase lastBiome;
  20. private static int lastI;
  21. private static int lastK;
  22. static {
  23. try {
  24. getWaterColorMultiplier = BiomeGenBase.class.getDeclaredMethod("getWaterColorMultiplier");
  25. getWaterColorMultiplier.setAccessible(true);
  26. logger.config("forge getWaterColorMultiplier detected");
  27. } catch (NoSuchMethodException e) {
  28. }
  29. }
  30. public static void parseBiomeList(String list, BitSet bits) {
  31. logBiomes();
  32. if (MCPatcherUtils.isNullOrEmpty(list)) {
  33. return;
  34. }
  35. for (String s : list.split(list.contains(",") ? "\\s*,\\s*" : "\\s+")) {
  36. BiomeGenBase biome = findBiomeByName(s);
  37. if (biome != null) {
  38. bits.set(biome.biomeID);
  39. }
  40. }
  41. }
  42. public static BitSet getHeightListProperty(Properties properties, String suffix) {
  43. int minHeight = Math.max(MCPatcherUtils.getIntProperty(properties, "minHeight" + suffix, 0), 0);
  44. int maxHeight = Math.min(MCPatcherUtils.getIntProperty(properties, "maxHeight" + suffix, WORLD_MAX_HEIGHT), WORLD_MAX_HEIGHT);
  45. String heightStr = MCPatcherUtils.getStringProperty(properties, "heights" + suffix, "");
  46. if (minHeight == 0 && maxHeight == WORLD_MAX_HEIGHT && heightStr.length() == 0) {
  47. return null;
  48. } else {
  49. BitSet heightBits = new BitSet(WORLD_MAX_HEIGHT + 1);
  50. if (heightStr.length() == 0) {
  51. heightStr = String.valueOf(minHeight) + "-" + String.valueOf(maxHeight);
  52. }
  53. for (int i : MCPatcherUtils.parseIntegerList(heightStr, 0, WORLD_MAX_HEIGHT)) {
  54. heightBits.set(i);
  55. }
  56. return heightBits;
  57. }
  58. }
  59. public static BiomeGenBase findBiomeByName(String name) {
  60. logBiomes();
  61. if (name == null) {
  62. return null;
  63. }
  64. name = name.replace(" ", "");
  65. if (name.isEmpty()) {
  66. return null;
  67. }
  68. for (BiomeGenBase biome : BiomeGenBase.biomeList) {
  69. if (biome == null || biome.biomeName == null) {
  70. continue;
  71. }
  72. if (name.equalsIgnoreCase(biome.biomeName) || name.equalsIgnoreCase(biome.biomeName.replace(" ", ""))) {
  73. if (biome.biomeID >= 0 && biome.biomeID < BiomeGenBase.biomeList.length) {
  74. return biome;
  75. }
  76. }
  77. }
  78. return null;
  79. }
  80. public static IBlockAccess getWorld() {
  81. return Minecraft.getInstance().theWorld;
  82. }
  83. public static int getBiomeIDAt(IBlockAccess blockAccess, int i, int j, int k) {
  84. BiomeGenBase biome = getBiomeGenAt(blockAccess, i, j, k);
  85. return biome == null ? BiomeGenBase.biomeList.length : biome.biomeID;
  86. }
  87. public static BiomeGenBase getBiomeGenAt(IBlockAccess blockAccess, int i, int j, int k) {
  88. if (lastBiome == null || i != lastI || k != lastK) {
  89. lastI = i;
  90. lastK = k;
  91. lastBiome = instance.getBiomeGenAt_Impl(blockAccess, i, j, k);
  92. }
  93. return lastBiome;
  94. }
  95. public static float getTemperature(BiomeGenBase biome, int i, int j, int k) {
  96. return instance.getTemperaturef_Impl(biome, i, j, k);
  97. }
  98. public static float getTemperature(IBlockAccess blockAccess, int i, int j, int k) {
  99. return getTemperature(getBiomeGenAt(blockAccess, i, j, k), i, j, k);
  100. }
  101. public static float getRainfall(BiomeGenBase biome, int i, int j, int k) {
  102. return biome.getRainfallf();
  103. }
  104. public static float getRainfall(IBlockAccess blockAccess, int i, int j, int k) {
  105. return getRainfall(getBiomeGenAt(blockAccess, i, j, k), i, j, k);
  106. }
  107. public static int getGrassColor(BiomeGenBase biome, int i, int j, int k) {
  108. return instance.getGrassColor_Impl(biome, i, j, k);
  109. }
  110. public static int getFoliageColor(BiomeGenBase biome, int i, int j, int k) {
  111. return instance.getFoliageColor_Impl(biome, i, j, k);
  112. }
  113. public static int getWaterColorMultiplier(BiomeGenBase biome) {
  114. if (getWaterColorMultiplier != null) {
  115. try {
  116. return (Integer) getWaterColorMultiplier.invoke(biome);
  117. } catch (Throwable e) {
  118. e.printStackTrace();
  119. getWaterColorMultiplier = null;
  120. }
  121. }
  122. return biome == null ? 0xffffff : biome.waterColorMultiplier;
  123. }
  124. private static void logBiomes() {
  125. if (!biomesLogged) {
  126. biomesLogged = true;
  127. for (int i = 0; i < BiomeGenBase.biomeList.length; i++) {
  128. BiomeGenBase biome = BiomeGenBase.biomeList[i];
  129. if (biome != null) {
  130. int x = (int) (255.0f * (1.0f - biome.temperature));
  131. int y = (int) (255.0f * (1.0f - biome.temperature * biome.rainfall));
  132. logger.config("setupBiome #%d id=%d \"%s\" %06x (%d,%d)", i, biome.biomeID, biome.biomeName, biome.waterColorMultiplier, x, y);
  133. }
  134. }
  135. }
  136. }
  137. abstract protected BiomeGenBase getBiomeGenAt_Impl(IBlockAccess blockAccess, int i, int j, int k);
  138. abstract protected float getTemperaturef_Impl(BiomeGenBase biome, int i, int j, int k);
  139. abstract protected int getGrassColor_Impl(BiomeGenBase biome, int i, int j, int k);
  140. abstract protected int getFoliageColor_Impl(BiomeGenBase biome, int i, int j, int k);
  141. abstract protected boolean isColorHeightDependent();
  142. BiomeAPI() {
  143. }
  144. final private static class V1 extends BiomeAPI {
  145. @Override
  146. protected BiomeGenBase getBiomeGenAt_Impl(IBlockAccess blockAccess, int i, int j, int k) {
  147. return blockAccess.getBiomeGenAt(i, k);
  148. }
  149. @Override
  150. protected float getTemperaturef_Impl(BiomeGenBase biome, int i, int j, int k) {
  151. return biome.getTemperaturef();
  152. }
  153. @Override
  154. protected int getGrassColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  155. return biome.getGrassColor();
  156. }
  157. @Override
  158. protected int getFoliageColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  159. return biome.getFoliageColor();
  160. }
  161. @Override
  162. protected boolean isColorHeightDependent() {
  163. return false;
  164. }
  165. }
  166. private static class V2 extends BiomeAPI {
  167. @Override
  168. protected BiomeGenBase getBiomeGenAt_Impl(IBlockAccess blockAccess, int i, int j, int k) {
  169. return blockAccess.getBiomeGenAt(i, k);
  170. }
  171. @Override
  172. protected float getTemperaturef_Impl(BiomeGenBase biome, int i, int j, int k) {
  173. return biome.getTemperaturef(i, j, k);
  174. }
  175. @Override
  176. protected int getGrassColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  177. return biome.getGrassColor(i, j, k);
  178. }
  179. @Override
  180. protected int getFoliageColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  181. return biome.getFoliageColor(i, j, k);
  182. }
  183. @Override
  184. protected boolean isColorHeightDependent() {
  185. return true;
  186. }
  187. }
  188. private static class V3 extends BiomeAPI {
  189. @Override
  190. protected BiomeGenBase getBiomeGenAt_Impl(IBlockAccess blockAccess, int i, int j, int k) {
  191. return blockAccess.getBiomeGenAt(new Position(i, j, k));
  192. }
  193. @Override
  194. protected float getTemperaturef_Impl(BiomeGenBase biome, int i, int j, int k) {
  195. return biome.getTemperaturef(new Position(i, j, k));
  196. }
  197. @Override
  198. protected int getGrassColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  199. return biome.getGrassColor(new Position(i, j, k));
  200. }
  201. @Override
  202. protected int getFoliageColor_Impl(BiomeGenBase biome, int i, int j, int k) {
  203. return biome.getFoliageColor(new Position(i, j, k));
  204. }
  205. @Override
  206. protected boolean isColorHeightDependent() {
  207. return true;
  208. }
  209. }
  210. }