]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/gamec/defs.h
new gamemode: "Last Man Standing" (g_lms)
[divverent/nexuiz.git] / data / qcsrc / gamec / defs.h
1
2 // Globals
3
4 entity  activator;
5 string  string_null;
6
7 float player_count;
8 float lms_dead_count;
9 float lms_lowest_lives;
10
11 //entity        casing;
12 entity dest;
13
14 // Fields
15
16 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
17
18 //.string       wad;
19 //.string       map;
20
21 // is this client a remote administrator?
22 .float adminstatus;
23
24 //.float        worldtype;
25 .float  delay;
26 .float  wait;
27 .float  lip;
28 //.float        light_lev;
29 .float  speed;
30 //.float        style;
31 //.float        skill;
32
33 .string killtarget;
34
35 .vector pos1, pos2;
36 .vector mangle;
37
38 .float  attack_finished;
39 .float  pain_finished;                  //Added by Supajoe
40 .float  pain_frame;                     //"
41 .float  statdraintime;                  // record the one-second intervals between draining health and armour when they're over 100
42 .float  crouch; // Crouching or not?
43
44 .float  strength_finished;
45 //.float        speed_finished;
46 .float  invincible_finished;
47 //.float        slowmo_finished;
48
49 .vector         finaldest, finalangle;          //plat.qc stuff
50 .void()         think1;
51 .float state;
52 .float          t_length, t_width;
53
54 .vector destvec;                // for rain
55 .float cnt;             // for rain
56 .float count;
57 //.float cnt2;
58
59 .float death_time;
60 .float dead_time;
61 .float dead_frame;
62 .float die_frame;
63 .float fade_time;
64 .float fade_rate;
65
66 .string mdl;
67
68 .string playermodel;
69 .string playerskin;
70
71 .float  respawntime;
72 //.float        chasecam;
73
74 .float electrocount;
75 //.float crylinkcount;
76
77 .float  damageforcescale;
78
79 //.float          gravity;
80
81 .float          dmg;
82
83 // for railgun damage (hitting multiple enemies)
84 .float railgunhit;
85 .float railgunhitsolidbackup;
86 .vector railgunhitloc;
87
88 .float          air_finished;
89 .float          dmgtime;
90
91 .float          killcount;
92
93 .float watersound_finished;
94 .float iscreature;
95 .vector oldvelocity;
96
97 .float pauseregen_finished;
98 .float pauserothealth_finished;
99 .float pauserotarmor_finished;
100 .float attack_finished;
101
102 // definitions for weaponsystem
103
104 .entity weaponentity;
105 .entity exteriorweaponentity;
106 .float switchweapon;
107 .float autoswitch;
108 void(float wpn, float wrequest) weapon_action;
109 float(entity cl, float wpn, float andammo) client_hasweapon;
110 void() w_clear;
111 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
112 .float weapon_nextthink;
113 .void() weapon_think;
114 .vector shotdir, shotorg; // new generic aiming system for all weapons (not finished yet, can be removed)
115 float   weapon_hasammo; // sets by WR_CHECKAMMO request
116
117 //float PLAYER_WEAPONSELECTION_DELAY = );
118 float   PLAYER_WEAPONSELECTION_SPEED = 18;
119 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
120
121 // weapon states (self.weaponentity.state)
122 float WS_CLEAR                  = 0; // no weapon selected
123 float WS_RAISE                  = 1; // raise frame
124 float WS_DROP                   = 2; // deselecting frame
125 float WS_INUSE                  = 3; // fire state
126 float WS_READY                  = 4; // idle frame
127
128 // weapon requests
129 float WR_SETUP            = 1;  // setup weapon data
130 float WR_UPDATECOUNTS = 2;  // update ammo display
131 float WR_IDLE             = 3;  // idle frame
132 float WR_DROP             = 4;  // deselect frame
133 float WR_RAISE            = 5;  // select frame
134 float WR_FIRE1            = 6;  // primary fire frame
135 float WR_FIRE2            = 7;  // secondary fire
136 float WR_FIRE3            = 8;  // third fire
137 float WR_CHECKAMMO        = 9;  // checks ammo for weapon
138 float WR_CLEAR            = 10;  // runs afted deselecting frames, remove weapon parts (if presented). This useful for quake3-style chaingun
139
140 // Weapon indexes
141 float WEP_LASER                         = 1; // float   IT_LASER                                = 4096;
142 float WEP_SHOTGUN                       = 2; // float   IT_SHOTGUN                              = 1;
143 float WEP_UZI                           = 3; // float   IT_UZI                                  = 2;
144 float WEP_GRENADE_LAUNCHER      = 4; // float   IT_GRENADE_LAUNCHER             = 4;
145 float WEP_ELECTRO                       = 5; // float   IT_ELECTRO                              = 8;
146 float WEP_CRYLINK                       = 6; // float   IT_CRYLINK                              = 16;
147 float WEP_NEX                           = 7; // float   IT_NEX                                  = 32;
148 float WEP_HAGAR                         = 8; // float   IT_HAGAR                                = 64;
149 float WEP_ROCKET_LAUNCHER       = 9; // float   IT_ROCKET_LAUNCHER              = 128;
150
151 // For weapon cycling commands
152 float WEP_FIRST                         = 1;
153 float WEP_LAST                          = 9;
154
155 void(entity e, float chan, string samp, float vol, float atten) sound = #8;
156 void(entity client, string s)   stuffcmd = #21;
157 void(entity client, string s)   sprint = #24;
158 vector(entity e, float sped)    aim = #44;
159 void(entity client, string s)   centerprint = #73;
160 void(entity e)                  setspawnparms = #78;
161 void(float to, float f)         WriteByte = #52;
162 void(float to, float f)         WriteChar = #53;
163 void(float to, float f)         WriteShort = #54;
164 void(float to, float f)         WriteLong = #55;
165 void(float to, float f)         WriteCoord = #56;
166 void(float to, float f)         WriteAngle = #57;
167 void(float to, string s)        WriteString     = #58;
168 void(float to, entity s)        WriteEntity     = #59;
169 .vector dest1, dest2;
170 void(entity clent) dropclient = #453;
171
172 float gameover;
173 float intermission_running;
174 float intermission_exittime;
175 float alreadychangedlevel;
176
177
178 .float  isbot;  // true if this client is actually a bot
179
180 .float runes;
181
182
183 .float welcomemessage_time;
184 .float welcomemessage_time2;
185 .string versionmessage;
186
187 // stahl's voting
188 string votecalled;
189 entity votecaller;
190 .float vote_finished;
191 .float vote_next;
192 .float vote_vote;
193 float VoteAllowed(string vote);
194 void VoteCount();
195 void VoteDo(entity voter);
196 void VoteTimeout(entity voter);
197 void VoteReset();
198
199 // Wazat's grappling hook
200 .entity         hook;
201 void GrapplingHookFrame();
202 void RemoveGrapplingHook(entity pl);
203 void SetGrappleHookBindings();
204 // hook impulses
205 float GRAPHOOK_FIRE             = 20;
206 float GRAPHOOK_RELEASE          = 21;
207 // (note: you can change the hook impulse #'s to whatever you please)
208 .float hook_time;
209
210 // Laser target for laser-guided weapons
211 .entity lasertarget;
212 .float laser_on;
213
214 // minstagib vars
215 .float extralives;
216 .float jump_interval;    // laser refire
217 .string crosshair_static;