mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 16:40:56 +00:00
- rework MD2 code for reloading/precaching of geometry data.
This commit is contained in:
parent
7af458223e
commit
feeebf5265
5 changed files with 223 additions and 143 deletions
|
@ -101,6 +101,14 @@ void gl_LoadModels()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gl_FlushModels()
|
||||||
|
{
|
||||||
|
for (int i = Models.Size() - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
Models[i]->DestroyVertexBuffer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
|
|
@ -33,6 +33,11 @@ public:
|
||||||
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() = 0;
|
virtual void BuildVertexBuffer() = 0;
|
||||||
|
void DestroyVertexBuffer()
|
||||||
|
{
|
||||||
|
delete mVBuf;
|
||||||
|
mVBuf = NULL;
|
||||||
|
}
|
||||||
virtual float getAspectFactor() { return 1.f; }
|
virtual float getAspectFactor() { return 1.f; }
|
||||||
|
|
||||||
FModelVertexBuffer *mVBuf;
|
FModelVertexBuffer *mVBuf;
|
||||||
|
@ -93,9 +98,13 @@ protected:
|
||||||
struct ModelFrame
|
struct ModelFrame
|
||||||
{
|
{
|
||||||
char name[16];
|
char name[16];
|
||||||
|
unsigned int vindex;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ModelFrameVertexData
|
||||||
|
{
|
||||||
DMDModelVertex *vertices;
|
DMDModelVertex *vertices;
|
||||||
DMDModelVertex *normals;
|
DMDModelVertex *normals;
|
||||||
unsigned int vindex;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct DMDLoDInfo
|
struct DMDLoDInfo
|
||||||
|
@ -112,21 +121,23 @@ protected:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
bool loaded;
|
int mLumpNum;
|
||||||
DMDHeader header;
|
DMDHeader header;
|
||||||
DMDInfo info;
|
DMDInfo info;
|
||||||
FTexture ** skins;
|
FTexture ** skins;
|
||||||
FTexCoord * texCoords;
|
|
||||||
|
|
||||||
ModelFrame * frames;
|
ModelFrame * frames;
|
||||||
|
bool allowTexComp; // Allow texture compression with this.
|
||||||
|
|
||||||
|
// Temp data only needed for buffer construction
|
||||||
|
FTexCoord * texCoords;
|
||||||
|
ModelFrameVertexData *framevtx;
|
||||||
DMDLoDInfo lodInfo[MAX_LODS];
|
DMDLoDInfo lodInfo[MAX_LODS];
|
||||||
DMDLoD lods[MAX_LODS];
|
DMDLoD lods[MAX_LODS];
|
||||||
bool allowTexComp; // Allow texture compression with this.
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FDMDModel()
|
FDMDModel()
|
||||||
{
|
{
|
||||||
loaded = false;
|
mLumpNum = -1;
|
||||||
frames = NULL;
|
frames = NULL;
|
||||||
skins = NULL;
|
skins = NULL;
|
||||||
for (int i = 0; i < MAX_LODS; i++)
|
for (int i = 0; i < MAX_LODS; i++)
|
||||||
|
@ -135,14 +146,16 @@ public:
|
||||||
}
|
}
|
||||||
info.numLODs = 0;
|
info.numLODs = 0;
|
||||||
texCoords = NULL;
|
texCoords = NULL;
|
||||||
|
framevtx = NULL;
|
||||||
}
|
}
|
||||||
virtual ~FDMDModel();
|
virtual ~FDMDModel();
|
||||||
|
|
||||||
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 LoadGeometry();
|
||||||
|
void UnloadGeometry();
|
||||||
void BuildVertexBuffer();
|
void BuildVertexBuffer();
|
||||||
void CleanTempData();
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -154,6 +167,7 @@ public:
|
||||||
virtual ~FMD2Model();
|
virtual ~FMD2Model();
|
||||||
|
|
||||||
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 void LoadGeometry();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -76,12 +76,10 @@ static void UnpackVector(unsigned short packed, float vec[3])
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
// FDMDModel::Load
|
// DMD file structure
|
||||||
//
|
//
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
bool FDMDModel::Load(const char * path, int, const char * buffer, int length)
|
|
||||||
{
|
|
||||||
struct dmd_chunk_t
|
struct dmd_chunk_t
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
|
@ -111,11 +109,18 @@ bool FDMDModel::Load(const char * path, int, const char * buffer, int length)
|
||||||
DMC_INFO // Required; will be expected to exist.
|
DMC_INFO // Required; will be expected to exist.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// FDMDModel::Load
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
bool FDMDModel::Load(const char * path, int lumpnum, const char * buffer, int length)
|
||||||
|
{
|
||||||
dmd_chunk_t * chunk = (dmd_chunk_t*)(buffer + 12);
|
dmd_chunk_t * chunk = (dmd_chunk_t*)(buffer + 12);
|
||||||
char *temp;
|
char *temp;
|
||||||
ModelFrame *frame;
|
ModelFrame *frame;
|
||||||
int i, k, c;
|
int i;
|
||||||
int axis[3] = { VX, VY, VZ };
|
|
||||||
|
|
||||||
int fileoffset = 12 + sizeof(dmd_chunk_t);
|
int fileoffset = 12 + sizeof(dmd_chunk_t);
|
||||||
|
|
||||||
|
@ -160,30 +165,54 @@ bool FDMDModel::Load(const char * path, int, const char * buffer, int length)
|
||||||
{
|
{
|
||||||
skins[i] = LoadSkin(path, buffer + info.offsetSkins + i * 64);
|
skins[i] = LoadSkin(path, buffer + info.offsetSkins + i * 64);
|
||||||
}
|
}
|
||||||
|
|
||||||
texCoords = new FTexCoord[info.numTexCoords];
|
|
||||||
memcpy(texCoords, (byte*)buffer + info.offsetTexCoords, info.numTexCoords * sizeof(FTexCoord));
|
|
||||||
|
|
||||||
temp = (char*)buffer + info.offsetFrames;
|
temp = (char*)buffer + info.offsetFrames;
|
||||||
frames = new ModelFrame[info.numFrames];
|
frames = new ModelFrame[info.numFrames];
|
||||||
|
|
||||||
for (i = 0, frame = frames; i < info.numFrames; i++, frame++)
|
for (i = 0, frame = frames; i < info.numFrames; i++, frame++)
|
||||||
{
|
{
|
||||||
dmd_packedFrame_t *pfr = (dmd_packedFrame_t *)(temp + info.frameSize * i);
|
dmd_packedFrame_t *pfr = (dmd_packedFrame_t *)(temp + info.frameSize * i);
|
||||||
dmd_packedVertex_t *pVtx;
|
|
||||||
|
|
||||||
memcpy(frame->name, pfr->name, sizeof(pfr->name));
|
memcpy(frame->name, pfr->name, sizeof(pfr->name));
|
||||||
frame->vertices = new DMDModelVertex[info.numVertices];
|
|
||||||
frame->normals = new DMDModelVertex[info.numVertices];
|
|
||||||
frame->vindex = UINT_MAX;
|
frame->vindex = UINT_MAX;
|
||||||
|
}
|
||||||
|
mLumpNum = lumpnum;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// FDMDModel::LoadGeometry
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FDMDModel::LoadGeometry()
|
||||||
|
{
|
||||||
|
static int axis[3] = { VX, VY, VZ };
|
||||||
|
FMemLump lumpdata = Wads.ReadLump(mLumpNum);
|
||||||
|
const char *buffer = (const char *)lumpdata.GetMem();
|
||||||
|
texCoords = new FTexCoord[info.numTexCoords];
|
||||||
|
memcpy(texCoords, buffer + info.offsetTexCoords, info.numTexCoords * sizeof(FTexCoord));
|
||||||
|
|
||||||
|
const char *temp = buffer + info.offsetFrames;
|
||||||
|
framevtx= new ModelFrameVertexData[info.numFrames];
|
||||||
|
|
||||||
|
ModelFrameVertexData *framev;
|
||||||
|
int i, k, c;
|
||||||
|
for(i = 0, framev = framevtx; i < info.numFrames; i++, framev++)
|
||||||
|
{
|
||||||
|
dmd_packedFrame_t *pfr = (dmd_packedFrame_t *) (temp + info.frameSize * i);
|
||||||
|
dmd_packedVertex_t *pVtx;
|
||||||
|
|
||||||
|
framev->vertices = new DMDModelVertex[info.numVertices];
|
||||||
|
framev->normals = new DMDModelVertex[info.numVertices];
|
||||||
|
|
||||||
// Translate each vertex.
|
// Translate each vertex.
|
||||||
for(k = 0, pVtx = pfr->vertices; k < info.numVertices; k++, pVtx++)
|
for(k = 0, pVtx = pfr->vertices; k < info.numVertices; k++, pVtx++)
|
||||||
{
|
{
|
||||||
UnpackVector((unsigned short)(pVtx->normal), frame->normals[k].xyz);
|
UnpackVector((unsigned short)(pVtx->normal), framev->normals[k].xyz);
|
||||||
for(c = 0; c < 3; c++)
|
for(c = 0; c < 3; c++)
|
||||||
{
|
{
|
||||||
frame->vertices[k].xyz[axis[c]] =
|
framev->vertices[k].xyz[axis[c]] =
|
||||||
(pVtx->vertex[c] * FLOAT(pfr->scale[c]) + FLOAT(pfr->translate[c]));
|
(pVtx->vertex[c] * FLOAT(pfr->scale[c]) + FLOAT(pfr->translate[c]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -209,24 +238,6 @@ bool FDMDModel::Load(const char * path, int, const char * buffer, int length)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loaded=true;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//===========================================================================
|
|
||||||
|
|
||||||
FDMDModel::~FDMDModel()
|
|
||||||
{
|
|
||||||
CleanTempData();
|
|
||||||
|
|
||||||
// skins are managed by the texture manager so they must not be deleted here.
|
|
||||||
if (skins != NULL) delete [] skins;
|
|
||||||
if (frames != NULL) delete [] frames;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
@ -235,20 +246,22 @@ FDMDModel::~FDMDModel()
|
||||||
//
|
//
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
void FDMDModel::CleanTempData()
|
void FDMDModel::UnloadGeometry()
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (frames != NULL)
|
if (framevtx != NULL)
|
||||||
{
|
{
|
||||||
for (i=0;i<info.numFrames;i++)
|
for (i=0;i<info.numFrames;i++)
|
||||||
{
|
{
|
||||||
if (frames[i].vertices != NULL) delete [] frames[i].vertices;
|
if (framevtx[i].vertices != NULL) delete [] framevtx[i].vertices;
|
||||||
if (frames[i].normals != NULL) delete [] frames[i].normals;
|
if (framevtx[i].normals != NULL) delete [] framevtx[i].normals;
|
||||||
|
|
||||||
frames[i].vertices = NULL;
|
framevtx[i].vertices = NULL;
|
||||||
frames[i].normals = NULL;
|
framevtx[i].normals = NULL;
|
||||||
}
|
}
|
||||||
|
delete[] framevtx;
|
||||||
|
framevtx = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 0; i < info.numLODs; i++)
|
for(i = 0; i < info.numLODs; i++)
|
||||||
|
@ -267,10 +280,27 @@ void FDMDModel::CleanTempData()
|
||||||
//
|
//
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
FDMDModel::~FDMDModel()
|
||||||
|
{
|
||||||
|
UnloadGeometry();
|
||||||
|
|
||||||
|
// skins are managed by the texture manager so they must not be deleted here.
|
||||||
|
if (skins != NULL) delete [] skins;
|
||||||
|
if (frames != NULL) delete [] frames;
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
void FDMDModel::BuildVertexBuffer()
|
void FDMDModel::BuildVertexBuffer()
|
||||||
{
|
{
|
||||||
if (mVBuf == NULL)
|
if (mVBuf == NULL)
|
||||||
{
|
{
|
||||||
|
LoadGeometry();
|
||||||
|
|
||||||
int VertexBufferSize = info.numFrames * lodInfo[0].numTriangles * 3;
|
int VertexBufferSize = info.numFrames * lodInfo[0].numTriangles * 3;
|
||||||
unsigned int vindex = 0;
|
unsigned int vindex = 0;
|
||||||
|
|
||||||
|
@ -279,12 +309,10 @@ void FDMDModel::BuildVertexBuffer()
|
||||||
|
|
||||||
for (int i = 0; i < info.numFrames; i++)
|
for (int i = 0; i < info.numFrames; i++)
|
||||||
{
|
{
|
||||||
ModelFrame *frame = &frames[i];
|
DMDModelVertex *vert = framevtx[i].vertices;
|
||||||
DMDModelVertex *vert = frame->vertices;
|
DMDModelVertex *norm = framevtx[i].normals;
|
||||||
DMDModelVertex *norm = frame->normals;
|
|
||||||
|
|
||||||
frame->vindex = vindex;
|
|
||||||
|
|
||||||
|
frames[i].vindex = vindex;
|
||||||
|
|
||||||
FTriangle *tri = lods[0].triangles;
|
FTriangle *tri = lods[0].triangles;
|
||||||
|
|
||||||
|
@ -304,7 +332,7 @@ void FDMDModel::BuildVertexBuffer()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mVBuf->UnlockVertexBuffer();
|
mVBuf->UnlockVertexBuffer();
|
||||||
CleanTempData();
|
UnloadGeometry();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -353,15 +381,13 @@ void FDMDModel::RenderFrame(FTexture * skin, int frameno, int frameno2, double i
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//
|
//
|
||||||
// FMD2Model::Load
|
// Internal data structures of MD2 files - only used during loading
|
||||||
//
|
//
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
bool FMD2Model::Load(const char * path, int, const char * buffer, int length)
|
|
||||||
{
|
|
||||||
// Internal data structures of MD2 files - only used during loading!
|
|
||||||
struct md2_header_t
|
struct md2_header_t
|
||||||
{
|
{
|
||||||
int magic;
|
int magic;
|
||||||
|
@ -397,11 +423,18 @@ bool FMD2Model::Load(const char * path, int, const char * buffer, int length)
|
||||||
md2_triangleVertex_t vertices[1];
|
md2_triangleVertex_t vertices[1];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// FMD2Model::Load
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
bool FMD2Model::Load(const char * path, int lumpnum, const char * buffer, int length)
|
||||||
|
{
|
||||||
md2_header_t * md2header = (md2_header_t *)buffer;
|
md2_header_t * md2header = (md2_header_t *)buffer;
|
||||||
ModelFrame *frame;
|
ModelFrame *frame;
|
||||||
byte *md2_frames;
|
byte *md2_frames;
|
||||||
int i, k, c;
|
int i;
|
||||||
int axis[3] = { VX, VY, VZ };
|
|
||||||
|
|
||||||
// Convert it to DMD.
|
// Convert it to DMD.
|
||||||
header.magic = MD2_MAGIC;
|
header.magic = MD2_MAGIC;
|
||||||
|
@ -436,39 +469,71 @@ bool FMD2Model::Load(const char * path, int, const char * buffer, int length)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
skins = new FTexture *[info.numSkins];
|
||||||
|
|
||||||
|
for (i = 0; i < info.numSkins; i++)
|
||||||
|
{
|
||||||
|
skins[i] = LoadSkin(path, buffer + info.offsetSkins + i * 64);
|
||||||
|
}
|
||||||
|
|
||||||
// The frames need to be unpacked.
|
// The frames need to be unpacked.
|
||||||
md2_frames = (byte*)buffer + info.offsetFrames;
|
md2_frames = (byte*)buffer + info.offsetFrames;
|
||||||
frames = new ModelFrame[info.numFrames];
|
frames = new ModelFrame[info.numFrames];
|
||||||
|
|
||||||
|
for (i = 0, frame = frames; i < info.numFrames; i++, frame++)
|
||||||
|
{
|
||||||
|
md2_packedFrame_t *pfr = (md2_packedFrame_t *)(md2_frames + info.frameSize * i);
|
||||||
|
|
||||||
|
memcpy(frame->name, pfr->name, sizeof(pfr->name));
|
||||||
|
frame->vindex = UINT_MAX;
|
||||||
|
}
|
||||||
|
mLumpNum = lumpnum;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//
|
||||||
|
// FMD2Model::LoadGeometry
|
||||||
|
//
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
|
void FMD2Model::LoadGeometry()
|
||||||
|
{
|
||||||
|
static int axis[3] = { VX, VY, VZ };
|
||||||
|
byte *md2_frames;
|
||||||
|
FMemLump lumpdata = Wads.ReadLump(mLumpNum);
|
||||||
|
const char *buffer = (const char *)lumpdata.GetMem();
|
||||||
|
|
||||||
texCoords = new FTexCoord[info.numTexCoords];
|
texCoords = new FTexCoord[info.numTexCoords];
|
||||||
memcpy(texCoords, (byte*)buffer + info.offsetTexCoords, info.numTexCoords * sizeof(FTexCoord));
|
memcpy(texCoords, (byte*)buffer + info.offsetTexCoords, info.numTexCoords * sizeof(FTexCoord));
|
||||||
|
|
||||||
|
md2_frames = (byte*)buffer + info.offsetFrames;
|
||||||
|
framevtx = new ModelFrameVertexData[info.numFrames];
|
||||||
|
ModelFrameVertexData *framev;
|
||||||
|
int i, k, c;
|
||||||
|
|
||||||
for(i = 0, frame = frames; i < info.numFrames; i++, frame++)
|
for(i = 0, framev = framevtx; i < info.numFrames; i++, framev++)
|
||||||
{
|
{
|
||||||
md2_packedFrame_t *pfr = (md2_packedFrame_t *) (md2_frames + info.frameSize * i);
|
md2_packedFrame_t *pfr = (md2_packedFrame_t *) (md2_frames + info.frameSize * i);
|
||||||
md2_triangleVertex_t *pVtx;
|
md2_triangleVertex_t *pVtx;
|
||||||
|
|
||||||
memcpy(frame->name, pfr->name, sizeof(pfr->name));
|
framev->vertices = new DMDModelVertex[info.numVertices];
|
||||||
frame->vertices = new DMDModelVertex[info.numVertices];
|
framev->normals = new DMDModelVertex[info.numVertices];
|
||||||
frame->normals = new DMDModelVertex[info.numVertices];
|
|
||||||
frame->vindex = UINT_MAX;
|
|
||||||
|
|
||||||
// Translate each vertex.
|
// Translate each vertex.
|
||||||
for(k = 0, pVtx = pfr->vertices; k < info.numVertices; k++, pVtx++)
|
for(k = 0, pVtx = pfr->vertices; k < info.numVertices; k++, pVtx++)
|
||||||
{
|
{
|
||||||
memcpy(frame->normals[k].xyz,
|
memcpy(framev->normals[k].xyz,
|
||||||
avertexnormals[pVtx->lightNormalIndex], sizeof(float) * 3);
|
avertexnormals[pVtx->lightNormalIndex], sizeof(float) * 3);
|
||||||
|
|
||||||
for(c = 0; c < 3; c++)
|
for(c = 0; c < 3; c++)
|
||||||
{
|
{
|
||||||
frame->vertices[k].xyz[axis[c]] =
|
framev->vertices[k].xyz[axis[c]] =
|
||||||
(pVtx->vertex[c] * pfr->scale[c] + pfr->translate[c]);
|
(pVtx->vertex[c] * pfr->scale[c] + pfr->translate[c]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
lods[0].triangles = new FTriangle[lodInfo[0].numTriangles];
|
lods[0].triangles = new FTriangle[lodInfo[0].numTriangles];
|
||||||
|
|
||||||
int cnt = lodInfo[0].numTriangles;
|
int cnt = lodInfo[0].numTriangles;
|
||||||
|
@ -481,15 +546,6 @@ bool FMD2Model::Load(const char * path, int, const char * buffer, int length)
|
||||||
lods[0].triangles[j].vertexIndices[k] = LittleShort(lods[0].triangles[j].vertexIndices[k]);
|
lods[0].triangles[j].vertexIndices[k] = LittleShort(lods[0].triangles[j].vertexIndices[k]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
skins = new FTexture *[info.numSkins];
|
|
||||||
|
|
||||||
for(i = 0; i < info.numSkins; i++)
|
|
||||||
{
|
|
||||||
skins[i] = LoadSkin(path, buffer + info.offsetSkins + i*64);
|
|
||||||
}
|
|
||||||
loaded=true;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FMD2Model::~FMD2Model()
|
FMD2Model::~FMD2Model()
|
||||||
|
|
|
@ -765,11 +765,13 @@ void GLDrawList::DrawSorted()
|
||||||
MakeSortList();
|
MakeSortList();
|
||||||
sorted=DoSort(SortNodes[SortNodeStart]);
|
sorted=DoSort(SortNodes[SortNodeStart]);
|
||||||
}
|
}
|
||||||
|
gl_RenderState.ClearClipSplit();
|
||||||
glEnable(GL_CLIP_DISTANCE2);
|
glEnable(GL_CLIP_DISTANCE2);
|
||||||
glEnable(GL_CLIP_DISTANCE3);
|
glEnable(GL_CLIP_DISTANCE3);
|
||||||
DoDrawSorted(sorted);
|
DoDrawSorted(sorted);
|
||||||
glDisable(GL_CLIP_DISTANCE2);
|
glDisable(GL_CLIP_DISTANCE2);
|
||||||
glDisable(GL_CLIP_DISTANCE3);
|
glDisable(GL_CLIP_DISTANCE3);
|
||||||
|
gl_RenderState.ClearClipSplit();
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
|
@ -800,7 +800,7 @@ void GLPlaneMirrorPortal::DrawContents()
|
||||||
float f = FIXED2FLOAT(planez);
|
float f = FIXED2FLOAT(planez);
|
||||||
if (PlaneMirrorMode < 0)
|
if (PlaneMirrorMode < 0)
|
||||||
{
|
{
|
||||||
gl_RenderState.SetClipHeightTop(f); // ceiling mirror: clip everytihng with a z lower than the portal's ceiling
|
gl_RenderState.SetClipHeightTop(f); // ceiling mirror: clip everything with a z lower than the portal's ceiling
|
||||||
glEnable(GL_CLIP_DISTANCE1);
|
glEnable(GL_CLIP_DISTANCE1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue