2004-08-23 00:15:46 +00:00
|
|
|
//These are defined later in the source tree. This file should probably be moved to a later spot.
|
|
|
|
struct progfuncs_s;
|
|
|
|
struct globalvars_s;
|
|
|
|
struct texture_s;
|
|
|
|
|
2008-12-23 02:55:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HALFLIFEMODELS
|
|
|
|
#define MAX_BONE_CONTROLLERS 5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define FST_BASE 0 //base frames
|
|
|
|
#define FS_REG 1 //regular frames
|
|
|
|
#define FS_COUNT 2 //regular frames
|
|
|
|
typedef struct {
|
|
|
|
struct {
|
|
|
|
int frame[2];
|
|
|
|
float frametime[2];
|
|
|
|
float lerpfrac;
|
|
|
|
|
|
|
|
#ifdef HALFLIFEMODELS
|
|
|
|
float subblendfrac; //hl models are weird
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int endbone;
|
|
|
|
} g[2];
|
|
|
|
|
|
|
|
float *bonestate;
|
|
|
|
int bonecount;
|
|
|
|
|
|
|
|
#ifdef HALFLIFEMODELS
|
|
|
|
float bonecontrols[MAX_BONE_CONTROLLERS]; //hl special bone controllers
|
|
|
|
#endif
|
|
|
|
} framestate_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
//function prototypes
|
|
|
|
|
|
|
|
#if defined(SERVERONLY)
|
|
|
|
#define qrenderer QR_NONE
|
2005-07-16 00:53:08 +00:00
|
|
|
#define FNC(n) (n) //FNC is defined as 'pointer if client build, direct if dedicated server'
|
2009-07-06 07:45:46 +00:00
|
|
|
|
|
|
|
#define Mod_SkinForName Mod_SkinNumForName
|
|
|
|
#define Mod_FrameForName Mod_FrameNumForName
|
|
|
|
#define Mod_GetFrameDuration Mod_FrameDuration
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
#else
|
|
|
|
#define FNC(n) (*n)
|
|
|
|
extern r_qrenderer_t qrenderer;
|
|
|
|
extern char *q_renderername;
|
|
|
|
|
2004-12-24 08:45:56 +00:00
|
|
|
extern mpic_t *(*Draw_SafePicFromWad) (char *name);
|
|
|
|
extern mpic_t *(*Draw_SafeCachePic) (char *path);
|
2004-08-23 00:15:46 +00:00
|
|
|
extern void (*Draw_Init) (void);
|
2008-06-01 22:06:22 +00:00
|
|
|
extern void (*Draw_TinyCharacter) (int x, int y, unsigned int num);
|
2004-08-23 00:15:46 +00:00
|
|
|
extern void (*Draw_Crosshair) (void);
|
2004-12-24 08:45:56 +00:00
|
|
|
extern void (*Draw_ScalePic) (int x, int y, int width, int height, mpic_t *pic);
|
2009-11-04 21:16:50 +00:00
|
|
|
extern void (*Draw_SubPic) (int x, int y, int width, int height, mpic_t *pic, int srcx, int srcy, int srcwidth, int srcheight);
|
2005-02-12 18:56:04 +00:00
|
|
|
extern void (*Draw_TransPicTranslate) (int x, int y, int width, int height, qbyte *image, qbyte *translation);
|
2009-04-06 00:34:32 +00:00
|
|
|
extern void (*Draw_ConsoleBackground) (int firstline, int lastline, qboolean forceopaque);
|
2009-11-04 21:16:50 +00:00
|
|
|
extern void (*Draw_EditorBackground) (void);
|
2004-08-23 00:15:46 +00:00
|
|
|
extern void (*Draw_TileClear) (int x, int y, int w, int h);
|
2008-06-01 22:06:22 +00:00
|
|
|
extern void (*Draw_Fill) (int x, int y, int w, int h, unsigned int c);
|
2006-03-11 03:12:10 +00:00
|
|
|
extern void (*Draw_FillRGB) (int x, int y, int w, int h, float r, float g, float b);
|
2004-08-23 00:15:46 +00:00
|
|
|
extern void (*Draw_FadeScreen) (void);
|
|
|
|
extern void (*Draw_BeginDisc) (void);
|
|
|
|
extern void (*Draw_EndDisc) (void);
|
2004-11-23 01:10:10 +00:00
|
|
|
extern qboolean (*Draw_IsCached) (char *picname); //can be null
|
|
|
|
|
2005-07-03 15:16:20 +00:00
|
|
|
extern void (*Draw_Image) (float x, float y, float w, float h, float s1, float t1, float s2, float t2, mpic_t *pic); //gl-style scaled/coloured/subpic
|
2004-11-23 01:10:10 +00:00
|
|
|
extern void (*Draw_ImageColours) (float r, float g, float b, float a);
|
2010-02-06 01:25:04 +00:00
|
|
|
void R2D_FillBlock(int x, int y, int w, int h);
|
|
|
|
#define Draw_FillBlock R2D_FillBlock
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
extern void (*R_Init) (void);
|
|
|
|
extern void (*R_DeInit) (void);
|
|
|
|
extern void (*R_RenderView) (void); // must set r_refdef first
|
|
|
|
|
|
|
|
extern void (*R_NewMap) (void);
|
|
|
|
extern void (*R_PreNewMap) (void);
|
|
|
|
extern int (*R_LightPoint) (vec3_t point);
|
|
|
|
|
|
|
|
extern void (*R_AddStain) (vec3_t org, float red, float green, float blue, float radius);
|
|
|
|
extern void (*R_LessenStains) (void);
|
|
|
|
|
|
|
|
extern qboolean (*VID_Init) (rendererstate_t *info, unsigned char *palette);
|
|
|
|
extern void (*VID_DeInit) (void);
|
|
|
|
extern void (*VID_SetPalette) (unsigned char *palette);
|
|
|
|
extern void (*VID_ShiftPalette) (unsigned char *palette);
|
2004-11-23 01:10:10 +00:00
|
|
|
extern char *(*VID_GetRGBInfo) (int prepad, int *truevidwidth, int *truevidheight);
|
|
|
|
extern void (*VID_SetWindowCaption) (char *msg);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
extern void SCR_Init (void);
|
|
|
|
extern void SCR_DeInit (void);
|
|
|
|
extern void (*SCR_UpdateScreen) (void);
|
|
|
|
extern void SCR_BeginLoadingPlaque (void);
|
|
|
|
extern void SCR_EndLoadingPlaque (void);
|
|
|
|
extern void SCR_DrawConsole (qboolean noback);
|
|
|
|
extern void SCR_SetUpToDrawConsole (void);
|
|
|
|
extern void SCR_EraseCenterString (void);
|
2009-04-19 00:50:42 +00:00
|
|
|
extern void SCR_CenterPrint (int pnum, char *str, qboolean skipgamecode);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-07-11 02:22:39 +00:00
|
|
|
void R_DrawTextField(int x, int y, int w, int h, char *text, unsigned int defaultmask, unsigned int fieldflags);
|
|
|
|
#define CPRINT_BALIGN (1<<0) //B
|
|
|
|
#define CPRINT_TALIGN (1<<1) //T
|
|
|
|
#define CPRINT_LALIGN (1<<2) //L
|
|
|
|
#define CPRINT_RALIGN (1<<3) //R
|
|
|
|
#define CPRINT_BACKGROUND (1<<4) //P
|
|
|
|
|
|
|
|
#define CPRINT_OBITUARTY (1<<16) //O (show at 2/3rds from top)
|
|
|
|
#define CPRINT_PERSIST (1<<17) //P (doesn't time out)
|
|
|
|
#define CPRINT_TYPEWRITER (1<<18) // (char at a time)
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void FNC(Mod_Init) (void);
|
|
|
|
extern void FNC(Mod_ClearAll) (void);
|
|
|
|
extern struct model_s *FNC(Mod_ForName) (char *name, qboolean crash);
|
|
|
|
extern struct model_s *FNC(Mod_FindName) (char *name);
|
|
|
|
extern void *FNC(Mod_Extradata) (struct model_s *mod); // handles caching
|
|
|
|
extern void FNC(Mod_TouchModel) (char *name);
|
|
|
|
|
|
|
|
extern void FNC(Mod_NowLoadExternal) (void);
|
|
|
|
|
|
|
|
extern void FNC(Mod_Think) (void);
|
2005-08-03 23:14:59 +00:00
|
|
|
extern int FNC(Mod_SkinForName) (struct model_s *model, char *name);
|
2009-04-01 22:03:56 +00:00
|
|
|
extern int FNC(Mod_FrameForName) (struct model_s *model, char *name);
|
2009-07-06 01:20:20 +00:00
|
|
|
extern float FNC(Mod_GetFrameDuration) (struct model_s *model, int framenum);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
#undef FNC
|
|
|
|
|
2008-12-23 02:55:20 +00:00
|
|
|
extern qboolean Mod_GetTag (struct model_s *model, int tagnum, framestate_t *framestate, float *transforms);
|
2007-05-25 23:03:49 +00:00
|
|
|
extern int Mod_TagNumForName (struct model_s *model, char *name);
|
|
|
|
|
2008-12-23 02:55:20 +00:00
|
|
|
int Mod_GetNumBones(struct model_s *model, qboolean allowtags);
|
2009-04-19 00:50:42 +00:00
|
|
|
int Mod_GetBoneRelations(struct model_s *model, int firstbone, int lastbone, framestate_t *fstate, float *result);
|
2008-12-23 02:55:20 +00:00
|
|
|
int Mod_GetBoneParent(struct model_s *model, int bonenum);
|
|
|
|
char *Mod_GetBoneName(struct model_s *model, int bonenum);
|
|
|
|
|
2010-07-11 10:53:13 +00:00
|
|
|
void Draw_FunString(int x, int y, const void *str);
|
|
|
|
void Draw_AltFunString(int x, int y, const void *str);
|
|
|
|
void Draw_FunStringWidth(int x, int y, const void *str, int width);
|
2005-01-24 23:47:32 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
#ifdef SERVERONLY
|
|
|
|
#define Mod_Q1LeafPVS Mod_LeafPVS
|
2005-09-08 01:47:48 +00:00
|
|
|
// qbyte *Mod_LeafPVS (struct mleaf_s *leaf, struct model_s *model, qbyte *buffer);
|
2004-08-23 00:15:46 +00:00
|
|
|
#endif
|
2005-06-22 17:10:13 +00:00
|
|
|
|
2010-10-02 02:25:39 +00:00
|
|
|
typedef union {
|
|
|
|
unsigned int num;
|
|
|
|
#ifdef D3DQUAKE
|
|
|
|
void *ptr;
|
|
|
|
#endif
|
|
|
|
} texid_t;
|
2010-10-02 10:39:55 +00:00
|
|
|
enum uploadfmt;
|
2005-06-22 17:10:13 +00:00
|
|
|
|
2010-02-06 01:25:04 +00:00
|
|
|
typedef struct rendererinfo_s {
|
2005-06-22 17:10:13 +00:00
|
|
|
char *description;
|
|
|
|
char *name[4];
|
|
|
|
r_qrenderer_t rtype;
|
|
|
|
|
2010-10-02 10:39:55 +00:00
|
|
|
mpic_t *(*Draw_SafePicFromWad) (char *name);
|
2005-06-22 17:10:13 +00:00
|
|
|
mpic_t *(*Draw_SafeCachePic) (char *path);
|
|
|
|
void (*Draw_Init) (void);
|
2009-11-04 21:16:50 +00:00
|
|
|
void (*Draw_Shutdown) (void);
|
2005-06-22 17:10:13 +00:00
|
|
|
void (*Draw_Crosshair) (void);
|
|
|
|
void (*Draw_ScalePic) (int x, int y, int width, int height, mpic_t *pic);
|
2009-11-04 21:16:50 +00:00
|
|
|
void (*Draw_SubPic) (int x, int y, int width, int height, mpic_t *pic, int srcx, int srcy, int srcwidth, int srcheight);
|
2005-06-22 17:10:13 +00:00
|
|
|
void (*Draw_TransPicTranslate) (int x, int y, int w, int h, qbyte *pic, qbyte *translation);
|
2009-04-06 00:34:32 +00:00
|
|
|
void (*Draw_ConsoleBackground) (int firstline, int lastline, qboolean forceopaque);
|
2009-11-04 21:16:50 +00:00
|
|
|
void (*Draw_EditorBackground) (void);
|
2005-06-22 17:10:13 +00:00
|
|
|
void (*Draw_TileClear) (int x, int y, int w, int h);
|
2008-06-01 22:06:22 +00:00
|
|
|
void (*Draw_Fill) (int x, int y, int w, int h, unsigned int c);
|
2006-03-11 00:51:00 +00:00
|
|
|
void (*Draw_FillRGB) (int x, int y, int w, int h, float r, float g, float b);
|
2005-06-22 17:10:13 +00:00
|
|
|
void (*Draw_FadeScreen) (void);
|
|
|
|
void (*Draw_BeginDisc) (void);
|
|
|
|
void (*Draw_EndDisc) (void);
|
|
|
|
|
|
|
|
void (*Draw_Image) (float x, float y, float w, float h, float s1, float t1, float s2, float t2, mpic_t *pic); //gl-style scaled/coloured/subpic
|
|
|
|
void (*Draw_ImageColours) (float r, float g, float b, float a);
|
|
|
|
|
2010-10-02 02:25:39 +00:00
|
|
|
texid_t (*IMG_LoadTexture) (char *identifier, int width, int height, enum uploadfmt fmt, void *data, unsigned int flags);
|
|
|
|
texid_t (*IMG_LoadTexture8Pal24) (char *identifier, int width, int height, qbyte *data, qbyte *palette24, unsigned int flags);
|
|
|
|
texid_t (*IMG_LoadTexture8Pal32) (char *identifier, int width, int height, qbyte *data, qbyte *palette32, unsigned int flags);
|
|
|
|
texid_t (*IMG_LoadCompressed) (char *name);
|
|
|
|
texid_t (*IMG_FindTexture) (char *identifier);
|
|
|
|
texid_t (*IMG_AllocNewTexture) (int w, int h);
|
|
|
|
void (*IMG_Upload) (texid_t tex, char *name, enum uploadfmt fmt, void *data, void *palette, int width, int height, unsigned int flags);
|
|
|
|
void (*IMG_DestroyTexture) (texid_t tex);
|
|
|
|
|
2005-06-22 17:10:13 +00:00
|
|
|
void (*R_Init) (void);
|
|
|
|
void (*R_DeInit) (void);
|
|
|
|
void (*R_RenderView) (void); // must set r_refdef first
|
|
|
|
|
|
|
|
void (*R_NewMap) (void);
|
|
|
|
void (*R_PreNewMap) (void);
|
|
|
|
int (*R_LightPoint) (vec3_t point);
|
|
|
|
|
|
|
|
void (*R_AddStain) (vec3_t org, float red, float green, float blue, float radius);
|
|
|
|
void (*R_LessenStains) (void);
|
|
|
|
|
|
|
|
void (*Mod_Init) (void);
|
|
|
|
void (*Mod_ClearAll) (void);
|
|
|
|
struct model_s *(*Mod_ForName) (char *name, qboolean crash);
|
|
|
|
struct model_s *(*Mod_FindName) (char *name);
|
|
|
|
void *(*Mod_Extradata) (struct model_s *mod); // handles caching
|
|
|
|
void (*Mod_TouchModel) (char *name);
|
|
|
|
|
|
|
|
void (*Mod_NowLoadExternal) (void);
|
|
|
|
void (*Mod_Think) (void);
|
2008-12-23 02:55:20 +00:00
|
|
|
qboolean (*Mod_GetTag) (struct model_s *model, int tagnum, framestate_t *fstate, float *result);
|
2005-06-22 17:10:13 +00:00
|
|
|
int (*Mod_TagNumForName) (struct model_s *model, char *name);
|
2005-08-03 23:14:59 +00:00
|
|
|
int (*Mod_SkinForName) (struct model_s *model, char *name);
|
2009-04-01 22:03:56 +00:00
|
|
|
int (*Mod_FrameForName) (struct model_s *model, char *name);
|
2009-07-06 01:20:20 +00:00
|
|
|
float (*Mod_GetFrameDuration) (struct model_s *model, int frame);
|
2005-06-22 17:10:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
qboolean (*VID_Init) (rendererstate_t *info, unsigned char *palette);
|
|
|
|
void (*VID_DeInit) (void);
|
|
|
|
void (*VID_SetPalette) (unsigned char *palette);
|
|
|
|
void (*VID_ShiftPalette) (unsigned char *palette);
|
|
|
|
char *(*VID_GetRGBInfo) (int prepad, int *truevidwidth, int *truevidheight);
|
|
|
|
void (*VID_SetWindowCaption) (char *msg);
|
|
|
|
|
|
|
|
void (*SCR_UpdateScreen) (void);
|
|
|
|
|
|
|
|
char *alignment;
|
|
|
|
} rendererinfo_t;
|
2010-10-02 02:25:39 +00:00
|
|
|
|
|
|
|
#define rf currentrendererstate.renderer
|
|
|
|
|
|
|
|
#define R_LoadTexture rf->IMG_LoadTexture
|
|
|
|
#define R_LoadTexture8Pal24 rf->IMG_LoadTexture8Pal24
|
|
|
|
#define R_LoadTexture8Pal32 rf->IMG_LoadTexture8Pal32
|
|
|
|
#define R_LoadCompressed rf->IMG_LoadCompressed
|
|
|
|
#define R_FindTexture rf->IMG_FindTexture
|
|
|
|
#define R_AllocNewTexture rf->IMG_AllocNewTexture
|
|
|
|
#define R_Upload rf->IMG_Upload
|
|
|
|
#define R_DestroyTexture rf->IMG_DestroyTexture
|