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

https://bitbucket.org/prupe/mcpatcher · Java · 137 lines · 117 code · 18 blank · 2 comment · 7 complexity · def976b49141b84f4b0960494395863e MD5 · raw file

  1. package com.prupe.mcpatcher.hd;
  2. import com.prupe.mcpatcher.MCLogger;
  3. import com.prupe.mcpatcher.MCPatcherUtils;
  4. import com.prupe.mcpatcher.mal.tile.IconAPI;
  5. import net.minecraft.src.Texture;
  6. import net.minecraft.src.TextureAtlasSprite;
  7. import java.util.List;
  8. public class BorderedTexture extends TextureAtlasSprite {
  9. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.MIPMAP);
  10. private float minU;
  11. private float maxU;
  12. private float minV;
  13. private float maxV;
  14. private float scaledWidth;
  15. private float scaledHeight;
  16. private int tilesheetWidth;
  17. private int tilesheetHeight;
  18. private int x0;
  19. private int y0;
  20. private String tilesheet;
  21. int border;
  22. public static TextureAtlasSprite create(String tilesheet, String name) {
  23. if (AAHelper.useAAForTexture(tilesheet)) {
  24. return new BorderedTexture(tilesheet, name);
  25. } else {
  26. return new TextureAtlasSprite(name);
  27. }
  28. }
  29. private BorderedTexture(String tilesheet, String name) {
  30. super(name);
  31. this.tilesheet = tilesheet;
  32. }
  33. // 1.5
  34. @Override
  35. public void init(Texture texture, List<Texture> animations, int x0, int y0, int width, int height, boolean flipped) {
  36. super.init(texture, animations, x0, y0, width, height, flipped);
  37. this.tilesheetWidth = texture.getWidth();
  38. this.tilesheetHeight = texture.getHeight();
  39. this.x0 = x0;
  40. this.y0 = y0;
  41. border = MCPatcherUtils.isNullOrEmpty(animations) ? 0 : animations.get(0).border;
  42. setBorderWidth(width, height, border);
  43. }
  44. // 1.6+
  45. @Override
  46. public void init(int tilesheetWidth, int tilesheetHeight, int x0, int y0, boolean flipped) {
  47. super.init(tilesheetWidth, tilesheetHeight, x0, y0, flipped);
  48. this.tilesheetWidth = tilesheetWidth;
  49. this.tilesheetHeight = tilesheetHeight;
  50. this.x0 = x0;
  51. this.y0 = y0;
  52. setBorderWidth(IconAPI.getIconWidth(this), IconAPI.getIconHeight(this), border);
  53. }
  54. @Override
  55. public float getMinU() {
  56. return minU;
  57. }
  58. @Override
  59. public float getMaxU() {
  60. return maxU;
  61. }
  62. @Override
  63. public float getInterpolatedU(double u) {
  64. return border > 0 ? minU + (float) u * scaledWidth : super.getInterpolatedU(u);
  65. }
  66. @Override
  67. public float getMinV() {
  68. return minV;
  69. }
  70. @Override
  71. public float getMaxV() {
  72. return maxV;
  73. }
  74. @Override
  75. public float getInterpolatedV(double v) {
  76. return border > 0 ? minV + (float) v * scaledHeight : super.getInterpolatedV(v);
  77. }
  78. @Override
  79. public void copy(TextureAtlasSprite stitched) {
  80. if (stitched instanceof BorderedTexture) {
  81. BorderedTexture bordered = (BorderedTexture) stitched;
  82. tilesheetWidth = bordered.tilesheetWidth;
  83. tilesheetHeight = bordered.tilesheetHeight;
  84. x0 = bordered.x0;
  85. y0 = bordered.y0;
  86. tilesheet = bordered.tilesheet;
  87. border = bordered.border;
  88. }
  89. }
  90. void setBorderWidth(int width, int height, int border) {
  91. this.border = border;
  92. if (width <= 0 || height <= 0) {
  93. x0 = y0 = 0;
  94. minU = maxU = minV = maxV = 0.0f;
  95. scaledWidth = scaledHeight = 0.0f;
  96. return;
  97. }
  98. logger.finer("setBorderWidth(%s, %s, %d): %dx%d -> %dx%d",
  99. tilesheet, IconAPI.getIconName(this), border, width - 2 * border, height - 2 * border, width, height
  100. );
  101. if (border > 0) {
  102. x0 += border;
  103. y0 += border;
  104. width -= 2 * border;
  105. height -= 2 * border;
  106. minU = (float) x0 / (float) tilesheetWidth;
  107. maxU = (float) (x0 + width) / (float) tilesheetWidth;
  108. minV = (float) y0 / (float) tilesheetHeight;
  109. maxV = (float) (y0 + height) / (float) tilesheetHeight;
  110. } else {
  111. minU = super.getMinU();
  112. maxU = super.getMaxU();
  113. minV = super.getMinV();
  114. maxV = super.getMaxV();
  115. }
  116. scaledWidth = (maxU - minU) / 16.0f;
  117. scaledHeight = (maxV - minV) / 16.0f;
  118. }
  119. }