/newcode/src/com/prupe/mcpatcher/mob/MobRuleList.java

https://bitbucket.org/SevenBits/mcpatcher · Java · 189 lines · 169 code · 20 blank · 0 comment · 50 complexity · 053cc4c1e5115dcf07dfdd3526833818 MD5 · raw file

  1. package com.prupe.mcpatcher.mob;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import com.prupe.mcpatcher.TexturePackAPI;
  5. import com.prupe.mcpatcher.WeightedIndex;
  6. import com.prupe.mcpatcher.mal.biome.BiomeAPI;
  7. import net.minecraft.src.ResourceLocation;
  8. import java.util.*;
  9. class MobRuleList {
  10. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
  11. public static final String ALTERNATIVES_REGEX = "_(eyes|overlay|tame|angry|collar|fur|invulnerable|shooting)\\.properties$";
  12. private static final Map<ResourceLocation, MobRuleList> allRules = new HashMap<ResourceLocation, MobRuleList>();
  13. private final ResourceLocation baseSkin;
  14. private final List<ResourceLocation> allSkins;
  15. private final int skinCount;
  16. private final List<MobRuleEntry> entries;
  17. private MobRuleList(ResourceLocation baseSkin) {
  18. this.baseSkin = baseSkin;
  19. String newPath = baseSkin.getPath().replaceFirst("^textures/entity/", TexturePackAPI.MCPATCHER_SUBDIR + "mob/");
  20. ResourceLocation newSkin = new ResourceLocation(baseSkin.getNamespace(), newPath);
  21. allSkins = new ArrayList<ResourceLocation>();
  22. allSkins.add(baseSkin);
  23. for (int i = 2; ; i++) {
  24. ResourceLocation skin = TexturePackAPI.transformResourceLocation(newSkin, ".png", String.valueOf(i) + ".png");
  25. if (!TexturePackAPI.hasResource(skin)) {
  26. break;
  27. }
  28. allSkins.add(skin);
  29. }
  30. skinCount = allSkins.size();
  31. if (skinCount <= 1) {
  32. entries = null;
  33. return;
  34. }
  35. logger.fine("found %d variations for %s", skinCount, baseSkin);
  36. ResourceLocation filename = TexturePackAPI.transformResourceLocation(newSkin, ".png", ".properties");
  37. ResourceLocation altFilename = new ResourceLocation(newSkin.getNamespace(), filename.getPath().replaceFirst(ALTERNATIVES_REGEX, ".properties"));
  38. Properties properties = TexturePackAPI.getProperties(filename);
  39. if (properties == null && !filename.equals(altFilename)) {
  40. properties = TexturePackAPI.getProperties(altFilename);
  41. if (properties != null) {
  42. logger.fine("using %s for %s", altFilename, baseSkin);
  43. }
  44. }
  45. ArrayList<MobRuleEntry> tmpEntries = new ArrayList<MobRuleEntry>();
  46. if (properties != null) {
  47. for (int i = 0; ; i++) {
  48. MobRuleEntry entry = MobRuleEntry.load(properties, i, skinCount);
  49. if (entry == null) {
  50. if (i > 0) {
  51. break;
  52. }
  53. } else {
  54. logger.fine(" %s", entry.toString());
  55. tmpEntries.add(entry);
  56. }
  57. }
  58. }
  59. entries = tmpEntries.isEmpty() ? null : tmpEntries;
  60. }
  61. ResourceLocation getSkin(long key, int i, int j, int k, Integer biome) {
  62. if (entries == null) {
  63. int index = (int) (key % skinCount);
  64. if (index < 0) {
  65. index += skinCount;
  66. }
  67. return allSkins.get(index);
  68. } else {
  69. if (j < 0) {
  70. j = 0;
  71. }
  72. for (MobRuleEntry entry : entries) {
  73. if (entry.match(i, j, k, biome)) {
  74. int index = entry.weightedIndex.choose(key);
  75. return allSkins.get(entry.skins[index]);
  76. }
  77. }
  78. }
  79. return baseSkin;
  80. }
  81. static MobRuleList get(ResourceLocation texture) {
  82. MobRuleList list = allRules.get(texture);
  83. if (list == null) {
  84. list = new MobRuleList(texture);
  85. allRules.put(texture, list);
  86. }
  87. return list;
  88. }
  89. static void clear() {
  90. allRules.clear();
  91. }
  92. private static class MobRuleEntry {
  93. final int[] skins;
  94. final WeightedIndex weightedIndex;
  95. private final BitSet biomes;
  96. private final BitSet height;
  97. static MobRuleEntry load(Properties properties, int index, int limit) {
  98. String skinList = properties.getProperty("skins." + index, "").trim().toLowerCase();
  99. int[] skins;
  100. if (skinList.equals("*") || skinList.equals("all") || skinList.equals("any")) {
  101. skins = new int[limit];
  102. for (int i = 0; i < skins.length; i++) {
  103. skins[i] = i;
  104. }
  105. } else {
  106. skins = MCPatcherUtils.parseIntegerList(skinList, 1, limit);
  107. if (skins.length <= 0) {
  108. return null;
  109. }
  110. for (int i = 0; i < skins.length; i++) {
  111. skins[i]--;
  112. }
  113. }
  114. WeightedIndex chooser = WeightedIndex.create(skins.length, properties.getProperty("weights." + index, ""));
  115. if (chooser == null) {
  116. return null;
  117. }
  118. BitSet biomes;
  119. String biomeList = MCPatcherUtils.getStringProperty(properties, "biomes." + index, "");
  120. if (biomeList.isEmpty()) {
  121. biomes = null;
  122. } else {
  123. biomes = new BitSet();
  124. BiomeAPI.parseBiomeList(biomeList, biomes);
  125. }
  126. BitSet height = BiomeAPI.getHeightListProperty(properties, "." + index);
  127. return new MobRuleEntry(skins, chooser, biomes, height);
  128. }
  129. MobRuleEntry(int[] skins, WeightedIndex weightedIndex, BitSet biomes, BitSet height) {
  130. this.skins = skins;
  131. this.weightedIndex = weightedIndex;
  132. this.biomes = biomes;
  133. this.height = height;
  134. }
  135. boolean match(int i, int j, int k, Integer biome) {
  136. if (biomes != null) {
  137. if (biome == null || !biomes.get(biome)) {
  138. return false;
  139. }
  140. }
  141. if (height != null && !height.get(j)) {
  142. return false;
  143. }
  144. return true;
  145. }
  146. @Override
  147. public String toString() {
  148. StringBuilder sb = new StringBuilder();
  149. sb.append("skins:");
  150. for (int i : skins) {
  151. sb.append(' ').append(i + 1);
  152. }
  153. if (biomes != null) {
  154. sb.append(", biomes:");
  155. for (int i = biomes.nextSetBit(0); i >= 0; i = biomes.nextSetBit(i + 1)) {
  156. sb.append(' ').append(i);
  157. }
  158. }
  159. if (height != null) {
  160. sb.append(", height:");
  161. for (int i = height.nextSetBit(0); i >= 0; i = height.nextSetBit(i + 1)) {
  162. sb.append(' ').append(i);
  163. }
  164. }
  165. sb.append(", weights: ").append(weightedIndex.toString());
  166. return sb.toString();
  167. }
  168. }
  169. }