/newcode/src/com/pclewis/mcpatcher/mod/Lightmap.java

https://github.com/pclewis/mcpatcher · Java · 138 lines · 125 code · 13 blank · 0 comment · 34 complexity · d1404b604c0e6559b478ab75267ffa9d MD5 · raw file

  1. package com.pclewis.mcpatcher.mod;
  2. import com.pclewis.mcpatcher.MCLogger;
  3. import com.pclewis.mcpatcher.MCPatcherUtils;
  4. import com.pclewis.mcpatcher.TexturePackAPI;
  5. import net.minecraft.src.EntityRenderer;
  6. import net.minecraft.src.World;
  7. import java.awt.image.BufferedImage;
  8. import java.util.HashMap;
  9. public final class Lightmap {
  10. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
  11. private static final String LIGHTMAP_FORMAT = "/environment/lightmap%d.png";
  12. private static final int LIGHTMAP_SIZE = 16;
  13. private static final int HEIGHT_WITHOUT_NIGHTVISION = 2 * LIGHTMAP_SIZE;
  14. private static final int HEIGHT_WITH_NIGHTVISION = 4 * LIGHTMAP_SIZE;
  15. private static final boolean useLightmaps = MCPatcherUtils.getBoolean(MCPatcherUtils.CUSTOM_COLORS, "lightmaps", true);
  16. private static final HashMap<Integer, Lightmap> lightmaps = new HashMap<Integer, Lightmap>();
  17. private final int width;
  18. private final boolean customNightvision;
  19. private final int[] origMap;
  20. private final boolean valid;
  21. private final int[] newMap = new int[LIGHTMAP_SIZE * LIGHTMAP_SIZE];
  22. private final float[] sunrgb = new float[3 * LIGHTMAP_SIZE];
  23. private final float[] torchrgb = new float[3 * LIGHTMAP_SIZE];
  24. private final float[] sunrgbnv = new float[3 * LIGHTMAP_SIZE];
  25. private final float[] torchrgbnv = new float[3 * LIGHTMAP_SIZE];
  26. private final float[] rgb = new float[3];
  27. static void clear() {
  28. lightmaps.clear();
  29. }
  30. public static boolean computeLightmap(EntityRenderer renderer, World world, float partialTick) {
  31. if (world == null || !useLightmaps) {
  32. return false;
  33. }
  34. Lightmap lightmap = null;
  35. int worldType = world.worldProvider.worldType;
  36. if (lightmaps.containsKey(worldType)) {
  37. lightmap = lightmaps.get(worldType);
  38. } else {
  39. String name = String.format(LIGHTMAP_FORMAT, worldType);
  40. BufferedImage image = TexturePackAPI.getImage(name);
  41. if (image != null) {
  42. lightmap = new Lightmap(name, image);
  43. if (!lightmap.valid) {
  44. lightmap = null;
  45. }
  46. }
  47. lightmaps.put(worldType, lightmap);
  48. }
  49. return lightmap != null && lightmap.compute(renderer, world, partialTick);
  50. }
  51. private Lightmap(String name, BufferedImage image) {
  52. width = image.getWidth();
  53. int height = image.getHeight();
  54. customNightvision = (height == HEIGHT_WITH_NIGHTVISION);
  55. origMap = new int[width * height];
  56. image.getRGB(0, 0, width, height, origMap, 0, width);
  57. valid = (height == HEIGHT_WITHOUT_NIGHTVISION || height == HEIGHT_WITH_NIGHTVISION);
  58. if (!valid) {
  59. logger.severe("%s must be exactly %d or %d pixels high", name, HEIGHT_WITHOUT_NIGHTVISION, HEIGHT_WITH_NIGHTVISION);
  60. }
  61. }
  62. private boolean compute(EntityRenderer renderer, World world, float partialTick) {
  63. float sun = Colorizer.clamp(world.lightningFlash > 0 ? 1.0f : 7.0f / 6.0f * (world.getSunAngle(1.0f) - 0.2f)) * (width - 1);
  64. float torch = Colorizer.clamp(renderer.torchFlickerX + 0.5f) * (width - 1);
  65. float nightVisionStrength = renderer.getNightVisionStrength(partialTick);
  66. float gamma = Colorizer.clamp(MCPatcherUtils.getMinecraft().gameSettings.gammaSetting);
  67. for (int i = 0; i < LIGHTMAP_SIZE; i++) {
  68. interpolate(origMap, i * width, sun, sunrgb, 3 * i);
  69. interpolate(origMap, (i + LIGHTMAP_SIZE) * width, torch, torchrgb, 3 * i);
  70. if (customNightvision && nightVisionStrength > 0.0f) {
  71. interpolate(origMap, (i + 2 * LIGHTMAP_SIZE) * width, sun, sunrgbnv, 3 * i);
  72. interpolate(origMap, (i + 3 * LIGHTMAP_SIZE) * width, torch, torchrgbnv, 3 * i);
  73. }
  74. }
  75. for (int s = 0; s < LIGHTMAP_SIZE; s++) {
  76. for (int t = 0; t < LIGHTMAP_SIZE; t++) {
  77. for (int k = 0; k < 3; k++) {
  78. rgb[k] = Colorizer.clamp(sunrgb[3 * s + k] + torchrgb[3 * t + k]);
  79. }
  80. if (nightVisionStrength > 0.0f) {
  81. if (customNightvision) {
  82. for (int k = 0; k < 3; k++) {
  83. rgb[k] = Colorizer.clamp((1.0f - nightVisionStrength) * rgb[k] + nightVisionStrength * (sunrgbnv[3 * s + k] + torchrgbnv[3 * t + k]));
  84. }
  85. } else {
  86. float nightVisionMultiplier = Math.max(Math.max(rgb[0], rgb[1]), rgb[2]);
  87. if (nightVisionMultiplier > 0.0f) {
  88. nightVisionMultiplier = (1.0f - nightVisionStrength) + nightVisionStrength / nightVisionMultiplier;
  89. for (int k = 0; k < 3; k++) {
  90. rgb[k] = Colorizer.clamp(rgb[k] * nightVisionMultiplier);
  91. }
  92. }
  93. }
  94. }
  95. if (gamma != 0.0f) {
  96. for (int k = 0; k < 3; k++) {
  97. float tmp = 1.0f - rgb[k];
  98. tmp = 1.0f - tmp * tmp * tmp * tmp;
  99. rgb[k] = gamma * tmp + (1.0f - gamma) * rgb[k];
  100. }
  101. }
  102. newMap[s * LIGHTMAP_SIZE + t] = 0xff000000 | Colorizer.float3ToInt(rgb);
  103. }
  104. }
  105. MCPatcherUtils.getMinecraft().renderEngine.createTextureFromBytes(newMap, LIGHTMAP_SIZE, LIGHTMAP_SIZE, renderer.lightmapTexture);
  106. return true;
  107. }
  108. private static void interpolate(int[] map, int offset1, float x, float[] rgb, int offset2) {
  109. int x0 = (int) Math.floor(x);
  110. int x1 = (int) Math.ceil(x);
  111. if (x0 == x1) {
  112. Colorizer.intToFloat3(map[offset1 + x0], rgb, offset2);
  113. } else {
  114. float xf = x - x0;
  115. float xg = 1.0f - xf;
  116. float[] rgb0 = new float[3];
  117. float[] rgb1 = new float[3];
  118. Colorizer.intToFloat3(map[offset1 + x0], rgb0);
  119. Colorizer.intToFloat3(map[offset1 + x1], rgb1);
  120. for (int i = 0; i < 3; i++) {
  121. rgb[offset2 + i] = xg * rgb0[i] + xf * rgb1[i];
  122. }
  123. }
  124. }
  125. }