#include #include "../include/gl.h" #include "../include/glext.h" #include "private.h" #include "../gl-api.h" typedef struct { const void* ptr; GLenum type; GLsizei stride; GLint size; } AttribPointer; static AttribPointer VERTEX_POINTER; static AttribPointer UV_POINTER; static AttribPointer ST_POINTER; static AttribPointer NORMAL_POINTER; static AttribPointer DIFFUSE_POINTER; #define VERTEX_ENABLED_FLAG (1 << 0) #define UV_ENABLED_FLAG (1 << 1) #define ST_ENABLED_FLAG (1 << 2) #define DIFFUSE_ENABLED_FLAG (1 << 3) #define NORMAL_ENABLED_FLAG (1 << 4) static GLuint ENABLED_VERTEX_ATTRIBUTES = 0; static GLubyte ACTIVE_CLIENT_TEXTURE = 0; void initAttributePointers() { TRACE(); VERTEX_POINTER.ptr = NULL; VERTEX_POINTER.stride = 0; VERTEX_POINTER.type = GL_FLOAT; VERTEX_POINTER.size = 4; } static GLuint byte_size(GLenum type) { switch(type) { case GL_BYTE: return sizeof(GLbyte); case GL_UNSIGNED_BYTE: return sizeof(GLubyte); case GL_SHORT: return sizeof(GLshort); case GL_UNSIGNED_SHORT: return sizeof(GLushort); case GL_INT: return sizeof(GLint); case GL_UNSIGNED_INT: return sizeof(GLuint); case GL_DOUBLE: return sizeof(GLdouble); default: return sizeof(GLfloat); } } static void transformVertex(GLfloat* src, float* x, float* y, float* z) { register float __x __asm__("fr12"); register float __y __asm__("fr13"); register float __z __asm__("fr14"); __x = src[0]; __y = src[1]; __z = src[2]; mat_trans_fv12() *x = __x; *y = __y; *z = __z; } static void _parseColour(uint32* out, const GLubyte* in, GLint size, GLenum type) { switch(type) { case GL_BYTE: { case GL_UNSIGNED_BYTE: *out = in[3] << 24 | in[0] << 16 | in[1] << 8 | in[0]; } break; case GL_SHORT: case GL_UNSIGNED_SHORT: /* FIXME!!!! */ break; case GL_INT: case GL_UNSIGNED_INT: /* FIXME!!!! */ break; case GL_FLOAT: case GL_DOUBLE: default: { const GLfloat* src = (GLfloat*) in; *out = PVR_PACK_COLOR(src[3], src[0], src[1], src[2]); } break; } } static void _parseFloats(GLfloat* out, const GLubyte* in, GLint size, GLenum type) { GLubyte i = 0; switch(type) { case GL_SHORT: { GLshort* inp = (GLshort*) in; for(i = 0; i < size; ++i) { out[i] = (GLfloat) inp[i]; } } break; case GL_INT: { GLint* inp = (GLint*) in; for(i = 0; i < size; ++i) { out[i] = (GLfloat) inp[i]; } } break; case GL_FLOAT: case GL_DOUBLE: /* Double == Float */ default: for(i = 0; i < size; ++i) out[i] = ((GLfloat*) in)[i]; } } static void _parseIndex(GLshort* out, const GLubyte* in, GLenum type) { switch(type) { case GL_UNSIGNED_BYTE: *out = (GLshort) *in; break; case GL_UNSIGNED_SHORT: default: *out = *((GLshort*) in); } } /* inline void mat_trans_float3_nodiv(const GLfloat* mat, GLfloat* v) { GLfloat x = v[0] * mat[0] + v[1] * mat[4] + v[2] * mat[8] + mat[12]; GLfloat y = v[0] * mat[1] + v[1] * mat[5] + v[2] * mat[9] + mat[13]; GLfloat z = v[0] * mat[2] + v[1] * mat[6] + v[2] * mat[10] + mat[14]; v[0] = x; v[1] = y; v[2] = z; } */ void transformToEyeSpace(GLfloat* point) { _matrixLoadModelView(); mat_trans_single3_nodiv(point[0], point[1], point[2]); } void transformNormalToEyeSpace(GLfloat* normal) { _matrixLoadNormal(); mat_trans_normal3(normal[0], normal[1], normal[2]); } static void submitVertices(GLenum mode, GLsizei first, GLsizei count, GLenum type, const GLvoid* indices) { static GLfloat normal[3] = {0.0f, 0.0f, -1.0f}; static GLfloat eye_P[3]; static GLfloat eye_N[3]; if(!(ENABLED_VERTEX_ATTRIBUTES & VERTEX_ENABLED_FLAG)) { return; } const GLsizei elements = (mode == GL_QUADS) ? 4 : (mode == GL_TRIANGLES) ? 3 : (mode == GL_LINES) ? 2 : count; // Make room for the element + the header PVRCommand* dst = (PVRCommand*) aligned_vector_extend(&activePolyList()->vector, count + 1); // Store a pointer to the header pvr_poly_hdr_t* hdr = (pvr_poly_hdr_t*) dst; // Point dest at the first new vertex to populate dst++; // Compile pvr_poly_cxt_t cxt = *getPVRContext(); cxt.list_type = activePolyList()->list_type; updatePVRTextureContext(&cxt, getTexture0()); pvr_poly_compile(hdr, &cxt); GLubyte vstride = (VERTEX_POINTER.stride) ? VERTEX_POINTER.stride : VERTEX_POINTER.size * byte_size(VERTEX_POINTER.type); const GLubyte* vptr = VERTEX_POINTER.ptr; GLubyte cstride = (DIFFUSE_POINTER.stride) ? DIFFUSE_POINTER.stride : DIFFUSE_POINTER.size * byte_size(DIFFUSE_POINTER.type); const GLubyte* cptr = DIFFUSE_POINTER.ptr; GLubyte uvstride = (UV_POINTER.stride) ? UV_POINTER.stride : UV_POINTER.size * byte_size(UV_POINTER.type); const GLubyte* uvptr = UV_POINTER.ptr; GLubyte nstride = (NORMAL_POINTER.stride) ? NORMAL_POINTER.stride : NORMAL_POINTER.size * byte_size(NORMAL_POINTER.type); const GLubyte* nptr = NORMAL_POINTER.ptr; const GLubyte* indices_as_bytes = (GLubyte*) indices; GLboolean lighting_enabled = isLightingEnabled(); GLushort i; for(i = first; i < count; ++i) { pvr_vertex_t* vertex = (pvr_vertex_t*) dst; vertex->u = vertex->v = 0.0f; vertex->argb = 0; vertex->oargb = 0; vertex->flags = PVR_CMD_VERTEX; if(((i + 1) % elements) == 0) { vertex->flags = PVR_CMD_VERTEX_EOL; } GLshort idx = i; if(indices) { _parseIndex(&idx, &indices_as_bytes[byte_size(type) * i], type); } _parseFloats(&vertex->x, vptr + (idx * vstride), VERTEX_POINTER.size, VERTEX_POINTER.type); if(ENABLED_VERTEX_ATTRIBUTES & DIFFUSE_ENABLED_FLAG) { _parseColour(&vertex->argb, cptr + (idx * cstride), DIFFUSE_POINTER.size, DIFFUSE_POINTER.type); } if(ENABLED_VERTEX_ATTRIBUTES & UV_ENABLED_FLAG) { _parseFloats(&vertex->u, uvptr + (idx * uvstride), UV_POINTER.size, UV_POINTER.type); } if(ENABLED_VERTEX_ATTRIBUTES & NORMAL_ENABLED_FLAG) { _parseFloats(normal, nptr + (idx * nstride), NORMAL_POINTER.size, NORMAL_POINTER.type); } else { normal[0] = normal[1] = 0.0f; normal[2] = -1.0f; } if(lighting_enabled) { /* We ignore diffuse colour when lighting is enabled. If GL_COLOR_MATERIAL is enabled * then the lighting calculation should possibly take it into account */ GLfloat contribution [] = {0.0f, 0.0f, 0.0f, 0.0f}; GLfloat to_add [] = {0.0f, 0.0f, 0.0f, 0.0f}; /* Transform the vertex and normal into eye-space */ eye_P[0] = vertex->x; eye_P[1] = vertex->y; eye_P[2] = vertex->z; eye_N[0] = normal[0]; eye_N[1] = normal[1]; eye_N[2] = normal[2]; transformToEyeSpace(eye_P); transformNormalToEyeSpace(eye_N); GLubyte j; for(j = 0; j < MAX_LIGHTS; ++j) { if(isLightEnabled(i)) { calculateLightingContribution(j, eye_P, eye_N, to_add); contribution[0] += to_add[0]; contribution[1] += to_add[1]; contribution[2] += to_add[2]; contribution[3] += to_add[3]; } } vertex->argb = PVR_PACK_COLOR(contribution[3], contribution[0], contribution[1], contribution[2]); } _applyRenderMatrix(); /* Apply the Render Matrix Stack */ transformVertex(&vertex->x, &vertex->x, &vertex->y, &vertex->z); ++dst; } } void APIENTRY glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices) { TRACE(); if(checkImmediateModeInactive(__func__)) { return; } submitVertices(mode, 0, count, type, indices); } void APIENTRY glDrawArrays(GLenum mode, GLint first, GLsizei count) { TRACE(); if(checkImmediateModeInactive(__func__)) { return; } submitVertices(mode, first, count, GL_UNSIGNED_SHORT, NULL); } void APIENTRY glEnableClientState(GLenum cap) { TRACE(); switch(cap) { case GL_VERTEX_ARRAY: ENABLED_VERTEX_ATTRIBUTES |= VERTEX_ENABLED_FLAG; break; case GL_COLOR_ARRAY: ENABLED_VERTEX_ATTRIBUTES |= DIFFUSE_ENABLED_FLAG; break; case GL_NORMAL_ARRAY: ENABLED_VERTEX_ATTRIBUTES |= NORMAL_ENABLED_FLAG; break; case GL_TEXTURE_COORD_ARRAY: (ACTIVE_CLIENT_TEXTURE) ? (ENABLED_VERTEX_ATTRIBUTES |= ST_ENABLED_FLAG): (ENABLED_VERTEX_ATTRIBUTES |= UV_ENABLED_FLAG); break; default: _glKosThrowError(GL_INVALID_ENUM, "glEnableClientState"); } } void APIENTRY glDisableClientState(GLenum cap) { TRACE(); switch(cap) { case GL_VERTEX_ARRAY: ENABLED_VERTEX_ATTRIBUTES &= ~VERTEX_ENABLED_FLAG; break; case GL_COLOR_ARRAY: ENABLED_VERTEX_ATTRIBUTES &= ~DIFFUSE_ENABLED_FLAG; break; case GL_NORMAL_ARRAY: ENABLED_VERTEX_ATTRIBUTES &= ~NORMAL_ENABLED_FLAG; break; case GL_TEXTURE_COORD_ARRAY: (ACTIVE_CLIENT_TEXTURE) ? (ENABLED_VERTEX_ATTRIBUTES &= ~ST_ENABLED_FLAG): (ENABLED_VERTEX_ATTRIBUTES &= ~UV_ENABLED_FLAG); break; default: _glKosThrowError(GL_INVALID_ENUM, "glDisableClientState"); } } void APIENTRY glClientActiveTextureARB(GLenum texture) { TRACE(); if(texture < GL_TEXTURE0_ARB || texture > GL_TEXTURE0_ARB + MAX_TEXTURE_UNITS) { _glKosThrowError(GL_INVALID_ENUM, "glClientActiveTextureARB"); } if(_glKosHasError()) { _glKosPrintError(); return; } ACTIVE_CLIENT_TEXTURE = (texture == GL_TEXTURE1_ARB) ? 1 : 0; } void APIENTRY glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { TRACE(); AttribPointer* tointer = (ACTIVE_CLIENT_TEXTURE == 0) ? &UV_POINTER : &ST_POINTER; tointer->ptr = pointer; tointer->stride = stride; tointer->type = type; tointer->size = size; } void APIENTRY glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { TRACE(); VERTEX_POINTER.ptr = pointer; VERTEX_POINTER.stride = stride; VERTEX_POINTER.type = type; VERTEX_POINTER.size = size; } void APIENTRY glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer) { TRACE(); DIFFUSE_POINTER.ptr = pointer; DIFFUSE_POINTER.stride = stride; DIFFUSE_POINTER.type = type; DIFFUSE_POINTER.size = size; } void APIENTRY glNormalPointer(GLenum type, GLsizei stride, const GLvoid * pointer) { TRACE(); NORMAL_POINTER.ptr = pointer; NORMAL_POINTER.stride = stride; NORMAL_POINTER.type = type; NORMAL_POINTER.size = 3; }