mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-25 05:11:04 +00:00
- use separate vertex buffers per model to avoid large memory usage peaks. Also delete the geometry data for the models once it has been copied into the vertex buffer.
This commit is contained in:
parent
bca47bb9bc
commit
e5cd90f323
8 changed files with 287 additions and 107 deletions
|
@ -197,13 +197,16 @@ class FModelVertexBuffer : public FVertexBuffer
|
||||||
unsigned int ibo_id;
|
unsigned int ibo_id;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// these are public because it's the models having to fill them in.
|
|
||||||
TArray<FModelVertex> vbo_shadowdata; // this is kept around for interpolating on GL 2.0
|
|
||||||
TArray<unsigned int> ibo_shadowdata; // this is kept around for interpolating on GL 2.0
|
|
||||||
|
|
||||||
FModelVertexBuffer();
|
FModelVertexBuffer(bool needindex);
|
||||||
~FModelVertexBuffer();
|
~FModelVertexBuffer();
|
||||||
|
|
||||||
|
FModelVertex *LockVertexBuffer(unsigned int size);
|
||||||
|
void UnlockVertexBuffer();
|
||||||
|
|
||||||
|
unsigned int *LockIndexBuffer(unsigned int size);
|
||||||
|
void UnlockIndexBuffer();
|
||||||
|
|
||||||
unsigned int SetupFrame(unsigned int frame1, unsigned int frame2);
|
unsigned int SetupFrame(unsigned int frame1, unsigned int frame2);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -93,35 +93,44 @@ public:
|
||||||
DeletingModelArray Models;
|
DeletingModelArray Models;
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
void gl_LoadModels()
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//===========================================================================
|
|
||||||
|
|
||||||
FModelVertexBuffer::FModelVertexBuffer()
|
|
||||||
{
|
{
|
||||||
ibo_id = 0;
|
|
||||||
glGenBuffers(1, &ibo_id);
|
|
||||||
//for (unsigned i = 1; i < Models.Size(); i++)
|
|
||||||
for (int i = Models.Size() - 1; i >= 0; i--)
|
for (int i = Models.Size() - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
Models[i]->BuildVertexBuffer(this);
|
Models[i]->BuildVertexBuffer();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
FModelVertexBuffer::FModelVertexBuffer(bool needindex)
|
||||||
|
{
|
||||||
glBindVertexArray(vao_id);
|
glBindVertexArray(vao_id);
|
||||||
|
|
||||||
glBindBuffer(GL_ARRAY_BUFFER, vbo_id);
|
ibo_id = 0;
|
||||||
glBufferData(GL_ARRAY_BUFFER,vbo_shadowdata.Size() * sizeof(FModelVertex), &vbo_shadowdata[0], GL_STATIC_DRAW);
|
if (needindex)
|
||||||
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo_id);
|
{
|
||||||
glBufferData(GL_ELEMENT_ARRAY_BUFFER,ibo_shadowdata.Size() * sizeof(unsigned int), &ibo_shadowdata[0], GL_STATIC_DRAW);
|
glGenBuffers(1, &ibo_id);
|
||||||
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
glBindBuffer(GL_ARRAY_BUFFER, vbo_id);
|
||||||
glEnableVertexAttribArray(VATTR_VERTEX);
|
glEnableVertexAttribArray(VATTR_VERTEX);
|
||||||
glEnableVertexAttribArray(VATTR_TEXCOORD);
|
glEnableVertexAttribArray(VATTR_TEXCOORD);
|
||||||
glEnableVertexAttribArray(VATTR_VERTEX2);
|
glEnableVertexAttribArray(VATTR_VERTEX2);
|
||||||
glBindVertexArray(0);
|
glBindVertexArray(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
FModelVertexBuffer::~FModelVertexBuffer()
|
FModelVertexBuffer::~FModelVertexBuffer()
|
||||||
{
|
{
|
||||||
if (ibo_id != 0)
|
if (ibo_id != 0)
|
||||||
|
@ -130,6 +139,63 @@ FModelVertexBuffer::~FModelVertexBuffer()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
FModelVertex *FModelVertexBuffer::LockVertexBuffer(unsigned int size)
|
||||||
|
{
|
||||||
|
glBindBuffer(GL_ARRAY_BUFFER, vbo_id);
|
||||||
|
glBufferData(GL_ARRAY_BUFFER, size * sizeof(FModelVertex), NULL, GL_STATIC_DRAW);
|
||||||
|
return (FModelVertex*)glMapBufferRange(GL_ARRAY_BUFFER, 0, size * sizeof(FModelVertex), GL_MAP_WRITE_BIT|GL_MAP_INVALIDATE_BUFFER_BIT);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FModelVertexBuffer::UnlockVertexBuffer()
|
||||||
|
{
|
||||||
|
glBindBuffer(GL_ARRAY_BUFFER, vbo_id);
|
||||||
|
glUnmapBuffer(GL_ARRAY_BUFFER);
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
unsigned int *FModelVertexBuffer::LockIndexBuffer(unsigned int size)
|
||||||
|
{
|
||||||
|
if (ibo_id != 0)
|
||||||
|
{
|
||||||
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo_id);
|
||||||
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER, size * sizeof(unsigned int), NULL, GL_STATIC_DRAW);
|
||||||
|
return (unsigned int*)glMapBufferRange(GL_ELEMENT_ARRAY_BUFFER, 0, size * sizeof(unsigned int), GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_BUFFER_BIT);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FModelVertexBuffer::UnlockIndexBuffer()
|
||||||
|
{
|
||||||
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo_id);
|
||||||
|
glUnmapBuffer(GL_ELEMENT_ARRAY_BUFFER);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
|
@ -147,6 +213,16 @@ unsigned int FModelVertexBuffer::SetupFrame(unsigned int frame1, unsigned int fr
|
||||||
return frame1;
|
return frame1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// FModel::~FModel
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
FModel::~FModel()
|
||||||
|
{
|
||||||
|
if (mVBuf != NULL) delete mVBuf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -293,7 +369,7 @@ static FModel * FindModel(const char * path, const char * modelfile)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// The vertex buffer cannot be initialized here because this gets called before OpenGL is initialized
|
||||||
model->mFileName = fullname;
|
model->mFileName = fullname;
|
||||||
Models.Push(model);
|
Models.Push(model);
|
||||||
return model;
|
return model;
|
||||||
|
@ -734,7 +810,8 @@ void gl_RenderFrameModels( const FSpriteModelFrame *smf,
|
||||||
|
|
||||||
if (mdl!=NULL)
|
if (mdl!=NULL)
|
||||||
{
|
{
|
||||||
gl_RenderState.SetVertexBuffer(GLRenderer->mModelVBO);
|
mdl->BuildVertexBuffer();
|
||||||
|
gl_RenderState.SetVertexBuffer(mdl->mVBuf);
|
||||||
|
|
||||||
if ( smfNext && smf->modelframes[i] != smfNext->modelframes[i] )
|
if ( smfNext && smf->modelframes[i] != smfNext->modelframes[i] )
|
||||||
mdl->RenderFrame(smf->skins[i], smf->modelframes[i], smfNext->modelframes[i], inter, translation);
|
mdl->RenderFrame(smf->skins[i], smf->modelframes[i], smfNext->modelframes[i], inter, translation);
|
||||||
|
|
|
@ -24,16 +24,19 @@ FTexture * LoadSkin(const char * path, const char * fn);
|
||||||
class FModel
|
class FModel
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
FModel() { }
|
|
||||||
virtual ~FModel() { }
|
FModel()
|
||||||
|
{
|
||||||
|
mVBuf = NULL;
|
||||||
|
}
|
||||||
|
virtual ~FModel();
|
||||||
|
|
||||||
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length) = 0;
|
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length) = 0;
|
||||||
virtual int FindFrame(const char * name) = 0;
|
virtual int FindFrame(const char * name) = 0;
|
||||||
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0) = 0;
|
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0) = 0;
|
||||||
virtual void BuildVertexBuffer(FModelVertexBuffer *buf) = 0;
|
virtual void BuildVertexBuffer() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
FModelVertexBuffer *mVBuf;
|
||||||
FString mFileName;
|
FString mFileName;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -139,7 +142,8 @@ public:
|
||||||
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length);
|
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length);
|
||||||
virtual int FindFrame(const char * name);
|
virtual int FindFrame(const char * name);
|
||||||
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
||||||
virtual void BuildVertexBuffer(FModelVertexBuffer *buf);
|
void BuildVertexBuffer();
|
||||||
|
void CleanTempData();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -201,11 +205,19 @@ class FMD3Model : public FModel
|
||||||
}
|
}
|
||||||
|
|
||||||
~MD3Surface()
|
~MD3Surface()
|
||||||
|
{
|
||||||
|
if (skins) delete [] skins;
|
||||||
|
CleanTempData();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CleanTempData()
|
||||||
{
|
{
|
||||||
if (tris) delete [] tris;
|
if (tris) delete [] tris;
|
||||||
if (vertices) delete [] vertices;
|
if (vertices) delete [] vertices;
|
||||||
if (texcoords) delete [] texcoords;
|
if (texcoords) delete [] texcoords;
|
||||||
if (skins) delete [] skins;
|
tris = NULL;
|
||||||
|
vertices = NULL;
|
||||||
|
texcoords = NULL;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -231,7 +243,7 @@ public:
|
||||||
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length);
|
virtual bool Load(const char * fn, int lumpnum, const char * buffer, int length);
|
||||||
virtual int FindFrame(const char * name);
|
virtual int FindFrame(const char * name);
|
||||||
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
||||||
virtual void BuildVertexBuffer(FModelVertexBuffer *buf);
|
void BuildVertexBuffer();
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FVoxelVertexHash
|
struct FVoxelVertexHash
|
||||||
|
@ -268,11 +280,10 @@ class FVoxelModel : public FModel
|
||||||
protected:
|
protected:
|
||||||
FVoxel *mVoxel;
|
FVoxel *mVoxel;
|
||||||
bool mOwningVoxel; // if created through MODELDEF deleting this object must also delete the voxel object
|
bool mOwningVoxel; // if created through MODELDEF deleting this object must also delete the voxel object
|
||||||
|
FTexture *mPalette;
|
||||||
|
unsigned int mNumIndices;
|
||||||
TArray<FModelVertex> mVertices;
|
TArray<FModelVertex> mVertices;
|
||||||
TArray<unsigned int> mIndices;
|
TArray<unsigned int> mIndices;
|
||||||
FTexture *mPalette;
|
|
||||||
unsigned int vindex;
|
|
||||||
unsigned int iindex;
|
|
||||||
|
|
||||||
void MakeSlabPolys(int x, int y, kvxslab_t *voxptr, FVoxelMap &check);
|
void MakeSlabPolys(int x, int y, kvxslab_t *voxptr, FVoxelMap &check);
|
||||||
void AddFace(int x1, int y1, int z1, int x2, int y2, int z2, int x3, int y3, int z3, int x4, int y4, int z4, BYTE color, FVoxelMap &check);
|
void AddFace(int x1, int y1, int z1, int x2, int y2, int z2, int x3, int y3, int z3, int x4, int y4, int z4, BYTE color, FVoxelMap &check);
|
||||||
|
@ -286,7 +297,7 @@ public:
|
||||||
virtual int FindFrame(const char * name);
|
virtual int FindFrame(const char * name);
|
||||||
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
virtual void RenderFrame(FTexture * skin, int frame, int frame2, double inter, int translation=0);
|
||||||
FTexture *GetPaletteTexture() const { return mPalette; }
|
FTexture *GetPaletteTexture() const { return mPalette; }
|
||||||
void BuildVertexBuffer(FModelVertexBuffer *buf);
|
void BuildVertexBuffer();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -206,65 +206,97 @@ bool FDMDModel::Load(const char * path, int, const char * buffer, int length)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
FDMDModel::~FDMDModel()
|
FDMDModel::~FDMDModel()
|
||||||
{
|
{
|
||||||
int i;
|
CleanTempData();
|
||||||
|
|
||||||
// clean up
|
// skins are managed by the texture manager so they must not be deleted here.
|
||||||
if (skins != NULL)
|
if (skins != NULL) delete [] skins;
|
||||||
{
|
if (frames != NULL) delete [] frames;
|
||||||
// skins are managed by the texture manager so they must not be deleted here.
|
}
|
||||||
delete [] skins;
|
|
||||||
}
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// Deletes everything that's no longer needed after building the vertex buffer
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FDMDModel::CleanTempData()
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
if (frames != NULL)
|
if (frames != NULL)
|
||||||
{
|
{
|
||||||
for (i=0;i<info.numFrames;i++)
|
for (i=0;i<info.numFrames;i++)
|
||||||
{
|
{
|
||||||
delete [] frames[i].vertices;
|
if (frames[i].vertices != NULL) delete [] frames[i].vertices;
|
||||||
delete [] frames[i].normals;
|
if (frames[i].normals != NULL) delete [] frames[i].normals;
|
||||||
|
|
||||||
|
frames[i].vertices = NULL;
|
||||||
|
frames[i].normals = NULL;
|
||||||
}
|
}
|
||||||
delete [] frames;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 0; i < info.numLODs; i++)
|
for(i = 0; i < info.numLODs; i++)
|
||||||
{
|
{
|
||||||
if (lods[i].triangles != NULL) delete[] lods[i].triangles;
|
if (lods[i].triangles != NULL) delete[] lods[i].triangles;
|
||||||
|
lods[i].triangles = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (texCoords != NULL) delete[] texCoords;
|
if (texCoords != NULL) delete[] texCoords;
|
||||||
|
texCoords = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
void FDMDModel::BuildVertexBuffer(FModelVertexBuffer *buf)
|
void FDMDModel::BuildVertexBuffer()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < info.numFrames; i++)
|
if (mVBuf == NULL)
|
||||||
{
|
{
|
||||||
ModelFrame *frame = &frames[i];
|
int VertexBufferSize = info.numFrames * lodInfo[0].numTriangles * 3;
|
||||||
DMDModelVertex *vert = frame->vertices;
|
unsigned int vindex = 0;
|
||||||
DMDModelVertex *norm = frame->normals;
|
|
||||||
|
|
||||||
frame->vindex = buf->vbo_shadowdata.Size();
|
mVBuf = new FModelVertexBuffer(false);
|
||||||
|
FModelVertex *vertptr = mVBuf->LockVertexBuffer(VertexBufferSize);
|
||||||
|
|
||||||
|
for (int i = 0; i < info.numFrames; i++)
|
||||||
FTriangle *tri = lods[0].triangles;
|
|
||||||
|
|
||||||
for (int i = 0; i < lodInfo[0].numTriangles; i++)
|
|
||||||
{
|
{
|
||||||
for (int j = 0; j < 3; j++)
|
ModelFrame *frame = &frames[i];
|
||||||
|
DMDModelVertex *vert = frame->vertices;
|
||||||
|
DMDModelVertex *norm = frame->normals;
|
||||||
|
|
||||||
|
frame->vindex = vindex;
|
||||||
|
|
||||||
|
|
||||||
|
FTriangle *tri = lods[0].triangles;
|
||||||
|
|
||||||
|
for (int i = 0; i < lodInfo[0].numTriangles; i++)
|
||||||
{
|
{
|
||||||
FModelVertex bvert;
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
|
||||||
int ti = tri->textureIndices[j];
|
int ti = tri->textureIndices[j];
|
||||||
int vi = tri->vertexIndices[j];
|
int vi = tri->vertexIndices[j];
|
||||||
|
|
||||||
bvert.Set(vert[vi].xyz[0], vert[vi].xyz[1], vert[vi].xyz[2], (float)texCoords[ti].s /info.skinWidth, (float)texCoords[ti].t/info.skinHeight);
|
FModelVertex *bvert = &vertptr[vindex++];
|
||||||
bvert.SetNormal(norm[vi].xyz[0], norm[vi].xyz[1], norm[vi].xyz[2]);
|
bvert->Set(vert[vi].xyz[0], vert[vi].xyz[1], vert[vi].xyz[2], (float)texCoords[ti].s / info.skinWidth, (float)texCoords[ti].t / info.skinHeight);
|
||||||
buf->vbo_shadowdata.Push(bvert);
|
bvert->SetNormal(norm[vi].xyz[0], norm[vi].xyz[1], norm[vi].xyz[2]);
|
||||||
|
}
|
||||||
|
tri++;
|
||||||
}
|
}
|
||||||
tri++;
|
|
||||||
}
|
}
|
||||||
|
mVBuf->UnlockVertexBuffer();
|
||||||
|
CleanTempData();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -307,7 +339,7 @@ void FDMDModel::RenderFrame(FTexture * skin, int frameno, int frameno2, double i
|
||||||
gl_RenderState.SetInterpolationFactor((float)inter);
|
gl_RenderState.SetInterpolationFactor((float)inter);
|
||||||
|
|
||||||
gl_RenderState.Apply();
|
gl_RenderState.Apply();
|
||||||
GLRenderer->mModelVBO->SetupFrame(frames[frameno].vindex, frames[frameno2].vindex);
|
mVBuf->SetupFrame(frames[frameno].vindex, frames[frameno2].vindex);
|
||||||
glDrawArrays(GL_TRIANGLES, 0, lodInfo[0].numTriangles * 3);
|
glDrawArrays(GL_TRIANGLES, 0, lodInfo[0].numTriangles * 3);
|
||||||
gl_RenderState.SetInterpolationFactor(0.f);
|
gl_RenderState.SetInterpolationFactor(0.f);
|
||||||
}
|
}
|
||||||
|
|
|
@ -207,37 +207,72 @@ bool FMD3Model::Load(const char * path, int, const char * buffer, int length)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FMD3Model::BuildVertexBuffer(FModelVertexBuffer *buf)
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FMD3Model::BuildVertexBuffer()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < numSurfaces; i++)
|
if (mVBuf == NULL)
|
||||||
{
|
{
|
||||||
MD3Surface * surf = &surfaces[i];
|
unsigned int vbufsize = 0;
|
||||||
|
unsigned int ibufsize = 0;
|
||||||
|
|
||||||
surf->vindex = buf->vbo_shadowdata.Size();
|
for (int i = 0; i < numSurfaces; i++)
|
||||||
surf->iindex = buf->ibo_shadowdata.Size();
|
|
||||||
for (int j = 0; j < numFrames * surf->numVertices; j++)
|
|
||||||
{
|
{
|
||||||
MD3Vertex* vert = surf->vertices + j;
|
MD3Surface * surf = &surfaces[i];
|
||||||
|
vbufsize += numFrames * surf->numVertices;
|
||||||
FModelVertex bvert;
|
ibufsize += 3 * surf->numTriangles;
|
||||||
|
|
||||||
int tc = j % surf->numVertices;
|
|
||||||
bvert.Set(vert->x, vert->z, vert->y, surf->texcoords[tc].s, surf->texcoords[tc].t);
|
|
||||||
bvert.SetNormal(vert->nx, vert->nz, vert->ny);
|
|
||||||
buf->vbo_shadowdata.Push(bvert);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int k = 0; k < surf->numTriangles; k++)
|
mVBuf = new FModelVertexBuffer(true);
|
||||||
|
FModelVertex *vertptr = mVBuf->LockVertexBuffer(vbufsize);
|
||||||
|
unsigned int *indxptr = mVBuf->LockIndexBuffer(ibufsize);
|
||||||
|
|
||||||
|
assert(vertptr != NULL && indxptr != NULL);
|
||||||
|
|
||||||
|
unsigned int vindex = 0, iindex = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < numSurfaces; i++)
|
||||||
{
|
{
|
||||||
for (int l = 0; l < 3; l++)
|
MD3Surface * surf = &surfaces[i];
|
||||||
|
|
||||||
|
surf->vindex = vindex;
|
||||||
|
surf->iindex = iindex;
|
||||||
|
for (int j = 0; j < numFrames * surf->numVertices; j++)
|
||||||
{
|
{
|
||||||
buf->ibo_shadowdata.Push(surf->tris[k].VertIndex[l]);
|
MD3Vertex* vert = surf->vertices + j;
|
||||||
|
|
||||||
|
FModelVertex *bvert = &vertptr[vindex++];
|
||||||
|
|
||||||
|
int tc = j % surf->numVertices;
|
||||||
|
bvert->Set(vert->x, vert->z, vert->y, surf->texcoords[tc].s, surf->texcoords[tc].t);
|
||||||
|
bvert->SetNormal(vert->nx, vert->nz, vert->ny);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (int k = 0; k < surf->numTriangles; k++)
|
||||||
|
{
|
||||||
|
for (int l = 0; l < 3; l++)
|
||||||
|
{
|
||||||
|
indxptr[iindex++] = surf->tris[k].VertIndex[l];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
surf->CleanTempData();
|
||||||
}
|
}
|
||||||
|
mVBuf->UnlockVertexBuffer();
|
||||||
|
mVBuf->UnlockIndexBuffer();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
int FMD3Model::FindFrame(const char * name)
|
int FMD3Model::FindFrame(const char * name)
|
||||||
{
|
{
|
||||||
for (int i=0;i<numFrames;i++)
|
for (int i=0;i<numFrames;i++)
|
||||||
|
@ -247,6 +282,12 @@ int FMD3Model::FindFrame(const char * name)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
void FMD3Model::RenderFrame(FTexture * skin, int frameno, int frameno2, double inter, int translation)
|
void FMD3Model::RenderFrame(FTexture * skin, int frameno, int frameno2, double inter, int translation)
|
||||||
{
|
{
|
||||||
if (frameno>=numFrames || frameno2>=numFrames) return;
|
if (frameno>=numFrames || frameno2>=numFrames) return;
|
||||||
|
@ -271,12 +312,18 @@ void FMD3Model::RenderFrame(FTexture * skin, int frameno, int frameno2, double i
|
||||||
gl_RenderState.SetMaterial(tex, CLAMP_NONE, translation, -1, false);
|
gl_RenderState.SetMaterial(tex, CLAMP_NONE, translation, -1, false);
|
||||||
|
|
||||||
gl_RenderState.Apply();
|
gl_RenderState.Apply();
|
||||||
GLRenderer->mModelVBO->SetupFrame(surf->vindex + frameno * surf->numVertices, surf->vindex + frameno2 * surf->numVertices);
|
mVBuf->SetupFrame(surf->vindex + frameno * surf->numVertices, surf->vindex + frameno2 * surf->numVertices);
|
||||||
glDrawElements(GL_TRIANGLES, surf->numTriangles * 3, GL_UNSIGNED_INT, (void*)(intptr_t)(surf->iindex * sizeof(unsigned int)));
|
glDrawElements(GL_TRIANGLES, surf->numTriangles * 3, GL_UNSIGNED_INT, (void*)(intptr_t)(surf->iindex * sizeof(unsigned int)));
|
||||||
}
|
}
|
||||||
gl_RenderState.SetInterpolationFactor(0.f);
|
gl_RenderState.SetInterpolationFactor(0.f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
FMD3Model::~FMD3Model()
|
FMD3Model::~FMD3Model()
|
||||||
{
|
{
|
||||||
if (frames) delete [] frames;
|
if (frames) delete [] frames;
|
||||||
|
|
|
@ -214,8 +214,6 @@ FVoxelModel::FVoxelModel(FVoxel *voxel, bool owned)
|
||||||
mVoxel = voxel;
|
mVoxel = voxel;
|
||||||
mOwningVoxel = owned;
|
mOwningVoxel = owned;
|
||||||
mPalette = new FVoxelTexture(voxel);
|
mPalette = new FVoxelTexture(voxel);
|
||||||
Initialize();
|
|
||||||
iindex = vindex = UINT_MAX;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
@ -231,24 +229,6 @@ FVoxelModel::~FVoxelModel()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//===========================================================================
|
|
||||||
|
|
||||||
void FVoxelModel::BuildVertexBuffer(FModelVertexBuffer *buf)
|
|
||||||
{
|
|
||||||
vindex = buf->vbo_shadowdata.Size();
|
|
||||||
iindex = buf->ibo_shadowdata.Size();
|
|
||||||
|
|
||||||
FModelVertex *mv = &buf->vbo_shadowdata[buf->vbo_shadowdata.Reserve(mVertices.Size())];
|
|
||||||
unsigned int *mi = &buf->ibo_shadowdata[buf->ibo_shadowdata.Reserve(mIndices.Size())];
|
|
||||||
|
|
||||||
memcpy(mv, &mVertices[0], sizeof(FModelVertex)* mVertices.Size());
|
|
||||||
memcpy(mi, &mIndices[0], sizeof(unsigned int)* mIndices.Size());
|
|
||||||
}
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
@ -386,6 +366,37 @@ void FVoxelModel::Initialize()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FVoxelModel::BuildVertexBuffer()
|
||||||
|
{
|
||||||
|
if (mVBuf == NULL)
|
||||||
|
{
|
||||||
|
Initialize();
|
||||||
|
|
||||||
|
mVBuf = new FModelVertexBuffer(true);
|
||||||
|
FModelVertex *vertptr = mVBuf->LockVertexBuffer(mVertices.Size());
|
||||||
|
unsigned int *indxptr = mVBuf->LockIndexBuffer(mIndices.Size());
|
||||||
|
|
||||||
|
memcpy(vertptr, &mVertices[0], sizeof(FModelVertex)* mVertices.Size());
|
||||||
|
memcpy(indxptr, &mIndices[0], sizeof(unsigned int)* mIndices.Size());
|
||||||
|
|
||||||
|
mVBuf->UnlockVertexBuffer();
|
||||||
|
mVBuf->UnlockIndexBuffer();
|
||||||
|
|
||||||
|
// delete our temporary buffers
|
||||||
|
mVertices.Clear();
|
||||||
|
mIndices.Clear();
|
||||||
|
mVertices.ShrinkToFit();
|
||||||
|
mIndices.ShrinkToFit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
@ -420,7 +431,7 @@ void FVoxelModel::RenderFrame(FTexture * skin, int frame, int frame2, double int
|
||||||
gl_RenderState.SetMaterial(tex, CLAMP_NOFILTER, translation, -1, false);
|
gl_RenderState.SetMaterial(tex, CLAMP_NOFILTER, translation, -1, false);
|
||||||
|
|
||||||
gl_RenderState.Apply();
|
gl_RenderState.Apply();
|
||||||
GLRenderer->mModelVBO->SetupFrame(vindex, vindex);
|
mVBuf->SetupFrame(0, 0);
|
||||||
glDrawElements(GL_TRIANGLES, mIndices.Size(), GL_UNSIGNED_INT, (void*)(intptr_t)(iindex * sizeof(unsigned int)));
|
glDrawElements(GL_TRIANGLES, mNumIndices, GL_UNSIGNED_INT, (void*)(intptr_t)0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -99,6 +99,8 @@ FGLRenderer::FGLRenderer(OpenGLFrameBuffer *fb)
|
||||||
mLights = NULL;
|
mLights = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gl_LoadModels();
|
||||||
|
|
||||||
void FGLRenderer::Initialize()
|
void FGLRenderer::Initialize()
|
||||||
{
|
{
|
||||||
glpart2 = FTexture::CreateTexture(Wads.GetNumForFullName("glstuff/glpart2.png"), FTexture::TEX_MiscPatch);
|
glpart2 = FTexture::CreateTexture(Wads.GetNumForFullName("glstuff/glpart2.png"), FTexture::TEX_MiscPatch);
|
||||||
|
@ -107,13 +109,13 @@ void FGLRenderer::Initialize()
|
||||||
|
|
||||||
mVBO = new FFlatVertexBuffer;
|
mVBO = new FFlatVertexBuffer;
|
||||||
mSkyVBO = new FSkyVertexBuffer;
|
mSkyVBO = new FSkyVertexBuffer;
|
||||||
mModelVBO = new FModelVertexBuffer;
|
|
||||||
mLights = new FLightBuffer();
|
mLights = new FLightBuffer();
|
||||||
gl_RenderState.SetVertexBuffer(mVBO);
|
gl_RenderState.SetVertexBuffer(mVBO);
|
||||||
mFBID = 0;
|
mFBID = 0;
|
||||||
SetupLevel();
|
SetupLevel();
|
||||||
mShaderManager = new FShaderManager;
|
mShaderManager = new FShaderManager;
|
||||||
mSamplerManager = new FSamplerManager;
|
mSamplerManager = new FSamplerManager;
|
||||||
|
gl_LoadModels();
|
||||||
}
|
}
|
||||||
|
|
||||||
FGLRenderer::~FGLRenderer()
|
FGLRenderer::~FGLRenderer()
|
||||||
|
@ -123,7 +125,6 @@ FGLRenderer::~FGLRenderer()
|
||||||
if (mShaderManager != NULL) delete mShaderManager;
|
if (mShaderManager != NULL) delete mShaderManager;
|
||||||
if (mSamplerManager != NULL) delete mSamplerManager;
|
if (mSamplerManager != NULL) delete mSamplerManager;
|
||||||
if (mVBO != NULL) delete mVBO;
|
if (mVBO != NULL) delete mVBO;
|
||||||
if (mModelVBO) delete mModelVBO;
|
|
||||||
if (mSkyVBO != NULL) delete mSkyVBO;
|
if (mSkyVBO != NULL) delete mSkyVBO;
|
||||||
if (mLights != NULL) delete mLights;
|
if (mLights != NULL) delete mLights;
|
||||||
if (glpart2) delete glpart2;
|
if (glpart2) delete glpart2;
|
||||||
|
|
|
@ -10,7 +10,6 @@ struct particle_t;
|
||||||
class FCanvasTexture;
|
class FCanvasTexture;
|
||||||
class FFlatVertexBuffer;
|
class FFlatVertexBuffer;
|
||||||
class FSkyVertexBuffer;
|
class FSkyVertexBuffer;
|
||||||
class FModelVertexBuffer;
|
|
||||||
class OpenGLFrameBuffer;
|
class OpenGLFrameBuffer;
|
||||||
struct FDrawInfo;
|
struct FDrawInfo;
|
||||||
struct pspdef_t;
|
struct pspdef_t;
|
||||||
|
@ -72,7 +71,6 @@ public:
|
||||||
|
|
||||||
FFlatVertexBuffer *mVBO;
|
FFlatVertexBuffer *mVBO;
|
||||||
FSkyVertexBuffer *mSkyVBO;
|
FSkyVertexBuffer *mSkyVBO;
|
||||||
FModelVertexBuffer *mModelVBO;
|
|
||||||
FLightBuffer *mLights;
|
FLightBuffer *mLights;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue