/newcode/src/com/prupe/mcpatcher/mal/resource/ResourceList.java

https://bitbucket.org/SevenBits/mcpatcher · Java · 250 lines · 229 code · 21 blank · 0 comment · 60 complexity · ce179e800bae193d6443fa56f5e1d295 MD5 · raw file

  1. package com.prupe.mcpatcher.mal.resource;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import com.prupe.mcpatcher.TexturePackAPI;
  5. import net.minecraft.src.*;
  6. import java.io.File;
  7. import java.util.*;
  8. import java.util.logging.Level;
  9. import java.util.zip.ZipEntry;
  10. import java.util.zip.ZipFile;
  11. public class ResourceList {
  12. private static final MCLogger logger = MCLogger.getLogger("Texture Pack");
  13. private static ResourceList instance;
  14. private static final Map<ResourcePack, Integer> resourcePackOrder = new WeakHashMap<ResourcePack, Integer>();
  15. private final ResourcePack resourcePack;
  16. private final Set<ResourceLocationWithSource> allResources = new TreeSet<ResourceLocationWithSource>(new ResourceLocationWithSource.Comparator1());
  17. public static ResourceList getInstance() {
  18. if (instance == null) {
  19. List<ResourcePack> resourcePacks = TexturePackAPI.getResourcePacks(null);
  20. int order = resourcePacks.size();
  21. resourcePackOrder.clear();
  22. for (ResourcePack resourcePack : resourcePacks) {
  23. resourcePackOrder.put(resourcePack, order);
  24. order--;
  25. }
  26. instance = new ResourceList();
  27. }
  28. return instance;
  29. }
  30. public static void clearInstance() {
  31. instance = null;
  32. }
  33. public static int getResourcePackOrder(ResourcePack resourcePack) {
  34. Integer i = resourcePackOrder.get(resourcePack);
  35. return i == null ? Integer.MAX_VALUE : i;
  36. }
  37. private ResourceList() {
  38. this.resourcePack = null;
  39. for (ResourcePack resourcePack : TexturePackAPI.getResourcePacks(null)) {
  40. ResourceList sublist;
  41. if (resourcePack instanceof FileResourcePack) {
  42. sublist = new ResourceList((FileResourcePack) resourcePack);
  43. } else if (resourcePack instanceof DefaultResourcePack) {
  44. sublist = new ResourceList((DefaultResourcePack) resourcePack);
  45. } else if (resourcePack instanceof AbstractResourcePack) {
  46. sublist = new ResourceList((AbstractResourcePack) resourcePack);
  47. } else {
  48. continue;
  49. }
  50. allResources.removeAll(sublist.allResources);
  51. allResources.addAll(sublist.allResources);
  52. }
  53. logger.fine("new %s", this);
  54. if (logger.isLoggable(Level.FINEST)) {
  55. for (ResourceLocationWithSource resource : allResources) {
  56. logger.finest("%s -> %s", resource, resource.getSource().getName());
  57. }
  58. }
  59. }
  60. private ResourceList(FileResourcePack resourcePack) {
  61. this.resourcePack = resourcePack;
  62. scanZipFile(resourcePack.zipFile);
  63. logger.fine("new %s", this);
  64. }
  65. private ResourceList(DefaultResourcePack resourcePack) {
  66. this.resourcePack = resourcePack;
  67. String version = MCPatcherUtils.getMinecraftVersion();
  68. File jar = MCPatcherUtils.getMinecraftPath("versions", version, version + ".jar");
  69. if (jar.isFile()) {
  70. ZipFile zipFile = null;
  71. try {
  72. zipFile = new ZipFile(jar);
  73. scanZipFile(zipFile);
  74. } catch (Throwable e) {
  75. e.printStackTrace();
  76. } finally {
  77. MCPatcherUtils.close(zipFile);
  78. }
  79. }
  80. Map<String, File> map = resourcePack.map;
  81. if (map != null) {
  82. for (Map.Entry<String, File> entry : map.entrySet()) {
  83. String key = entry.getKey();
  84. File file = entry.getValue();
  85. ResourceLocation resource = new ResourceLocation(key);
  86. addResource(resource, file.isFile(), file.isDirectory());
  87. }
  88. }
  89. if (!allResources.isEmpty()) {
  90. logger.fine("new %s", this);
  91. }
  92. }
  93. private ResourceList(AbstractResourcePack resourcePack) {
  94. this.resourcePack = resourcePack;
  95. File directory = resourcePack.file;
  96. if (directory == null || !directory.isDirectory()) {
  97. return;
  98. }
  99. directory = new File(directory, "assets");
  100. if (!directory.isDirectory()) {
  101. return;
  102. }
  103. File[] subdirs = directory.listFiles();
  104. if (subdirs == null) {
  105. return;
  106. }
  107. for (File subdir : subdirs) {
  108. Set<String> allFiles = new HashSet<String>();
  109. listAllFiles(subdir, "", allFiles);
  110. for (String path : allFiles) {
  111. File file = new File(subdir, path);
  112. ResourceLocation resource = new ResourceLocation(subdir.getName(), path.replace(File.separatorChar, '/'));
  113. addResource(resource, file.isFile(), file.isDirectory());
  114. }
  115. }
  116. logger.fine("new %s", this);
  117. }
  118. private void scanZipFile(ZipFile zipFile) {
  119. if (zipFile == null) {
  120. return;
  121. }
  122. for (ZipEntry entry : Collections.list(zipFile.entries())) {
  123. String path = entry.getName();
  124. if (!path.startsWith("assets/")) {
  125. continue;
  126. }
  127. path = path.substring(7);
  128. int slash = path.indexOf('/');
  129. if (slash < 0) {
  130. continue;
  131. }
  132. String namespace = path.substring(0, slash);
  133. path = path.substring(slash + 1);
  134. ResourceLocation resource = new ResourceLocation(namespace, path);
  135. addResource(resource, !entry.isDirectory(), entry.isDirectory());
  136. }
  137. }
  138. private static void listAllFiles(File base, String subdir, Set<String> files) {
  139. File[] entries = new File(base, subdir).listFiles();
  140. if (entries == null) {
  141. return;
  142. }
  143. for (File file : entries) {
  144. String newPath = subdir + file.getName();
  145. if (files.add(newPath)) {
  146. if (file.isDirectory()) {
  147. listAllFiles(base, subdir + file.getName() + '/', files);
  148. }
  149. }
  150. }
  151. }
  152. private void addResource(ResourceLocation resource, boolean isFile, boolean isDirectory) {
  153. if (isFile) {
  154. allResources.add(new ResourceLocationWithSource(resourcePack, resource));
  155. } else if (isDirectory) {
  156. if (!resource.getPath().endsWith("/")) {
  157. resource = new ResourceLocation(resource.getNamespace(), resource.getPath() + '/');
  158. }
  159. allResources.add(new ResourceLocationWithSource(resourcePack, resource));
  160. }
  161. }
  162. public List<ResourceLocation> listResources(String directory, String suffix, boolean sortByFilename) {
  163. return listResources(directory, suffix, true, false, sortByFilename);
  164. }
  165. public List<ResourceLocation> listResources(String directory, String suffix, boolean recursive, boolean directories, boolean sortByFilename) {
  166. return listResources(null, directory, suffix, recursive, directories, sortByFilename);
  167. }
  168. public List<ResourceLocation> listResources(String namespace, String directory, String suffix, boolean recursive, boolean directories, final boolean sortByFilename) {
  169. if (suffix == null) {
  170. suffix = "";
  171. }
  172. if (MCPatcherUtils.isNullOrEmpty(directory)) {
  173. directory = "";
  174. } else if (!directory.endsWith("/")) {
  175. directory += '/';
  176. }
  177. Set<ResourceLocationWithSource> tmpList = new TreeSet<ResourceLocationWithSource>(
  178. new ResourceLocationWithSource.Comparator1(true, sortByFilename ? suffix : null)
  179. );
  180. boolean allNamespaces = MCPatcherUtils.isNullOrEmpty(namespace);
  181. for (ResourceLocationWithSource resource : allResources) {
  182. if (directories != resource.isDirectory()) {
  183. continue;
  184. }
  185. if (!allNamespaces && !namespace.equals(resource.getNamespace())) {
  186. continue;
  187. }
  188. String path = resource.getPath();
  189. if (!path.endsWith(suffix)) {
  190. continue;
  191. }
  192. if (!path.startsWith(directory)) {
  193. continue;
  194. }
  195. if (!recursive) {
  196. String subpath = path.substring(directory.length());
  197. if (subpath.contains("/")) {
  198. continue;
  199. }
  200. }
  201. tmpList.add(resource);
  202. }
  203. return new ArrayList<ResourceLocation>(tmpList);
  204. }
  205. @Override
  206. public String toString() {
  207. StringBuilder sb = new StringBuilder("ResourceList: ");
  208. if (resourcePack == null) {
  209. sb.append("(combined) ");
  210. } else {
  211. sb.append(resourcePack.getName()).append(' ');
  212. }
  213. int fileCount = 0;
  214. int directoryCount = 0;
  215. Set<String> namespaces = new HashSet<String>();
  216. for (ResourceLocationWithSource resource : allResources) {
  217. if (resource.isDirectory()) {
  218. directoryCount++;
  219. } else {
  220. fileCount++;
  221. }
  222. namespaces.add(resource.getNamespace());
  223. }
  224. sb.append(fileCount).append(" files, ");
  225. sb.append(directoryCount).append(" directories in ");
  226. sb.append(namespaces.size()).append(" namespaces");
  227. return sb.toString();
  228. }
  229. }