- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 java、LWJGL 和 Slick2D 创建光线转换器。问题是我似乎无法弄清楚如何正确地从这个字节数组中绘制。
这就是我将纹理放入颜色缓冲区的方式。这有效。所有的 RGB 值都与纹理中的相同。
public java.awt.Color[] colorBuffer;
for (int y = 0; y < image.getHeight(); y++) {
for (int x = 0; x < image.getWidth(); x++) {
c = new java.awt.Color(image.getRGB(x, y));
colorBuffer[y * Width + x] = c;}}
现在这是我创建屏幕缓冲区并向其分配像素的方法:
static byte[] buffer;
static int screenTexture;
public static void main() {
buffer = new byte[Display.Height * Display.Width];
screenTexture = GL11.glGenTextures();
texture = new Sprite(new Vector2f(0, 0), "src/Content/Textures/tex1.bmp");
}
// in the raycasting algorithm:
buffer[y * Display.Width + x] = (byte) texture.colorBuffer[texY * texture.Width + texX].getRed();
buffer[y * Display.Width + x + 1] = (byte) texture.colorBuffer[texY * texture.Width + texX].getGreen();
buffer[y * Display.Width + x + 2] = (byte) texture.colorBuffer[texY * texture.Width + texX].getBlue();
buffer[y * Display.Width + x + 3] = (byte) texture.colorBuffer[texY * texture.Width + texX].getAlpha();
这是我绘制缓冲区的方法:
org.newdawn.slick.Color.white.bind();
ByteBuffer b = BufferUtils.createByteBuffer(buffer.length * 4); // times four due to every pixel having RGBA.
for (int a = 0; a < buffer.length; a++) {
b.put(a, buffer[a]);
}
GL11.glBindTexture(GL11.GL_TEXTURE_2D, 2);
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, Display.Width / 4, Display.Height, 0, GL11.GL_RGBA, GL11.GL_UNSIGNED_BYTE, b);
GL11.glBegin(GL11.GL_QUADS);
{
GL11.glTexCoord2f(0, 0);
GL11.glVertex2f(0, 0);
GL11.glTexCoord2f(1, 0);
GL11.glVertex2f(Display.Width, 0);
GL11.glTexCoord2f(1, 1);
GL11.glVertex2f(Display.Width, Display.Height);
GL11.glTexCoord2f(0, 1);
GL11.glVertex2f(0, Display.Height);
}
GL11.glEnd();
现在,假设我创建一个由 3 条垂直线组成的纹理:红色、绿色和蓝色。它将使红色的一个变成白色,其他的变成黑色,并且随着距离的增加,为纹理添加一些颜色。
这是它的外观图像。绘制文件是原始纹理,右侧窗口是光线转换器。
有人知道如何解决这个问题吗?
最佳答案
您不能使用 awt.Color 对象数组。请改用 ByteArray,它表示 32 位的 RGB(A) 值。
这是我的实现:
/**
* conversion des Images java en buffer
*
* @param source image java
* @param x0 gauche
* @param x1 droite
* @param y0 haut
* @param y1 bas
* @param colormode nombre de canaux à lire dans l'image
* @return buffer
*/
public static ByteBuffer byteBufferFromImageBuffer(BufferedImage source, int x0, int x1, int y0, int y1, int colormode) {
ByteBuffer buffer = BufferUtils.createByteBuffer((x1 - x0) * (y1 - y0)
* colormode);
switch (colormode) {
case 1:
for (int y = y0; y < y1; y++) {
for (int x = x0; x < x1; x++) {
int pixel = source.getRGB(x, y);
buffer.put((byte) (pixel & 0xFF)); // Blue component
}
}
break;
case 3:
for (int y = y0; y < y1; y++) {
for (int x = x0; x < x1; x++) {
int pixel = source.getRGB(x, y);
buffer.put((byte) ((pixel >> 16) & 0xFF)); // Red component
buffer.put((byte) ((pixel >> 8) & 0xFF)); // Green component
buffer.put((byte) (pixel & 0xFF)); // Blue component
}
}
break;
case 4:
for (int y = y0; y < y1; y++)
for (int x = x0; x < x1; x++)
buffer.putInt(source.getRGB(x, y));
break;
default:
warn("bad colormode");
break;
}
buffer.flip();
// reste a effectuer les oppérations OGL depuis le thread principal
return buffer;
// now you can call buffer2GLTex() from rendering thread.
}
/**
* pour LWJGL convertit une bitmap bufferisée en texture. Après cette étape,
* le buffer peut-être détruit
*
* @param openGL tex id
* @param w largeur en pixel du buffer
* @param h hauteur en pixel du buffer
* @param buffer data
* @param colormode la texture sera noir et blanc (1), rgb (3) ou rgba(4)
*/
public static void buffer2GLTex(int tex, int w, int h, ByteBuffer buffer, int colormode) {
glBindTexture(GL_TEXTURE_2D, tex);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
int texFiltering = TexLinFilter ? GL_LINEAR : GL_NEAREST;
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, texFiltering);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, texFiltering);
// Generate The Texture
int format = 0;
switch (colormode) {
case 1:
format = GL_LUMINANCE;
break;
case 3:
format = GL_RGB;
break;
case 4:
// format = GL_RGBA;
format = GL_BGRA;
break;
default:
err("bad colormode");
break;
}
glTexImage2D(GL_TEXTURE_2D, 0, ColorMode, w, h, 0, format, GL_UNSIGNED_BYTE, buffer);
glErr(glGetError());
}
这远非完美,但这是我使用的,对我来说效果很好!
希望对你有帮助
关于java - 从 java LWJGL 中的字节数组绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17124710/
美好的一天!我试图添加两个字节变量并注意到奇怪的结果。 byte valueA = 255; byte valueB = 1; byte valueC = (byte)(valueA + valueB
嗨,我是 swift 的新手,我正在尝试解码以 [Byte] 形式发回给我的字节数组?当我尝试使用 if let string = String(bytes: d, encoding: .utf8)
我正在使用 ipv4 和 ipv6 存储在 postgres 数据库中。 因为 ipv4 需要 32 位(4 字节)而 ipv6 需要 128(16 字节)位。那么为什么在 postgres 中 CI
我很好奇为什么 Go 不提供 []byte(*string) 方法。从性能的角度来看,[]byte(string) 不会复制输入参数并增加更多成本(尽管这看起来很奇怪,因为字符串是不可变的,为什么要复
我正在尝试为UDP实现Stop-and-Wait ARQ。根据停止等待约定,我在 0 和 1 之间切换 ACK。 正确的 ACK 定义为正确的序列号(0 或 1)AND消息长度。 以下片段是我的代码的
我在下面写了一些代码,目前我正在测试,所以代码中没有数据库查询。 下面的代码显示 if(filesize($filename) != 0) 总是转到 else,即使文件不是 0 字节而是 16 字节那
我使用 Apache poi 3.8 来读取 xls 文件,但出现异常: java.io.IOException: Unable to read entire header; 0 by
字典大小为 72 字节(根据 getsizeof(dict) 在字典上调用 .clear() 之后发生了什么,当新实例化的字典返回 240 字节时? 我知道一个简单的 dict 的起始大小为“8”,并
我目前正在努力创建一个函数,它接受两个 4 字节无符号整数,并返回一个 8 字节无符号长整数。我试图将我的工作基于 this research 描述的方法,但我的所有尝试都没有成功。我正在处理的具体输
看看这个简单的程序: #include using namespace std; int main() { unsigned int i=0x3f800000; float* p=(float*)(
我创建了自己的函数,将一个字符串转换为其等效的 BCD 格式的 bytes[]。然后我将此字节发送到 DataOutputStram (使用需要 byte[] 数组的写入方法)。问题出在数字字符串“8
此分配器将在具有静态内存的嵌入式系统中使用(即,没有可用的系统堆,因此“堆”将只是“char heap[4096]”) 周围似乎有很多“小型内存分配器”,但我正在寻找能够处理非常小的分配的一个。我说的
我将数据库脚本从 64 位系统传输到 32 位系统。当我执行脚本时,出现以下错误, Warning! The maximum key length is 900 bytes. The index 'U
想知道 128 字节 ext2 和 256 字节 ext3 文件系统之间的 inode 数据结构差异。 我一直在为 ext2、128 字节 inode 使用此引用:http://www.nongnu.
我试图理解使用 MD5 哈希作为 Cassandra key 在“内存/存储消耗”方面的含义: 我的内容(在 Java 中)的 MD5 哈希 = byte[] 长 16 个字节。 (16 字节来自维基
检查其他人是否也遇到类似问题。 shell脚本中的代码: ## Convert file into Unix format first. ## THIS is IMPORTANT. ###
我们有一个测量数据处理应用程序,目前所有数据都保存为 C++ float,这意味着在我们的 x86/Windows 平台上为 32 位/4 字节。 (32 位 Windows 应用程序)。 由于精度成
我读到在 Java 中 long 类型可以提升为 float 和 double ( http://www.javatpoint.com/method-overloading-in-java )。我想问
我有一个包含 n 个十进制元素的列表,其中每个元素都是两个字节长。 可以说: x = [9000 , 5000 , 2000 , 400] 这个想法是将每个元素拆分为 MSB 和 LSB 并将其存储在
我使用以下代码进行 AES-128 加密来编码一个 16 字节的 block ,但编码值的长度给出了 2 个 32 字节的 block 。我错过了什么吗? plainEnc = AES.enc
我是一名优秀的程序员,十分优秀!