窓に絵を描いてみようと思っていますが、一色しか描いていません。
私のコードは以下に掲載されています。
TextureManager:-
package oregon.src;
import oregon.client.*;
import java.io.*;
import java.util.*;
import org.newdawn.slick.opengl.*;
public class TextureManager {
private static HashMap<String, Texture> textures = new HashMap<String, Texture>();
public static Oregon oregon = new Oregon();
public static boolean loadTexture(String path, String name) {
Texture texture = null;
try {
if ((texture = TextureLoader.getTexture("PNG", new FileInputStream(path))) != null) {
textures.put(name, texture);
return true;
}
} catch (FileNotFoundException e) {
oregon.stop(e);
} catch (IOException e1) {
oregon.stop(e1);
}
return false;
}
public static Texture getTexture(String name) {
if (textures.containsKey(name)) {
return textures.get(name);
}
return null;
}
}
描く:-
package oregon.src;
import static org.lwjgl.opengl.GL11.*;
public class Draw {
public static Settings settings = new Settings();
public static void renderBlock(String path, String name, int coord1, int coord2) {
if (settings.testing) {
path = settings.pathWhilstTesting + path;
} else if (!settings.testing) {
path = settings.pathWhilstUsing + path;
}
TextureManager.loadTexture(path, name);
glBindTexture(GL_TEXTURE_2D, TextureManager.getTexture(name).getTextureID());
glBegin(GL_QUADS);
glVertex2i(coord1, coord1);
glVertex2i(coord1, coord2);
glVertex2i(coord2, coord2);
glVertex2i(coord2, coord1);
glEnd();
}
}
質問する前に、エラーは発生していません。コードは問題ありません。画像だけです。:D
編集:-画像を追加できません!:'(