2010-03-14 14:35:56 +00:00
|
|
|
#ifndef SHADER_H
|
|
|
|
#define SHADER_H
|
2009-11-04 21:16:50 +00:00
|
|
|
typedef void (shader_gen_t)(char *name, shader_t*, const void *args);
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
#define SHADER_PASS_MAX 8
|
|
|
|
#define SHADER_MAX_TC_MODS 8
|
|
|
|
#define SHADER_DEFORM_MAX 8
|
|
|
|
#define SHADER_MAX_ANIMFRAMES 8
|
2004-10-19 16:10:14 +00:00
|
|
|
#define SHADER_ANIM_FRAMES_MAX 16
|
|
|
|
|
2006-03-11 03:12:10 +00:00
|
|
|
#define SHADER_PROGPARMS_MAX 16
|
|
|
|
|
2004-10-19 16:10:14 +00:00
|
|
|
typedef enum {
|
|
|
|
SHADER_BSP,
|
|
|
|
SHADER_BSP_VERTEX,
|
|
|
|
SHADER_BSP_FLARE,
|
|
|
|
SHADER_MD3,
|
|
|
|
SHADER_2D
|
|
|
|
} shadertype_t;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
MF_NONE = 1<<0,
|
|
|
|
MF_NORMALS = 1<<1,
|
|
|
|
MF_TRNORMALS = 1<<2,
|
|
|
|
MF_COLORS = 1<<3,
|
|
|
|
MF_STCOORDS = 1<<4,
|
|
|
|
MF_LMCOORDS = 1<<5,
|
|
|
|
MF_NOCULL = 1<<6,
|
|
|
|
MF_NONBATCHED = 1<<7
|
|
|
|
} meshfeatures_t;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
//colour manipulation
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
SHADER_FUNC_SIN,
|
|
|
|
SHADER_FUNC_TRIANGLE,
|
|
|
|
SHADER_FUNC_SQUARE,
|
|
|
|
SHADER_FUNC_SAWTOOTH,
|
|
|
|
SHADER_FUNC_INVERSESAWTOOTH,
|
2004-10-19 16:10:14 +00:00
|
|
|
SHADER_FUNC_NOISE,
|
|
|
|
SHADER_FUNC_CONSTANT
|
2004-08-23 00:15:46 +00:00
|
|
|
} type; // SHADER_FUNC enum
|
|
|
|
float args[4]; // offset, amplitude, phase_offset, rate
|
|
|
|
} shaderfunc_t;
|
|
|
|
|
|
|
|
//tecture coordinate manipulation
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
SHADER_TCMOD_NONE, //bug
|
|
|
|
SHADER_TCMOD_SCALE, //some sorta tabled deformation
|
|
|
|
SHADER_TCMOD_SCROLL, //boring moving texcoords with time
|
|
|
|
SHADER_TCMOD_STRETCH, //constant factor
|
2004-10-19 16:10:14 +00:00
|
|
|
SHADER_TCMOD_ROTATE,
|
|
|
|
SHADER_TCMOD_MAX,
|
|
|
|
SHADER_TCMOD_TRANSFORM,
|
|
|
|
SHADER_TCMOD_TURB
|
2004-08-23 00:15:46 +00:00
|
|
|
} type;
|
|
|
|
float args[6];
|
|
|
|
} tcmod_t;
|
|
|
|
|
|
|
|
//vertex positioning manipulation.
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
DEFORMV_NONE, //bug
|
|
|
|
DEFORMV_MOVE,
|
|
|
|
DEFORMV_WAVE,
|
|
|
|
DEFORMV_NORMAL,
|
|
|
|
DEFORMV_BULGE,
|
|
|
|
DEFORMV_AUTOSPRITE,
|
|
|
|
DEFORMV_AUTOSPRITE2,
|
|
|
|
DEFORMV_PROJECTION_SHADOW
|
|
|
|
} type;
|
|
|
|
float args[4];
|
|
|
|
shaderfunc_t func;
|
|
|
|
} deformv_t;
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
/*source and dest factors match each other for easier parsing
|
|
|
|
but they're not meant to ever be set on the shader itself
|
|
|
|
NONE is also invalid, and is used to signify disabled, it should never be set on only one
|
|
|
|
*/
|
|
|
|
SBITS_SRCBLEND_NONE = 0x00000000,
|
|
|
|
SBITS_SRCBLEND_ZERO = 0x00000001,
|
|
|
|
SBITS_SRCBLEND_ONE = 0x00000002,
|
|
|
|
SBITS_SRCBLEND_DST_COLOR = 0x00000003,
|
|
|
|
SBITS_SRCBLEND_ONE_MINUS_DST_COLOR = 0x00000004,
|
|
|
|
SBITS_SRCBLEND_SRC_ALPHA = 0x00000005,
|
|
|
|
SBITS_SRCBLEND_ONE_MINUS_SRC_ALPHA = 0x00000006,
|
|
|
|
SBITS_SRCBLEND_DST_ALPHA = 0x00000007,
|
|
|
|
SBITS_SRCBLEND_ONE_MINUS_DST_ALPHA = 0x00000008,
|
|
|
|
SBITS_SRCBLEND_SRC_COLOR_INVALID = 0x00000009,
|
|
|
|
SBITS_SRCBLEND_ONE_MINUS_SRC_COLOR_INVALID = 0x0000000a,
|
|
|
|
SBITS_SRCBLEND_ALPHA_SATURATE = 0x0000000b,
|
|
|
|
#define SBITS_SRCBLEND_BITS 0x0000000f
|
|
|
|
|
|
|
|
/*must match src factors, just shifted 4*/
|
|
|
|
SBITS_DSTBLEND_NONE = 0x00000000,
|
|
|
|
SBITS_DSTBLEND_ZERO = 0x00000010,
|
|
|
|
SBITS_DSTBLEND_ONE = 0x00000020,
|
|
|
|
SBITS_DSTBLEND_DST_COLOR_INVALID = 0x00000030,
|
|
|
|
SBITS_DSTBLEND_ONE_MINUS_DST_COLOR_INVALID = 0x00000040,
|
|
|
|
SBITS_DSTBLEND_SRC_ALPHA = 0x00000050,
|
|
|
|
SBITS_DSTBLEND_ONE_MINUS_SRC_ALPHA = 0x00000060,
|
|
|
|
SBITS_DSTBLEND_DST_ALPHA = 0x00000070,
|
|
|
|
SBITS_DSTBLEND_ONE_MINUS_DST_ALPHA = 0x00000080,
|
|
|
|
SBITS_DSTBLEND_SRC_COLOR = 0x00000090,
|
|
|
|
SBITS_DSTBLEND_ONE_MINUS_SRC_COLOR = 0x000000a0,
|
|
|
|
SBITS_DSTBLEND_ALPHA_SATURATE_INVALID = 0x000000b0,
|
|
|
|
#define SBITS_DSTBLEND_BITS 0x000000f0
|
|
|
|
|
|
|
|
#define SBITS_BLEND_BITS (SBITS_SRCBLEND_BITS|SBITS_DSTBLEND_BITS)
|
|
|
|
|
|
|
|
SBITS_ATEST_NONE = 0x00000000,
|
|
|
|
SBITS_ATEST_GT0 = 0x00000100,
|
|
|
|
SBITS_ATEST_LT128 = 0x00000200,
|
|
|
|
SBITS_ATEST_GE128 = 0x00000300,
|
|
|
|
#define SBITS_ATEST_BITS 0x00000f00
|
|
|
|
|
|
|
|
SBITS_MISC_DEPTHWRITE = 0x00001000,
|
|
|
|
SBITS_MISC_NODEPTHTEST = 0x00002000,
|
|
|
|
|
|
|
|
SBITS_MISC_DEPTHEQUALONLY = 0x00004000,
|
|
|
|
SBITS_MISC_DEPTHCLOSERONLY = 0x00008000,
|
|
|
|
|
|
|
|
// SBITS_MISC_POLYFILL_LINES = 0x00008000,
|
|
|
|
#define SBITS_MISC_BITS 0x0000f000
|
|
|
|
};
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2004-10-19 16:10:14 +00:00
|
|
|
typedef struct shaderpass_s {
|
|
|
|
int numMergedPasses;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
#ifndef NOMEDIA
|
2006-03-06 01:41:09 +00:00
|
|
|
struct cin_s *cin;
|
2009-11-04 21:16:50 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
unsigned int shaderbits;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
unsigned int blendmode;
|
2009-07-05 18:45:53 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
enum {
|
|
|
|
RGB_GEN_WAVE,
|
|
|
|
RGB_GEN_ENTITY,
|
|
|
|
RGB_GEN_ONE_MINUS_ENTITY,
|
|
|
|
RGB_GEN_VERTEX,
|
|
|
|
RGB_GEN_EXACT_VERTEX,
|
|
|
|
RGB_GEN_ONE_MINUS_VERTEX,
|
|
|
|
RGB_GEN_IDENTITY_LIGHTING,
|
|
|
|
RGB_GEN_IDENTITY,
|
2004-10-19 16:10:14 +00:00
|
|
|
RGB_GEN_CONST,
|
|
|
|
RGB_GEN_UNKNOWN,
|
2005-02-06 02:47:36 +00:00
|
|
|
RGB_GEN_LIGHTING_DIFFUSE,
|
|
|
|
RGB_GEN_TOPCOLOR,
|
|
|
|
RGB_GEN_BOTTOMCOLOR
|
2004-08-23 00:15:46 +00:00
|
|
|
} rgbgen;
|
2009-11-04 21:16:50 +00:00
|
|
|
shaderfunc_t rgbgen_func;
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
enum {
|
|
|
|
ALPHA_GEN_ENTITY,
|
|
|
|
ALPHA_GEN_WAVE,
|
|
|
|
ALPHA_GEN_PORTAL,
|
|
|
|
ALPHA_GEN_SPECULAR,
|
2004-10-19 16:10:14 +00:00
|
|
|
ALPHA_GEN_IDENTITY,
|
|
|
|
ALPHA_GEN_VERTEX,
|
|
|
|
ALPHA_GEN_CONST
|
2004-08-23 00:15:46 +00:00
|
|
|
} alphagen;
|
2009-11-04 21:16:50 +00:00
|
|
|
shaderfunc_t alphagen_func;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
enum {
|
|
|
|
TC_GEN_BASE, //basic specified texture coords
|
|
|
|
TC_GEN_LIGHTMAP, //use loaded lightmap coords
|
|
|
|
TC_GEN_ENVIRONMENT,
|
|
|
|
TC_GEN_DOTPRODUCT,
|
|
|
|
TC_GEN_VECTOR,
|
|
|
|
|
|
|
|
//these are really for use only in glsl stuff.
|
|
|
|
TC_GEN_NORMAL,
|
|
|
|
TC_GEN_SVECTOR,
|
|
|
|
TC_GEN_TVECTOR,
|
|
|
|
} tcgen;
|
2004-08-23 00:15:46 +00:00
|
|
|
int numtcmods;
|
2004-10-19 16:10:14 +00:00
|
|
|
tcmod_t tcmods[SHADER_MAX_TC_MODS];
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
int anim_numframes;
|
2009-11-04 21:16:50 +00:00
|
|
|
texid_t anim_frames[SHADER_MAX_ANIMFRAMES];
|
2004-10-19 16:10:14 +00:00
|
|
|
float anim_fps;
|
2009-11-04 21:16:50 +00:00
|
|
|
// unsigned int texturetype;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
enum {
|
2009-11-04 21:16:50 +00:00
|
|
|
T_GEN_SINGLEMAP, //single texture specified in the shader
|
|
|
|
T_GEN_ANIMMAP, //animating sequence of textures specified in the shader
|
|
|
|
T_GEN_LIGHTMAP, //world light samples
|
|
|
|
T_GEN_DELUXMAP, //world light directions
|
|
|
|
T_GEN_SHADOWMAP, //light's depth values.
|
|
|
|
|
|
|
|
T_GEN_DIFFUSE, //texture's default diffuse texture
|
|
|
|
T_GEN_NORMALMAP, //texture's default normalmap
|
|
|
|
T_GEN_SPECULAR, //texture's default specular texture
|
|
|
|
T_GEN_UPPEROVERLAY, //texture's default personal colour
|
|
|
|
T_GEN_LOWEROVERLAY, //texture's default team colour
|
|
|
|
T_GEN_FULLBRIGHT, //texture's default fullbright overlay
|
|
|
|
|
|
|
|
T_GEN_CURRENTRENDER,//copy the current screen to a texture, and draw that
|
|
|
|
|
|
|
|
T_GEN_VIDEOMAP, //use the media playback as an image source, updating each frame for which it is visible
|
|
|
|
} texgen;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
SHADER_PASS_NOCOLORARRAY = 1<< 3,
|
|
|
|
|
|
|
|
//FIXME: remove these
|
|
|
|
SHADER_PASS_VIDEOMAP = 1 << 4,
|
|
|
|
SHADER_PASS_DETAIL = 1 << 5,
|
|
|
|
SHADER_PASS_LIGHTMAP = 1 << 6,
|
|
|
|
SHADER_PASS_DELUXMAP = 1 << 7,
|
2006-03-11 03:12:10 +00:00
|
|
|
SHADER_PASS_ANIMMAP = 1 << 8
|
2004-08-23 00:15:46 +00:00
|
|
|
} flags;
|
|
|
|
} shaderpass_t;
|
|
|
|
|
2005-04-16 16:21:27 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
mesh_t meshes[5];
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
texid_t farbox_textures[6];
|
|
|
|
texid_t nearbox_textures[6];
|
2005-04-16 16:21:27 +00:00
|
|
|
} skydome_t;
|
|
|
|
|
2010-08-28 17:14:38 +00:00
|
|
|
enum{
|
|
|
|
PERMUTATION_GENERIC = 0,
|
|
|
|
PERMUTATION_BUMPMAP = 1,
|
|
|
|
PERMUTATION_SPECULAR = 2,
|
|
|
|
PERMUTATION_BUMP_SPEC,
|
|
|
|
PERMUTATION_OFFSET = 4,
|
|
|
|
PERMUTATION_OFFSET_BUMP,
|
|
|
|
PERMUTATION_OFFSET_SPEC,
|
|
|
|
PERMUTATION_OFFSET_BUMP_SPEC,
|
|
|
|
|
|
|
|
PERMUTATIONS
|
|
|
|
};
|
|
|
|
|
2006-03-11 03:12:10 +00:00
|
|
|
typedef struct {
|
|
|
|
enum shaderprogparmtype_e {
|
|
|
|
SP_BAD,
|
2008-12-23 02:55:20 +00:00
|
|
|
|
2006-03-11 03:12:10 +00:00
|
|
|
SP_ENTCOLOURS,
|
|
|
|
SP_TOPCOLOURS,
|
|
|
|
SP_BOTTOMCOLOURS,
|
|
|
|
SP_TIME,
|
2008-12-23 02:55:20 +00:00
|
|
|
SP_EYEPOS,
|
2009-11-04 21:16:50 +00:00
|
|
|
SP_ENTMATRIX,
|
2006-03-11 03:12:10 +00:00
|
|
|
|
2010-07-25 15:12:12 +00:00
|
|
|
SP_RENDERTEXTURESCALE, /*multiplier for currentrender->texcoord*/
|
|
|
|
|
2009-07-18 20:46:42 +00:00
|
|
|
SP_LIGHTRADIUS,
|
|
|
|
SP_LIGHTCOLOUR,
|
|
|
|
SP_LIGHTPOSITION,
|
|
|
|
|
2006-03-11 03:12:10 +00:00
|
|
|
//things that are set immediatly
|
|
|
|
SP_FIRSTIMMEDIATE, //never set
|
|
|
|
SP_CVARI,
|
|
|
|
SP_CVARF,
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
SP_CVAR3F,
|
2006-03-11 03:12:10 +00:00
|
|
|
SP_TEXTURE
|
|
|
|
} type;
|
2010-08-28 17:14:38 +00:00
|
|
|
unsigned int handle[PERMUTATIONS];
|
|
|
|
union
|
|
|
|
{
|
|
|
|
int ival;
|
|
|
|
void *pval;
|
|
|
|
};
|
2006-03-11 03:12:10 +00:00
|
|
|
} shaderprogparm_t;
|
|
|
|
|
2010-08-28 17:14:38 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
typedef struct {
|
|
|
|
float factor;
|
|
|
|
float unit;
|
|
|
|
} polyoffset_t;
|
|
|
|
struct shader_s
|
|
|
|
{
|
2010-07-11 02:22:39 +00:00
|
|
|
int uses;
|
2009-11-04 21:16:50 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int numpasses;
|
|
|
|
texnums_t defaulttextures;
|
2004-08-23 00:15:46 +00:00
|
|
|
struct shader_s *next;
|
|
|
|
char name[MAX_QPATH];
|
|
|
|
//end of shared fields.
|
|
|
|
|
|
|
|
byte_vec4_t fog_color;
|
2004-10-19 16:10:14 +00:00
|
|
|
float fog_dist;
|
2010-07-11 02:22:39 +00:00
|
|
|
float portaldist;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
int numdeforms;
|
|
|
|
deformv_t deforms[SHADER_DEFORM_MAX];
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
polyoffset_t polyoffset;
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
enum {
|
2004-10-19 16:10:14 +00:00
|
|
|
SHADER_SKY = 1 << 0,
|
|
|
|
SHADER_NOMIPMAPS = 1 << 1,
|
|
|
|
SHADER_NOPICMIP = 1 << 2,
|
|
|
|
SHADER_CULL_FRONT = 1 << 3,
|
|
|
|
SHADER_CULL_BACK = 1 << 4,
|
|
|
|
SHADER_DEFORMV_BULGE = 1 << 5,
|
|
|
|
SHADER_AUTOSPRITE = 1 << 6,
|
|
|
|
SHADER_FLARE = 1 << 7,
|
2009-11-04 21:16:50 +00:00
|
|
|
// SHADER_REMOVED = 1 << 8,
|
2004-10-19 16:10:14 +00:00
|
|
|
SHADER_ENTITY_MERGABLE = 1 << 9,
|
|
|
|
SHADER_VIDEOMAP = 1 << 10,
|
|
|
|
SHADER_DEPTHWRITE = 1 << 11,
|
2004-11-13 17:31:04 +00:00
|
|
|
SHADER_AGEN_PORTAL = 1 << 12,
|
2005-05-26 12:55:34 +00:00
|
|
|
SHADER_BLEND = 1 << 13, //blend or alphatest (not 100% opaque).
|
2009-11-04 21:16:50 +00:00
|
|
|
SHADER_NODRAW = 1 << 14, //parsed only to pee off developers when they forget it on no-pass shaders.
|
|
|
|
|
|
|
|
SHADER_NODLIGHT = 1 << 15, //from surfaceflags
|
2010-07-18 12:52:24 +00:00
|
|
|
SHADER_HASLIGHTMAP = 1 << 16,
|
|
|
|
SHADER_HASTOPBOTTOM = 1 << 17
|
2004-08-23 00:15:46 +00:00
|
|
|
} flags;
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
union {
|
|
|
|
int glsl;
|
2010-08-28 17:14:38 +00:00
|
|
|
} programhandle[PERMUTATIONS];
|
2006-03-11 03:12:10 +00:00
|
|
|
int numprogparams;
|
|
|
|
shaderprogparm_t progparm[SHADER_PROGPARMS_MAX];
|
|
|
|
|
2004-10-19 16:10:14 +00:00
|
|
|
shaderpass_t passes[SHADER_PASS_MAX];
|
|
|
|
|
|
|
|
shadersort_t sort;
|
|
|
|
|
2005-04-16 16:21:27 +00:00
|
|
|
skydome_t *skydome;
|
2009-11-04 21:16:50 +00:00
|
|
|
shader_gen_t *generator;
|
|
|
|
const char *genargs;
|
2005-04-16 16:21:27 +00:00
|
|
|
|
2004-10-19 16:10:14 +00:00
|
|
|
meshfeatures_t features;
|
2010-07-11 02:22:39 +00:00
|
|
|
bucket_t bucket;
|
2009-11-04 21:16:50 +00:00
|
|
|
};
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-05-01 22:47:47 +00:00
|
|
|
extern shader_t *r_shaders;
|
2009-11-04 21:16:50 +00:00
|
|
|
extern int be_maxpasses;
|
2006-02-11 14:51:36 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-07-11 02:22:39 +00:00
|
|
|
void R_UnloadShader(shader_t *shader);
|
2005-10-07 02:13:15 +00:00
|
|
|
shader_t *R_RegisterPic (char *name);
|
2009-11-04 21:16:50 +00:00
|
|
|
shader_t *R_RegisterShader (char *name, const char *shaderscript);
|
|
|
|
shader_t *R_RegisterShader_Lightmap (char *name);
|
2004-10-26 23:06:29 +00:00
|
|
|
shader_t *R_RegisterShader_Vertex (char *name);
|
|
|
|
shader_t *R_RegisterShader_Flare (char *name);
|
|
|
|
shader_t *R_RegisterSkin (char *name);
|
2009-11-04 21:16:50 +00:00
|
|
|
shader_t *R_RegisterCustom (char *name, shader_gen_t *defaultgen, const void *args);
|
|
|
|
void R_BuildDefaultTexnums(texnums_t *tn, shader_t *shader);
|
2005-03-20 02:57:11 +00:00
|
|
|
|
2010-07-11 02:22:39 +00:00
|
|
|
cin_t *R_ShaderGetCinematic(shader_t *s);
|
|
|
|
cin_t *R_ShaderFindCinematic(char *name);
|
2008-11-09 22:29:28 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
void Shader_DefaultSkinShell(char *shortname, shader_t *s, const void *args);
|
2010-07-11 02:22:39 +00:00
|
|
|
void Shader_DefaultBSPLM(char *shortname, shader_t *s, const void *args);
|
|
|
|
void Shader_DefaultBSPQ1(char *shortname, shader_t *s, const void *args);
|
|
|
|
void Shader_DefaultBSPQ2(char *shortname, shader_t *s, const void *args);
|
|
|
|
void Shader_DefaultSkybox(char *shortname, shader_t *s, const void *args);
|
|
|
|
void Shader_DefaultCinematic(char *shortname, shader_t *s, const void *args);
|
2009-11-04 21:16:50 +00:00
|
|
|
void Shader_DefaultScript(char *shortname, shader_t *s, const void *args);
|
2004-10-26 23:06:29 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
void Shader_DoReload(void);
|
2004-10-26 23:06:29 +00:00
|
|
|
void R_BackendInit (void);
|
|
|
|
void Shader_Shutdown (void);
|
|
|
|
qboolean Shader_Init (void);
|
2009-11-04 21:16:50 +00:00
|
|
|
void Shader_NeedReload(void);
|
2006-01-28 02:35:40 +00:00
|
|
|
|
|
|
|
mfog_t *CM_FogForOrigin(vec3_t org);
|
2009-11-04 21:16:50 +00:00
|
|
|
|
|
|
|
//not all modes accept meshes - STENCIL(intentional) and DEPTHONLY(not implemented)
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
BEM_STANDARD, //regular mode to draw surfaces akin to q3 (aka: legacy mode). lightmaps+delux+ambient
|
|
|
|
BEM_DEPTHONLY, //just a quick depth pass. textures used only for alpha test (shadowmaps).
|
|
|
|
BEM_STENCIL, //used for drawing shadow volumes to the stencil buffer.
|
|
|
|
BEM_DEPTHDARK, //a quick depth pass. textures used only for alpha test. additive textures still shown as normal.
|
|
|
|
BEM_LIGHT, //we have a valid light
|
2010-07-11 02:22:39 +00:00
|
|
|
BEM_SMAPLIGHTSPOT, //we have a spot light using a shadowmap
|
2009-11-04 21:16:50 +00:00
|
|
|
BEM_SMAPLIGHT //we have a light using a shadowmap
|
|
|
|
} backendmode_t;
|
|
|
|
|
|
|
|
#define BEF_FORCEDEPTHWRITE 1
|
|
|
|
#define BEF_FORCEDEPTHTEST 2
|
|
|
|
#define BEF_FORCEADDITIVE 4 //blend dest = GL_ONE
|
|
|
|
#define BEF_FORCETRANSPARENT 8 //texenv replace -> modulate
|
|
|
|
#define BEF_FORCENODEPTH 16 //disables any and all depth.
|
2010-02-06 01:25:04 +00:00
|
|
|
#define BEF_PUSHDEPTH 32 //additional polygon offset
|
2009-11-04 21:16:50 +00:00
|
|
|
|
|
|
|
//Select the current render mode and modifier flags
|
|
|
|
void BE_SelectMode(backendmode_t mode, unsigned int flags);
|
|
|
|
|
2010-07-11 02:22:39 +00:00
|
|
|
/*Draws an entire mesh list from a VBO. vbo can be null, in which case the chain may be drawn without batching.
|
|
|
|
Rules for using a list: Every mesh must be part of the same VBO, shader, lightmap, and must have the same pointers set*/
|
|
|
|
void BE_DrawMesh_List(shader_t *shader, int nummeshes, mesh_t **mesh, vbo_t *vbo, texnums_t *texnums);
|
|
|
|
void BE_DrawMesh_Single(shader_t *shader, mesh_t *meshchain, vbo_t *vbo, texnums_t *texnums);
|
2010-08-28 17:14:38 +00:00
|
|
|
batch_t *BE_GetTempBatch(void);
|
2009-11-04 21:16:50 +00:00
|
|
|
|
2009-11-07 13:29:15 +00:00
|
|
|
//Asks the backend to invoke DrawMeshChain for each surface, and to upload lightmaps as required
|
|
|
|
void BE_DrawWorld (qbyte *vis);
|
2010-08-28 17:14:38 +00:00
|
|
|
void BE_DrawNonWorld (void);
|
2009-11-04 21:16:50 +00:00
|
|
|
|
2009-11-07 13:29:15 +00:00
|
|
|
//called at init, force the display to the right defaults etc
|
2009-11-04 21:16:50 +00:00
|
|
|
void BE_Init(void);
|
|
|
|
|
2009-11-07 13:29:15 +00:00
|
|
|
//Generates an optimised VBO, one for each texture on the map
|
|
|
|
void BE_GenBrushModelVBO(model_t *mod);
|
|
|
|
//Destroys the given vbo
|
2009-11-04 21:16:50 +00:00
|
|
|
void BE_ClearVBO(vbo_t *vbo);
|
2009-11-07 13:29:15 +00:00
|
|
|
//Uploads all modified lightmaps
|
|
|
|
void BE_UploadAllLightmaps(void);
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
//Builds a hardware shader from the software representation
|
|
|
|
void BE_GenerateProgram(shader_t *shader);
|
2009-11-04 21:16:50 +00:00
|
|
|
|
|
|
|
#ifdef RTLIGHTS
|
2010-07-18 08:42:59 +00:00
|
|
|
void BE_PushOffsetShadow(qboolean foobar);
|
2009-11-07 13:29:15 +00:00
|
|
|
//sets up gl for depth-only FIXME
|
2009-11-04 21:16:50 +00:00
|
|
|
void BE_SetupForShadowMap(void);
|
2010-07-11 02:22:39 +00:00
|
|
|
//Called from shadowmapping code into backend
|
|
|
|
void BE_BaseEntTextures(void);
|
2009-11-07 13:29:15 +00:00
|
|
|
//Draws lights, called from the backend
|
2009-11-04 21:16:50 +00:00
|
|
|
void Sh_DrawLights(qbyte *vis);
|
2010-07-11 02:22:39 +00:00
|
|
|
void Sh_Shutdown(void);
|
2009-11-07 13:29:15 +00:00
|
|
|
//Draws the depth of ents in the world near the current light
|
2009-11-04 21:16:50 +00:00
|
|
|
void BE_BaseEntShadowDepth(void);
|
2009-11-07 13:29:15 +00:00
|
|
|
//Sets the given light+colour to be the current one that everything is to be lit/culled by.
|
2009-11-04 21:16:50 +00:00
|
|
|
void BE_SelectDLight(dlight_t *dl, vec3_t colour);
|
|
|
|
//Returns true if the mesh is not lit by the current light
|
|
|
|
qboolean BE_LightCullModel(vec3_t org, model_t *model);
|
2006-01-28 02:35:40 +00:00
|
|
|
#endif
|
2010-08-28 17:20:55 +00:00
|
|
|
void BE_SelectEntity(entity_t *ent);
|
2010-03-14 14:35:56 +00:00
|
|
|
#endif
|