#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
Go to the source code of this file.
Classes | |
struct | cvar_s |
struct | cplane_s |
struct | cmodel_s |
struct | csurface_s |
struct | mapsurface_s |
struct | trace_t |
struct | pmove_state_t |
struct | usercmd_s |
struct | pmove_t |
struct | entity_state_s |
struct | player_state_t |
Typedefs | |
typedef unsigned char | byte |
typedef float | vec_t |
typedef vec_t | vec3_t[3] |
typedef vec_t | vec5_t[5] |
typedef int | fixed4_t |
typedef int | fixed8_t |
typedef int | fixed16_t |
typedef struct cvar_s | cvar_t |
typedef struct cplane_s | cplane_t |
typedef struct cmodel_s | cmodel_t |
typedef struct csurface_s | csurface_t |
typedef struct mapsurface_s | mapsurface_t |
typedef struct usercmd_s | usercmd_t |
typedef struct entity_state_s | entity_state_t |
Functions | |
long | Q_ftol (float f) |
void | VectorMA (vec3_t veca, float scale, vec3_t vecb, vec3_t vecc) |
vec_t | _DotProduct (vec3_t v1, vec3_t v2) |
void | _VectorSubtract (vec3_t veca, vec3_t vecb, vec3_t out) |
void | _VectorAdd (vec3_t veca, vec3_t vecb, vec3_t out) |
void | _VectorCopy (vec3_t in, vec3_t out) |
void | ClearBounds (vec3_t mins, vec3_t maxs) |
void | AddPointToBounds (vec3_t v, vec3_t mins, vec3_t maxs) |
int | VectorCompare (vec3_t v1, vec3_t v2) |
vec_t | VectorLength (vec3_t v) |
void | CrossProduct (vec3_t v1, vec3_t v2, vec3_t cross) |
vec_t | VectorNormalize (vec3_t v) |
vec_t | VectorNormalize2 (vec3_t v, vec3_t out) |
void | VectorInverse (vec3_t v) |
void | VectorScale (vec3_t in, vec_t scale, vec3_t out) |
int | Q_log2 (int val) |
void | R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]) |
void | R_ConcatTransforms (float in1[3][4], float in2[3][4], float out[3][4]) |
void | AngleVectors (vec3_t angles, vec3_t forward, vec3_t right, vec3_t up) |
int | BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *plane) |
float | anglemod (float a) |
float | LerpAngle (float a1, float a2, float frac) |
void | ProjectPointOnPlane (vec3_t dst, const vec3_t p, const vec3_t normal) |
void | PerpendicularVector (vec3_t dst, const vec3_t src) |
void | RotatePointAroundVector (vec3_t dst, const vec3_t dir, const vec3_t point, float degrees) |
char * | COM_SkipPath (char *pathname) |
void | COM_StripExtension (char *in, char *out) |
void | COM_FileBase (char *in, char *out) |
void | COM_FilePath (char *in, char *out) |
void | COM_DefaultExtension (char *path, char *extension) |
char * | COM_Parse (char **data_p) |
void | Com_sprintf (char *dest, int size, char *fmt,...) |
void | Com_PageInMemory (byte *buffer, int size) |
int | Q_stricmp (char *s1, char *s2) |
int | Q_strcasecmp (char *s1, char *s2) |
int | Q_strncasecmp (char *s1, char *s2, int n) |
short | BigShort (short l) |
short | LittleShort (short l) |
int | BigLong (int l) |
int | LittleLong (int l) |
float | BigFloat (float l) |
float | LittleFloat (float l) |
void | Swap_Init (void) |
char * | va (char *format,...) |
char * | Info_ValueForKey (char *s, char *key) |
void | Info_RemoveKey (char *s, char *key) |
void | Info_SetValueForKey (char *s, char *key, char *value) |
qboolean | Info_Validate (char *s) |
int | Sys_Milliseconds (void) |
void | Sys_Mkdir (char *path) |
void * | Hunk_Begin (int maxsize) |
void * | Hunk_Alloc (int size) |
void | Hunk_Free (void *buf) |
int | Hunk_End (void) |
char * | Sys_FindFirst (char *path, unsigned musthave, unsigned canthave) |
char * | Sys_FindNext (unsigned musthave, unsigned canthave) |
void | Sys_FindClose (void) |
void | Sys_Error (char *error,...) |
void | Com_Printf (char *msg,...) |
size_t | verify_fread (void *, size_t, size_t, FILE *) |
size_t | verify_fwrite (void *, size_t, size_t, FILE *) |
Variables | |
vec3_t | vec3_origin |
int | curtime |
vec3_t | monster_flash_offset [] |
int | vidref_val |
Definition at line 1116 of file q_shared.h.
#define AREA_SOLID 1 |
Definition at line 403 of file q_shared.h.
#define AREA_TRIGGERS 2 |
Definition at line 404 of file q_shared.h.
#define ATTN_IDLE 2 |
Definition at line 1020 of file q_shared.h.
#define ATTN_NONE 0 |
Definition at line 1018 of file q_shared.h.
#define ATTN_NORM 1 |
Definition at line 1019 of file q_shared.h.
#define ATTN_STATIC 3 |
Definition at line 1021 of file q_shared.h.
#define BOX_ON_PLANE_SIDE | ( | emins, | |
emaxs, | |||
p | |||
) |
Definition at line 190 of file q_shared.h.
#define BUTTON_ANY 128 |
Definition at line 509 of file q_shared.h.
#define BUTTON_ATTACK 1 |
Definition at line 507 of file q_shared.h.
#define BUTTON_USE 2 |
Definition at line 508 of file q_shared.h.
#define CHAN_AUTO 0 |
Definition at line 1007 of file q_shared.h.
#define CHAN_BODY 4 |
Definition at line 1011 of file q_shared.h.
#define CHAN_ITEM 3 |
Definition at line 1010 of file q_shared.h.
#define CHAN_NO_PHS_ADD 8 |
Definition at line 1013 of file q_shared.h.
#define CHAN_RELIABLE 16 |
Definition at line 1014 of file q_shared.h.
#define CHAN_VOICE 2 |
Definition at line 1009 of file q_shared.h.
#define CHAN_WEAPON 1 |
Definition at line 1008 of file q_shared.h.
#define CONTENTS_AREAPORTAL 0x8000 |
Definition at line 350 of file q_shared.h.
#define CONTENTS_AUX 4 |
Definition at line 341 of file q_shared.h.
#define CONTENTS_CURRENT_0 0x40000 |
Definition at line 356 of file q_shared.h.
#define CONTENTS_CURRENT_180 0x100000 |
Definition at line 358 of file q_shared.h.
#define CONTENTS_CURRENT_270 0x200000 |
Definition at line 359 of file q_shared.h.
#define CONTENTS_CURRENT_90 0x80000 |
Definition at line 357 of file q_shared.h.
#define CONTENTS_CURRENT_DOWN 0x800000 |
Definition at line 361 of file q_shared.h.
#define CONTENTS_CURRENT_UP 0x400000 |
Definition at line 360 of file q_shared.h.
#define CONTENTS_DEADMONSTER 0x4000000 |
Definition at line 366 of file q_shared.h.
#define CONTENTS_DETAIL 0x8000000 |
Definition at line 367 of file q_shared.h.
#define CONTENTS_LADDER 0x20000000 |
Definition at line 369 of file q_shared.h.
#define CONTENTS_LAVA 8 |
Definition at line 342 of file q_shared.h.
#define CONTENTS_MIST 64 |
Definition at line 345 of file q_shared.h.
#define CONTENTS_MONSTER 0x2000000 |
Definition at line 365 of file q_shared.h.
#define CONTENTS_MONSTERCLIP 0x20000 |
Definition at line 353 of file q_shared.h.
#define CONTENTS_ORIGIN 0x1000000 |
Definition at line 363 of file q_shared.h.
#define CONTENTS_PLAYERCLIP 0x10000 |
Definition at line 352 of file q_shared.h.
#define CONTENTS_SLIME 16 |
Definition at line 343 of file q_shared.h.
#define CONTENTS_SOLID 1 |
Definition at line 339 of file q_shared.h.
#define CONTENTS_TRANSLUCENT 0x10000000 |
Definition at line 368 of file q_shared.h.
#define CONTENTS_WATER 32 |
Definition at line 344 of file q_shared.h.
#define CONTENTS_WINDOW 2 |
Definition at line 340 of file q_shared.h.
#define CPLANE_DIST 12 |
Definition at line 422 of file q_shared.h.
#define CPLANE_NORMAL_X 0 |
Definition at line 419 of file q_shared.h.
#define CPLANE_NORMAL_Y 4 |
Definition at line 420 of file q_shared.h.
#define CPLANE_NORMAL_Z 8 |
Definition at line 421 of file q_shared.h.
#define CPLANE_PAD0 18 |
Definition at line 425 of file q_shared.h.
#define CPLANE_PAD1 19 |
Definition at line 426 of file q_shared.h.
#define CPLANE_SIGNBITS 17 |
Definition at line 424 of file q_shared.h.
#define CPLANE_TYPE 16 |
Definition at line 423 of file q_shared.h.
#define CS_AIRACCEL 29 |
Definition at line 1132 of file q_shared.h.
#define CS_CDTRACK 1 |
Definition at line 1126 of file q_shared.h.
#define CS_GENERAL (CS_PLAYERSKINS+MAX_CLIENTS) |
Definition at line 1142 of file q_shared.h.
#define CS_IMAGES (CS_SOUNDS+MAX_SOUNDS) |
Definition at line 1138 of file q_shared.h.
#define CS_ITEMS (CS_LIGHTS+MAX_LIGHTSTYLES) |
Definition at line 1140 of file q_shared.h.
#define CS_LIGHTS (CS_IMAGES+MAX_IMAGES) |
Definition at line 1139 of file q_shared.h.
#define CS_MAPCHECKSUM 31 |
Definition at line 1134 of file q_shared.h.
#define CS_MAXCLIENTS 30 |
Definition at line 1133 of file q_shared.h.
#define CS_MODELS 32 |
Definition at line 1136 of file q_shared.h.
#define CS_NAME 0 |
Definition at line 1125 of file q_shared.h.
Definition at line 1141 of file q_shared.h.
#define CS_SKY 2 |
Definition at line 1127 of file q_shared.h.
#define CS_SKYAXIS 3 |
Definition at line 1128 of file q_shared.h.
#define CS_SKYROTATE 4 |
Definition at line 1129 of file q_shared.h.
#define CS_SOUNDS (CS_MODELS+MAX_MODELS) |
Definition at line 1137 of file q_shared.h.
#define CS_STATUSBAR 5 |
Definition at line 1130 of file q_shared.h.
#define CVAR |
Definition at line 307 of file q_shared.h.
#define CVAR_ARCHIVE 1 |
Definition at line 309 of file q_shared.h.
#define CVAR_LATCH 16 |
Definition at line 314 of file q_shared.h.
#define CVAR_NOSET 8 |
Definition at line 312 of file q_shared.h.
#define CVAR_SERVERINFO 4 |
Definition at line 311 of file q_shared.h.
#define CVAR_USERINFO 2 |
Definition at line 310 of file q_shared.h.
#define DF_ALLOW_EXIT 0x00001000 |
Definition at line 1060 of file q_shared.h.
#define DF_FIXED_FOV 0x00008000 |
Definition at line 1063 of file q_shared.h.
#define DF_FORCE_RESPAWN 0x00000400 |
Definition at line 1058 of file q_shared.h.
#define DF_INFINITE_AMMO 0x00002000 |
Definition at line 1061 of file q_shared.h.
#define DF_INSTANT_ITEMS 0x00000010 |
Definition at line 1052 of file q_shared.h.
#define DF_MODELTEAMS 0x00000080 |
Definition at line 1055 of file q_shared.h.
#define DF_NO_ARMOR 0x00000800 |
Definition at line 1059 of file q_shared.h.
#define DF_NO_FALLING 0x00000008 |
Definition at line 1051 of file q_shared.h.
#define DF_NO_FRIENDLY_FIRE 0x00000100 |
Definition at line 1056 of file q_shared.h.
#define DF_NO_HEALTH 0x00000001 |
Definition at line 1048 of file q_shared.h.
#define DF_NO_ITEMS 0x00000002 |
Definition at line 1049 of file q_shared.h.
#define DF_NO_MINES 0x00020000 |
Definition at line 1069 of file q_shared.h.
#define DF_NO_NUKES 0x00080000 |
Definition at line 1071 of file q_shared.h.
#define DF_NO_SPHERES 0x00100000 |
Definition at line 1072 of file q_shared.h.
#define DF_NO_STACK_DOUBLE 0x00040000 |
Definition at line 1070 of file q_shared.h.
#define DF_QUAD_DROP 0x00004000 |
Definition at line 1062 of file q_shared.h.
#define DF_QUADFIRE_DROP 0x00010000 |
Definition at line 1066 of file q_shared.h.
#define DF_SAME_LEVEL 0x00000020 |
Definition at line 1053 of file q_shared.h.
#define DF_SKINTEAMS 0x00000040 |
Definition at line 1054 of file q_shared.h.
#define DF_SPAWN_FARTHEST 0x00000200 |
Definition at line 1057 of file q_shared.h.
#define DF_WEAPONS_STAY 0x00000004 |
Definition at line 1050 of file q_shared.h.
Definition at line 155 of file q_shared.h.
#define EF_ANIM01 0x00000400 |
Definition at line 567 of file q_shared.h.
#define EF_ANIM23 0x00000800 |
Definition at line 568 of file q_shared.h.
#define EF_ANIM_ALL 0x00001000 |
Definition at line 569 of file q_shared.h.
#define EF_ANIM_ALLFAST 0x00002000 |
Definition at line 570 of file q_shared.h.
#define EF_BFG 0x00000080 |
Definition at line 564 of file q_shared.h.
#define EF_BLASTER 0x00000008 |
Definition at line 560 of file q_shared.h.
#define EF_BLUEHYPERBLASTER 0x00400000 |
Definition at line 580 of file q_shared.h.
#define EF_COLOR_SHELL 0x00000100 |
Definition at line 565 of file q_shared.h.
#define EF_DOUBLE 0x08000000 |
Definition at line 587 of file q_shared.h.
#define EF_FLAG1 0x00040000 |
Definition at line 575 of file q_shared.h.
#define EF_FLAG2 0x00080000 |
Definition at line 576 of file q_shared.h.
#define EF_FLIES 0x00004000 |
Definition at line 571 of file q_shared.h.
#define EF_GIB 0x00000002 |
Definition at line 559 of file q_shared.h.
#define EF_GREENGIB 0x00200000 |
Definition at line 579 of file q_shared.h.
#define EF_GRENADE 0x00000020 |
Definition at line 562 of file q_shared.h.
#define EF_HALF_DAMAGE 0x40000000 |
Definition at line 590 of file q_shared.h.
#define EF_HYPERBLASTER 0x00000040 |
Definition at line 563 of file q_shared.h.
#define EF_IONRIPPER 0x00100000 |
Definition at line 578 of file q_shared.h.
#define EF_PENT 0x00010000 |
Definition at line 573 of file q_shared.h.
#define EF_PLASMA 0x01000000 |
Definition at line 582 of file q_shared.h.
#define EF_POWERSCREEN 0x00000200 |
Definition at line 566 of file q_shared.h.
#define EF_QUAD 0x00008000 |
Definition at line 572 of file q_shared.h.
#define EF_ROCKET 0x00000010 |
Definition at line 561 of file q_shared.h.
#define EF_ROTATE 0x00000001 |
Definition at line 558 of file q_shared.h.
#define EF_SPHERETRANS 0x10000000 |
Definition at line 588 of file q_shared.h.
#define EF_SPINNINGLIGHTS 0x00800000 |
Definition at line 581 of file q_shared.h.
#define EF_TAGTRAIL 0x20000000 |
Definition at line 589 of file q_shared.h.
#define EF_TELEPORTER 0x00020000 |
Definition at line 574 of file q_shared.h.
#define EF_TRACKER 0x04000000 |
Definition at line 586 of file q_shared.h.
#define EF_TRACKERTRAIL 0x80000000 |
Definition at line 591 of file q_shared.h.
#define EF_TRAP 0x02000000 |
Definition at line 583 of file q_shared.h.
#define ERR_DISCONNECT 2 |
Definition at line 99 of file q_shared.h.
#define ERR_DROP 1 |
Definition at line 98 of file q_shared.h.
#define ERR_FATAL 0 |
Definition at line 97 of file q_shared.h.
#define id386 0 |
Definition at line 46 of file q_shared.h.
#define idaxp 0 |
Definition at line 52 of file q_shared.h.
#define LAST_VISIBLE_CONTENTS 64 |
Definition at line 346 of file q_shared.h.
#define M_PI 3.14159265358979323846 |
Definition at line 135 of file q_shared.h.
#define MASK_ALL (-1) |
Definition at line 390 of file q_shared.h.
#define MASK_CURRENT (CONTENTS_CURRENT_0|CONTENTS_CURRENT_90|CONTENTS_CURRENT_180|CONTENTS_CURRENT_270|CONTENTS_CURRENT_UP|CONTENTS_CURRENT_DOWN) |
Definition at line 398 of file q_shared.h.
#define MASK_DEADSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP|CONTENTS_WINDOW) |
Definition at line 393 of file q_shared.h.
#define MASK_MONSTERSOLID (CONTENTS_SOLID|CONTENTS_MONSTERCLIP|CONTENTS_WINDOW|CONTENTS_MONSTER) |
Definition at line 394 of file q_shared.h.
#define MASK_OPAQUE (CONTENTS_SOLID|CONTENTS_SLIME|CONTENTS_LAVA) |
Definition at line 396 of file q_shared.h.
#define MASK_PLAYERSOLID (CONTENTS_SOLID|CONTENTS_PLAYERCLIP|CONTENTS_WINDOW|CONTENTS_MONSTER) |
Definition at line 392 of file q_shared.h.
#define MASK_SHOT (CONTENTS_SOLID|CONTENTS_MONSTER|CONTENTS_WINDOW|CONTENTS_DEADMONSTER) |
Definition at line 397 of file q_shared.h.
#define MASK_SOLID (CONTENTS_SOLID|CONTENTS_WINDOW) |
Definition at line 391 of file q_shared.h.
#define MASK_WATER (CONTENTS_WATER|CONTENTS_LAVA|CONTENTS_SLIME) |
Definition at line 395 of file q_shared.h.
#define MAX_CLIENTS 256 |
Definition at line 79 of file q_shared.h.
#define MAX_CONFIGSTRINGS (CS_GENERAL+MAX_GENERAL) |
Definition at line 1143 of file q_shared.h.
#define MAX_EDICTS 1024 |
Definition at line 80 of file q_shared.h.
#define MAX_GENERAL (MAX_CLIENTS*2) |
Definition at line 86 of file q_shared.h.
#define MAX_IMAGES 256 |
Definition at line 84 of file q_shared.h.
#define MAX_INFO_KEY 64 |
Definition at line 250 of file q_shared.h.
#define MAX_INFO_STRING 512 |
Definition at line 252 of file q_shared.h.
#define MAX_INFO_VALUE 64 |
Definition at line 251 of file q_shared.h.
#define MAX_ITEMS 256 |
Definition at line 85 of file q_shared.h.
#define MAX_LIGHTSTYLES 256 |
Definition at line 81 of file q_shared.h.
#define MAX_MODELS 256 |
Definition at line 82 of file q_shared.h.
#define MAX_OSPATH 128 |
Definition at line 74 of file q_shared.h.
#define MAX_QPATH 64 |
Definition at line 73 of file q_shared.h.
#define MAX_SOUNDS 256 |
Definition at line 83 of file q_shared.h.
#define MAX_STATS 32 |
Definition at line 1044 of file q_shared.h.
#define MAX_STRING_CHARS 1024 |
Definition at line 69 of file q_shared.h.
#define MAX_STRING_TOKENS 80 |
Definition at line 70 of file q_shared.h.
#define MAX_TOKEN_CHARS 128 |
Definition at line 71 of file q_shared.h.
#define MAXTOUCH 32 |
Definition at line 524 of file q_shared.h.
#define MZ2_ACTOR_MACHINEGUN_1 63 |
Definition at line 765 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_L1 73 |
Definition at line 777 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_L2 74 |
Definition at line 778 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_L3 75 |
Definition at line 779 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_L4 76 |
Definition at line 780 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_L5 77 |
Definition at line 781 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_R1 133 |
Definition at line 841 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_R2 134 |
Definition at line 842 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_R3 135 |
Definition at line 843 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_R4 136 |
Definition at line 844 of file q_shared.h.
#define MZ2_BOSS2_MACHINEGUN_R5 137 |
Definition at line 845 of file q_shared.h.
#define MZ2_BOSS2_ROCKET_1 78 |
Definition at line 782 of file q_shared.h.
#define MZ2_BOSS2_ROCKET_2 79 |
Definition at line 783 of file q_shared.h.
#define MZ2_BOSS2_ROCKET_3 80 |
Definition at line 784 of file q_shared.h.
#define MZ2_BOSS2_ROCKET_4 81 |
Definition at line 785 of file q_shared.h.
#define MZ2_CARRIER_GRENADE 140 |
Definition at line 850 of file q_shared.h.
#define MZ2_CARRIER_MACHINEGUN_L1 138 |
Definition at line 848 of file q_shared.h.
#define MZ2_CARRIER_MACHINEGUN_L2 152 |
Definition at line 862 of file q_shared.h.
#define MZ2_CARRIER_MACHINEGUN_R1 139 |
Definition at line 849 of file q_shared.h.
#define MZ2_CARRIER_MACHINEGUN_R2 153 |
Definition at line 863 of file q_shared.h.
#define MZ2_CARRIER_RAILGUN 147 |
Definition at line 857 of file q_shared.h.
#define MZ2_CARRIER_ROCKET_1 191 |
Definition at line 901 of file q_shared.h.
#define MZ2_CARRIER_ROCKET_2 192 |
Definition at line 902 of file q_shared.h.
#define MZ2_CARRIER_ROCKET_3 193 |
Definition at line 903 of file q_shared.h.
#define MZ2_CARRIER_ROCKET_4 194 |
Definition at line 904 of file q_shared.h.
#define MZ2_CHICK_ROCKET_1 57 |
Definition at line 754 of file q_shared.h.
#define MZ2_DAEDALUS_BLASTER 145 |
Definition at line 855 of file q_shared.h.
#define MZ2_FLOAT_BLASTER_1 82 |
Definition at line 787 of file q_shared.h.
#define MZ2_FLYER_BLASTER_1 58 |
Definition at line 756 of file q_shared.h.
#define MZ2_FLYER_BLASTER_2 59 |
Definition at line 757 of file q_shared.h.
#define MZ2_GLADIATOR_RAILGUN_1 61 |
Definition at line 761 of file q_shared.h.
#define MZ2_GUNNER_GRENADE_1 53 |
Definition at line 749 of file q_shared.h.
#define MZ2_GUNNER_GRENADE_2 54 |
Definition at line 750 of file q_shared.h.
#define MZ2_GUNNER_GRENADE_3 55 |
Definition at line 751 of file q_shared.h.
#define MZ2_GUNNER_GRENADE_4 56 |
Definition at line 752 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_1 45 |
Definition at line 741 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_2 46 |
Definition at line 742 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_3 47 |
Definition at line 743 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_4 48 |
Definition at line 744 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_5 49 |
Definition at line 745 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_6 50 |
Definition at line 746 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_7 51 |
Definition at line 747 of file q_shared.h.
#define MZ2_GUNNER_MACHINEGUN_8 52 |
Definition at line 748 of file q_shared.h.
#define MZ2_HOVER_BLASTER_1 62 |
Definition at line 763 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_1 26 |
Definition at line 720 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_10 35 |
Definition at line 729 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_11 36 |
Definition at line 730 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_12 37 |
Definition at line 731 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_13 38 |
Definition at line 732 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_2 27 |
Definition at line 721 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_3 28 |
Definition at line 722 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_4 29 |
Definition at line 723 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_5 30 |
Definition at line 724 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_6 31 |
Definition at line 725 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_7 32 |
Definition at line 726 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_8 33 |
Definition at line 727 of file q_shared.h.
#define MZ2_INFANTRY_MACHINEGUN_9 34 |
Definition at line 728 of file q_shared.h.
#define MZ2_JORG_BFG_1 132 |
Definition at line 840 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L1 120 |
Definition at line 828 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L2 121 |
Definition at line 829 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L3 122 |
Definition at line 830 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L4 123 |
Definition at line 831 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L5 124 |
Definition at line 832 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_L6 125 |
Definition at line 833 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R1 126 |
Definition at line 834 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R2 127 |
Definition at line 835 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R3 128 |
Definition at line 836 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R4 129 |
Definition at line 837 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R5 130 |
Definition at line 838 of file q_shared.h.
#define MZ2_JORG_MACHINEGUN_R6 131 |
Definition at line 839 of file q_shared.h.
#define MZ2_MAKRON_BFG 101 |
Definition at line 809 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_1 102 |
Definition at line 810 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_10 111 |
Definition at line 819 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_11 112 |
Definition at line 820 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_12 113 |
Definition at line 821 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_13 114 |
Definition at line 822 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_14 115 |
Definition at line 823 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_15 116 |
Definition at line 824 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_16 117 |
Definition at line 825 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_17 118 |
Definition at line 826 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_2 103 |
Definition at line 811 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_3 104 |
Definition at line 812 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_4 105 |
Definition at line 813 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_5 106 |
Definition at line 814 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_6 107 |
Definition at line 815 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_7 108 |
Definition at line 816 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_8 109 |
Definition at line 817 of file q_shared.h.
#define MZ2_MAKRON_BLASTER_9 110 |
Definition at line 818 of file q_shared.h.
#define MZ2_MAKRON_RAILGUN_1 119 |
Definition at line 827 of file q_shared.h.
#define MZ2_MEDIC_BLASTER_1 60 |
Definition at line 759 of file q_shared.h.
#define MZ2_MEDIC_BLASTER_2 146 |
Definition at line 856 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_1 39 |
Definition at line 734 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_2 40 |
Definition at line 735 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_3 83 |
Definition at line 789 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_4 86 |
Definition at line 792 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_5 89 |
Definition at line 795 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_6 92 |
Definition at line 798 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_7 95 |
Definition at line 801 of file q_shared.h.
#define MZ2_SOLDIER_BLASTER_8 98 |
Definition at line 804 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_1 43 |
Definition at line 738 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_2 44 |
Definition at line 739 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_3 85 |
Definition at line 791 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_4 88 |
Definition at line 794 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_5 91 |
Definition at line 797 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_6 94 |
Definition at line 800 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_7 97 |
Definition at line 803 of file q_shared.h.
#define MZ2_SOLDIER_MACHINEGUN_8 100 |
Definition at line 806 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_1 41 |
Definition at line 736 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_2 42 |
Definition at line 737 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_3 84 |
Definition at line 790 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_4 87 |
Definition at line 793 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_5 90 |
Definition at line 796 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_6 93 |
Definition at line 799 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_7 96 |
Definition at line 802 of file q_shared.h.
#define MZ2_SOLDIER_SHOTGUN_8 99 |
Definition at line 805 of file q_shared.h.
#define MZ2_STALKER_BLASTER 144 |
Definition at line 854 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_1 64 |
Definition at line 767 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_2 65 |
Definition at line 768 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_3 66 |
Definition at line 769 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_4 67 |
Definition at line 770 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_5 68 |
Definition at line 771 of file q_shared.h.
#define MZ2_SUPERTANK_MACHINEGUN_6 69 |
Definition at line 772 of file q_shared.h.
#define MZ2_SUPERTANK_ROCKET_1 70 |
Definition at line 773 of file q_shared.h.
#define MZ2_SUPERTANK_ROCKET_2 71 |
Definition at line 774 of file q_shared.h.
#define MZ2_SUPERTANK_ROCKET_3 72 |
Definition at line 775 of file q_shared.h.
#define MZ2_TANK_BLASTER_1 1 |
Definition at line 694 of file q_shared.h.
#define MZ2_TANK_BLASTER_2 2 |
Definition at line 695 of file q_shared.h.
#define MZ2_TANK_BLASTER_3 3 |
Definition at line 696 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_1 4 |
Definition at line 697 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_10 13 |
Definition at line 706 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_11 14 |
Definition at line 707 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_12 15 |
Definition at line 708 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_13 16 |
Definition at line 709 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_14 17 |
Definition at line 710 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_15 18 |
Definition at line 711 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_16 19 |
Definition at line 712 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_17 20 |
Definition at line 713 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_18 21 |
Definition at line 714 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_19 22 |
Definition at line 715 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_2 5 |
Definition at line 698 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_3 6 |
Definition at line 699 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_4 7 |
Definition at line 700 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_5 8 |
Definition at line 701 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_6 9 |
Definition at line 702 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_7 10 |
Definition at line 703 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_8 11 |
Definition at line 704 of file q_shared.h.
#define MZ2_TANK_MACHINEGUN_9 12 |
Definition at line 705 of file q_shared.h.
#define MZ2_TANK_ROCKET_1 23 |
Definition at line 716 of file q_shared.h.
#define MZ2_TANK_ROCKET_2 24 |
Definition at line 717 of file q_shared.h.
#define MZ2_TANK_ROCKET_3 25 |
Definition at line 718 of file q_shared.h.
#define MZ2_TURRET_BLASTER 143 |
Definition at line 853 of file q_shared.h.
#define MZ2_TURRET_MACHINEGUN 141 |
Definition at line 851 of file q_shared.h.
#define MZ2_TURRET_ROCKET 142 |
Definition at line 852 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_1 200 |
Definition at line 910 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_10 209 |
Definition at line 919 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_11 210 |
Definition at line 920 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_2 201 |
Definition at line 911 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_3 202 |
Definition at line 912 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_4 203 |
Definition at line 913 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_5 204 |
Definition at line 914 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_6 205 |
Definition at line 915 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_7 206 |
Definition at line 916 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_8 207 |
Definition at line 917 of file q_shared.h.
#define MZ2_WIDOW2_BEAM_SWEEP_9 208 |
Definition at line 918 of file q_shared.h.
#define MZ2_WIDOW2_BEAMER_1 195 |
Definition at line 905 of file q_shared.h.
#define MZ2_WIDOW2_BEAMER_2 196 |
Definition at line 906 of file q_shared.h.
#define MZ2_WIDOW2_BEAMER_3 197 |
Definition at line 907 of file q_shared.h.
#define MZ2_WIDOW2_BEAMER_4 198 |
Definition at line 908 of file q_shared.h.
#define MZ2_WIDOW2_BEAMER_5 199 |
Definition at line 909 of file q_shared.h.
#define MZ2_WIDOW_BLASTER 149 |
Definition at line 859 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_0 175 |
Definition at line 885 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_10 174 |
Definition at line 884 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_100 165 |
Definition at line 875 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_10L 176 |
Definition at line 886 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_20 173 |
Definition at line 883 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_20L 177 |
Definition at line 887 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_30 172 |
Definition at line 882 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_30L 178 |
Definition at line 888 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_40 171 |
Definition at line 881 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_40L 179 |
Definition at line 889 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_50 170 |
Definition at line 880 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_50L 180 |
Definition at line 890 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_60 169 |
Definition at line 879 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_60L 181 |
Definition at line 891 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_70 168 |
Definition at line 878 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_70L 182 |
Definition at line 892 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_80 167 |
Definition at line 877 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_90 166 |
Definition at line 876 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP1 156 |
Definition at line 866 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP2 157 |
Definition at line 867 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP3 158 |
Definition at line 868 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP4 159 |
Definition at line 869 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP5 160 |
Definition at line 870 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP6 161 |
Definition at line 871 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP7 162 |
Definition at line 872 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP8 163 |
Definition at line 873 of file q_shared.h.
#define MZ2_WIDOW_BLASTER_SWEEP9 164 |
Definition at line 874 of file q_shared.h.
#define MZ2_WIDOW_DISRUPTOR 148 |
Definition at line 858 of file q_shared.h.
#define MZ2_WIDOW_PLASMABEAM 151 |
Definition at line 861 of file q_shared.h.
#define MZ2_WIDOW_RAIL 150 |
Definition at line 860 of file q_shared.h.
#define MZ2_WIDOW_RAIL_LEFT 154 |
Definition at line 864 of file q_shared.h.
#define MZ2_WIDOW_RAIL_RIGHT 155 |
Definition at line 865 of file q_shared.h.
#define MZ2_WIDOW_RUN_1 183 |
Definition at line 893 of file q_shared.h.
#define MZ2_WIDOW_RUN_2 184 |
Definition at line 894 of file q_shared.h.
#define MZ2_WIDOW_RUN_3 185 |
Definition at line 895 of file q_shared.h.
#define MZ2_WIDOW_RUN_4 186 |
Definition at line 896 of file q_shared.h.
#define MZ2_WIDOW_RUN_5 187 |
Definition at line 897 of file q_shared.h.
#define MZ2_WIDOW_RUN_6 188 |
Definition at line 898 of file q_shared.h.
#define MZ2_WIDOW_RUN_7 189 |
Definition at line 899 of file q_shared.h.
#define MZ2_WIDOW_RUN_8 190 |
Definition at line 900 of file q_shared.h.
#define MZ_BFG 12 |
Definition at line 668 of file q_shared.h.
#define MZ_BLASTER 0 |
Definition at line 656 of file q_shared.h.
#define MZ_BLASTER2 34 |
Definition at line 683 of file q_shared.h.
#define MZ_BLUEHYPERBLASTER 17 |
Definition at line 674 of file q_shared.h.
#define MZ_CHAINGUN1 3 |
Definition at line 659 of file q_shared.h.
#define MZ_CHAINGUN2 4 |
Definition at line 660 of file q_shared.h.
#define MZ_CHAINGUN3 5 |
Definition at line 661 of file q_shared.h.
#define MZ_ETF_RIFLE 30 |
Definition at line 679 of file q_shared.h.
#define MZ_GRENADE 8 |
Definition at line 664 of file q_shared.h.
#define MZ_HEATBEAM 33 |
Definition at line 682 of file q_shared.h.
#define MZ_HYPERBLASTER 14 |
Definition at line 670 of file q_shared.h.
#define MZ_IONRIPPER 16 |
Definition at line 673 of file q_shared.h.
#define MZ_ITEMRESPAWN 15 |
Definition at line 671 of file q_shared.h.
#define MZ_LOGIN 9 |
Definition at line 665 of file q_shared.h.
#define MZ_LOGOUT 10 |
Definition at line 666 of file q_shared.h.
#define MZ_MACHINEGUN 1 |
Definition at line 657 of file q_shared.h.
#define MZ_NUKE1 36 |
Definition at line 685 of file q_shared.h.
#define MZ_NUKE2 37 |
Definition at line 686 of file q_shared.h.
#define MZ_NUKE4 38 |
Definition at line 687 of file q_shared.h.
#define MZ_NUKE8 39 |
Definition at line 688 of file q_shared.h.
#define MZ_PHALANX 18 |
Definition at line 675 of file q_shared.h.
#define MZ_RAILGUN 6 |
Definition at line 662 of file q_shared.h.
#define MZ_RESPAWN 11 |
Definition at line 667 of file q_shared.h.
#define MZ_ROCKET 7 |
Definition at line 663 of file q_shared.h.
#define MZ_SHOTGUN 2 |
Definition at line 658 of file q_shared.h.
#define MZ_SHOTGUN2 32 |
Definition at line 681 of file q_shared.h.
#define MZ_SILENCED 128 |
Definition at line 676 of file q_shared.h.
#define MZ_SSHOTGUN 13 |
Definition at line 669 of file q_shared.h.
#define MZ_TRACKER 35 |
Definition at line 684 of file q_shared.h.
#define MZ_UNUSED 31 |
Definition at line 680 of file q_shared.h.
#define nanmask (255<<23) |
Definition at line 142 of file q_shared.h.
#define NULL ((void *)0) |
Definition at line 60 of file q_shared.h.
#define PITCH 0 |
Definition at line 65 of file q_shared.h.
#define PMF_DUCKED 1 |
Definition at line 477 of file q_shared.h.
#define PMF_JUMP_HELD 2 |
Definition at line 478 of file q_shared.h.
#define PMF_NO_PREDICTION 64 |
Definition at line 483 of file q_shared.h.
#define PMF_ON_GROUND 4 |
Definition at line 479 of file q_shared.h.
#define PMF_TIME_LAND 16 |
Definition at line 481 of file q_shared.h.
#define PMF_TIME_TELEPORT 32 |
Definition at line 482 of file q_shared.h.
#define PMF_TIME_WATERJUMP 8 |
Definition at line 480 of file q_shared.h.
#define PRINT_ALERT 2 |
Definition at line 103 of file q_shared.h.
#define PRINT_ALL 0 |
Definition at line 101 of file q_shared.h.
#define PRINT_CHAT 3 |
Definition at line 93 of file q_shared.h.
#define PRINT_DEVELOPER 1 |
Definition at line 102 of file q_shared.h.
#define PRINT_HIGH 2 |
Definition at line 92 of file q_shared.h.
#define PRINT_LOW 0 |
Definition at line 90 of file q_shared.h.
#define PRINT_MEDIUM 1 |
Definition at line 91 of file q_shared.h.
#define RDF_IRGOGGLES 4 |
Definition at line 649 of file q_shared.h.
#define RDF_NOWORLDMODEL 2 |
Definition at line 646 of file q_shared.h.
#define RDF_UNDERWATER 1 |
Definition at line 645 of file q_shared.h.
#define RDF_UVGOGGLES 8 |
Definition at line 650 of file q_shared.h.
#define RF_BEAM 128 |
Definition at line 620 of file q_shared.h.
#define RF_CUSTOMSKIN 256 |
Definition at line 621 of file q_shared.h.
#define RF_DEPTHHACK 16 |
Definition at line 617 of file q_shared.h.
#define RF_FRAMELERP 64 |
Definition at line 619 of file q_shared.h.
#define RF_FULLBRIGHT 8 |
Definition at line 616 of file q_shared.h.
#define RF_GLOW 512 |
Definition at line 622 of file q_shared.h.
#define RF_IR_VISIBLE 0x00008000 |
Definition at line 629 of file q_shared.h.
#define RF_MINLIGHT 1 |
Definition at line 613 of file q_shared.h.
#define RF_NOSHADOW 8192 /* don't draw a shadow */ |
Definition at line 626 of file q_shared.h.
#define RF_SHELL_BLUE 4096 |
Definition at line 625 of file q_shared.h.
#define RF_SHELL_DOUBLE 0x00010000 |
Definition at line 630 of file q_shared.h.
#define RF_SHELL_GREEN 2048 |
Definition at line 624 of file q_shared.h.
#define RF_SHELL_HALF_DAM 0x00020000 |
Definition at line 631 of file q_shared.h.
#define RF_SHELL_RED 1024 |
Definition at line 623 of file q_shared.h.
#define RF_TRANSLUCENT 32 |
Definition at line 618 of file q_shared.h.
#define RF_USE_DISGUISE 0x00040000 |
Definition at line 632 of file q_shared.h.
#define RF_VIEWERMODEL 2 |
Definition at line 614 of file q_shared.h.
#define RF_WEAPONMODEL 4 |
Definition at line 615 of file q_shared.h.
#define ROGUE_VERSION_ID 1278 |
Definition at line 1103 of file q_shared.h.
#define ROGUE_VERSION_STRING "08/21/1998 Beta 2 for Ensemble" |
Definition at line 1105 of file q_shared.h.
#define ROLL 2 |
Definition at line 67 of file q_shared.h.
#define SFF_ARCH 0x01 |
Definition at line 279 of file q_shared.h.
#define SFF_HIDDEN 0x02 |
Definition at line 280 of file q_shared.h.
#define SFF_RDONLY 0x04 |
Definition at line 281 of file q_shared.h.
#define SFF_SUBDIR 0x08 |
Definition at line 282 of file q_shared.h.
#define SFF_SYSTEM 0x10 |
Definition at line 283 of file q_shared.h.
Definition at line 1117 of file q_shared.h.
#define SPLASH_BLOOD 6 |
Definition at line 1001 of file q_shared.h.
#define SPLASH_BLUE_WATER 2 |
Definition at line 997 of file q_shared.h.
#define SPLASH_BROWN_WATER 3 |
Definition at line 998 of file q_shared.h.
#define SPLASH_LAVA 5 |
Definition at line 1000 of file q_shared.h.
#define SPLASH_SLIME 4 |
Definition at line 999 of file q_shared.h.
#define SPLASH_SPARKS 1 |
Definition at line 996 of file q_shared.h.
#define SPLASH_UNKNOWN 0 |
Definition at line 995 of file q_shared.h.
#define STAT_AMMO 3 |
Definition at line 1028 of file q_shared.h.
#define STAT_AMMO_ICON 2 |
Definition at line 1027 of file q_shared.h.
#define STAT_ARMOR 5 |
Definition at line 1030 of file q_shared.h.
#define STAT_ARMOR_ICON 4 |
Definition at line 1029 of file q_shared.h.
#define STAT_CHASE 16 |
Definition at line 1041 of file q_shared.h.
#define STAT_FLASHES 15 |
Definition at line 1040 of file q_shared.h.
#define STAT_FRAGS 14 |
Definition at line 1039 of file q_shared.h.
#define STAT_HEALTH 1 |
Definition at line 1026 of file q_shared.h.
#define STAT_HEALTH_ICON 0 |
Definition at line 1025 of file q_shared.h.
#define STAT_HELPICON 11 |
Definition at line 1036 of file q_shared.h.
#define STAT_LAYOUTS 13 |
Definition at line 1038 of file q_shared.h.
#define STAT_PICKUP_ICON 7 |
Definition at line 1032 of file q_shared.h.
#define STAT_PICKUP_STRING 8 |
Definition at line 1033 of file q_shared.h.
#define STAT_SELECTED_ICON 6 |
Definition at line 1031 of file q_shared.h.
#define STAT_SELECTED_ITEM 12 |
Definition at line 1037 of file q_shared.h.
#define STAT_SPECTATOR 17 |
Definition at line 1042 of file q_shared.h.
#define STAT_TIMER 10 |
Definition at line 1035 of file q_shared.h.
#define STAT_TIMER_ICON 9 |
Definition at line 1034 of file q_shared.h.
#define SURF_FLOWING 0x40 |
Definition at line 381 of file q_shared.h.
#define SURF_LIGHT 0x1 |
Definition at line 373 of file q_shared.h.
#define SURF_NODRAW 0x80 |
Definition at line 382 of file q_shared.h.
#define SURF_SKY 0x4 |
Definition at line 377 of file q_shared.h.
#define SURF_SLICK 0x2 |
Definition at line 375 of file q_shared.h.
#define SURF_TRANS33 0x10 |
Definition at line 379 of file q_shared.h.
#define SURF_TRANS66 0x20 |
Definition at line 380 of file q_shared.h.
#define SURF_WARP 0x8 |
Definition at line 378 of file q_shared.h.
#define VectorAdd | ( | a, | |
b, | |||
c | |||
) | (c[0]=a[0]+b[0],c[1]=a[1]+b[1],c[2]=a[2]+b[2]) |
Definition at line 157 of file q_shared.h.
#define VectorClear | ( | a | ) | (a[0]=a[1]=a[2]=0) |
Definition at line 159 of file q_shared.h.
#define VectorCopy | ( | a, | |
b | |||
) | (b[0]=a[0],b[1]=a[1],b[2]=a[2]) |
Definition at line 158 of file q_shared.h.
#define VectorNegate | ( | a, | |
b | |||
) | (b[0]=-a[0],b[1]=-a[1],b[2]=-a[2]) |
Definition at line 160 of file q_shared.h.
Definition at line 161 of file q_shared.h.
#define VectorSubtract | ( | a, | |
b, | |||
c | |||
) | (c[0]=a[0]-b[0],c[1]=a[1]-b[1],c[2]=a[2]-b[2]) |
Definition at line 156 of file q_shared.h.
#define VIDREF_GL 1 |
Definition at line 1226 of file q_shared.h.
#define VIDREF_OTHER 3 |
Definition at line 1228 of file q_shared.h.
#define VIDREF_SOFT 2 |
Definition at line 1227 of file q_shared.h.
#define vsnprintf _vsnprintf |
Definition at line 32 of file q_shared.h.
#define YAW 1 |
Definition at line 66 of file q_shared.h.
typedef unsigned char byte |
Definition at line 55 of file q_shared.h.
typedef struct csurface_s csurface_t |
typedef struct entity_state_s entity_state_t |
Definition at line 132 of file q_shared.h.
Definition at line 130 of file q_shared.h.
Definition at line 131 of file q_shared.h.
typedef struct mapsurface_s mapsurface_t |
typedef vec_t vec3_t[3] |
Definition at line 127 of file q_shared.h.
typedef vec_t vec5_t[5] |
Definition at line 128 of file q_shared.h.
typedef float vec_t |
Definition at line 126 of file q_shared.h.
enum entity_event_t |
Enumerator | |
---|---|
EV_NONE | |
EV_ITEM_RESPAWN | |
EV_FOOTSTEP | |
EV_FALLSHORT | |
EV_FALL | |
EV_FALLFAR | |
EV_PLAYER_TELEPORT | |
EV_OTHER_TELEPORT |
Definition at line 1153 of file q_shared.h.
enum multicast_t |
Enumerator | |
---|---|
MULTICAST_ALL | |
MULTICAST_PHS | |
MULTICAST_PVS | |
MULTICAST_ALL_R | |
MULTICAST_PHS_R | |
MULTICAST_PVS_R |
Definition at line 107 of file q_shared.h.
enum pmtype_t |
Enumerator | |
---|---|
PM_NORMAL | |
PM_SPECTATOR | |
PM_DEAD | |
PM_GIB | |
PM_FREEZE |
Definition at line 465 of file q_shared.h.
enum qboolean |
enum temp_event_t |
Definition at line 933 of file q_shared.h.
Definition at line 727 of file q_shared.c.
Referenced by Touch_Multi().
Definition at line 739 of file q_shared.c.
Definition at line 746 of file q_shared.c.
Definition at line 732 of file q_shared.c.
float anglemod | ( | float | a | ) |
Definition at line 293 of file q_shared.c.
Referenced by CL_AddPacketEntities(), CL_ParseTEnt(), FacingIdeal(), M_ChangeYaw(), pLensFlareThink(), SCR_DrawCrosshair(), and SV_NewChaseDir().
Definition at line 93 of file q_shared.c.
Referenced by actorMachineGun(), ai_run(), Blaster_Fire(), boss2_firebullet_left(), boss2_firebullet_right(), Boss2Rocket(), Chaingun_Fire(), CheckPowerArmor(), ChickRocket(), CL_AddPacketEntities(), CL_AddPlayerBeams(), CL_BlasterTracer(), CL_CalcViewValues(), CL_LaserStun(), CL_ParseMuzzleFlash(), CL_ParseMuzzleFlash2(), CL_Tracer(), CL_TrackerTrail(), ClientEndServerFrame(), CM_TransformedBoxTrace(), CM_TransformedPointContents(), Drop_Item(), fire_grenade(), fire_grenade2(), fire_hit(), fire_lead(), floater_fire_blaster(), floater_zap(), flyer_fire(), G_SetMovedir(), gib_touch(), GL_DrawAliasFrameLerp(), GladiatorGun(), GunnerFire(), GunnerGrenade(), hover_fire_blaster(), InfantryMachineGun(), infront(), jorg_firebullet_left(), jorg_firebullet_right(), jorgBFG(), Machinegun_Fire(), makronBFG(), MakronHyperblaster(), MakronRailgun(), medic_cable_attack(), medic_fire_blaster(), mutant_jump_takeoff(), parasite_drain_attack(), PM_ClampAngles(), Pmove(), R_AliasSetUpLerpData(), R_AliasSetUpTransform(), R_CullAliasModel(), R_DrawBrushModel(), R_DrawSpriteModel(), R_SetupFrame(), RotatedBBox(), soldier_fire(), SP_func_door_secret(), supertankMachineGun(), supertankRocket(), SV_Push(), TankBlaster(), TankMachineGun(), TankRocket(), Touch_Multi(), turret_breach_fire(), UpdateChaseCam(), weapon_bfg_fire(), weapon_grenade_fire(), weapon_grenadelauncher_fire(), weapon_railgun_fire(), Weapon_RocketLauncher_Fire(), weapon_shotgun_fire(), and weapon_supershotgun_fire().
float BigFloat | ( | float | l | ) |
Definition at line 949 of file q_shared.c.
Definition at line 947 of file q_shared.c.
short BigShort | ( | short | l | ) |
Definition at line 945 of file q_shared.c.
Definition at line 349 of file q_shared.c.
Definition at line 650 of file q_shared.c.
void COM_DefaultExtension | ( | char * | path, |
char * | extension | ||
) |
Definition at line 907 of file q_shared.c.
void COM_FileBase | ( | char * | in, |
char * | out | ||
) |
Definition at line 859 of file q_shared.c.
void COM_FilePath | ( | char * | in, |
char * | out | ||
) |
Definition at line 1161 of file q_shared.c.
Referenced by R_EndRegistration(), R_FreeUnusedImages(), and S_EndRegistration().
char* COM_Parse | ( | char ** | data_p | ) |
Definition at line 1072 of file q_shared.c.
Referenced by Cmd_MacroExpandString(), Cmd_TokenizeString(), ED_ParseEdict(), SCR_ExecuteLayoutString(), SpawnEntities(), and StartServer_MenuInit().
void Com_Printf | ( | char * | msg, |
... | |||
) |
Definition at line 102 of file common.c.
Referenced by Cbuf_AddText(), CDAudio_Play2(), CDAudio_RandomPlay(), CL_AddEntities(), CL_Changing_f(), CL_CheckForResend(), CL_CheckOrDownloadFile(), CL_CheckPredictionError(), CL_Connect_f(), CL_ConnectionlessPacket(), CL_Disconnect(), CL_Download_f(), CL_DumpPackets(), CL_ForwardToServer_f(), CL_KeyState(), CL_Packet_f(), CL_ParseBeam(), CL_ParseBeam2(), CL_ParseDownload(), CL_ParseFrame(), CL_ParseLightning(), CL_ParsePacketEntities(), CL_ParsePlayerBeam(), CL_ParseServerData(), CL_ParseServerMessage(), CL_ParseStatusMessage(), CL_PingServers_f(), CL_PredictMovement(), CL_PrepRefresh(), CL_Rcon_f(), CL_ReadPackets(), CL_Reconnect_f(), CL_Record_f(), CL_SendConnectPacket(), CL_Setenv_f(), CL_Skins_f(), CL_Stop_f(), CL_Userinfo_f(), CL_WriteConfiguration(), Cmd_AddCommand(), Cmd_Alias_f(), Cmd_Echo_f(), Cmd_Exec_f(), Cmd_ExecuteString(), Cmd_ForwardToServer(), Cmd_List_f(), Cmd_MacroExpandString(), Cmd_RemoveCommand(), Com_DPrintf(), Com_Error(), Com_MDPrintf(), Com_sprintf(), Con_Dump_f(), Con_Init(), Cvar_Command(), Cvar_Get(), Cvar_List_f(), Cvar_Set2(), Cvar_Set_f(), DS_CreateBuffers(), DumpChunks(), FS_AddHomeAsGameDirectory(), FS_Dir_f(), FS_Link_f(), FS_LoadPackFile(), FS_Path_f(), FS_SetGamedir(), GetWavinfo(), Huff1Decompress(), IN_StartupJoystick(), Info_Print(), Info_SetValueForKey(), Joy_AdvancedUpdate_f(), Key_Bind_f(), Key_Bindlist_f(), Key_Console(), Key_Event(), Key_Unbind_f(), KeyDown(), Master_Heartbeat(), Master_Shutdown(), NET_GetPacket(), NET_Init(), NET_IPSocket(), NET_IPXSocket(), NET_SendPacket(), Netchan_Process(), Netchan_Transmit(), PF_cprintf(), PF_dprintf(), PrintPmove(), Qcommon_Frame(), Qcommon_Init(), S_Init(), S_IssuePlaysound(), S_LoadSound(), S_SoundInfo_f(), S_SoundList(), S_StartLocalSound(), S_Update(), SCR_CenterPrint(), SCR_LoadPCX(), SCR_PlayCinematic(), SCR_RunCinematic(), SCR_Sky_f(), SCR_TimeRefresh_f(), SCR_UpdateScreen(), SHOWNET(), SNDDMA_BeginPainting(), SNDDMA_Init(), SNDDMA_InitDirect(), SNDDMA_InitWav(), SNDDMA_Submit(), SV_AreaEdicts_r(), SV_Baselines_f(), SV_Begin_f(), SV_BroadcastPrintf(), SV_Configstrings_f(), SV_ConnectionlessPacket(), SV_DumpUser_f(), SV_ExecuteClientMessage(), SV_Frame(), SV_GameMap_f(), SV_InitGame(), SV_Kick_f(), SV_Loadgame_f(), SV_Map_f(), SV_New_f(), SV_ReadLevelFile(), SV_ReadPackets(), SV_ReadServerFile(), SV_RunGameFrame(), SV_Savegame_f(), SV_SendClientDatagram(), SV_ServerCommand_f(), SV_Serverinfo_f(), SV_ServerRecord_f(), SV_ServerStop_f(), SV_SetMaster_f(), SV_SetPlayer(), SV_SpawnServer(), SV_Status_f(), SV_WriteLevelFile(), SV_WriteServerFile(), SVC_Ack(), SVC_DirectConnect(), SVC_RemoteCommand(), SVC_Status(), SZ_GetSpace(), V_Gun_Next_f(), V_Gun_Prev_f(), V_RenderView(), V_Viewpos_f(), VID_LoadRefresh(), VID_Printf(), and Z_Stats_f().
char* COM_SkipPath | ( | char * | pathname | ) |
Definition at line 807 of file q_shared.c.
Definition at line 1236 of file q_shared.c.
Referenced by AddressBook_MenuInit(), AddressBook_MenuKey(), ApplyChanges(), CL_Download_f(), CL_DownloadFileName(), CL_DrawInventory(), CL_LoadClientinfo(), CL_ParseMuzzleFlash(), CL_ParseMuzzleFlash2(), CL_PingServers_f(), CL_Record_f(), CL_RegisterTEntSounds(), CL_RequestNextDownload(), CL_WriteConfiguration(), Cmd_PlayerList_f(), Cmd_Players_f(), Cmd_Say_f(), Com_Printf(), Con_DrawConsole(), Con_Dump_f(), Create_Savestrings(), CreateTargetChangeLevel(), Cvar_SetValue(), Cvar_WriteVariables(), DeathmatchScoreboardMessage(), DMFlagCallback(), Draw_FindPic(), ExitLevel(), FS_AddGameDirectory(), FS_Dir_f(), FS_ExecAutoexec(), FS_FOpenFile(), func_clock_format_countdown(), func_clock_think(), GL_ScreenShot_f(), GLimp_EnableLogging(), HelpComputer(), Info_SetValueForKey(), InitGame(), JoinServerFunc(), Key_Event(), Keys_MenuKey(), M_AddToServerList(), M_DrawCursor(), Mod_LoadTexinfo(), NET_AdrToString(), PlayerConfig_MenuDraw(), PlayerConfig_MenuKey(), PlayerConfig_ScanDirectories(), QGL_Init(), R_BeginFrame(), R_BeginRegistration(), R_ScreenShot_f(), R_SetSky(), S_LoadSound(), S_RegisterSexedModel(), S_RegisterSexedSound(), SCR_DrawField(), SCR_PlayCinematic(), SCR_TouchPics(), SP_target_speaker(), StartServer_MenuInit(), SV_BeginDemoserver(), SV_CheckForSavegame(), SV_CopySaveGame(), SV_InitGame(), SV_Loadgame_f(), SV_Map_f(), SV_ReadLevelFile(), SV_ReadServerFile(), SV_ServerRecord_f(), SV_SpawnServer(), SV_StatusString(), SV_WipeSavegame(), SV_WriteLevelFile(), SV_WriteServerFile(), SVC_Info(), Sys_FindFirst(), Sys_FindNext(), Sys_GetGameAPI(), V_Gun_Model_f(), VID_CheckChanges(), and vtos().
void COM_StripExtension | ( | char * | in, |
char * | out | ||
) |
Definition at line 826 of file q_shared.c.
Definition at line 753 of file q_shared.c.
Referenced by MakeNormalVectors(), PM_StepSlideMove_(), R_IMFlatShadedQuad(), RotatePointAroundVector(), and SV_FlyMove().
void Info_RemoveKey | ( | char * | s, |
char * | key | ||
) |
void Info_SetValueForKey | ( | char * | s, |
char * | key, | ||
char * | value | ||
) |
Definition at line 1375 of file q_shared.c.
Referenced by ClientConnect(), Cvar_BitInfo(), and SVC_DirectConnect().
qboolean Info_Validate | ( | char * | s | ) |
char* Info_ValueForKey | ( | char * | s, |
char * | key | ||
) |
Definition at line 1266 of file q_shared.c.
Referenced by ClientConnect(), ClientTeam(), ClientUserinfoChanged(), IsFemale(), IsNeutral(), PutClientInServer(), spectator_respawn(), SV_UserinfoChanged(), and SVC_DirectConnect().
float LerpAngle | ( | float | a1, |
float | a2, | ||
float | frac | ||
) |
Definition at line 283 of file q_shared.c.
Referenced by CL_AddPacketEntities(), CL_AddViewWeapon(), and CL_CalcViewValues().
float LittleFloat | ( | float | l | ) |
Definition at line 950 of file q_shared.c.
Definition at line 948 of file q_shared.c.
short LittleShort | ( | short | l | ) |
Definition at line 946 of file q_shared.c.
Definition at line 152 of file q_shared.c.
Referenced by R_DrawBeam(), and RotatePointAroundVector().
long Q_ftol | ( | float | f | ) |
Referenced by EmitWaterPolys(), R_AddDynamicLights(), and R_BuildLightMap().
Definition at line 790 of file q_shared.c.
int Q_strcasecmp | ( | char * | s1, |
char * | s2 | ||
) |
Definition at line 1229 of file q_shared.c.
Referenced by CDAudio_RandomPlay(), CL_AddPacketEntities(), Cmd_ExecuteString(), FS_FOpenFile(), and Key_StringToKeynum().
int Q_stricmp | ( | char * | s1, |
char * | s2 | ||
) |
Definition at line 1192 of file q_shared.c.
Referenced by CheckNeedPass(), CL_DrawInventory(), CL_FixUpGender(), CL_LoadClientinfo(), ClientCommand(), Cmd_Give_f(), door_use_areaportals(), ED_ParseField(), EndDMLevel(), FindItem(), FindItemByClassname(), G_Find(), G_UseTargets(), GL_TextureAlphaMode(), GL_TextureMode(), GL_TextureSolidMode(), JoinServerFunc(), PlayerConfig_MenuInit(), R_BeginFrame(), SelectCoopSpawnPoint(), SelectSpawnPoint(), ServerCommand(), SP_CreateCoopSpots(), SP_FixCoopSpots(), SP_info_player_coop(), SP_info_player_start(), SP_monster_flyer(), SP_target_changelevel(), SP_target_secret(), SpawnEntities(), StartServerActionFunc(), and SV_Map().
void R_ConcatRotations | ( | float | in1[3][3], |
float | in2[3][3], | ||
float | out[3][3] | ||
) |
Definition at line 191 of file q_shared.c.
Referenced by R_RotateBmodel(), and RotatePointAroundVector().
void R_ConcatTransforms | ( | float | in1[3][4], |
float | in2[3][4], | ||
float | out[3][4] | ||
) |
void Sys_Error | ( | char * | error, |
... | |||
) |
Definition at line 206 of file q_shwin.c.
Referenced by FS_ExecAutoexec(), FS_ListFiles(), PlayerConfig_ScanDirectories(), SV_CopySaveGame(), and SV_WipeSavegame().
char* Sys_FindFirst | ( | char * | path, |
unsigned | musthave, | ||
unsigned | canthave | ||
) |
Definition at line 173 of file q_shwin.c.
Referenced by FS_ExecAutoexec(), FS_ListFiles(), PlayerConfig_ScanDirectories(), SV_CopySaveGame(), and SV_WipeSavegame().
char* Sys_FindNext | ( | unsigned | musthave, |
unsigned | canthave | ||
) |
Definition at line 191 of file q_shwin.c.
Referenced by FS_ListFiles(), SV_CopySaveGame(), and SV_WipeSavegame().
Definition at line 120 of file q_shwin.c.
Referenced by CL_Disconnect(), CL_Frame(), CL_InitLocal(), Field_Draw(), KeyCursorDrawFunc(), Menu_Draw(), Netchan_Init(), Qcommon_Frame(), R_EdgeDrawing(), R_PrintDSpeeds(), R_PrintTimes(), R_RenderFrame(), SCR_BeginLoadingPlaque(), SCR_PlayCinematic(), SCR_TimeRefresh_f(), SCR_UpdateScreen(), SV_RunGameFrame(), V_RenderView(), and WinMain().
void Sys_Mkdir | ( | char * | path | ) |
Definition at line 135 of file q_shwin.c.
Referenced by FS_CreatePath(), GL_ScreenShot_f(), and R_ScreenShot_f().
char* va | ( | char * | format, |
... | |||
) |
Definition at line 1050 of file q_shared.c.
Referenced by Cbuf_AddEarlyCommands(), CheckNeedPass(), CL_CheckOrDownloadFile(), CL_Connect_f(), CL_Download_f(), CL_PingServers_f(), CL_RequestNextDownload(), ClientUserinfoChanged(), Cmd_ExecuteString(), Com_Error(), FS_InitFilesystem(), FS_SetGamedir(), insane_die(), insane_pain(), LoadGameCallback(), NET_OpenIP(), NET_OpenIPX(), Netchan_Init(), P_DamageFeedback(), player_die(), Qcommon_Frame(), Qcommon_Init(), SaveGameCallback(), SCR_ExecuteLayoutString(), SCR_FinishCinematic(), SP_worldspawn(), SpawnEntities(), StartServerActionFunc(), SV_Baselines_f(), SV_Configstrings_f(), SV_GameMap_f(), SV_Init(), SV_InitGame(), SV_Map(), and SV_New_f().
Definition at line 672 of file q_shared.c.
Referenced by AngleMove_Final(), CL_AddPlayerBeams(), door_secret_use(), fire_lead(), G_SetMovedir(), InitTrigger(), rotating_use(), SP_trigger_multiple(), SV_FlyMove(), target_laser_think(), and Touch_Multi().
Definition at line 775 of file q_shared.c.
Referenced by R_AliasSetUpTransform(), and R_DrawSprite().
Definition at line 762 of file q_shared.c.
Referenced by ai_run(), AngleMove_Begin(), bfg_explode(), boss2_attack(), check_dodge(), CL_AddPlayerBeams(), CL_BfgParticles(), findradius(), FindTarget(), fire_hit(), gladiator_attack(), Grenade_Explode(), jorg_attack(), makron_attack(), medic_cable_attack(), Mod_LoadTexinfo(), mutant_check_jump(), mutant_jump_touch(), parasite_drain_attack_ok(), pBFGThink(), pBlasterThink(), pDevRailThink(), PlayersRangeFromSpot(), PM_DeadMove(), PM_FlyMove(), R_LightPoint(), R_RenderDlight(), RadiusFromBounds(), range(), SP_FixCoopSpots(), supertank_attack(), SV_BuildClientFrame(), T_RadiusDamage(), tank_attack(), and turret_driver_link().
Definition at line 719 of file q_shared.c.
Referenced by actorMachineGun(), barrel_explode(), bfg_explode(), bfg_think(), bfg_touch(), boss2_firebullet_left(), boss2_firebullet_right(), check_dodge(), CL_AddPacketEntities(), CL_AddPlayerBeams(), CL_Heatbeam(), CL_MonsterPlasma_Shell(), CL_Nukeblast(), CL_ParseMuzzleFlash(), CL_ParticleSmokeEffect(), CL_ParticleSteamEffect(), CL_ParticleSteamEffect2(), CL_RailSprial(), CL_RailTrail(), CL_Tracker_Explode(), CL_Tracker_Shell(), CL_TrackerTrail(), CL_Widowbeamout(), CL_WidowSplash(), fire_blaster(), fire_grenade(), fire_grenade2(), fire_hit(), fire_lead(), fire_rail(), Grenade_Explode(), GunnerFire(), InfantryMachineGun(), jorg_firebullet_left(), jorg_firebullet_right(), MakeNormalVectors(), MakronSpawn(), medic_cable_attack(), mutant_jump_touch(), P_DamageFeedback(), PM_AddCurrents(), PM_CheckSpecialMovement(), PM_FlyMove(), R_DrawSpriteModel(), R_LightPoint(), RecursiveLightPoint(), rocket_touch(), RotatedBBox(), soldier_fire(), SP_func_button(), SP_func_door(), SP_func_door_rotating(), SP_func_door_secret(), SP_func_water(), SP_trigger_once(), supertankMachineGun(), SV_AddRotationalFriction(), SV_Physics_Noclip(), SV_Physics_Toss(), T_RadiusDamage(), target_laser_think(), ThrowDebris(), ThrowGib(), ThrowHead(), turret_breach_fire(), and UpdateChaseCam().
Definition at line 681 of file q_shared.c.
Referenced by actorMachineGun(), bfg_think(), boss2_firebullet_left(), boss2_firebullet_right(), Boss2Rocket(), CheckPowerArmor(), ChickRocket(), CL_AddBeams(), CL_AddPlayerBeams(), CL_BlasterTrail(), CL_BlasterTrail2(), CL_BlueFlameTrail(), CL_BubbleTrail(), CL_BubbleTrail2(), CL_DebugTrail(), CL_DevRailTrail(), CL_DiminishingTrail(), CL_FlagTrail(), CL_FlameTrail(), CL_ForceTrail(), CL_ForceWall(), CL_Heatbeam(), CL_InfernoTrail(), CL_IonripperTrail(), CL_MakeTeleportParticles(), CL_MonsterPlasma_Shell(), CL_Nukeblast(), CL_QuadTrail(), CL_RailSprial(), CL_RailTrail(), CL_RocketTrail(), CL_SmokeTrail(), CL_SpeedTrail(), CL_TagTrail(), CL_TeleportParticles(), CL_Tracker_Explode(), CL_Tracker_Shell(), CL_TrackerTrail(), CL_TrapParticles(), CL_Widowbeamout(), CL_WidowSplash(), fire_blaster(), fire_hit(), fire_lead(), func_explosive_explode(), GladiatorGun(), GunnerFire(), InfantryMachineGun(), infront(), jorg_firebullet_left(), jorg_firebullet_right(), jorgBFG(), MakeNormalVectors(), makronBFG(), MakronRailgun(), MakronSpawn(), Move_Calc(), mutant_jump_touch(), P_DamageFeedback(), pBloodThink(), PerpendicularVector(), PM_AirMove(), PM_CheckSpecialMovement(), PM_DeadMove(), PM_FlyMove(), PM_StepSlideMove_(), PM_WaterMove(), pWeatherFXThink(), R_DrawAliasModel(), R_DrawBeam(), R_IMFlatShadedQuad(), R_SetFrustum(), R_ViewChanged(), S_SpatializeOrigin(), soldier_fire(), supertankMachineGun(), supertankRocket(), T_Damage(), TankRocket(), target_laser_think(), and UpdateChaseCam().
Definition at line 700 of file q_shared.c.
Definition at line 782 of file q_shared.c.
Referenced by AngleMove_Begin(), AngleMove_Final(), Blaster_Fire(), CanDamage(), CL_AddPlayerBeams(), CL_BlasterTracer(), CL_BlasterTrail(), CL_BlasterTrail2(), CL_BloodHit(), CL_BlueFlameTrail(), CL_BubbleTrail(), CL_BubbleTrail2(), CL_DebugTrail(), CL_DevRailTrail(), CL_DiminishingTrail(), CL_FlagTrail(), CL_FlameTrail(), CL_ForceTrail(), CL_ForceWall(), CL_Heatbeam(), CL_InfernoTrail(), CL_IonripperTrail(), CL_MakeTeleportParticles(), CL_ParseTEnt(), CL_ParticleBulletDecal(), CL_ParticleSmokeEffect(), CL_ParticleSteamEffect(), CL_ParticleSteamEffect2(), CL_QuadTrail(), CL_RailSprial(), CL_RailTrail(), CL_RocketTrail(), CL_SmokeTrail(), CL_SpeedTrail(), CL_TagTrail(), CL_TeleportParticles(), CL_Tracer(), CL_Tracker_Explode(), CL_TrackerTrail(), CL_TrapParticles(), D_CalcGradients(), Drop_Item(), fire_bfg(), fire_blaster(), fire_grenade(), fire_grenade2(), fire_lead(), fire_rocket(), func_explosive_explode(), GL_DrawParticles(), misc_viper_bomb_prethink(), misc_viper_bomb_use(), Move_Begin(), Move_Final(), mutant_jump_takeoff(), pBloodThink(), PM_AirMove(), PM_CheckSpecialMovement(), PM_DeadMove(), PM_FlyMove(), PM_StepSlideMove_(), PM_WaterMove(), pWeatherFXThink(), R_DrawBeam(), R_DrawParticles(), R_DrawSprite(), R_LightPoint(), RotatedBBox(), rotating_use(), SP_target_spawner(), SubdividePolygon(), SV_FlyMove(), SV_Physics_Pusher(), SV_Physics_Toss(), T_Damage(), Think_AccelMove(), ThrowGib(), trigger_push_touch(), turret_breach_think(), V_RenderView(), VelocityForDamage(), weapon_bfg_fire(), weapon_grenadelauncher_fire(), weapon_railgun_fire(), Weapon_RocketLauncher_Fire(), weapon_shotgun_fire(), and weapon_supershotgun_fire().
size_t verify_fread | ( | void * | , |
size_t | , | ||
size_t | , | ||
FILE * | |||
) |
size_t verify_fwrite | ( | void * | , |
size_t | , | ||
size_t | , | ||
FILE * | |||
) |
int curtime |
Definition at line 119 of file q_shwin.c.
Referenced by CL_Frame(), CL_SendCmd(), Netchan_Process(), Netchan_Setup(), Netchan_Transmit(), SV_SendClientMessages(), SVC_GetChallenge(), and Sys_Milliseconds().
vec3_t monster_flash_offset[] |
Definition at line 27 of file m_flash.c.
Referenced by actorMachineGun(), boss2_firebullet_left(), boss2_firebullet_right(), Boss2Rocket(), ChickRocket(), CL_ParseMuzzleFlash2(), floater_fire_blaster(), flyer_fire(), GladiatorGun(), GunnerFire(), GunnerGrenade(), hover_fire_blaster(), InfantryMachineGun(), jorg_firebullet_left(), jorg_firebullet_right(), jorgBFG(), makronBFG(), MakronHyperblaster(), MakronRailgun(), medic_fire_blaster(), soldier_fire(), supertankMachineGun(), supertankRocket(), TankBlaster(), TankMachineGun(), and TankRocket().
vec3_t vec3_origin |
Definition at line 24 of file q_shared.c.
Referenced by AngleMove_Final(), bfg_explode(), bfg_think(), blaster_touch(), CanDamage(), CL_AddPlayerBeams(), CL_ClipMoveToEntities(), CL_ParseMuzzleFlash2(), CL_WidowSplash(), Cmd_Kill_f(), D_DrawSurfaces(), door_blocked(), door_secret_blocked(), door_secret_move6(), door_secret_use(), DrawSkyPolygon(), fire_hit(), floater_zap(), func_explosive_use(), func_object_touch(), Grenade_Explode(), hurt_touch(), InitTrigger(), KillBox(), M_CheckBottom(), M_WorldEffects(), MakronSpawn(), P_FallingDamage(), P_WorldEffects(), parasite_drain_attack(), PF_Configstring(), plat_blocked(), PM_FlyMove(), PM_StepSlideMove_(), R_BuildPolygonFromSurface(), R_DrawEntitiesOnList(), R_LightPoint(), RecursiveLightPoint(), rotating_blocked(), rotating_touch(), rotating_use(), SP_trigger_multiple(), SV_ClipMoveToEntities(), SV_FindIndex(), SV_FlyMove(), SV_Physics_Toss(), SV_PointContents(), SV_Push(), SV_Trace(), T_RadiusDamage(), target_laser_think(), Touch_Multi(), train_blocked(), turret_blocked(), UpdateChaseCam(), use_target_changelevel(), visible(), and Weapon_Blaster_Fire().
int vidref_val |
Definition at line 28 of file cl_ents.c.
Referenced by CL_AddDLights(), CL_AddPacketEntities(), CL_ColorFlash(), CL_Heatbeam(), and VID_LoadRefresh().