/newcode/src/com/prupe/mcpatcher/mod/TileLoader.java

https://bitbucket.org/prupe/mcpatcher · Java · 166 lines · 152 code · 14 blank · 0 comment · 39 complexity · 9f5f0588fa27842215c3b88315bf30b0 MD5 · raw file

  1. package com.prupe.mcpatcher.mod;
  2. import com.prupe.mcpatcher.Config;
  3. import com.prupe.mcpatcher.MCLogger;
  4. import com.prupe.mcpatcher.MCPatcherUtils;
  5. import com.prupe.mcpatcher.TexturePackAPI;
  6. import net.minecraft.src.*;
  7. import org.lwjgl.opengl.GL11;
  8. import java.awt.*;
  9. import java.awt.image.BufferedImage;
  10. import java.util.*;
  11. import java.util.List;
  12. public class TileLoader {
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CONNECTED_TEXTURES, "CTM");
  14. private static final boolean debugTextures = Config.getBoolean(MCPatcherUtils.CONNECTED_TEXTURES, "debugTextures", false);
  15. private static String overrideTextureName;
  16. private final MCLogger subLogger;
  17. private final Map<String, List<Texture>> tileTextures = new HashMap<String, List<Texture>>();
  18. private final Map<String, Icon> loadedIcons = new HashMap<String, Icon>();
  19. public static String getOverridePath(String prefix, String name, String ext) {
  20. String path;
  21. if (name.startsWith("/")) {
  22. path = name.substring(1).replaceFirst("\\.[^.]+$", "") + ext;
  23. } else {
  24. path = prefix + name + ext;
  25. }
  26. logger.finer("getOverridePath(%s, %s, %s) -> %s", prefix, name, ext, path);
  27. return path;
  28. }
  29. public static String getOverrideTextureName(String name) {
  30. if (overrideTextureName == null) {
  31. if (name.matches("^\\d+$")) {
  32. logger.warning("no override set for %s", name);
  33. }
  34. return name;
  35. } else {
  36. logger.finer("getOverrideTextureName(%s) -> %s", name, overrideTextureName);
  37. return overrideTextureName;
  38. }
  39. }
  40. TileLoader(MCLogger subLogger) {
  41. this.subLogger = subLogger;
  42. }
  43. static BufferedImage generateDebugTexture(String text, int width, int height, boolean alternate) {
  44. BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
  45. Graphics graphics = image.getGraphics();
  46. graphics.setColor(alternate ? new Color(0, 255, 255, 128) : Color.WHITE);
  47. graphics.fillRect(0, 0, width, height);
  48. graphics.setColor(alternate ? Color.RED : Color.BLACK);
  49. int ypos = 10;
  50. if (alternate) {
  51. ypos += height / 2;
  52. }
  53. int charsPerRow = width / 8;
  54. if (charsPerRow <= 0) {
  55. return image;
  56. }
  57. while (text.length() % charsPerRow != 0) {
  58. text += " ";
  59. }
  60. while (ypos < height && !text.equals("")) {
  61. graphics.drawString(text.substring(0, charsPerRow), 1, ypos);
  62. ypos += graphics.getFont().getSize();
  63. text = text.substring(charsPerRow);
  64. }
  65. return image;
  66. }
  67. boolean preload(String name, List<String> tileNames, boolean alternate) {
  68. if (!name.toLowerCase().endsWith(".png")) {
  69. name += ".png";
  70. }
  71. if (tileTextures.containsKey(name)) {
  72. tileNames.add(name);
  73. return true;
  74. }
  75. List<Texture> textures;
  76. try {
  77. overrideTextureName = name;
  78. if (debugTextures || !TexturePackAPI.hasResource(name)) {
  79. BufferedImage fallbackImage = generateDebugTexture(name, 64, 64, alternate);
  80. Texture texture = TextureManager.getInstance().createTextureFromImage(
  81. name, 2, fallbackImage.getWidth(), fallbackImage.getHeight(), GL11.GL_CLAMP, GL11.GL_RGBA, GL11.GL_NEAREST, GL11.GL_NEAREST, false, fallbackImage
  82. );
  83. if (texture == null) {
  84. return false;
  85. }
  86. textures = new ArrayList<Texture>();
  87. textures.add(texture);
  88. } else {
  89. textures = TextureManager.getInstance().createTextureFromFile(name.replaceFirst("^/", ""));
  90. if (textures == null || textures.isEmpty()) {
  91. return false;
  92. }
  93. }
  94. } finally {
  95. overrideTextureName = null;
  96. }
  97. tileNames.add(name);
  98. tileTextures.put(name, textures);
  99. return true;
  100. }
  101. Icon[] registerIcons(TextureMap textureMap, Stitcher stitcher, Map<StitchHolder, List<Texture>> map, List<String> tileNames) {
  102. Icon[] icons = new Icon[tileNames.size()];
  103. for (int i = 0; i < tileNames.size(); i++) {
  104. String imageName = tileNames.get(i);
  105. if (imageName == null) {
  106. continue;
  107. }
  108. icons[i] = loadedIcons.get(imageName);
  109. if (icons[i] != null) {
  110. continue;
  111. }
  112. List<Texture> textures = tileTextures.get(imageName);
  113. if (textures == null || textures.isEmpty()) {
  114. subLogger.error("tile for %s unexpectedly missing", imageName);
  115. continue;
  116. }
  117. Texture texture = textures.get(0);
  118. StitchHolder holder = new StitchHolder(texture);
  119. stitcher.addStitchHolder(holder);
  120. map.put(holder, textures);
  121. icons[i] = textureMap.registerIcon(imageName);
  122. TessellatorUtils.registerIcon(textureMap, icons[i]);
  123. loadedIcons.put(imageName, icons[i]);
  124. String extra = (textures.size() > 1 ? ", " + textures.size() + " frames" : "");
  125. subLogger.finer("%s -> icon: %dx%d%s", imageName, texture.getWidth(), texture.getHeight(), extra);
  126. }
  127. return icons;
  128. }
  129. int getTextureSize(List<String> tileNames) {
  130. Set<String> names = new HashSet<String>();
  131. names.addAll(tileNames);
  132. int size = 0;
  133. for (String name : names) {
  134. size += getTextureSize(name);
  135. }
  136. return size;
  137. }
  138. int getTextureSize(String name) {
  139. if (name == null) {
  140. return 0;
  141. }
  142. List<Texture> textures = tileTextures.get(name);
  143. if (textures == null || textures.isEmpty() || loadedIcons.get(name) != null) {
  144. return 0;
  145. } else {
  146. return textures.get(0).getWidth() * textures.get(0).getHeight();
  147. }
  148. }
  149. void finish() {
  150. tileTextures.clear();
  151. }
  152. }