replace texture loader

This commit is contained in:
LAX1DUDE 2022-04-21 17:39:52 -07:00
parent 516ba930fd
commit 405b1c62d0
24 changed files with 160 additions and 556 deletions

View File

@ -108,9 +108,9 @@ void main(){
#ifdef CC_unit0 #ifdef CC_unit0
#ifdef CC_a_texture0 #ifdef CC_a_texture0
color *= texture(tex0, (matrix_t * vec4(v_texture0, 0.0, 1.0)).xy).bgra; color *= texture(tex0, (matrix_t * vec4(v_texture0, 0.0, 1.0)).xy).rgba;
#else #else
color *= texture(tex0, (matrix_t * vec4(texCoordV0, 0.0, 1.0)).xy).bgra; color *= texture(tex0, (matrix_t * vec4(texCoordV0, 0.0, 1.0)).xy).rgba;
#endif #endif
#endif #endif

View File

@ -60,7 +60,7 @@ public class Minecraft implements Runnable {
mcDataDir = getMinecraftDir(); mcDataDir = getMinecraftDir();
field_22008_V = new SaveConverterMcRegion(new File(mcDataDir, "saves")); field_22008_V = new SaveConverterMcRegion(new File(mcDataDir, "saves"));
gameSettings = new GameSettings(this, mcDataDir); gameSettings = new GameSettings(this, mcDataDir);
texturePackList = new TexturePackList(this, mcDataDir); texturePackList = new TexturePackList(this);
renderEngine = new RenderEngine(texturePackList, gameSettings); renderEngine = new RenderEngine(texturePackList, gameSettings);
fontRenderer = new FontRenderer(gameSettings, "/font/default.png", renderEngine); fontRenderer = new FontRenderer(gameSettings, "/font/default.png", renderEngine);
checkGLError("Pre startup"); checkGLError("Pre startup");
@ -677,7 +677,7 @@ public class Minecraft implements Runnable {
if (EaglerAdapter.getEventKey() == gameSettings.keyBindDrop.keyCode) { if (EaglerAdapter.getEventKey() == gameSettings.keyBindDrop.keyCode) {
thePlayer.dropCurrentItem(); thePlayer.dropCurrentItem();
} }
if (isMultiplayerWorld() && EaglerAdapter.getEventKey() == gameSettings.keyBindChat.keyCode) { if (EaglerAdapter.getEventKey() == gameSettings.keyBindChat.keyCode) {
displayGuiScreen(new GuiChat()); displayGuiScreen(new GuiChat());
} }
} }
@ -1007,8 +1007,10 @@ public class Minecraft implements Runnable {
} }
public boolean func_22003_b(String s) { public boolean func_22003_b(String s) {
if (!s.startsWith("/")) if (s.startsWith("/")) {
;
return true;
}
return false; return false;
} }

View File

@ -4,8 +4,9 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO; import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
public class ColorizerFoliage { public class ColorizerFoliage {
@ -13,6 +14,9 @@ public class ColorizerFoliage {
} }
public static int getFoliageColor(double d, double d1) { public static int getFoliageColor(double d, double d1) {
if(foliageBuffer == null) {
foliageBuffer = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/misc/foliagecolor.png")).data;
}
d1 *= d; d1 *= d;
int i = (int) ((1.0D - d) * 255D); int i = (int) ((1.0D - d) * 255D);
int j = (int) ((1.0D - d1) * 255D); int j = (int) ((1.0D - d1) * 255D);
@ -27,23 +31,6 @@ public class ColorizerFoliage {
return 0x80a755; return 0x80a755;
} }
static Class _mthclass$(String s) { private static int foliageBuffer[] = null;
try {
return Class.forName(s);
} catch (ClassNotFoundException classnotfoundexception) {
throw new NoClassDefFoundError(classnotfoundexception.getMessage());
}
}
private static final int foliageBuffer[];
static {
foliageBuffer = new int[0x10000];
try {
BufferedImage bufferedimage = ImageIO.read((ColorizerFoliage.class).getResource("/misc/foliagecolor.png"));
bufferedimage.getRGB(0, 0, 256, 256, foliageBuffer, 0, 256);
} catch (Exception exception) {
exception.printStackTrace();
}
}
} }

View File

@ -4,8 +4,9 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO; import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
public class ColorizerGrass { public class ColorizerGrass {
@ -13,29 +14,14 @@ public class ColorizerGrass {
} }
public static int getGrassColor(double d, double d1) { public static int getGrassColor(double d, double d1) {
if(grassBuffer == null) {
grassBuffer = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/misc/grasscolor.png")).data;
}
d1 *= d; d1 *= d;
int i = (int) ((1.0D - d) * 255D); int i = (int) ((1.0D - d) * 255D);
int j = (int) ((1.0D - d1) * 255D); int j = (int) ((1.0D - d1) * 255D);
return grassBuffer[j << 8 | i]; return grassBuffer[j << 8 | i];
} }
static Class _mthclass$(String s) { private static int grassBuffer[] = null;
try {
return Class.forName(s);
} catch (ClassNotFoundException classnotfoundexception) {
throw new NoClassDefFoundError(classnotfoundexception.getMessage());
}
}
private static final int grassBuffer[];
static {
grassBuffer = new int[0x10000];
try {
BufferedImage bufferedimage = ImageIO.read((ColorizerFoliage.class).getResource("/misc/grasscolor.png"));
bufferedimage.getRGB(0, 0, 256, 256, grassBuffer, 0, 256);
} catch (Exception exception) {
exception.printStackTrace();
}
}
} }

View File

@ -7,6 +7,8 @@ package net.minecraft.src;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import net.lax1dude.eaglercraft.EaglerAdapter;
public class FontAllowedCharacters { public class FontAllowedCharacters {
public FontAllowedCharacters() { public FontAllowedCharacters() {
@ -15,8 +17,7 @@ public class FontAllowedCharacters {
private static String getAllowedCharacters() { private static String getAllowedCharacters() {
String s = ""; String s = "";
try { try {
BufferedReader bufferedreader = new BufferedReader( BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(EaglerAdapter.loadResource("/font.txt"), "UTF-8"));
new InputStreamReader((FontAllowedCharacters.class).getResourceAsStream("/font.txt"), "UTF-8"));
String s1 = ""; String s1 = "";
do { do {
String s2; String s2;
@ -34,7 +35,6 @@ public class FontAllowedCharacters {
} }
public static final String allowedCharacters = getAllowedCharacters(); public static final String allowedCharacters = getAllowedCharacters();
public static final char field_22286_b[] = { '/', '\n', '\r', '\t', '\0', '\f', '`', '?', '*', '\\', '<', '>', '|', public static final char field_22286_b[] = { '/', '\n', '\r', '\t', '\0', '\f', '`', '?', '*', '\\', '<', '>', '|', '"', ':' };
'"', ':' };
} }

View File

@ -4,12 +4,10 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.nio.IntBuffer; import java.nio.IntBuffer;
import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter; import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
import net.lax1dude.eaglercraft.adapter.Tessellator; import net.lax1dude.eaglercraft.adapter.Tessellator;
public class FontRenderer { public class FontRenderer {
@ -17,16 +15,10 @@ public class FontRenderer {
public FontRenderer(GameSettings gamesettings, String s, RenderEngine renderengine) { public FontRenderer(GameSettings gamesettings, String s, RenderEngine renderengine) {
charWidth = new int[256]; charWidth = new int[256];
fontTextureName = 0; fontTextureName = 0;
BufferedImage bufferedimage; EaglerImage bufferedimage = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes(s));
try { int i = bufferedimage.w;
bufferedimage = ImageIO.read((RenderEngine.class).getResourceAsStream(s)); int j = bufferedimage.h;
} catch (IOException ioexception) { int ai[] = bufferedimage.data;
throw new RuntimeException(ioexception);
}
int i = bufferedimage.getWidth();
int j = bufferedimage.getHeight();
int ai[] = new int[i * j];
bufferedimage.getRGB(0, 0, i, j, ai, 0, i);
for (int k = 0; k < 256; k++) { for (int k = 0; k < 256; k++) {
int l = k % 16; int l = k % 16;
int k1 = k / 16; int k1 = k / 16;

View File

@ -30,7 +30,11 @@ public class GuiChat extends GuiScreen {
String string; String string;
String string2 = this.field_985_a.trim(); String string2 = this.field_985_a.trim();
if (string2.length() > 0 && !this.mc.func_22003_b(string = this.field_985_a.trim())) { if (string2.length() > 0 && !this.mc.func_22003_b(string = this.field_985_a.trim())) {
if(mc.isMultiplayerWorld()) {
this.mc.thePlayer.sendChatMessage(string); this.mc.thePlayer.sendChatMessage(string);
}else {
this.mc.ingameGUI.addChatMessage(string);
}
} }
this.mc.displayGuiScreen(null); this.mc.displayGuiScreen(null);
return; return;

View File

@ -1,12 +1,13 @@
package net.minecraft.src; package net.minecraft.src;
import net.lax1dude.eaglercraft.EaglerImage;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov. // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
public interface ImageBuffer { public interface ImageBuffer {
public abstract BufferedImage parseUserSkin(BufferedImage bufferedimage); public abstract EaglerImage parseUserSkin(EaglerImage bufferedimage);
} }

View File

@ -1,96 +0,0 @@
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.awt.Graphics;
import java.awt.image.*;
public class ImageBufferDownload implements ImageBuffer {
public ImageBufferDownload() {
}
public BufferedImage parseUserSkin(BufferedImage bufferedimage) {
if (bufferedimage == null) {
return null;
}
imageWidth = 64;
imageHeight = 32;
BufferedImage bufferedimage1 = new BufferedImage(imageWidth, imageHeight, 2);
Graphics g = bufferedimage1.getGraphics();
g.drawImage(bufferedimage, 0, 0, null);
g.dispose();
imageData = ((DataBufferInt) bufferedimage1.getRaster().getDataBuffer()).getData();
func_884_b(0, 0, 32, 16);
func_885_a(32, 0, 64, 32);
func_884_b(0, 16, 64, 32);
boolean flag = false;
for (int i = 32; i < 64; i++) {
for (int k = 0; k < 16; k++) {
int i1 = imageData[i + k * 64];
if ((i1 >> 24 & 0xff) < 128) {
flag = true;
}
}
}
if (!flag) {
for (int j = 32; j < 64; j++) {
for (int l = 0; l < 16; l++) {
int j1 = imageData[j + l * 64];
boolean flag1;
if ((j1 >> 24 & 0xff) < 128) {
flag1 = true;
}
}
}
}
return bufferedimage1;
}
private void func_885_a(int i, int j, int k, int l) {
if (func_886_c(i, j, k, l)) {
return;
}
for (int i1 = i; i1 < k; i1++) {
for (int j1 = j; j1 < l; j1++) {
imageData[i1 + j1 * imageWidth] &= 0xffffff;
}
}
}
private void func_884_b(int i, int j, int k, int l) {
for (int i1 = i; i1 < k; i1++) {
for (int j1 = j; j1 < l; j1++) {
imageData[i1 + j1 * imageWidth] |= 0xff000000;
}
}
}
private boolean func_886_c(int i, int j, int k, int l) {
for (int i1 = i; i1 < k; i1++) {
for (int j1 = j; j1 < l; j1++) {
int k1 = imageData[i1 + j1 * imageWidth];
if ((k1 >> 24 & 0xff) < 128) {
return true;
}
}
}
return false;
}
private int imageData[];
private int imageWidth;
private int imageHeight;
}

View File

@ -4,22 +4,16 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
import java.nio.Buffer;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.nio.IntBuffer; import java.nio.IntBuffer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.Map; import java.util.Map;
import java.util.Set;
import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter; import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
import net.lax1dude.eaglercraft.TextureLocation; import net.lax1dude.eaglercraft.TextureLocation;
public class RenderEngine { public class RenderEngine {
@ -49,9 +43,10 @@ public class RenderEngine {
singleIntBuffer.clear(); singleIntBuffer.clear();
GLAllocation.generateTextureNames(singleIntBuffer); GLAllocation.generateTextureNames(singleIntBuffer);
int i = singleIntBuffer.get(0); int i = singleIntBuffer.get(0);
if (s.startsWith("##")) { //if (s.startsWith("##")) {
setupTexture(unwrapImageByColumns(readTextureImage(texturepackbase.func_6481_a(s.substring(2)))), i); // setupTexture(unwrapImageByColumns(readTextureImage(texturepackbase.func_6481_a(s.substring(2)))), i);
} else if (s.startsWith("%clamp%")) { //} else
if (s.startsWith("%clamp%")) {
clampTexture = true; clampTexture = true;
setupTexture(readTextureImage(texturepackbase.func_6481_a(s.substring(7))), i); setupTexture(readTextureImage(texturepackbase.func_6481_a(s.substring(7))), i);
clampTexture = false; clampTexture = false;
@ -72,7 +67,7 @@ public class RenderEngine {
throw new RuntimeException("!!"); throw new RuntimeException("!!");
} }
} }
/*
private BufferedImage unwrapImageByColumns(BufferedImage bufferedimage) { private BufferedImage unwrapImageByColumns(BufferedImage bufferedimage) {
int i = bufferedimage.getWidth() / 16; int i = bufferedimage.getWidth() / 16;
BufferedImage bufferedimage1 = new BufferedImage(16, bufferedimage.getHeight() * i, 2); BufferedImage bufferedimage1 = new BufferedImage(16, bufferedimage.getHeight() * i, 2);
@ -84,8 +79,8 @@ public class RenderEngine {
g.dispose(); g.dispose();
return bufferedimage1; return bufferedimage1;
} }
*/
public int allocateAndSetupTexture(BufferedImage bufferedimage) { public int allocateAndSetupTexture(EaglerImage bufferedimage) {
singleIntBuffer.clear(); singleIntBuffer.clear();
GLAllocation.generateTextureNames(singleIntBuffer); GLAllocation.generateTextureNames(singleIntBuffer);
int i = singleIntBuffer.get(0); int i = singleIntBuffer.get(0);
@ -94,7 +89,7 @@ public class RenderEngine {
return i; return i;
} }
public void setupTexture(BufferedImage bufferedimage, int i) { public void setupTexture(EaglerImage bufferedimage, int i) {
EaglerAdapter.glBindTexture(3553 /* GL_TEXTURE_2D */, i); EaglerAdapter.glBindTexture(3553 /* GL_TEXTURE_2D */, i);
if (useMipmaps) { if (useMipmaps) {
EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10241 /* GL_TEXTURE_MIN_FILTER */, EaglerAdapter.GL_NEAREST_MIPMAP_LINEAR); EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10241 /* GL_TEXTURE_MIN_FILTER */, EaglerAdapter.GL_NEAREST_MIPMAP_LINEAR);
@ -115,16 +110,15 @@ public class RenderEngine {
EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10242 /* GL_TEXTURE_WRAP_S */, 10497 /* GL_REPEAT */); EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10242 /* GL_TEXTURE_WRAP_S */, 10497 /* GL_REPEAT */);
EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10243 /* GL_TEXTURE_WRAP_T */, 10497 /* GL_REPEAT */); EaglerAdapter.glTexParameteri(3553 /* GL_TEXTURE_2D */, 10243 /* GL_TEXTURE_WRAP_T */, 10497 /* GL_REPEAT */);
} }
int j = bufferedimage.getWidth(); int j = bufferedimage.w;
int k = bufferedimage.getHeight(); int k = bufferedimage.h;
int ai[] = new int[j * k]; int ai[] = bufferedimage.data;
byte abyte0[] = new byte[j * k * 4]; byte abyte0[] = new byte[j * k * 4];
bufferedimage.getRGB(0, 0, j, k, ai, 0, j);
for (int l = 0; l < ai.length; l++) { for (int l = 0; l < ai.length; l++) {
int j1 = ai[l] >> 24 & 0xff; int j1 = ai[l] >> 24 & 0xff;
int l1 = ai[l] >> 16 & 0xff; int l1 = ai[l] >> 16 & 0xff;
int j2 = ai[l] >> 8 & 0xff; int j2 = ai[l] >> 8 & 0xff;
int l2 = ai[l] & 0xff; int l2 = ai[l] >> 0 & 0xff;
if (options != null && options.anaglyph) { if (options != null && options.anaglyph) {
int j3 = (l1 * 30 + j2 * 59 + l2 * 11) / 100; int j3 = (l1 * 30 + j2 * 59 + l2 * 11) / 100;
int l3 = (l1 * 30 + j2 * 70) / 100; int l3 = (l1 * 30 + j2 * 70) / 100;
@ -138,7 +132,6 @@ public class RenderEngine {
abyte0[l * 4 + 2] = (byte) l2; abyte0[l * 4 + 2] = (byte) l2;
abyte0[l * 4 + 3] = (byte) j1; abyte0[l * 4 + 3] = (byte) j1;
} }
imageDataB1.clear(); imageDataB1.clear();
imageDataB1.put(abyte0); imageDataB1.put(abyte0);
imageDataB1.position(0).limit(abyte0.length); imageDataB1.position(0).limit(abyte0.length);
@ -177,6 +170,7 @@ public class RenderEngine {
} }
public int getTextureForDownloadableImage(String s, String s1) { public int getTextureForDownloadableImage(String s, String s1) {
/*
ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) urlToImageDataMap.get(s); ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) urlToImageDataMap.get(s);
if (threaddownloadimagedata != null && threaddownloadimagedata.image != null if (threaddownloadimagedata != null && threaddownloadimagedata.image != null
&& !threaddownloadimagedata.textureSetupComplete) { && !threaddownloadimagedata.textureSetupComplete) {
@ -196,8 +190,10 @@ public class RenderEngine {
} else { } else {
return threaddownloadimagedata.textureName; return threaddownloadimagedata.textureName;
} }
*/
return getTexture("/mob/char.png");
} }
/*
public ThreadDownloadImageData obtainImageData(String s, ImageBuffer imagebuffer) { public ThreadDownloadImageData obtainImageData(String s, ImageBuffer imagebuffer) {
ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) urlToImageDataMap.get(s); ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) urlToImageDataMap.get(s);
if (threaddownloadimagedata == null) { if (threaddownloadimagedata == null) {
@ -220,7 +216,7 @@ public class RenderEngine {
} }
} }
} }
*/
public void registerTextureFX(TextureFX texturefx) { public void registerTextureFX(TextureFX texturefx) {
textureList.add(texturefx); textureList.add(texturefx);
texturefx.onTick(); texturefx.onTick();
@ -327,7 +323,7 @@ public class RenderEngine {
return ((k + l >> 1) << 24) + ((i & 0xfefefe) + (j & 0xfefefe) >> 1); return ((k + l >> 1) << 24) + ((i & 0xfefefe) + (j & 0xfefefe) >> 1);
} }
/*
private int weightedAverageColor(int i, int j) { private int weightedAverageColor(int i, int j) {
int k = (i & 0xff000000) >> 24 & 0xff; int k = (i & 0xff000000) >> 24 & 0xff;
int l = (j & 0xff000000) >> 24 & 0xff; int l = (j & 0xff000000) >> 24 & 0xff;
@ -348,31 +344,34 @@ public class RenderEngine {
int i3 = (k1 + j2) / (k + l); int i3 = (k1 + j2) / (k + l);
return c << 24 | k2 << 16 | l2 << 8 | i3; return c << 24 | k2 << 16 | l2 << 8 | i3;
} }
*/
public void refreshTextures() { public void refreshTextures() {
TextureLocation.freeTextures(); TextureLocation.freeTextures();
TexturePackBase texturepackbase = field_6527_k.selectedTexturePack; TexturePackBase texturepackbase = field_6527_k.selectedTexturePack;
int i; int i;
BufferedImage bufferedimage; EaglerImage bufferedimage;
for (Iterator iterator = textureNameToImageMap.keySet().iterator(); iterator for (Iterator iterator = textureNameToImageMap.keySet().iterator(); iterator
.hasNext(); setupTexture(bufferedimage, i)) { .hasNext(); setupTexture(bufferedimage, i)) {
i = ((Integer) iterator.next()).intValue(); i = ((Integer) iterator.next()).intValue();
bufferedimage = (BufferedImage) textureNameToImageMap.get(Integer.valueOf(i)); bufferedimage = (EaglerImage) textureNameToImageMap.get(Integer.valueOf(i));
} }
for (Iterator iterator1 = urlToImageDataMap.values().iterator(); iterator1.hasNext();) { //for (Iterator iterator1 = urlToImageDataMap.values().iterator(); iterator1.hasNext();) {
ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) iterator1.next(); // ThreadDownloadImageData threaddownloadimagedata = (ThreadDownloadImageData) iterator1.next();
threaddownloadimagedata.textureSetupComplete = false; // threaddownloadimagedata.textureSetupComplete = false;
} //}
for (Iterator iterator2 = textureMap.keySet().iterator(); iterator2.hasNext();) { for (Iterator iterator2 = textureMap.keySet().iterator(); iterator2.hasNext();) {
String s = (String) iterator2.next(); String s = (String) iterator2.next();
try { try {
BufferedImage bufferedimage1; EaglerImage bufferedimage1;
/*
if (s.startsWith("##")) { if (s.startsWith("##")) {
bufferedimage1 = unwrapImageByColumns( bufferedimage1 = unwrapImageByColumns(
readTextureImage(texturepackbase.func_6481_a(s.substring(2)))); readTextureImage(texturepackbase.func_6481_a(s.substring(2))));
} else if (s.startsWith("%clamp%")) { } else
*/
if (s.startsWith("%clamp%")) {
clampTexture = true; clampTexture = true;
bufferedimage1 = readTextureImage(texturepackbase.func_6481_a(s.substring(7))); bufferedimage1 = readTextureImage(texturepackbase.func_6481_a(s.substring(7)));
} else if (s.startsWith("%blur%")) { } else if (s.startsWith("%blur%")) {
@ -392,10 +391,8 @@ public class RenderEngine {
} }
private BufferedImage readTextureImage(InputStream inputstream) throws IOException { private EaglerImage readTextureImage(byte[] inputstream) throws IOException {
BufferedImage bufferedimage = ImageIO.read(inputstream); return EaglerImage.loadImage(inputstream);
inputstream.close();
return bufferedimage;
} }
public void bindTexture(int i) { public void bindTexture(int i) {

View File

@ -535,13 +535,6 @@ public class RenderGlobal implements IWorldAccess {
return l; return l;
} }
public void func_944_a(int i, double d) {
for (int j = 0; j < field_1414_S.length; j++) {
field_1414_S[j].func_860_a();
}
}
public void func_945_d() { public void func_945_d() {
field_1435_x++; field_1435_x++;
} }
@ -985,7 +978,7 @@ public class RenderGlobal implements IWorldAccess {
movingobjectposition.blockZ); movingobjectposition.blockZ);
Block block = k <= 0 ? null : Block.blocksList[k]; Block block = k <= 0 ? null : Block.blocksList[k];
EaglerAdapter.glDisable(3008 /* GL_ALPHA_TEST */); EaglerAdapter.glDisable(3008 /* GL_ALPHA_TEST */);
EaglerAdapter.glPolygonOffset(-3F, -3F); EaglerAdapter.glPolygonOffset(3F, 3F);
EaglerAdapter.glEnable(32823 /* GL_POLYGON_OFFSET_FILL */); EaglerAdapter.glEnable(32823 /* GL_POLYGON_OFFSET_FILL */);
tessellator.startDrawingQuads(); tessellator.startDrawingQuads();
double d = entityplayer.lastTickPosX + (entityplayer.posX - entityplayer.lastTickPosX) * (double) f; double d = entityplayer.lastTickPosX + (entityplayer.posX - entityplayer.lastTickPosX) * (double) f;
@ -1201,22 +1194,22 @@ public class RenderGlobal implements IWorldAccess {
} }
public void obtainEntitySkin(Entity entity) { public void obtainEntitySkin(Entity entity) {
entity.updateCloak(); //entity.updateCloak();
if (entity.skinUrl != null) { //if (entity.skinUrl != null) {
renderEngine.obtainImageData(entity.skinUrl, new ImageBufferDownload()); // renderEngine.obtainImageData(entity.skinUrl, new ImageBufferDownload());
} //}
if (entity.cloakUrl != null) { //if (entity.cloakUrl != null) {
renderEngine.obtainImageData(entity.cloakUrl, new ImageBufferDownload()); // renderEngine.obtainImageData(entity.cloakUrl, new ImageBufferDownload());
} //}
} }
public void releaseEntitySkin(Entity entity) { public void releaseEntitySkin(Entity entity) {
if (entity.skinUrl != null) { //if (entity.skinUrl != null) {
renderEngine.releaseImageData(entity.skinUrl); // renderEngine.releaseImageData(entity.skinUrl);
} //}
if (entity.cloakUrl != null) { //if (entity.cloakUrl != null) {
renderEngine.releaseImageData(entity.cloakUrl); // renderEngine.releaseImageData(entity.cloakUrl);
} //}
} }
public void updateAllRenderers() { public void updateAllRenderers() {
@ -1270,7 +1263,6 @@ public class RenderGlobal implements IWorldAccess {
private int field_1416_Q; private int field_1416_Q;
private int field_21156_R; private int field_21156_R;
private List field_1415_R; private List field_1415_R;
private RenderList field_1414_S[] = { new RenderList(), new RenderList(), new RenderList(), new RenderList() };
int field_1455_d; int field_1455_d;
int field_1454_e; int field_1454_e;
double field_1453_f; double field_1453_f;

View File

@ -27,7 +27,11 @@ public class RenderHelper {
public static void enableStandardItemLighting() { public static void enableStandardItemLighting() {
EaglerAdapter.glEnable(EaglerAdapter.GL_LIGHTING); EaglerAdapter.glEnable(EaglerAdapter.GL_LIGHTING);
EaglerAdapter.glEnable(EaglerAdapter.GL_COLOR_MATERIAL); EaglerAdapter.glEnable(EaglerAdapter.GL_COLOR_MATERIAL);
EaglerAdapter.glPushMatrix();
EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F);
EaglerAdapter.copyModelToLightMatrix(); EaglerAdapter.copyModelToLightMatrix();
//EaglerAdapter.flipLightMatrix();
EaglerAdapter.glPopMatrix();
/* /*
EaglerAdapter.glColorMaterial(EaglerAdapter.GL_FRONT_AND_BACK, EaglerAdapter.GL_AMBIENT_AND_DIFFUSE); EaglerAdapter.glColorMaterial(EaglerAdapter.GL_FRONT_AND_BACK, EaglerAdapter.GL_AMBIENT_AND_DIFFUSE);
float var0 = 0.4F; float var0 = 0.4F;
@ -47,7 +51,7 @@ public class RenderHelper {
} }
public static void enableStandardItemLighting2() { public static void enableStandardItemLighting2() {
EaglerAdapter.glPushMatrix(); EaglerAdapter.glPushMatrix();
EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F); //EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F);
enableStandardItemLighting(); enableStandardItemLighting();
EaglerAdapter.glPopMatrix(); EaglerAdapter.glPopMatrix();
} }
@ -60,7 +64,7 @@ public class RenderHelper {
EaglerAdapter.glPushMatrix(); EaglerAdapter.glPushMatrix();
EaglerAdapter.glRotatef(-30.0F, 0.0F, 1.0F, 0.0F); EaglerAdapter.glRotatef(-30.0F, 0.0F, 1.0F, 0.0F);
EaglerAdapter.glRotatef(165.0F, 1.0F, 0.0F, 0.0F); EaglerAdapter.glRotatef(165.0F, 1.0F, 0.0F, 0.0F);
//EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F); EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F);
enableStandardItemLighting(); enableStandardItemLighting();
EaglerAdapter.glPopMatrix(); EaglerAdapter.glPopMatrix();
} }
@ -69,7 +73,7 @@ public class RenderHelper {
EaglerAdapter.glPushMatrix(); EaglerAdapter.glPushMatrix();
EaglerAdapter.glRotatef(-30.0F, 0.0F, 1.0F, 0.0F); EaglerAdapter.glRotatef(-30.0F, 0.0F, 1.0F, 0.0F);
EaglerAdapter.glRotatef(165.0F, 1.0F, 0.0F, 0.0F); EaglerAdapter.glRotatef(165.0F, 1.0F, 0.0F, 0.0F);
EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F); //EaglerAdapter.glScalef(1.0F, -1.0F, 1.0F);
enableStandardItemLighting(); enableStandardItemLighting();
EaglerAdapter.glPopMatrix(); EaglerAdapter.glPopMatrix();
} }

View File

@ -1,76 +0,0 @@
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.nio.IntBuffer;
import net.lax1dude.eaglercraft.EaglerAdapter;
public class RenderList {
public RenderList() {
field_1236_g = GLAllocation.createDirectIntBuffer(0x10000);
field_1235_h = false;
field_1234_i = false;
}
public void func_861_a(int i, int j, int k, double d, double d1, double d2) {
field_1235_h = true;
field_1236_g.clear();
field_1242_a = i;
field_1241_b = j;
field_1240_c = k;
field_1239_d = (float) d;
field_1238_e = (float) d1;
field_1237_f = (float) d2;
}
public boolean func_862_a(int i, int j, int k) {
if (!field_1235_h) {
return false;
} else {
return i == field_1242_a && j == field_1241_b && k == field_1240_c;
}
}
public void func_858_a(int i) {
field_1236_g.put(i);
if (field_1236_g.remaining() == 0) {
func_860_a();
}
}
public void func_860_a() {
if (!field_1235_h) {
return;
}
if (!field_1234_i) {
field_1236_g.flip();
field_1234_i = true;
}
if (field_1236_g.remaining() > 0) {
EaglerAdapter.glPushMatrix();
EaglerAdapter.glTranslatef((float) field_1242_a - field_1239_d, (float) field_1241_b - field_1238_e,
(float) field_1240_c - field_1237_f);
EaglerAdapter.glCallLists(field_1236_g);
EaglerAdapter.glPopMatrix();
}
}
public void func_859_b() {
field_1235_h = false;
field_1234_i = false;
}
private int field_1242_a;
private int field_1241_b;
private int field_1240_c;
private float field_1239_d;
private float field_1238_e;
private float field_1237_f;
private IntBuffer field_1236_g;
private boolean field_1235_h;
private boolean field_1234_i;
}

View File

@ -123,6 +123,7 @@ public class RenderPlayer extends RenderLiving {
renderManager.itemRenderer.renderItem(itemstack); renderManager.itemRenderer.renderItem(itemstack);
EaglerAdapter.glPopMatrix(); EaglerAdapter.glPopMatrix();
} }
/*
if (entityplayer.username.equals("deadmau5") && loadDownloadableImageTexture(entityplayer.skinUrl, null)) { if (entityplayer.username.equals("deadmau5") && loadDownloadableImageTexture(entityplayer.skinUrl, null)) {
for (int i = 0; i < 2; i++) { for (int i = 0; i < 2; i++) {
float f2 = (entityplayer.prevRotationYaw float f2 = (entityplayer.prevRotationYaw
@ -145,6 +146,8 @@ public class RenderPlayer extends RenderLiving {
} }
} }
*/
/*
if (loadDownloadableImageTexture(entityplayer.field_20067_q, null)) { if (loadDownloadableImageTexture(entityplayer.field_20067_q, null)) {
EaglerAdapter.glPushMatrix(); EaglerAdapter.glPushMatrix();
EaglerAdapter.glTranslatef(0.0F, 0.0F, 0.125F); EaglerAdapter.glTranslatef(0.0F, 0.0F, 0.125F);
@ -185,6 +188,7 @@ public class RenderPlayer extends RenderLiving {
modelBipedMain.renderCloak(0.0625F); modelBipedMain.renderCloak(0.0625F);
EaglerAdapter.glPopMatrix(); EaglerAdapter.glPopMatrix();
} }
*/
ItemStack itemstack1 = entityplayer.inventory.getCurrentItem(); ItemStack itemstack1 = entityplayer.inventory.getCurrentItem();
if (itemstack1 != null) { if (itemstack1 != null) {
EaglerAdapter.glPushMatrix(); EaglerAdapter.glPushMatrix();

View File

@ -7,12 +7,14 @@ package net.minecraft.src;
import java.io.IOException; import java.io.IOException;
import java.util.Properties; import java.util.Properties;
import net.lax1dude.eaglercraft.EaglerAdapter;
public class StringTranslate { public class StringTranslate {
private StringTranslate() { private StringTranslate() {
translateTable = new Properties(); translateTable = new Properties();
try { try {
translateTable.load((StringTranslate.class).getResourceAsStream("/lang/en_US.lang")); translateTable.load(EaglerAdapter.loadResource("/lang/en_US.lang"));
} catch (IOException ioexception) { } catch (IOException ioexception) {
ioexception.printStackTrace(); ioexception.printStackTrace();
} }

View File

@ -4,11 +4,12 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import java.io.IOException; import java.io.IOException;
import java.util.Arrays;
import javax.imageio.ImageIO; import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
public class TerrainTextureManager { public class TerrainTextureManager {
public TerrainTextureManager() { public TerrainTextureManager() {
@ -19,10 +20,7 @@ public class TerrainTextureManager {
field_1184_e = new int[5120]; field_1184_e = new int[5120];
field_1183_f = new int[34]; field_1183_f = new int[34];
field_1182_g = new int[768]; field_1182_g = new int[768];
try { int ai[] = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/terrain.png")).data;
BufferedImage bufferedimage = ImageIO.read((TerrainTextureManager.class).getResource("/terrain.png"));
int ai[] = new int[0x10000];
bufferedimage.getRGB(0, 0, 256, 256, ai, 0, 256);
for (int j = 0; j < 256; j++) { for (int j = 0; j < 256; j++) {
int k = 0; int k = 0;
int l = 0; int l = 0;
@ -51,10 +49,6 @@ public class TerrainTextureManager {
} }
} }
} catch (IOException ioexception) {
ioexception.printStackTrace();
}
for (int i = 0; i < 256; i++) { for (int i = 0; i < 256; i++) {
if (Block.blocksList[i] != null) { if (Block.blocksList[i] != null) {
field_1182_g[i * 3 + 0] = Block.blocksList[i].getBlockTextureFromSide(1); field_1182_g[i * 3 + 0] = Block.blocksList[i].getBlockTextureFromSide(1);

View File

@ -4,27 +4,21 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import java.io.IOException; import net.lax1dude.eaglercraft.EaglerAdapter;
import javax.imageio.ImageIO; import net.lax1dude.eaglercraft.EaglerImage;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
public class TextureCompassFX extends TextureFX { public class TextureCompassFX extends TextureFX {
public TextureCompassFX(Minecraft minecraft) { public TextureCompassFX(Minecraft minecraft) {
super(Item.compass.getIconIndex(null)); super(Item.compass.getIconIndex(null));
field_4230_h = new int[256];
mc = minecraft; mc = minecraft;
tileImage = 1; tileImage = 1;
try { EaglerImage bufferedimage = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/gui/items.png"));
BufferedImage bufferedimage = ImageIO
.read((net.minecraft.client.Minecraft.class).getResource("/gui/items.png"));
int i = (iconIndex % 16) * 16; int i = (iconIndex % 16) * 16;
int j = (iconIndex / 16) * 16; int j = (iconIndex / 16) * 16;
bufferedimage.getRGB(i, j, 16, 16, field_4230_h, 0, 16); field_4230_h = bufferedimage.getSubImage(i, j, 16, 16).data;
} catch (IOException ioexception) {
ioexception.printStackTrace();
}
} }
public void onTick() { public void onTick() {

View File

@ -5,6 +5,8 @@ package net.minecraft.src;
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.io.InputStream; import java.io.InputStream;
import net.lax1dude.eaglercraft.EaglerAdapter;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
public abstract class TexturePackBase { public abstract class TexturePackBase {
@ -27,8 +29,8 @@ public abstract class TexturePackBase {
public void func_6483_c(Minecraft minecraft) { public void func_6483_c(Minecraft minecraft) {
} }
public InputStream func_6481_a(String s) { public byte[] func_6481_a(String s) {
return (TexturePackBase.class).getResourceAsStream(s); return EaglerAdapter.loadResourceBytes(s);
} }
public String texturePackFileName; public String texturePackFileName;

View File

@ -1,116 +0,0 @@
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import java.io.*;
import java.util.zip.ZipFile;
import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.TextureLocation;
import net.minecraft.client.Minecraft;
public class TexturePackCustom extends TexturePackBase {
private static final TextureLocation unknownPack = new TextureLocation("/gui/unknown_pack.png");
public TexturePackCustom(File file) {
texturePackName = -1;
texturePackFileName = file.getName();
texturePackFile = file;
}
private String truncateString(String s) {
if (s != null && s.length() > 34) {
s = s.substring(0, 34);
}
return s;
}
public void func_6485_a(Minecraft minecraft) {
ZipFile zipfile = null;
InputStream inputstream = null;
try {
zipfile = new ZipFile(texturePackFile);
try {
inputstream = zipfile.getInputStream(zipfile.getEntry("pack.txt"));
BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(inputstream));
firstDescriptionLine = truncateString(bufferedreader.readLine());
secondDescriptionLine = truncateString(bufferedreader.readLine());
bufferedreader.close();
inputstream.close();
} catch (Exception exception) {
}
try {
inputstream = zipfile.getInputStream(zipfile.getEntry("pack.png"));
texturePackThumbnail = ImageIO.read(inputstream);
inputstream.close();
} catch (Exception exception1) {
}
zipfile.close();
} catch (Exception exception2) {
exception2.printStackTrace();
} finally {
try {
inputstream.close();
} catch (Exception exception4) {
}
try {
zipfile.close();
} catch (Exception exception5) {
}
}
}
public void func_6484_b(Minecraft minecraft) {
if (texturePackThumbnail != null) {
minecraft.renderEngine.deleteTexture(texturePackName);
}
closeTexturePackFile();
}
public void func_6483_c(Minecraft minecraft) {
if (texturePackThumbnail != null && texturePackName < 0) {
texturePackName = minecraft.renderEngine.allocateAndSetupTexture(texturePackThumbnail);
}
if (texturePackThumbnail != null) {
minecraft.renderEngine.bindTexture(texturePackName);
} else {
unknownPack.bindTexture();
}
}
public void func_6482_a() {
try {
texturePackZipFile = new ZipFile(texturePackFile);
} catch (Exception exception) {
}
}
public void closeTexturePackFile() {
try {
texturePackZipFile.close();
} catch (Exception exception) {
}
texturePackZipFile = null;
}
public InputStream func_6481_a(String s) {
try {
java.util.zip.ZipEntry zipentry = texturePackZipFile.getEntry(s.substring(1));
if (zipentry != null) {
return texturePackZipFile.getInputStream(zipentry);
}
} catch (Exception exception) {
}
return (TexturePackBase.class).getResourceAsStream(s);
}
private ZipFile texturePackZipFile;
private int texturePackName;
private BufferedImage texturePackThumbnail;
private File texturePackFile;
}

View File

@ -4,11 +4,6 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.TextureLocation; import net.lax1dude.eaglercraft.TextureLocation;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
@ -20,20 +15,23 @@ public class TexturePackDefault extends TexturePackBase {
texturePackName = -1; texturePackName = -1;
texturePackFileName = "Default"; texturePackFileName = "Default";
firstDescriptionLine = "The default look of Minecraft"; firstDescriptionLine = "The default look of Minecraft";
/*
try { try {
texturePackThumbnail = ImageIO.read((TexturePackDefault.class).getResource("/pack.png")); texturePackThumbnail = ImageIO.read((TexturePackDefault.class).getResource("/pack.png"));
} catch (IOException ioexception) { } catch (IOException ioexception) {
ioexception.printStackTrace(); ioexception.printStackTrace();
} }
*/
} }
public void func_6484_b(Minecraft minecraft) { public void func_6484_b(Minecraft minecraft) {
if (texturePackThumbnail != null) { //if (texturePackThumbnail != null) {
minecraft.renderEngine.deleteTexture(texturePackName); // minecraft.renderEngine.deleteTexture(texturePackName);
} //}
} }
public void func_6483_c(Minecraft minecraft) { public void func_6483_c(Minecraft minecraft) {
/*
if (texturePackThumbnail != null && texturePackName < 0) { if (texturePackThumbnail != null && texturePackName < 0) {
texturePackName = minecraft.renderEngine.allocateAndSetupTexture(texturePackThumbnail); texturePackName = minecraft.renderEngine.allocateAndSetupTexture(texturePackThumbnail);
} }
@ -42,8 +40,10 @@ public class TexturePackDefault extends TexturePackBase {
} else { } else {
unknownPack.bindTexture(); unknownPack.bindTexture();
} }
*/
unknownPack.bindTexture();
} }
private int texturePackName; private int texturePackName;
private BufferedImage texturePackThumbnail; //private BufferedImage texturePackThumbnail;
} }

View File

@ -4,22 +4,22 @@ package net.minecraft.src;
// Jad home page: http://www.kpdus.com/jad.html // Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode // Decompiler options: packimports(3) braces deadcode
import java.io.File;
import java.io.IOException;
import java.util.*; import java.util.*;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
public class TexturePackList { public class TexturePackList {
public TexturePackList(Minecraft minecraft, File file) { public TexturePackList(Minecraft minecraft) {
availableTexturePacks = new ArrayList(); availableTexturePacks = new ArrayList();
defaultTexturePack = new TexturePackDefault(); defaultTexturePack = new TexturePackDefault();
field_6538_d = new HashMap(); field_6538_d = new HashMap();
mc = minecraft; mc = minecraft;
/*
texturePackDir = new File(file, "texturepacks"); texturePackDir = new File(file, "texturepacks");
if (!texturePackDir.exists()) { if (!texturePackDir.exists()) {
texturePackDir.mkdirs(); texturePackDir.mkdirs();
} }
*/
currentTexturePack = minecraft.gameSettings.skin; currentTexturePack = minecraft.gameSettings.skin;
func_6532_a(); func_6532_a();
selectedTexturePack.func_6482_a(); selectedTexturePack.func_6482_a();
@ -43,6 +43,7 @@ public class TexturePackList {
ArrayList arraylist = new ArrayList(); ArrayList arraylist = new ArrayList();
selectedTexturePack = null; selectedTexturePack = null;
arraylist.add(defaultTexturePack); arraylist.add(defaultTexturePack);
/*
if (texturePackDir.exists() && texturePackDir.isDirectory()) { if (texturePackDir.exists() && texturePackDir.isDirectory()) {
File afile[] = texturePackDir.listFiles(); File afile[] = texturePackDir.listFiles();
File afile1[] = afile; File afile1[] = afile;
@ -68,6 +69,7 @@ public class TexturePackList {
} }
} }
*/
if (selectedTexturePack == null) { if (selectedTexturePack == null) {
selectedTexturePack = defaultTexturePack; selectedTexturePack = defaultTexturePack;
} }
@ -91,6 +93,5 @@ public class TexturePackList {
public TexturePackBase selectedTexturePack; public TexturePackBase selectedTexturePack;
private Map field_6538_d; private Map field_6538_d;
private Minecraft mc; private Minecraft mc;
private File texturePackDir;
private String currentTexturePack; private String currentTexturePack;
} }

View File

@ -7,6 +7,9 @@ package net.minecraft.src;
import java.awt.image.BufferedImage; import java.awt.image.BufferedImage;
import java.io.IOException; import java.io.IOException;
import javax.imageio.ImageIO; import javax.imageio.ImageIO;
import net.lax1dude.eaglercraft.EaglerAdapter;
import net.lax1dude.eaglercraft.EaglerImage;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;
public class TextureWatchFX extends TextureFX { public class TextureWatchFX extends TextureFX {
@ -17,17 +20,11 @@ public class TextureWatchFX extends TextureFX {
field_4223_i = new int[256]; field_4223_i = new int[256];
field_4225_g = minecraft; field_4225_g = minecraft;
tileImage = 1; tileImage = 1;
try { EaglerImage bufferedimage = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/gui/items.png"));
BufferedImage bufferedimage = ImageIO
.read((net.minecraft.client.Minecraft.class).getResource("/gui/items.png"));
int i = (iconIndex % 16) * 16; int i = (iconIndex % 16) * 16;
int j = (iconIndex / 16) * 16; int j = (iconIndex / 16) * 16;
bufferedimage.getRGB(i, j, 16, 16, field_4224_h, 0, 16); field_4224_h = bufferedimage.getSubImage(i, j, 16, 16).data;
bufferedimage = ImageIO.read((net.minecraft.client.Minecraft.class).getResource("/misc/dial.png")); field_4223_i = EaglerImage.loadImage(EaglerAdapter.loadResourceBytes("/misc/dial.png")).data;
bufferedimage.getRGB(0, 0, 16, 16, field_4223_i, 0, 16);
} catch (IOException ioexception) {
ioexception.printStackTrace();
}
} }
public void onTick() { public void onTick() {

View File

@ -1,45 +0,0 @@
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.net.HttpURLConnection;
import java.net.URL;
import javax.imageio.ImageIO;
class ThreadDownloadImage extends Thread {
ThreadDownloadImage(ThreadDownloadImageData threaddownloadimagedata, String s, ImageBuffer imagebuffer) {
imageData = threaddownloadimagedata;
location = s;
buffer = imagebuffer;
}
public void run() {
HttpURLConnection httpurlconnection = null;
try {
URL url = new URL(location);
httpurlconnection = (HttpURLConnection) url.openConnection();
httpurlconnection.setDoInput(true);
httpurlconnection.setDoOutput(false);
httpurlconnection.connect();
if (httpurlconnection.getResponseCode() / 100 == 4) {
return;
}
if (buffer == null) {
imageData.image = ImageIO.read(httpurlconnection.getInputStream());
} else {
imageData.image = buffer.parseUserSkin(ImageIO.read(httpurlconnection.getInputStream()));
}
} catch (Exception exception) {
exception.printStackTrace();
} finally {
httpurlconnection.disconnect();
}
}
final String location; /* synthetic field */
final ImageBuffer buffer; /* synthetic field */
final ThreadDownloadImageData imageData; /* synthetic field */
}

View File

@ -1,22 +0,0 @@
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
import java.awt.image.BufferedImage;
public class ThreadDownloadImageData {
public ThreadDownloadImageData(String s, ImageBuffer imagebuffer) {
referenceCount = 1;
textureName = -1;
textureSetupComplete = false;
(new ThreadDownloadImage(this, s, imagebuffer)).start();
}
public BufferedImage image;
public int referenceCount;
public int textureName;
public boolean textureSetupComplete;
}