2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
r_local.h
|
|
|
|
|
|
|
|
private refresh defs
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program 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 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _R_LOCAL_H
|
|
|
|
#define _R_LOCAL_H
|
|
|
|
|
2012-05-11 12:22:10 +00:00
|
|
|
#include "QF/iqm.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/mathlib.h"
|
2001-04-10 06:55:28 +00:00
|
|
|
#include "QF/model.h"
|
2011-12-23 03:19:50 +00:00
|
|
|
#include "QF/render.h"
|
2012-05-11 12:22:10 +00:00
|
|
|
#include "QF/vid.h"
|
2021-03-09 14:52:40 +00:00
|
|
|
#include "QF/simd/mat4f.h"
|
|
|
|
#include "QF/simd/vec4f.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
#include "r_shared.h"
|
|
|
|
|
|
|
|
#define ALIAS_BASE_SIZE_RATIO (1.0 / 11.0)
|
|
|
|
// normalizing factor so player model works out to about
|
|
|
|
// 1 pixel per triangle
|
|
|
|
|
|
|
|
#define BMODEL_FULLY_CLIPPED 0x10 // value returned by R_BmodelCheckBBox ()
|
|
|
|
// if bbox is trivially rejected
|
|
|
|
|
2001-05-14 01:22:58 +00:00
|
|
|
// viewmodel lighting =======================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int ambientlight;
|
|
|
|
int shadelight;
|
|
|
|
float *plightvec;
|
|
|
|
} alight_t;
|
|
|
|
|
2001-05-14 01:22:58 +00:00
|
|
|
// clipped bmodel edges =====================================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
typedef struct bedge_s
|
|
|
|
{
|
|
|
|
mvertex_t *v[2];
|
|
|
|
struct bedge_s *pnext;
|
|
|
|
} bedge_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float fv[3]; // viewspace x, y
|
|
|
|
} auxvert_t;
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
2001-05-10 06:01:11 +00:00
|
|
|
extern struct cvar_s *r_speeds;
|
|
|
|
extern struct cvar_s *r_timegraph;
|
|
|
|
extern struct cvar_s *r_graphheight;
|
|
|
|
extern struct cvar_s *r_clearcolor;
|
|
|
|
extern struct cvar_s *r_waterwarp;
|
|
|
|
extern struct cvar_s *r_fullbright;
|
|
|
|
extern struct cvar_s *r_drawentities;
|
|
|
|
extern struct cvar_s *r_aliasstats;
|
|
|
|
extern struct cvar_s *r_dspeeds;
|
|
|
|
extern struct cvar_s *r_drawflat;
|
|
|
|
extern struct cvar_s *r_ambient;
|
|
|
|
extern struct cvar_s *r_reportsurfout;
|
|
|
|
extern struct cvar_s *r_maxsurfs;
|
|
|
|
extern struct cvar_s *r_numsurfs;
|
|
|
|
extern struct cvar_s *r_reportedgeout;
|
|
|
|
extern struct cvar_s *r_maxedges;
|
|
|
|
extern struct cvar_s *r_numedges;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-04-25 12:51:04 +00:00
|
|
|
extern float cl_wateralpha;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#define XCENTERING (1.0 / 2.0)
|
|
|
|
#define YCENTERING (1.0 / 2.0)
|
|
|
|
|
|
|
|
#define CLIP_EPSILON 0.001
|
|
|
|
|
|
|
|
#define BACKFACE_EPSILON 0.01
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
#define DIST_NOT_SET 98765
|
|
|
|
|
|
|
|
// !!! if this is changed, it must be changed in asm_draw.h too !!!
|
2021-04-02 13:17:32 +00:00
|
|
|
typedef struct clipplane_s {
|
2001-02-19 21:15:25 +00:00
|
|
|
vec3_t normal;
|
|
|
|
float dist;
|
|
|
|
struct clipplane_s *next;
|
|
|
|
byte leftedge;
|
|
|
|
byte rightedge;
|
|
|
|
byte reserved[2];
|
|
|
|
} clipplane_t;
|
|
|
|
|
|
|
|
extern clipplane_t view_clipplanes[4];
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
void R_RenderWorld (void);
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
2011-11-14 02:18:22 +00:00
|
|
|
extern plane_t screenedge[4];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
extern vec3_t r_origin;
|
|
|
|
extern vec3_t r_entorigin;
|
|
|
|
|
|
|
|
extern int r_visframecount;
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
extern int vstartscan;
|
|
|
|
|
|
|
|
|
|
|
|
void R_ClearPolyList (void);
|
|
|
|
void R_DrawPolyList (void);
|
|
|
|
|
2011-12-23 03:19:50 +00:00
|
|
|
// Surface cache related ==========
|
|
|
|
extern qboolean r_cache_thrash; // set if thrashing the surface cache
|
2001-05-14 01:22:58 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
// current entity info
|
|
|
|
extern qboolean insubmodel;
|
|
|
|
extern vec3_t r_worldmodelorg;
|
|
|
|
|
2021-03-09 14:52:40 +00:00
|
|
|
extern mat4f_t glsl_projection;
|
|
|
|
extern mat4f_t glsl_view;
|
2011-12-31 05:38:03 +00:00
|
|
|
|
2012-07-03 06:57:33 +00:00
|
|
|
void R_SetFrustum (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2011-12-30 12:11:59 +00:00
|
|
|
void R_SpriteBegin (void);
|
|
|
|
void R_SpriteEnd (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_DrawSprite (void);
|
|
|
|
void R_RenderFace (msurface_t *fa, int clipflags);
|
|
|
|
void R_RenderPoly (msurface_t *fa, int clipflags);
|
|
|
|
void R_RenderBmodelFace (bedge_t *pedges, msurface_t *psurf);
|
2011-11-14 02:18:22 +00:00
|
|
|
void R_TransformPlane (plane_t *p, float *normal, float *dist);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_TransformFrustum (void);
|
|
|
|
void R_SetSkyFrame (void);
|
2001-11-21 19:13:53 +00:00
|
|
|
void R_DrawSurfaceBlock (void);
|
2021-07-22 06:39:28 +00:00
|
|
|
texture_t *R_TextureAnimation (const entity_t *entity, msurface_t *surf) __attribute__((pure));
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
void R_GenSkyTile (void *pdest);
|
2001-11-21 19:13:53 +00:00
|
|
|
void R_SurfPatch (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_DrawSubmodelPolygons (model_t *pmodel, int clipflags);
|
|
|
|
void R_DrawSolidClippedSubmodelPolygons (model_t *pmodel);
|
|
|
|
|
|
|
|
void R_AddPolygonEdges (emitpoint_t *pverts, int numverts, int miplevel);
|
|
|
|
surf_t *R_GetSurf (void);
|
2012-05-18 14:31:14 +00:00
|
|
|
void R_AliasClipAndProjectFinalVert (finalvert_t *fv, auxvert_t *av);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_AliasDrawModel (alight_t *plighting);
|
2012-05-18 14:31:14 +00:00
|
|
|
void R_IQMDrawModel (alight_t *plighting);
|
2021-07-22 06:39:28 +00:00
|
|
|
maliasskindesc_t *R_AliasGetSkindesc (animation_t *animation, int skinnum, aliashdr_t *hdr);
|
|
|
|
maliasframedesc_t *R_AliasGetFramedesc (animation_t *animation, aliashdr_t *hdr);
|
|
|
|
float R_AliasGetLerpedFrames (animation_t *animation, aliashdr_t *hdr);
|
2012-05-11 12:22:10 +00:00
|
|
|
float R_IQMGetLerpedFrames (entity_t *ent, iqm_t *hdr);
|
2012-05-16 08:44:18 +00:00
|
|
|
iqmframe_t *R_IQMBlendFrames (const iqm_t *iqm, int frame1, int frame2,
|
2012-05-17 06:57:07 +00:00
|
|
|
float blend, int extra);
|
2012-05-18 15:34:15 +00:00
|
|
|
iqmframe_t *R_IQMBlendPalette (const iqm_t *iqm, int frame1, int frame2,
|
|
|
|
float blend, int extra,
|
|
|
|
iqmblend_t *blend_palette, int palette_size);
|
2021-07-22 06:39:28 +00:00
|
|
|
float R_EntityBlend (animation_t *animation, int pose, float interval);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_BeginEdgeFrame (void);
|
|
|
|
void R_ScanEdges (void);
|
|
|
|
void D_DrawSurfaces (void);
|
|
|
|
void R_InsertNewEdges (edge_t *edgestoadd, edge_t *edgelist);
|
|
|
|
void R_StepActiveU (edge_t *pedge);
|
|
|
|
void R_RemoveEdges (edge_t *pedge);
|
2011-12-17 10:14:14 +00:00
|
|
|
void R_AddTexture (texture_t *tex);
|
2021-01-19 16:25:54 +00:00
|
|
|
struct vulkan_ctx_s;
|
2011-12-17 10:14:14 +00:00
|
|
|
void R_ClearTextures (void);
|
2021-02-01 10:31:11 +00:00
|
|
|
void R_InitSurfaceChains (mod_brush_t *brush);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
extern void R_Surf8Start (void);
|
|
|
|
extern void R_Surf8End (void);
|
|
|
|
extern void R_EdgeCodeStart (void);
|
|
|
|
extern void R_EdgeCodeEnd (void);
|
|
|
|
|
|
|
|
extern void R_RotateBmodel (void);
|
|
|
|
|
|
|
|
extern int c_faceclip;
|
|
|
|
extern int r_polycount;
|
|
|
|
|
2011-12-15 06:07:01 +00:00
|
|
|
extern model_t *cl_worldmodel;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
extern int *pfrustum_indexes[4];
|
|
|
|
|
|
|
|
// !!! if this is changed, it must be changed in asm_draw.h too !!!
|
|
|
|
#define NEAR_CLIP 0.01
|
|
|
|
|
|
|
|
extern fixed16_t sadjust, tadjust;
|
|
|
|
extern fixed16_t bbextents, bbextentt;
|
|
|
|
|
|
|
|
#define MAXBVERTINDEXES 1000 // new clipped vertices when clipping bmodels
|
|
|
|
// to the world BSP
|
|
|
|
extern mvertex_t *r_ptverts, *r_ptvertsmax;
|
|
|
|
|
|
|
|
extern vec3_t sbaseaxis[3], tbaseaxis[3];
|
|
|
|
|
|
|
|
extern int r_currentkey;
|
|
|
|
extern int r_currentbkey;
|
|
|
|
|
|
|
|
typedef struct btofpoly_s {
|
|
|
|
int clipflags;
|
|
|
|
msurface_t *psurf;
|
|
|
|
} btofpoly_t;
|
|
|
|
|
|
|
|
#define MAX_BTOFPOLYS 5000 // FIXME: tune this
|
|
|
|
|
|
|
|
extern int numbtofpolys;
|
|
|
|
|
|
|
|
void R_InitTurb (void);
|
|
|
|
void R_ZDrawSubmodelPolys (model_t *clmodel);
|
|
|
|
|
2001-05-14 01:22:58 +00:00
|
|
|
// Alias models ===========================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define ALIAS_Z_CLIP_PLANE 5
|
|
|
|
|
|
|
|
extern int numverts;
|
|
|
|
extern int numtriangles;
|
|
|
|
extern float leftclip, topclip, rightclip, bottomclip;
|
|
|
|
extern int r_acliptype;
|
|
|
|
extern finalvert_t *pfinalverts;
|
|
|
|
extern auxvert_t *pauxverts;
|
2012-05-20 05:23:41 +00:00
|
|
|
extern float ziscale, sw32_ziscale;
|
2012-05-18 14:31:14 +00:00
|
|
|
extern float aliastransform[3][4];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
qboolean R_AliasCheckBBox (void);
|
|
|
|
|
2001-05-14 01:22:58 +00:00
|
|
|
// turbulence stuff =======================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define AMP 8*0x10000
|
|
|
|
#define AMP2 3
|
|
|
|
#define SPEED 20
|
|
|
|
|
2001-05-14 01:22:58 +00:00
|
|
|
// particle stuff =========================================
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
void R_DrawParticles (void);
|
|
|
|
void R_InitParticles (void);
|
2005-01-02 14:23:20 +00:00
|
|
|
void R_ClearParticles (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_ReadPointFile_f (void);
|
2003-03-20 19:58:18 +00:00
|
|
|
void R_InitSprites (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_SurfacePatch (void);
|
|
|
|
|
2003-08-27 22:20:03 +00:00
|
|
|
// renderer stuff again ===================================
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
extern int r_amodels_drawn;
|
|
|
|
extern edge_t *auxedges;
|
|
|
|
extern int r_numallocatededges;
|
|
|
|
extern edge_t *r_edges, *edge_p, *edge_max;
|
|
|
|
|
|
|
|
extern edge_t *newedges[MAXHEIGHT];
|
|
|
|
extern edge_t *removeedges[MAXHEIGHT];
|
|
|
|
|
|
|
|
extern int screenwidth;
|
|
|
|
|
|
|
|
extern int r_bmodelactive;
|
|
|
|
extern vrect_t *pconupdate;
|
|
|
|
|
|
|
|
extern float aliasxscale, aliasyscale, aliasxcenter, aliasycenter;
|
|
|
|
extern float r_aliastransition, r_resfudge;
|
|
|
|
|
|
|
|
extern int r_outofsurfaces;
|
|
|
|
extern int r_outofedges;
|
|
|
|
|
|
|
|
extern mvertex_t *r_pcurrentvertbase;
|
|
|
|
extern int r_maxvalidedgeoffset;
|
|
|
|
|
|
|
|
void R_AliasClipTriangle (mtriangle_t *ptri);
|
|
|
|
|
|
|
|
extern float r_time1;
|
|
|
|
extern int r_frustum_indexes[4*6];
|
2012-02-18 05:34:14 +00:00
|
|
|
extern int r_maxsurfsseen, r_maxedgesseen;
|
2001-02-19 21:15:25 +00:00
|
|
|
extern qboolean r_dowarpold, r_viewchanged;
|
|
|
|
|
2012-01-03 14:17:49 +00:00
|
|
|
extern mleaf_t *r_viewleaf;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
extern int r_clipflags;
|
|
|
|
extern int r_dlightframecount;
|
|
|
|
|
2010-12-03 05:54:39 +00:00
|
|
|
extern struct entity_s *r_ent_queue;
|
2001-05-20 05:42:52 +00:00
|
|
|
struct dlight_s;
|
2001-05-20 02:39:56 +00:00
|
|
|
|
2012-02-17 09:33:07 +00:00
|
|
|
extern vec3_t lightspot;
|
|
|
|
|
2010-12-03 04:28:58 +00:00
|
|
|
void R_StoreEfrags (const efrag_t *ppefrag);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_TimeRefresh_f (void);
|
|
|
|
void R_TimeGraph (void);
|
2001-05-22 06:00:38 +00:00
|
|
|
void R_ZGraph (void);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_PrintAliasStats (void);
|
|
|
|
void R_PrintTimes (void);
|
|
|
|
void R_AnimateLight (void);
|
2021-02-01 10:31:11 +00:00
|
|
|
int R_LightPoint (mod_brush_t *brush, const vec3_t p);
|
2001-02-19 21:15:25 +00:00
|
|
|
void R_SetupFrame (void);
|
|
|
|
void R_cshift_f (void);
|
|
|
|
void R_EmitEdge (mvertex_t *pv0, mvertex_t *pv1);
|
|
|
|
void R_ClipEdge (mvertex_t *pv0, mvertex_t *pv1, clipplane_t *clip);
|
2021-02-01 10:31:11 +00:00
|
|
|
void R_RecursiveMarkLights (mod_brush_t *brush, const vec3_t lightorigin,
|
|
|
|
struct dlight_s *light, int bit, mnode_t *node);
|
2002-01-03 05:29:38 +00:00
|
|
|
void R_MarkLights (const vec3_t lightorigin, struct dlight_s *light, int bit,
|
|
|
|
model_t *model);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-04-15 21:11:41 +00:00
|
|
|
void R_LoadSkys (const char *);
|
2021-01-19 16:25:54 +00:00
|
|
|
//void Vulkan_R_LoadSkys (const char *, struct vulkan_ctx_s *ctx);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-06-07 15:09:20 +00:00
|
|
|
void R_LowFPPrecision (void);
|
|
|
|
void R_HighFPPrecision (void);
|
|
|
|
void R_SetFPCW (void);
|
|
|
|
|
2002-11-05 19:12:51 +00:00
|
|
|
void R_AliasProjectFinalVert (finalvert_t *fv, auxvert_t *av);
|
|
|
|
void R_Alias_clip_left (finalvert_t *pfv0, finalvert_t *pfv1,
|
|
|
|
finalvert_t *out);
|
|
|
|
void R_Alias_clip_right (finalvert_t *pfv0, finalvert_t *pfv1,
|
|
|
|
finalvert_t *out);
|
|
|
|
void R_Alias_clip_bottom (finalvert_t *pfv0, finalvert_t *pfv1,
|
|
|
|
finalvert_t *out);
|
|
|
|
void R_Alias_clip_top (finalvert_t *pfv0, finalvert_t *pfv1, finalvert_t *out);
|
|
|
|
|
|
|
|
void R_AliasSetUpTransform (int trivial_accept);
|
|
|
|
void R_AliasTransformVector (vec3_t in, vec3_t out);
|
2012-05-17 12:33:22 +00:00
|
|
|
void R_AliasTransformFinalVert (finalvert_t *fv, trivertx_t *pverts,
|
|
|
|
stvert_t *pstverts);
|
2002-11-05 19:12:51 +00:00
|
|
|
void R_AliasTransformAndProjectFinalVerts (finalvert_t *fv, stvert_t *pstverts);
|
|
|
|
|
|
|
|
void R_GenerateSpans (void);
|
|
|
|
|
|
|
|
void R_InitVars (void);
|
|
|
|
|
|
|
|
void R_LoadSky_f (void);
|
|
|
|
|
2011-12-26 12:43:15 +00:00
|
|
|
extern byte crosshair_data[];
|
|
|
|
#define CROSSHAIR_WIDTH 8
|
|
|
|
#define CROSSHAIR_HEIGHT 8
|
|
|
|
#define CROSSHAIR_TILEX 2
|
|
|
|
#define CROSSHAIR_TILEY 2
|
|
|
|
#define CROSSHAIR_COUNT (CROSSHAIR_TILEX * CROSSHAIR_TILEY)
|
|
|
|
|
2021-01-08 05:37:52 +00:00
|
|
|
//NOTE: This is packed 8x8 bitmap data, one byte per scanline, 8 scanlines
|
|
|
|
////per character. Also, it is NOT the quake font, but the IBM charset.
|
|
|
|
extern byte font8x8_data[];
|
|
|
|
|
2011-12-26 12:43:15 +00:00
|
|
|
struct qpic_s *Draw_CrosshairPic (void);
|
2021-01-08 05:37:52 +00:00
|
|
|
struct qpic_s *Draw_Font8x8Pic (void);
|
2011-12-26 12:43:15 +00:00
|
|
|
|
2012-01-21 10:13:01 +00:00
|
|
|
struct tex_s *R_DotParticleTexture (void);
|
|
|
|
struct tex_s *R_SparkParticleTexture (void);
|
|
|
|
struct tex_s *R_SmokeParticleTexture (void);
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif // _R_LOCAL_H
|