我一直在关注一些关于 html5rocks 的教程,并且我设法制作了一个 javascript 程序,它使用 webGL 在画布上显示一个图像。我已经在下面发布了我的代码。
问题是,似乎没有人向您展示如何在 webGL 中绘制多个对象。我以前从未直接使用过 webGL,所以它对我来说不是很直观。
如何修改此代码以绘制每个对象imageObjectArray
?(请注意,现在我只是在画画imageObjectArray[0]
。
function render(canvas, contextGL, imageObjectArray) {
vertexShader = createShaderFromScriptElement(contextGL, "2d-vertex-shader");
fragmentShader = createShaderFromScriptElement(contextGL, "2d-fragment-shader");
program = createProgram(contextGL, [vertexShader, fragmentShader]);
contextGL.useProgram(program);
var positionLocation = contextGL.getAttribLocation(program, "a_position");
var texCoordLocation = contextGL.getAttribLocation(program, "a_texCoord");
var texCoordBuffer = contextGL.createBuffer();
contextGL.bindBuffer(contextGL.ARRAY_BUFFER, texCoordBuffer);
contextGL.enableVertexAttribArray(texCoordLocation);
contextGL.vertexAttribPointer(texCoordLocation, 2, contextGL.FLOAT, false, 0, 0);
setRectangle(contextGL, 0.0, 0.0, 1.0, 1.0);
var texture = contextGL.createTexture();
contextGL.bindTexture(contextGL.TEXTURE_2D, texture);
contextGL.texParameteri(contextGL.TEXTURE_2D, contextGL.TEXTURE_WRAP_S, contextGL.CLAMP_TO_EDGE);
contextGL.texParameteri(contextGL.TEXTURE_2D, contextGL.TEXTURE_WRAP_T, contextGL.CLAMP_TO_EDGE);
contextGL.texParameteri(contextGL.TEXTURE_2D, contextGL.TEXTURE_MIN_FILTER, contextGL.NEAREST);
contextGL.texParameteri(contextGL.TEXTURE_2D, contextGL.TEXTURE_MAG_FILTER, contextGL.NEAREST);
contextGL.texImage2D(contextGL.TEXTURE_2D, 0, contextGL.RGBA, contextGL.RGBA, contextGL.UNSIGNED_BYTE, imageObjectArray[0].displayObject.data);
var resolutionLocation = contextGL.getUniformLocation(program, "u_resolution");
contextGL.uniform2f(resolutionLocation, canvas.width, canvas.height);
var buffer = contextGL.createBuffer();
contextGL.bindBuffer(contextGL.ARRAY_BUFFER, buffer);
contextGL.enableVertexAttribArray(positionLocation);
contextGL.vertexAttribPointer(positionLocation, 2, contextGL.FLOAT, false, 0, 0);
setRectangle(contextGL, imageObjectArray[0].x, imageObjectArray[0].y, imageObjectArray[0].width, imageObjectArray[0].height);
// draw
contextGL.drawArrays(contextGL.TRIANGLES, 0, 6);
}
function setRectangle(gl, x, y, width, height) {
var x2 = x + width;
var y2 = y + height;
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(
[x, y,
x2, y,
x, y2,
x, y2,
x2, y,
x2, y2
]), gl.STATIC_DRAW);
}
我的目标是开发一个(非常基本的)2d sprite 游戏。没有图书馆的舒适。(也许 glMatrix.js 除外)
[编辑] 我的渲染函数有错误,已修复。