2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MODEL_LOCAL_H__
|
|
|
|
#define __MODEL_LOCAL_H__
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
Static model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
class idJointMat;
|
|
|
|
struct deformInfo_t;
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelStatic : public idRenderModel
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
// the inherited public interface
|
2012-11-28 15:47:07 +00:00
|
|
|
static idRenderModel* Alloc();
|
|
|
|
|
|
|
|
idRenderModelStatic();
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual ~idRenderModelStatic();
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual void InitFromFile( const char* fileName );
|
|
|
|
virtual bool LoadBinaryModel( idFile* file, const ID_TIME_T sourceTimeStamp );
|
|
|
|
virtual void WriteBinaryModel( idFile* file, ID_TIME_T* _timeStamp = NULL ) const;
|
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void PartialInitFromFile( const char* fileName );
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void PurgeModel();
|
|
|
|
virtual void Reset() {};
|
|
|
|
virtual void LoadModel();
|
|
|
|
virtual bool IsLoaded();
|
|
|
|
virtual void SetLevelLoadReferenced( bool referenced );
|
|
|
|
virtual bool IsLevelLoadReferenced();
|
|
|
|
virtual void TouchData();
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void InitEmpty( const char* name );
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void AddSurface( modelSurface_t surface );
|
|
|
|
virtual void FinishSurfaces();
|
|
|
|
virtual void FreeVertexCache();
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const char* Name() const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void Print() const;
|
|
|
|
virtual void List() const;
|
|
|
|
virtual int Memory() const;
|
|
|
|
virtual ID_TIME_T Timestamp() const;
|
|
|
|
virtual int NumSurfaces() const;
|
|
|
|
virtual int NumBaseSurfaces() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const modelSurface_t* Surface( int surfaceNum ) const;
|
|
|
|
virtual srfTriangles_t* AllocSurfaceTriangles( int numVerts, int numIndexes ) const;
|
|
|
|
virtual void FreeSurfaceTriangles( srfTriangles_t* tris ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsStaticWorldModel() const;
|
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
|
|
|
virtual bool IsDefaultModel() const;
|
|
|
|
virtual bool IsReloadable() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int NumJoints() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const idMD5Joint* GetJoints() const;
|
|
|
|
virtual jointHandle_t GetJointHandle( const char* name ) const;
|
|
|
|
virtual const char* GetJointName( jointHandle_t handle ) const;
|
|
|
|
virtual const idJointQuat* GetDefaultPose() const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int NearestJoint( int surfaceNum, int a, int b, int c ) const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
virtual void ReadFromDemoFile( class idDemoFile* f );
|
|
|
|
virtual void WriteToDemoFile( class idDemoFile* f );
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual float DepthHack() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return hasDrawingSurfaces;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return hasInteractingSurfaces;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return hasShadowCastingSurfaces;
|
|
|
|
};
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
void MakeDefaultModel();
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
bool LoadASE( const char* fileName );
|
|
|
|
bool LoadLWO( const char* fileName );
|
|
|
|
bool LoadMA( const char* filename );
|
|
|
|
|
|
|
|
bool ConvertASEToModelSurfaces( const struct aseModel_s* ase );
|
|
|
|
bool ConvertLWOToModelSurfaces( const struct st_lwObject* lwo );
|
|
|
|
bool ConvertMAToModelSurfaces( const struct maModel_s* ma );
|
|
|
|
|
|
|
|
struct aseModel_s* ConvertLWOToASE( const struct st_lwObject* obj, const char* fileName );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
bool DeleteSurfaceWithId( int id );
|
|
|
|
void DeleteSurfacesWithNegativeId();
|
2012-11-28 15:47:07 +00:00
|
|
|
bool FindSurfaceWithId( int id, int& surfaceNum ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
idList<modelSurface_t, TAG_MODEL> surfaces;
|
|
|
|
idBounds bounds;
|
|
|
|
int overlaysAdded;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// when an md5 is instantiated, the inverted joints array is stored to allow GPU skinning
|
|
|
|
int numInvertedJoints;
|
2012-11-28 15:47:07 +00:00
|
|
|
idJointMat* jointsInverted;
|
2012-11-26 18:58:24 +00:00
|
|
|
vertCacheHandle_t jointsInvertedBuffer;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
protected:
|
|
|
|
int lastModifiedFrame;
|
|
|
|
int lastArchivedFrame;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr name;
|
|
|
|
bool isStaticWorldModel;
|
|
|
|
bool defaulted;
|
|
|
|
bool purged; // eventually we will have dynamic reloading
|
|
|
|
bool fastLoad; // don't generate tangents and shadow data
|
|
|
|
bool reloadable; // if not, reloadModels won't check timestamp
|
|
|
|
bool levelLoadReferenced; // for determining if it needs to be freed
|
|
|
|
bool hasDrawingSurfaces;
|
|
|
|
bool hasInteractingSurfaces;
|
|
|
|
bool hasShadowCastingSurfaces;
|
|
|
|
ID_TIME_T timeStamp;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
static idCVar r_mergeModelSurfaces; // combine model surfaces with the same material
|
|
|
|
static idCVar r_slopVertex; // merge xyz coordinates this far apart
|
|
|
|
static idCVar r_slopTexCoord; // merge texture coordinates this far apart
|
|
|
|
static idCVar r_slopNormal; // merge normals that dot less than this
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
MD5 animated model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idMD5Mesh
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
friend class idRenderModelMD5;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
idMD5Mesh();
|
|
|
|
~idMD5Mesh();
|
|
|
|
|
|
|
|
void ParseMesh( idLexer& parser, int numJoints, const idJointMat* joints );
|
|
|
|
|
|
|
|
int NumVerts() const
|
|
|
|
{
|
|
|
|
return numVerts;
|
|
|
|
}
|
|
|
|
int NumTris() const
|
|
|
|
{
|
|
|
|
return numTris;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateSurface( const struct renderEntity_s* ent, const idJointMat* joints,
|
|
|
|
const idJointMat* entJointsInverted, modelSurface_t* surf );
|
|
|
|
void CalculateBounds( const idJointMat* entJoints, idBounds& bounds ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
int NearestJoint( int a, int b, int c ) const;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
2012-11-28 15:47:07 +00:00
|
|
|
const idMaterial* shader; // material applied to mesh
|
2012-11-26 18:58:24 +00:00
|
|
|
int numVerts; // number of vertices
|
|
|
|
int numTris; // number of triangles
|
2012-11-28 15:47:07 +00:00
|
|
|
byte* meshJoints; // the joints used by this mesh
|
2012-11-26 18:58:24 +00:00
|
|
|
int numMeshJoints; // number of mesh joints
|
|
|
|
float maxJointVertDist; // maximum distance a vertex is separated from a joint
|
2012-11-28 15:47:07 +00:00
|
|
|
deformInfo_t* deformInfo; // used to create srfTriangles_t from base frames and new vertexes
|
2012-11-26 18:58:24 +00:00
|
|
|
int surfaceNum; // number of the static surface created for this mesh
|
|
|
|
};
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelMD5 : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void InitFromFile( const char* fileName );
|
|
|
|
virtual bool LoadBinaryModel( idFile* file, const ID_TIME_T sourceTimeStamp );
|
|
|
|
virtual void WriteBinaryModel( idFile* file, ID_TIME_T* _timeStamp = NULL ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void Print() const;
|
|
|
|
virtual void List() const;
|
|
|
|
virtual void TouchData();
|
|
|
|
virtual void PurgeModel();
|
|
|
|
virtual void LoadModel();
|
|
|
|
virtual int Memory() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int NumJoints() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const idMD5Joint* GetJoints() const;
|
|
|
|
virtual jointHandle_t GetJointHandle( const char* name ) const;
|
|
|
|
virtual const char* GetJointName( jointHandle_t handle ) const;
|
|
|
|
virtual const idJointQuat* GetDefaultPose() const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int NearestJoint( int surfaceNum, int a, int b, int c ) const;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
|
|
|
idList<idMD5Joint, TAG_MODEL> joints;
|
|
|
|
idList<idJointQuat, TAG_MODEL> defaultPose;
|
|
|
|
idList<idJointMat, TAG_MODEL> invertedDefaultPose;
|
|
|
|
idList<idMD5Mesh, TAG_MODEL> meshes;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void DrawJoints( const renderEntity_t* ent, const viewDef_t* view ) const;
|
|
|
|
void ParseJoint( idLexer& parser, idMD5Joint* joint, idJointQuat* defaultPose );
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
MD3 animated model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct md3Header_s;
|
|
|
|
struct md3Surface_s;
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelMD3 : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void InitFromFile( const char* fileName );
|
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
|
|
|
int index; // model = tr.models[model->index]
|
|
|
|
int dataSize; // just for listing purposes
|
2012-11-28 15:47:07 +00:00
|
|
|
struct md3Header_s* md3; // only if type == MOD_MESH
|
2012-11-26 18:58:24 +00:00
|
|
|
int numLods;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void LerpMeshVertexes( srfTriangles_t* tri, const struct md3Surface_s* surf, const float backlerp, const int frame, const int oldframe ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
Liquid model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelLiquid : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
idRenderModelLiquid();
|
|
|
|
|
|
|
|
virtual void InitFromFile( const char* fileName );
|
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void Reset();
|
2012-11-28 15:47:07 +00:00
|
|
|
void IntersectBounds( const idBounds& bounds, float displacement );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
|
|
|
modelSurface_t GenerateSurface( float lerp );
|
2012-11-28 15:47:07 +00:00
|
|
|
void WaterDrop( int x, int y, float* page );
|
2012-11-26 18:58:24 +00:00
|
|
|
void Update();
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
int verts_x;
|
|
|
|
int verts_y;
|
|
|
|
float scale_x;
|
|
|
|
float scale_y;
|
|
|
|
int time;
|
|
|
|
int liquid_type;
|
|
|
|
int update_tics;
|
|
|
|
int seed;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idRandom random;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
const idMaterial* shader;
|
|
|
|
deformInfo_t* deformInfo; // used to create srfTriangles_t from base frames
|
|
|
|
// and new vertexes
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
float density;
|
|
|
|
float drop_height;
|
|
|
|
int drop_radius;
|
|
|
|
float drop_delay;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idList<float, TAG_MODEL> pages;
|
2012-11-28 15:47:07 +00:00
|
|
|
float* page1;
|
|
|
|
float* page2;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idList<idDrawVert, TAG_MODEL> verts;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
int nextDropTime;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
PRT model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelPrt : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
idRenderModelPrt();
|
|
|
|
|
|
|
|
virtual void InitFromFile( const char* fileName );
|
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void TouchData();
|
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual float DepthHack() const;
|
|
|
|
virtual int Memory() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// with the addModels2 arrangement we could have light accepting and
|
|
|
|
// shadowing dynamic models, but the original game never did
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
2012-11-28 15:47:07 +00:00
|
|
|
const idDeclParticle* particleSystem;
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
Beam model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelBeam : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsLoaded() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// with the addModels2 arrangement we could have light accepting and
|
|
|
|
// shadowing dynamic models, but the original game never did
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
Beam model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
#define MAX_TRAIL_PTS 20
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
struct Trail_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int lastUpdateTime;
|
|
|
|
int duration;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idVec3 pts[MAX_TRAIL_PTS];
|
|
|
|
int numPoints;
|
|
|
|
};
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelTrail : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idList<Trail_t, TAG_MODEL> trails;
|
|
|
|
int numActive;
|
|
|
|
idBounds trailBounds;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
idRenderModelTrail();
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsLoaded() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// with the addModels2 arrangement we could have light accepting and
|
|
|
|
// shadowing dynamic models, but the original game never did
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
int NewTrail( idVec3 pt, int duration );
|
|
|
|
void UpdateTrail( int index, idVec3 pt );
|
2012-11-28 15:47:07 +00:00
|
|
|
void DrawTrail( int index, const struct renderEntity_s* ent, srfTriangles_t* tri, float globalAlpha );
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
Lightning model
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelLightning : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsLoaded() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// with the addModels2 arrangement we could have light accepting and
|
|
|
|
// shadowing dynamic models, but the original game never did
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================================================
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
idRenderModelSprite
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
================================================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
class idRenderModelSprite : public idRenderModelStatic
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
virtual dynamicModel_t IsDynamicModel() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool SupportsBinaryModel()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsLoaded() const;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idRenderModel* InstantiateDynamicModel( const struct renderEntity_s* ent, const viewDef_t* view, idRenderModel* cachedModel );
|
|
|
|
virtual idBounds Bounds( const struct renderEntity_s* ent ) const;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// with the addModels2 arrangement we could have light accepting and
|
|
|
|
// shadowing dynamic models, but the original game never did
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool ModelHasDrawingSurfaces() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasInteractingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
virtual bool ModelHasShadowCastingSurfaces() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !__MODEL_LOCAL_H__ */
|