/newcode/src/com/prupe/mcpatcher/hd/AAHelper.java

https://bitbucket.org/SevenBits/mcpatcher · Java · 137 lines · 121 code · 16 blank · 0 comment · 32 complexity · 622229928a2d24477bb535d4c2b1669a MD5 · raw file

  1. package com.prupe.mcpatcher.hd;
  2. import com.prupe.mcpatcher.Config;
  3. import com.prupe.mcpatcher.MCLogger;
  4. import com.prupe.mcpatcher.MCPatcherUtils;
  5. import net.minecraft.src.Resource;
  6. import net.minecraft.src.ResourceLocation;
  7. import net.minecraft.src.SimpleResource;
  8. import net.minecraft.src.TextureAtlasSprite;
  9. import org.lwjgl.opengl.PixelFormat;
  10. import java.awt.image.BufferedImage;
  11. import java.lang.reflect.Field;
  12. public class AAHelper {
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.MIPMAP);
  14. private static final int debugColor = Config.getBoolean(MCPatcherUtils.EXTENDED_HD, "debugBorder", false) ? 0xff0000ff : 0;
  15. private static final int aaSamples = Config.getInt(MCPatcherUtils.EXTENDED_HD, "antiAliasing", 1);
  16. private static Field addressField;
  17. static {
  18. for (Field f : SimpleResource.class.getDeclaredFields()) {
  19. if (ResourceLocation.class.isAssignableFrom(f.getType())) {
  20. f.setAccessible(true);
  21. addressField = f;
  22. break;
  23. }
  24. }
  25. }
  26. public static PixelFormat setupPixelFormat(PixelFormat pixelFormat) {
  27. if (aaSamples > 1) {
  28. logger.config("setting AA samples to %d", aaSamples);
  29. return pixelFormat.withSamples(aaSamples);
  30. } else {
  31. return pixelFormat;
  32. }
  33. }
  34. public static BufferedImage addBorder(TextureAtlasSprite stitched, Resource resource, BufferedImage input) {
  35. if (input == null || !(resource instanceof SimpleResource) || addressField == null) {
  36. return input;
  37. }
  38. ResourceLocation name;
  39. try {
  40. name = (ResourceLocation) addressField.get(resource);
  41. } catch (IllegalAccessException e) {
  42. e.printStackTrace();
  43. addressField = null;
  44. return input;
  45. }
  46. if (name != null && MipmapHelper.useMipmapsForTexture(name.getPath())) {
  47. input = MipmapHelper.fixTransparency(name, input);
  48. }
  49. if (!(stitched instanceof BorderedTexture)) {
  50. return input;
  51. }
  52. int width = input.getWidth();
  53. int height = input.getHeight();
  54. int numFrames = height / width;
  55. height = width;
  56. int border = getBorderWidth(width);
  57. ((BorderedTexture) stitched).setBorderWidth(border);
  58. if (border <= 0) {
  59. return input;
  60. }
  61. int newWidth = width + 2 * border;
  62. int newHeight = height + 2 * border;
  63. BufferedImage output = new BufferedImage(newWidth, numFrames * newHeight, BufferedImage.TYPE_INT_ARGB);
  64. for (int frame = 0; frame < numFrames; frame++) {
  65. int sy = frame * height;
  66. int dy = frame * newHeight;
  67. copyRegion(input, 0, sy, output, 0, dy, border, border, true, true);
  68. copyRegion(input, 0, sy, output, border, dy, width, border, false, true);
  69. copyRegion(input, width - border, sy, output, width + border, dy, border, border, true, true);
  70. copyRegion(input, 0, sy, output, 0, dy + border, border, width, true, false);
  71. copyRegion(input, 0, sy, output, border, dy + border, width, height, false, false);
  72. copyRegion(input, width - border, sy, output, width + border, dy + border, border, width, true, false);
  73. copyRegion(input, 0, sy + height - border, output, 0, dy + height + border, border, border, true, true);
  74. copyRegion(input, 0, sy + height - border, output, border, dy + height + border, width, border, false, true);
  75. copyRegion(input, width - border, sy + height - border, output, width + border, dy + height + border, border, border, true, true);
  76. addDebugOutline(output, dy, width, height, border);
  77. }
  78. return output;
  79. }
  80. static boolean useAAForTexture(String texture) {
  81. return (aaSamples > 1 || MipmapHelper.anisoLevel > 1) && MipmapHelper.useMipmapsForTexture(texture);
  82. }
  83. private static int getBorderWidth(int size) {
  84. int border;
  85. if (aaSamples <= 1 && MipmapHelper.anisoLevel <= 1) {
  86. border = 0;
  87. } else if (MipmapHelper.mipmapEnabled && MipmapHelper.maxMipmapLevel > 0) {
  88. border = 1 << Math.max(Math.min(MipmapHelper.maxMipmapLevel, 4), 0);
  89. } else {
  90. border = 2;
  91. }
  92. return Math.min(border, size);
  93. }
  94. private static void copyRegion(BufferedImage input, int sx, int sy, BufferedImage output, int dx, int dy, int w, int h, boolean flipX, boolean flipY) {
  95. int[] rgb = new int[w * h];
  96. input.getRGB(sx, sy, w, h, rgb, 0, w);
  97. if (flipX || flipY) {
  98. int[] rgbFlipped = new int[w * h];
  99. for (int i = 0; i < w; i++) {
  100. for (int j = 0; j < h; j++) {
  101. rgbFlipped[w * j + i] = rgb[w * (flipY ? h - 1 - j : j) + (flipX ? w - 1 - i : i)];
  102. }
  103. }
  104. output.setRGB(dx, dy, w, h, rgbFlipped, 0, w);
  105. } else {
  106. output.setRGB(dx, dy, w, h, rgb, 0, w);
  107. }
  108. }
  109. private static void addDebugOutline(BufferedImage output, int dy, int width, int height, int border) {
  110. if (debugColor != 0) {
  111. for (int i = 0; i < width; i++) {
  112. output.setRGB(i + border, dy + border, debugColor);
  113. output.setRGB(i + border, dy + height + border, debugColor);
  114. }
  115. for (int i = 0; i < height; i++) {
  116. output.setRGB(border, dy + i + border, debugColor);
  117. output.setRGB(height + border, dy + i + border, debugColor);
  118. }
  119. }
  120. }
  121. }