]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_player.qc
bring death glow back, fix issues with respawning
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cl_player.qc
1 .entity accuracy;
2 .float accuracy_frags[WEP_MAXCOUNT];
3
4 float weaponstats_buffer;
5
6 void WeaponStats_Init()
7 {
8         if(autocvar_sv_weaponstats_file != "")
9                 weaponstats_buffer = buf_create();
10         else
11                 weaponstats_buffer = -1;
12 }
13
14 #define WEAPONSTATS_GETINDEX(awep,abot,vwep,vbot) (((vwep) + (awep) * (WEP_LAST - WEP_FIRST + 1) - (WEP_FIRST + WEP_FIRST * (WEP_LAST - WEP_FIRST + 1))) * 4 + (abot) * 2 + (vbot))
15
16 void WeaponStats_ready(entity fh, entity pass, float status)
17 {
18         float i, j, n, ibot, jbot, idx;
19         vector v;
20         string prefix, s;
21         switch(status)
22         {
23                 case URL_READY_CANWRITE:
24                         // we can write
25                         prefix = strcat(autocvar_hostname, "\t", GetGametype(), "_", GetMapname(), "\t");
26                         url_fputs(fh, "#begin statsfile\n");
27                         url_fputs(fh, strcat("#date ", strftime(TRUE, "%a %b %e %H:%M:%S %Z %Y"), "\n"));
28 #ifdef WATERMARK
29                         url_fputs(fh, strcat("#version ", WATERMARK(), "\n"));
30 #endif
31                         url_fputs(fh, strcat("#config ", ftos(crc16(FALSE, cvar_purechanges)), "\n"));
32                         url_fputs(fh, strcat("#cvar_purechanges ", ftos(cvar_purechanges_count), "\n"));
33                         n = tokenizebyseparator(cvar_purechanges, "\n");
34                         for(i = 0; i < n; ++i)
35                                 url_fputs(fh, strcat("#cvar_purechange ", argv(i), "\n"));
36                         for(i = WEP_FIRST; i <= WEP_LAST; ++i) for(ibot = 0; ibot <= 1; ++ibot)
37                                 for(j = WEP_FIRST; j <= WEP_LAST; ++j) for(jbot = 0; jbot <= 1; ++jbot)
38                                 {
39                                         idx = WEAPONSTATS_GETINDEX(i, ibot, j, jbot);
40                                         v = stov(bufstr_get(weaponstats_buffer, idx));
41                                         if(v != '0 0 0')
42                                         {
43                                                 //vector is: kills hits damage
44                                                 url_fputs(fh, sprintf("%s%d %d\t%d %d\t", prefix, i, ibot, j, jbot));
45                                                 url_fputs(fh, sprintf("%d %d %g\n", v_x, v_y, v_z));
46                                         }
47                                 }
48                         url_fputs(fh, "#end\n\n");
49                         url_fclose(fh);
50                         break;
51                 case URL_READY_CANREAD:
52                         // url_fclose is processing, we got a response for writing the data
53                         // this must come from HTTP
54                         print("Got response from weapon stats server:\n");
55                         while((s = url_fgets(fh)))
56                                 print("  ", s, "\n");
57                         print("End of response.\n");
58                         url_fclose(fh);
59                         break;
60                 case URL_READY_CLOSED:
61                         // url_fclose has finished
62                         print("Weapon stats written\n");
63                         buf_del(weaponstats_buffer);
64                         weaponstats_buffer = -1;
65                         break;
66                 case URL_READY_ERROR:
67                 default:
68                         print("Weapon stats writing failed: ", ftos(status), "\n");
69                         buf_del(weaponstats_buffer);
70                         weaponstats_buffer = -1;
71                         break;
72         }
73 }
74
75 void WeaponStats_Shutdown()
76 {
77         if(weaponstats_buffer < 0)
78                 return;
79         if(autocvar_sv_weaponstats_file != "")
80         {
81                 url_multi_fopen(autocvar_sv_weaponstats_file, FILE_APPEND, WeaponStats_ready, world);
82         }
83         else
84         {
85                 buf_del(weaponstats_buffer);
86                 weaponstats_buffer = -1;
87         }
88 }
89
90 void WeaponStats_LogItem(float awep, float abot, float vwep, float vbot, vector item)
91 {
92         float idx;
93         if(weaponstats_buffer < 0)
94                 return;
95         if(awep < WEP_FIRST || vwep < WEP_FIRST)
96                 return;
97         if(awep > WEP_LAST || vwep > WEP_LAST)
98                 return;
99         idx = WEAPONSTATS_GETINDEX(awep,abot,vwep,vbot);
100         bufstr_set(weaponstats_buffer, idx, vtos(stov(bufstr_get(weaponstats_buffer, idx)) + item));
101 }
102 void WeaponStats_LogDamage(float awep, float abot, float vwep, float vbot, float damage)
103 {
104         if(damage < 0)
105                 error("negative damage?");
106         WeaponStats_LogItem(awep, abot, vwep, vbot, '0 0 1' * damage + '0 1 0');
107 }
108 void WeaponStats_LogKill(float awep, float abot, float vwep, float vbot)
109 {
110         WeaponStats_LogItem(awep, abot, vwep, vbot, '1 0 0');
111 }
112
113 // changes by LordHavoc on 03/29/04 and 03/30/04 at Vermeulen's request
114 // merged player_run and player_stand to player_anim
115 // added death animations to player_anim
116 // can now spawn thrown weapons from anywhere, not just from players
117 // thrown weapons now fade out after 20 seconds
118 // created PlayerGib function
119 // PlayerDie no longer uses hitloc or damage
120 // PlayerDie now supports dying animations as well as gibbing
121 // cleaned up PlayerDie a lot
122 // added CopyBody
123
124 .entity pusher;
125 .float pushltime;
126
127 .float CopyBody_nextthink;
128 .void(void) CopyBody_think;
129 void CopyBody_Think(void)
130 {
131         if(self.CopyBody_nextthink && time > self.CopyBody_nextthink)
132         {
133                 self.CopyBody_think();
134                 if(wasfreed(self))
135                         return;
136                 self.CopyBody_nextthink = self.nextthink;
137                 self.CopyBody_think = self.think;
138                 self.think = CopyBody_Think;
139         }
140         CSQCMODEL_AUTOUPDATE();
141         self.nextthink = time;
142 }
143 void CopyBody(float keepvelocity)
144 {
145         entity oldself;
146         if (self.effects & EF_NODRAW)
147                 return;
148         oldself = self;
149         self = spawn();
150         self.enemy = oldself;
151         self.lip = oldself.lip;
152         self.colormap = oldself.colormap;
153         self.iscreature = oldself.iscreature;
154         self.damagedbycontents = oldself.damagedbycontents;
155         self.angles = oldself.angles;
156         self.avelocity = oldself.avelocity;
157         self.classname = "body";
158         self.damageforcescale = oldself.damageforcescale;
159         self.effects = oldself.effects;
160         self.glowmod = oldself.glowmod;
161         self.event_damage = oldself.event_damage;
162         self.animstate_startframe = oldself.animstate_startframe;
163         self.animstate_numframes = oldself.animstate_numframes;
164         self.animstate_framerate = oldself.animstate_framerate;
165         self.animstate_starttime = oldself.animstate_starttime;
166         self.animstate_endtime = oldself.animstate_endtime;
167         self.animstate_override = oldself.animstate_override;
168         self.animstate_looping = oldself.animstate_looping;
169         self.death_time = oldself.death_time;
170         self.frame = oldself.frame;
171         self.pain_finished = oldself.pain_finished;
172         self.health = oldself.health;
173         self.armorvalue = oldself.armorvalue;
174         self.armortype = oldself.armortype;
175         self.model = oldself.model;
176         self.modelindex = oldself.modelindex;
177         self.skin = oldself.skin;
178         self.species = oldself.species;
179         self.movetype = oldself.movetype;
180         self.solid = oldself.solid;
181         self.ballistics_density = oldself.ballistics_density;
182         self.takedamage = oldself.takedamage;
183         self.customizeentityforclient = oldself.customizeentityforclient;
184         self.uncustomizeentityforclient = oldself.uncustomizeentityforclient;
185         self.uncustomizeentityforclient_set = oldself.uncustomizeentityforclient_set;
186         if (keepvelocity == 1)
187                 self.velocity = oldself.velocity;
188         self.oldvelocity = self.velocity;
189         self.alpha = oldself.alpha;
190         self.fade_time = oldself.fade_time;
191         self.fade_rate = oldself.fade_rate;
192         //self.weapon = oldself.weapon;
193         setorigin(self, oldself.origin);
194         setsize(self, oldself.mins, oldself.maxs);
195         self.prevorigin = oldself.origin;
196         self.reset = SUB_Remove;
197
198         Drag_MoveDrag(oldself, self);
199
200         if(self.colormap <= maxclients && self.colormap > 0)
201                 self.colormap = 1024 + oldself.clientcolors;
202
203         CSQCMODEL_AUTOINIT();
204         self.CopyBody_nextthink = oldself.nextthink;
205         self.CopyBody_think = oldself.think;
206         self.nextthink = time;
207         self.think = CopyBody_Think;
208
209         self = oldself;
210 }
211
212 float player_getspecies()
213 {
214         float s;
215         get_model_parameters(self.model, self.skin);
216         s = get_model_parameters_species;
217         get_model_parameters(string_null, 0);
218         if(s < 0)
219                 return SPECIES_HUMAN;
220         return s;
221 }
222
223 void player_setupanimsformodel()
224 {
225         // defaults for legacy .zym models without animinfo files
226         self.anim_die1 = animfixfps(self, '0 1 0.5'); // 2 seconds
227         self.anim_die2 = animfixfps(self, '1 1 0.5'); // 2 seconds
228         self.anim_draw = animfixfps(self, '2 1 3');
229         // self.anim_duck = '3 1 100'; // This anim is broken, use slot 3 as a new free slot in the future ;)
230         self.anim_duckwalk = animfixfps(self, '4 1 1');
231         self.anim_duckjump = '5 1 100'; // NOTE: zym anims keep playing until changed, so this only has to start the anim, landing will end it
232         self.anim_duckidle = animfixfps(self, '6 1 1');
233         self.anim_idle = animfixfps(self, '7 1 1');
234         self.anim_jump = '8 1 100'; // NOTE: zym anims keep playing until changed, so this only has to start the anim, landing will end it
235         self.anim_pain1 = animfixfps(self, '9 1 2'); // 0.5 seconds
236         self.anim_pain2 = animfixfps(self, '10 1 2'); // 0.5 seconds
237         self.anim_shoot = animfixfps(self, '11 1 5'); // analyze models and set framerate
238         self.anim_taunt = animfixfps(self, '12 1 0.33');
239         self.anim_run = animfixfps(self, '13 1 1');
240         self.anim_runbackwards = animfixfps(self, '14 1 1');
241         self.anim_strafeleft = animfixfps(self, '15 1 1');
242         self.anim_straferight = animfixfps(self, '16 1 1');
243         //self.anim_dead1 = animfixfps(self, '17 1 1');
244         //self.anim_dead2 = animfixfps(self, '18 1 1');
245         self.anim_forwardright = animfixfps(self, '19 1 1');
246         self.anim_forwardleft = animfixfps(self, '20 1 1');
247         self.anim_backright = animfixfps(self, '21 1 1');
248         self.anim_backleft  = animfixfps(self, '22 1 1');
249         self.anim_melee = animfixfps(self, '23 1 1');
250         self.anim_duckwalkbackwards = animfixfps(self, '24 1 1');
251         self.anim_duckwalkstrafeleft = animfixfps(self, '25 1 1');
252         self.anim_duckwalkstraferight = animfixfps(self, '26 1 1');
253         self.anim_duckwalkforwardright = animfixfps(self, '27 1 1');
254         self.anim_duckwalkforwardleft = animfixfps(self, '28 1 1');
255         self.anim_duckwalkbackright = animfixfps(self, '29 1 1');
256         self.anim_duckwalkbackleft  = animfixfps(self, '30 1 1');
257         // TODO introspect models for finding right "fps" value (1/duration)
258         // reset animstate now
259         setanim(self, self.anim_idle, TRUE, FALSE, TRUE);
260 }
261
262 void player_anim (void)
263 {
264         updateanim(self);
265         if (self.weaponentity)
266                 updateanim(self.weaponentity);
267
268         if (self.deadflag != DEAD_NO)
269                 return;
270
271         if (!self.animstate_override)
272         {
273                 if (!(self.flags & FL_ONGROUND) || self.BUTTON_JUMP)
274                 {
275                         if (self.crouch)
276                         {
277                                 if (self.animstate_startframe != self.anim_duckjump_x) // don't perform another trace if already playing the crouch jump anim
278                                 {
279                                         traceline(self.origin + '0 0 1' * PL_CROUCH_MIN_z, self.origin + '0 0 1' * (PL_CROUCH_MIN_z - autocvar_sv_player_jumpanim_minfall), TRUE, self);
280                                         if(!trace_startsolid && trace_fraction == 1 || !(self.animstate_startframe == self.anim_duckwalk_x || self.animstate_startframe == self.anim_duckidle_x)) // don't get stuck on non-crouch anims
281                                         {
282                                                 setanim(self, self.anim_duckjump, FALSE, TRUE, self.restart_jump);
283                                                 self.restart_jump = FALSE;
284                                         }
285                                 }
286                         }
287                         else
288                         {
289                 if (self.animstate_startframe != self.anim_jump_x) // don't perform another trace if already playing the jump anim
290                 {
291                     traceline(self.origin + '0 0 1' * PL_MIN_z, self.origin + '0 0 1' * (PL_MIN_z - autocvar_sv_player_jumpanim_minfall), TRUE, self);
292                     if(!trace_startsolid && trace_fraction == 1 || self.animstate_startframe == self.anim_idle_x || (self.animstate_startframe == self.anim_melee_x && time - self.animstate_starttime >= 21/20)) // don't get stuck on idle animation in midair, nor melee after it finished
293                     {
294                         setanim(self, self.anim_jump, FALSE, TRUE, self.restart_jump);
295                         self.restart_jump = FALSE;
296                     }
297                 }
298                         }
299                 }
300                 else if (self.crouch)
301                 {
302                         if (self.movement_x > 0 && self.movement_y == 0)
303                                 setanim(self, self.anim_duckwalk, TRUE, FALSE, FALSE);
304                         else if (self.movement_x < 0 && self.movement_y == 0)
305                                 setanim(self, self.anim_duckwalkbackwards, TRUE, FALSE, FALSE);
306                         else if (self.movement_x == 0 && self.movement_y > 0)
307                                 setanim(self, self.anim_duckwalkstraferight, TRUE, FALSE, FALSE);
308                         else if (self.movement_x == 0 && self.movement_y < 0)
309                                 setanim(self, self.anim_duckwalkstrafeleft, TRUE, FALSE, FALSE);
310                         else if (self.movement_x > 0 && self.movement_y > 0)
311                                 setanim(self, self.anim_duckwalkforwardright, TRUE, FALSE, FALSE);
312                         else if (self.movement_x > 0 && self.movement_y < 0)
313                                 setanim(self, self.anim_duckwalkforwardleft, TRUE, FALSE, FALSE);
314                         else if (self.movement_x < 0 && self.movement_y > 0)
315                                 setanim(self, self.anim_duckwalkbackright, TRUE, FALSE, FALSE);
316                         else if (self.movement_x < 0 && self.movement_y < 0)
317                                 setanim(self, self.anim_duckwalkbackleft, TRUE, FALSE, FALSE);
318                         else
319                                 setanim(self, self.anim_duckidle, TRUE, FALSE, FALSE);
320                 }
321                 else if ((self.movement_x * self.movement_x + self.movement_y * self.movement_y) > 20)
322                 {
323                         if (self.movement_x > 0 && self.movement_y == 0)
324                                 setanim(self, self.anim_run, TRUE, FALSE, FALSE);
325                         else if (self.movement_x < 0 && self.movement_y == 0)
326                                 setanim(self, self.anim_runbackwards, TRUE, FALSE, FALSE);
327                         else if (self.movement_x == 0 && self.movement_y > 0)
328                                 setanim(self, self.anim_straferight, TRUE, FALSE, FALSE);
329                         else if (self.movement_x == 0 && self.movement_y < 0)
330                                 setanim(self, self.anim_strafeleft, TRUE, FALSE, FALSE);
331                         else if (self.movement_x > 0 && self.movement_y > 0)
332                                 setanim(self, self.anim_forwardright, TRUE, FALSE, FALSE);
333                         else if (self.movement_x > 0 && self.movement_y < 0)
334                                 setanim(self, self.anim_forwardleft, TRUE, FALSE, FALSE);
335                         else if (self.movement_x < 0 && self.movement_y > 0)
336                                 setanim(self, self.anim_backright, TRUE, FALSE, FALSE);
337                         else if (self.movement_x < 0 && self.movement_y < 0)
338                                 setanim(self, self.anim_backleft, TRUE, FALSE, FALSE);
339                         else
340                                 setanim(self, self.anim_run, TRUE, FALSE, FALSE);
341                 }
342                 else
343                         setanim(self, self.anim_idle, TRUE, FALSE, FALSE);
344         }
345
346         if (self.weaponentity)
347         if (!self.weaponentity.animstate_override)
348                 setanim(self.weaponentity, self.weaponentity.anim_idle, TRUE, FALSE, FALSE);
349 }
350
351 void SpawnThrownWeapon (vector org, float w)
352 {
353         if(g_minstagib)
354         if(self.ammo_cells <= 0)
355                 return;
356
357         if(g_pinata)
358         {
359                 float j;
360                 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
361                 {
362                         if(self.weapons & W_WeaponBit(j))
363                                 if(W_IsWeaponThrowable(j))
364                                         W_ThrowNewWeapon(self, j, FALSE, org, randomvec() * 175 + '0 0 325');
365                 }
366         }
367         else
368         {
369                 if(W_IsWeaponThrowable(self.weapon))
370                         W_ThrowNewWeapon(self, self.weapon, FALSE, org, randomvec() * 125 + '0 0 200');
371         }
372 }
373
374 void PlayerCorpseDamage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
375 {
376         float take, save;
377         vector v;
378         Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, self, attacker);
379
380         // damage resistance (ignore most of the damage from a bullet or similar)
381         damage = max(damage - 5, 1);
382
383         v = healtharmor_applydamage(self.armorvalue, autocvar_g_balance_armor_blockpercent, damage);
384         take = v_x;
385         save = v_y;
386
387         if(sound_allowed(MSG_BROADCAST, attacker))
388         {
389                 if (save > 10)
390                         sound (self, CH_SHOTS, "misc/armorimpact.wav", VOL_BASE, ATTN_NORM);
391                 else if (take > 30)
392                         sound (self, CH_SHOTS, "misc/bodyimpact2.wav", VOL_BASE, ATTN_NORM);
393                 else if (take > 10)
394                         sound (self, CH_SHOTS, "misc/bodyimpact1.wav", VOL_BASE, ATTN_NORM);
395         }
396
397         if (take > 50)
398                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, self, attacker);
399         if (take > 100)
400                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, self, attacker);
401
402         if (!(self.flags & FL_GODMODE))
403         {
404                 self.armorvalue = self.armorvalue - save;
405                 self.health = self.health - take;
406                 // pause regeneration for 5 seconds
407                 self.pauseregen_finished = max(self.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
408         }
409         self.dmg_save = self.dmg_save + save;//max(save - 10, 0);
410         self.dmg_take = self.dmg_take + take;//max(take - 10, 0);
411         self.dmg_inflictor = inflictor;
412
413         if (self.health <= -autocvar_sv_gibhealth && self.alpha >= 0)
414         {
415                 // don't use any animations as a gib
416                 self.frame = 0;
417                 // view just above the floor
418                 self.view_ofs = '0 0 4';
419
420                 Violence_GibSplash(self, 1, 1, attacker);
421                 self.alpha = -1;
422                 self.solid = SOLID_NOT; // restore later
423         }
424 }
425
426 void ClientKill_Now_TeamChange();
427 void freezetag_CheckWinner();
428
429 void PlayerDamage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
430 {
431         float take, save, waves, sdelay, dh, da, j;
432         vector v;
433         float valid_damage_for_weaponstats;
434         float excess;
435
436         if((g_arena && numspawned < 2) || (g_ca && !ca_teams_ok) && !inWarmupStage)
437                 return;
438
439         dh = max(self.health, 0);
440         da = max(self.armorvalue, 0);
441
442         if(!DEATH_ISSPECIAL(deathtype))
443         {
444                 damage *= sqrt(bound(1.0, self.cvar_cl_handicap, 100.0));
445                 if(self != attacker)
446                         damage /= sqrt(bound(1.0, attacker.cvar_cl_handicap, 100.0));
447         }
448
449         if(DEATH_ISWEAPON(deathtype, WEP_TUBA))
450         {
451                 // tuba causes blood to come out of the ears
452                 vector ear1, ear2;
453                 vector d;
454                 float f;
455                 ear1 = self.origin;
456                 ear1_z += 0.125 * self.view_ofs_z + 0.875 * self.maxs_z; // 7/8
457                 ear2 = ear1;
458                 makevectors(self.angles);
459                 ear1 += v_right * -10;
460                 ear2 += v_right * +10;
461                 d = inflictor.origin - self.origin;
462                 f = (d * v_right) / vlen(d); // this is cos of angle of d and v_right!
463                 force = v_right * vlen(force);
464                 Violence_GibSplash_At(ear1, force * -1, 2, bound(0, damage, 25) / 2 * (0.5 - 0.5 * f), self, attacker);
465                 Violence_GibSplash_At(ear2, force,      2, bound(0, damage, 25) / 2 * (0.5 + 0.5 * f), self, attacker);
466                 if(f > 0)
467                 {
468                         hitloc = ear1;
469                         force = force * -1;
470                 }
471                 else
472                 {
473                         hitloc = ear2;
474                         // force is already good
475                 }
476         }
477         else
478                 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, self, attacker);
479
480         if (!g_minstagib)
481         {
482                 v = healtharmor_applydamage(self.armorvalue, autocvar_g_balance_armor_blockpercent, damage);
483                 take = v_x;
484                 save = v_y;
485         }
486         else
487         {
488                 save = 0;
489                 take = damage;
490         }
491
492         frag_inflictor = inflictor;
493         frag_attacker = attacker;
494         frag_target = self;
495         damage_take = take;
496         damage_save = save;
497         damage_force = force;
498         MUTATOR_CALLHOOK(PlayerDamage_SplitHealthArmor);
499         take = bound(0, damage_take, self.health);
500         save = bound(0, damage_save, self.armorvalue);
501         excess = max(0, damage - take - save);
502
503         if(sound_allowed(MSG_BROADCAST, attacker))
504         {
505                 if (save > 10)
506                         sound (self, CH_SHOTS, "misc/armorimpact.wav", VOL_BASE, ATTN_NORM);
507                 else if (take > 30)
508                         sound (self, CH_SHOTS, "misc/bodyimpact2.wav", VOL_BASE, ATTN_NORM);
509                 else if (take > 10)
510                         sound (self, CH_SHOTS, "misc/bodyimpact1.wav", VOL_BASE, ATTN_NORM); // FIXME possibly remove them?
511         }
512
513         if (take > 50)
514                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, self, attacker);
515         if (take > 100)
516                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, self, attacker);
517
518         if (time >= self.spawnshieldtime)
519         {
520                 if (!(self.flags & FL_GODMODE))
521                 {
522                         self.armorvalue = self.armorvalue - save;
523                         self.health = self.health - take;
524                         // pause regeneration for 5 seconds
525                         if(take)
526                 self.pauseregen_finished = max(self.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
527
528                         if (time > self.pain_finished)          //Don't switch pain sequences like crazy
529                         {
530                                 self.pain_finished = time + 0.5;        //Supajoe
531
532                                 if(sv_gentle < 1) {
533                                         if(self.classname != "body") // pain anim is BORKED on our ZYMs, FIXME remove this once we have good models
534                                         {
535                                                 if (!self.animstate_override)
536                                                 {
537                                                         if (random() > 0.5)
538                                                                 setanim(self, self.anim_pain1, FALSE, TRUE, TRUE);
539                                                         else
540                                                                 setanim(self, self.anim_pain2, FALSE, TRUE, TRUE);
541                                                 }
542                                         }
543
544                                         if(sound_allowed(MSG_BROADCAST, attacker))
545                                         if(!DEATH_ISWEAPON(deathtype, WEP_LASER) || attacker != self || self.health < 2 * autocvar_g_balance_laser_primary_damage * autocvar_g_balance_selfdamagepercent + 1)
546                                         if(self.health > 1)
547                                         // exclude pain sounds for laserjumps as long as you aren't REALLY low on health and would die of the next two
548                                         {
549                                                 if(deathtype == DEATH_FALL)
550                                                         PlayerSound(playersound_fall, CH_PAIN, VOICETYPE_PLAYERSOUND);
551                                                 else if(self.health > 75) // TODO make a "gentle" version?
552                                                         PlayerSound(playersound_pain100, CH_PAIN, VOICETYPE_PLAYERSOUND);
553                                                 else if(self.health > 50)
554                                                         PlayerSound(playersound_pain75, CH_PAIN, VOICETYPE_PLAYERSOUND);
555                                                 else if(self.health > 25)
556                                                         PlayerSound(playersound_pain50, CH_PAIN, VOICETYPE_PLAYERSOUND);
557                                                 else
558                                                         PlayerSound(playersound_pain25, CH_PAIN, VOICETYPE_PLAYERSOUND);
559                                         }
560                                 }
561
562                                 // throw off bot aim temporarily
563                                 float shake;
564                                 shake = damage * 5 / (bound(0,skill,100) + 1);
565                                 self.v_angle_x = self.v_angle_x + (random() * 2 - 1) * shake;
566                                 self.v_angle_y = self.v_angle_y + (random() * 2 - 1) * shake;
567                         }
568                 }
569                 else
570                         self.max_armorvalue += (save + take);
571         }
572         self.dmg_save = self.dmg_save + save;//max(save - 10, 0);
573         self.dmg_take = self.dmg_take + take;//max(take - 10, 0);
574         self.dmg_inflictor = inflictor;
575
576         if(attacker == self)
577         {
578                 // don't reset pushltime for self damage as it may be an attempt to
579                 // escape a lava pit or similar
580                 //self.pushltime = 0;
581         }
582         else if(attacker.classname == "player")
583         {
584                 self.pusher = attacker;
585                 self.pushltime = time + autocvar_g_maxpushtime;
586         }
587         else if(time < self.pushltime)
588         {
589                 attacker = self.pusher;
590                 self.pushltime = max(self.pushltime, time + 0.6);
591         }
592         else
593                 self.pushltime = 0;
594
595         float abot, vbot, awep;
596         abot = (clienttype(attacker) == CLIENTTYPE_BOT);
597         vbot = (clienttype(self) == CLIENTTYPE_BOT);
598
599         valid_damage_for_weaponstats = 0;
600         if(vbot || clienttype(self) == CLIENTTYPE_REAL)
601         if(abot || clienttype(attacker) == CLIENTTYPE_REAL)
602         if(attacker && self != attacker)
603         if(IsDifferentTeam(self, attacker))
604         {
605                 if(DEATH_ISSPECIAL(deathtype))
606                         awep = attacker.weapon;
607                 else
608                         awep = DEATH_WEAPONOF(deathtype);
609                 valid_damage_for_weaponstats = 1;
610         }
611
612         if(valid_damage_for_weaponstats)
613         {
614                 dh = dh - max(self.health, 0);
615                 da = da - max(self.armorvalue, 0);
616                 WeaponStats_LogDamage(awep, abot, self.weapon, vbot, dh + da);
617         }
618
619         if (self.health < 1)
620         {
621                 float defer_ClientKill_Now_TeamChange;
622                 defer_ClientKill_Now_TeamChange = FALSE;
623
624                 if(self.alivetime)
625                 {
626                         PlayerStats_Event(self, PLAYERSTATS_ALIVETIME, time - self.alivetime);
627                         self.alivetime = 0;
628                 }
629
630                 if(valid_damage_for_weaponstats)
631                         WeaponStats_LogKill(awep, abot, self.weapon, vbot);
632
633                 if(sv_gentle < 1) // TODO make a "gentle" version?
634                 if(sound_allowed(MSG_BROADCAST, attacker))
635                 {
636                         if(deathtype == DEATH_DROWN)
637                                 PlayerSound(playersound_drown, CH_PAIN, VOICETYPE_PLAYERSOUND);
638                         else
639                                 PlayerSound(playersound_death, CH_PAIN, VOICETYPE_PLAYERSOUND);
640                 }
641
642                 // get rid of kill indicator
643                 if(self.killindicator)
644                 {
645                         remove(self.killindicator);
646                         self.killindicator = world;
647                         if(self.killindicator_teamchange)
648                                 defer_ClientKill_Now_TeamChange = TRUE;
649
650                         if(self.classname == "body")
651                         if(deathtype == DEATH_KILL)
652                         {
653                                 // for the lemmings fans, a small harmless explosion
654                                 pointparticles(particleeffectnum("rocket_explode"), self.origin, '0 0 0', 1);
655                         }
656                 }
657
658                 if(!g_freezetag)
659                 {
660                         // become fully visible
661                         self.alpha = default_player_alpha;
662                         // throw a weapon
663                         SpawnThrownWeapon (self.origin + (self.mins + self.maxs) * 0.5, self.switchweapon);
664                 }
665
666                 // print an obituary message
667                 Obituary (attacker, inflictor, self, deathtype);
668                 race_PreDie();
669                 DropAllRunes(self);
670
671         // increment frag counter for used weapon type
672         float w;
673         w = DEATH_WEAPONOF(deathtype);
674         if(WEP_VALID(w))
675         if(accuracy_isgooddamage(attacker, self))
676         attacker.accuracy.(accuracy_frags[w-1]) += 1;
677
678                 if(deathtype == DEATH_HURTTRIGGER && g_freezetag)
679                 {
680                         PutClientInServer();
681                         count_alive_players(); // re-count players
682                         freezetag_CheckWinner();
683                         return;
684                 }
685
686                 frag_attacker = attacker;
687                 frag_inflictor = inflictor;
688                 frag_target = self;
689                 MUTATOR_CALLHOOK(PlayerDies);
690                 weapon_action(self.weapon, WR_PLAYERDEATH);
691
692                 RemoveGrapplingHook(self);
693
694                 if(self.flagcarried)
695                 {
696                         if(attacker.classname != "player")
697                                 DropFlag(self.flagcarried, self, attacker); // penalty for flag loss by suicide
698                         else if(attacker.team == self.team)
699                                 DropFlag(self.flagcarried, attacker, attacker); // penalty for flag loss by suicide/teamkill
700                         else
701                                 DropFlag(self.flagcarried, world, attacker);
702                 }
703                 if(self.ballcarried && g_nexball)
704                         DropBall(self.ballcarried, self.origin, self.velocity);
705                 Portal_ClearAllLater(self);
706
707                 if(clienttype(self) == CLIENTTYPE_REAL)
708                 {
709                         stuffcmd(self, "-zoom\n");
710                         self.fixangle = TRUE;
711                         //msg_entity = self;
712                         //WriteByte (MSG_ONE, SVC_SETANGLE);
713                         //WriteAngle (MSG_ONE, self.v_angle_x);
714                         //WriteAngle (MSG_ONE, self.v_angle_y);
715                         //WriteAngle (MSG_ONE, 80);
716                 }
717
718                 if(defer_ClientKill_Now_TeamChange) // TODO does this work with FreezeTag?
719                         ClientKill_Now_TeamChange();
720
721                 if(g_arena)
722                         Spawnqueue_Unmark(self);
723
724                 if(g_freezetag)
725                         return;
726
727                 // when we get here, player actually dies
728                 // clear waypoints (do this AFTER FreezeTag)
729                 WaypointSprite_PlayerDead();
730
731                 // make the corpse upright (not tilted)
732                 self.angles_x = 0;
733                 self.angles_z = 0;
734                 // don't spin
735                 self.avelocity = '0 0 0';
736                 // view from the floor
737                 self.view_ofs = '0 0 -8';
738                 // toss the corpse
739                 self.movetype = MOVETYPE_TOSS;
740                 // shootable corpse
741                 self.solid = SOLID_CORPSE;
742                 self.ballistics_density = autocvar_g_ballistics_density_corpse;
743                 // don't stick to the floor
744                 self.flags &~= FL_ONGROUND;
745                 // dying animation
746                 self.deadflag = DEAD_DYING;
747                 // when to allow respawn
748                 sdelay = 0;
749                 waves = 0;
750                 sdelay = cvar(strcat("g_", GetGametype(), "_respawn_delay"));
751                 if(!sdelay)
752                 {
753                         if(g_cts)
754                                 sdelay = 0; // no respawn delay in CTS
755                         else
756                                 sdelay = autocvar_g_respawn_delay;
757                 }
758                 waves = cvar(strcat("g_", GetGametype(), "_respawn_waves"));
759                 if(!waves)
760                         waves = autocvar_g_respawn_waves;
761                 if(waves)
762                         self.respawn_time = ceil((time + sdelay) / waves) * waves;
763                 else
764                         self.respawn_time = time + sdelay;
765                 if((sdelay + waves >= 5.0) && (self.respawn_time - time > 1.75))
766                         self.respawn_countdown = 10; // first number to count down from is 10
767                 else
768                         self.respawn_countdown = -1; // do not count down
769                 self.death_time = time;
770                 if (random() < 0.5)
771                         setanim(self, self.anim_die1, FALSE, TRUE, TRUE);
772                 else
773                         setanim(self, self.anim_die2, FALSE, TRUE, TRUE);
774                 if (self.maxs_z > 5)
775                 {
776                         self.maxs_z = 5;
777                         setsize(self, self.mins, self.maxs);
778                 }
779                 // set damage function to corpse damage
780                 self.event_damage = PlayerCorpseDamage;
781                 // call the corpse damage function just in case it wants to gib
782                 self.event_damage(inflictor, attacker, excess, deathtype, hitloc, force);
783                 // set up to fade out later
784                 SUB_SetFade (self, time + 6 + random (), 1);
785
786                 if(sv_gentle > 0 || autocvar_ekg) {
787                         // remove corpse
788                         PlayerCorpseDamage (inflictor, attacker, autocvar_sv_gibhealth+1.0, deathtype, hitloc, force);
789                 }
790
791                 // reset fields the weapons may use just in case
792                 for (j = WEP_FIRST; j <= WEP_LAST; ++j)
793                 {
794                         weapon_action(j, WR_RESETPLAYER);
795                         ATTACK_FINISHED_FOR(self, j) = 0;
796                 }
797         }
798 }
799
800 .float muted; // to be used by prvm_edictset server playernumber muted 1
801 float Say(entity source, float teamsay, entity privatesay, string msgin, float floodcontrol)
802 // message "": do not say, just test flood control
803 // return value:
804 //   1 = accept
805 //   0 = reject
806 //  -1 = fake accept
807 {
808         string msgstr, colorstr, cmsgstr, namestr, fullmsgstr, sourcemsgstr, fullcmsgstr, sourcecmsgstr, privatemsgprefix;
809         float flood, privatemsgprefixlen;
810         var .float flood_field;
811         entity head;
812         float ret;
813
814         if(Ban_MaybeEnforceBan(source))
815                 return 0;
816
817         if(!teamsay && !privatesay)
818                 if(substring(msgin, 0, 1) == " ")
819                         msgin = substring(msgin, 1, strlen(msgin) - 1); // work around DP say bug (say_team does not have this!)
820
821         msgin = formatmessage(msgin);
822
823         if(source.classname != "player")
824                 colorstr = "^0"; // black for spectators
825         else if(teamplay)
826                 colorstr = Team_ColorCode(source.team);
827         else
828                 teamsay = FALSE;
829
830         if(intermission_running)
831                 teamsay = FALSE;
832
833         if(msgin != "")
834                 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
835
836         /*
837          * using bprint solves this... me stupid
838         // how can we prevent the message from appearing in a listen server?
839         // for now, just give "say" back and only handle say_team
840         if(!teamsay)
841         {
842                 clientcommand(self, strcat("say ", msgin));
843                 return;
844         }
845         */
846
847         if(autocvar_g_chat_teamcolors)
848                 namestr = playername(source);
849         else
850                 namestr = source.netname;
851
852         if(msgin != "")
853         {
854                 if(privatesay)
855                 {
856                         msgstr = strcat("\{1}\{13}* ^3", namestr, "^3 tells you: ^7");
857                         privatemsgprefixlen = strlen(msgstr);
858                         msgstr = strcat(msgstr, msgin);
859                         cmsgstr = strcat(colorstr, "^3", namestr, "^3 tells you:\n^7", msgin);
860                         if(autocvar_g_chat_teamcolors)
861                                 privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay), ": ^7");
862                         else
863                                 privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", privatesay.netname, ": ^7");
864                 }
865                 else if(teamsay)
866                 {
867                         msgstr = strcat("\{1}\{13}", colorstr, "(^3", namestr, colorstr, ") ^7", msgin);
868                         cmsgstr = strcat(colorstr, "(^3", namestr, colorstr, ")\n^7", msgin);
869                 }
870                 else
871                 {
872                         msgstr = strcat("\{1}", namestr, "^7: ", msgin);
873                         cmsgstr = "";
874                 }
875                 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
876         }
877         else
878         {
879                 msgstr = cmsgstr = "";
880         }
881
882         fullmsgstr = msgstr;
883         fullcmsgstr = cmsgstr;
884
885         // FLOOD CONTROL
886         flood = 0;
887         if(floodcontrol)
888         {
889                 float flood_spl;
890                 float flood_burst;
891                 float flood_lmax;
892                 float lines;
893                 if(privatesay)
894                 {
895                         flood_spl = autocvar_g_chat_flood_spl_tell;
896                         flood_burst = autocvar_g_chat_flood_burst_tell;
897                         flood_lmax = autocvar_g_chat_flood_lmax_tell;
898                         flood_field = floodcontrol_chattell;
899                 }
900                 else if(teamsay)
901                 {
902                         flood_spl = autocvar_g_chat_flood_spl_team;
903                         flood_burst = autocvar_g_chat_flood_burst_team;
904                         flood_lmax = autocvar_g_chat_flood_lmax_team;
905                         flood_field = floodcontrol_chatteam;
906                 }
907                 else
908                 {
909                         flood_spl = autocvar_g_chat_flood_spl;
910                         flood_burst = autocvar_g_chat_flood_burst;
911                         flood_lmax = autocvar_g_chat_flood_lmax;
912                         flood_field = floodcontrol_chat;
913                 }
914                 flood_burst = max(0, flood_burst - 1);
915                 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
916
917                 // do flood control for the default line size
918                 if(msgstr != "")
919                 {
920                         getWrappedLine_remaining = msgstr;
921                         msgstr = "";
922                         lines = 0;
923                         while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
924                         {
925                                 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
926                                 ++lines;
927                         }
928                         msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
929
930                         if(getWrappedLine_remaining != "")
931                         {
932                                 msgstr = strcat(msgstr, "\n");
933                                 flood = 2;
934                         }
935
936                         if(time >= source.flood_field)
937                         {
938                                 source.flood_field = max(time - flood_burst * flood_spl, source.flood_field) + lines * flood_spl;
939                         }
940                         else
941                         {
942                                 flood = 1;
943                                 msgstr = fullmsgstr;
944                         }
945                 }
946                 else
947                 {
948                         if(time >= source.flood_field)
949                                 source.flood_field = max(time - flood_burst * flood_spl, source.flood_field) + flood_spl;
950                         else
951                                 flood = 1;
952                 }
953
954                 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
955                         source.flood_field = flood = 0;
956         }
957
958         if(flood == 2) // cannot happen for empty msgstr
959         {
960                 if(autocvar_g_chat_flood_notify_flooder)
961                 {
962                         sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
963                         sourcecmsgstr = "";
964                 }
965                 else
966                 {
967                         sourcemsgstr = fullmsgstr;
968                         sourcecmsgstr = fullcmsgstr;
969                 }
970                 cmsgstr = "";
971         }
972         else
973         {
974                 sourcemsgstr = msgstr;
975                 sourcecmsgstr = cmsgstr;
976         }
977
978         if(!privatesay)
979         if(source.classname != "player")
980         {
981                 if(teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !inWarmupStage))
982                         teamsay = -1; // spectators
983         }
984
985         if(flood)
986                 print("NOTE: ", playername(source), "^7 is flooding.\n");
987
988         // build sourcemsgstr by cutting off a prefix and replacing it by the other one
989         if(privatesay)
990                 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
991
992         if(source.muted)
993         {
994                 // always fake the message
995                 ret = -1;
996         }
997         else if(flood == 1)
998         {
999                 if(autocvar_g_chat_flood_notify_flooder)
1000                 {
1001                         sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.flood_field - time), "^3 seconds\n"));
1002                         ret = 0;
1003                 }
1004                 else
1005                         ret = -1;
1006         }
1007         else
1008         {
1009                 ret = 1;
1010         }
1011
1012         if(sourcemsgstr != "" && ret != 0)
1013         {
1014                 if(ret < 0) // fake
1015                 {
1016                         sprint(source, sourcemsgstr);
1017                         if(sourcecmsgstr != "" && !privatesay)
1018                                 centerprint(source, sourcecmsgstr);
1019                 }
1020                 else if(privatesay)
1021                 {
1022                         sprint(source, sourcemsgstr);
1023                         sprint(privatesay, msgstr);
1024                         if(cmsgstr != "")
1025                                 centerprint(privatesay, cmsgstr);
1026                 }
1027                 else if(teamsay > 0)
1028                 {
1029                         sprint(source, sourcemsgstr);
1030                         if(sourcecmsgstr != "")
1031                                 centerprint(source, sourcecmsgstr);
1032                         FOR_EACH_REALPLAYER(head) if(head.team == source.team)
1033                                 if(head != source)
1034                                 {
1035                                         sprint(head, msgstr);
1036                                         if(cmsgstr != "")
1037                                                 centerprint(head, cmsgstr);
1038                                 }
1039                 }
1040                 else if(teamsay < 0)
1041                 {
1042                         sprint(source, sourcemsgstr);
1043                         FOR_EACH_REALCLIENT(head) if(head.classname != "player")
1044                                 if(head != source)
1045                                         sprint(head, msgstr);
1046                 }
1047                 else if(sourcemsgstr != msgstr)
1048                 {
1049                         sprint(source, sourcemsgstr);
1050                         FOR_EACH_REALCLIENT(head)
1051                                 if(head != source)
1052                                         sprint(head, msgstr);
1053                 }
1054                 else
1055                         bprint(msgstr);
1056         }
1057
1058         return ret;
1059 }
1060
1061 float GetVoiceMessageVoiceType(string type)
1062 {
1063         if(type == "taunt")
1064                 return VOICETYPE_TAUNT;
1065         if(type == "teamshoot")
1066                 return VOICETYPE_LASTATTACKER;
1067         return VOICETYPE_TEAMRADIO;
1068 }
1069
1070 string allvoicesamples;
1071 .string GetVoiceMessageSampleField(string type)
1072 {
1073         GetPlayerSoundSampleField_notFound = 0;
1074         switch(type)
1075         {
1076 #define _VOICEMSG(m) case #m: return playersound_##m;
1077                 ALLVOICEMSGS
1078 #undef _VOICEMSG
1079         }
1080         GetPlayerSoundSampleField_notFound = 1;
1081         return playersound_taunt;
1082 }
1083
1084 .string GetPlayerSoundSampleField(string type)
1085 {
1086         GetPlayerSoundSampleField_notFound = 0;
1087         switch(type)
1088         {
1089 #define _VOICEMSG(m) case #m: return playersound_##m;
1090                 ALLPLAYERSOUNDS
1091 #undef _VOICEMSG
1092         }
1093         GetPlayerSoundSampleField_notFound = 1;
1094         return playersound_taunt;
1095 }
1096
1097 void PrecacheGlobalSound(string samplestring)
1098 {
1099         float n, i;
1100         tokenize_console(samplestring);
1101         n = stof(argv(1));
1102         if(n > 0)
1103         {
1104                 for(i = 1; i <= n; ++i)
1105                         precache_sound(strcat(argv(0), ftos(i), ".wav"));
1106         }
1107         else
1108         {
1109                 precache_sound(strcat(argv(0), ".wav"));
1110         }
1111 }
1112
1113 void PrecachePlayerSounds(string f)
1114 {
1115         float fh;
1116         string s;
1117         fh = fopen(f, FILE_READ);
1118         if(fh < 0)
1119                 return;
1120         while((s = fgets(fh)))
1121         {
1122                 if(tokenize_console(s) != 3)
1123                 {
1124                         dprint("Invalid sound info line: ", s, "\n");
1125                         continue;
1126                 }
1127                 PrecacheGlobalSound(strcat(argv(1), " ", argv(2)));
1128         }
1129         fclose(fh);
1130
1131         if not(allvoicesamples)
1132         {
1133 #define _VOICEMSG(m) allvoicesamples = strcat(allvoicesamples, " ", #m);
1134                 ALLVOICEMSGS
1135 #undef _VOICEMSG
1136                 allvoicesamples = strzone(substring(allvoicesamples, 1, strlen(allvoicesamples) - 1));
1137         }
1138 }
1139
1140 void ClearPlayerSounds()
1141 {
1142 #define _VOICEMSG(m) if(self.playersound_##m) { strunzone(self.playersound_##m); self.playersound_##m = string_null; }
1143         ALLPLAYERSOUNDS
1144         ALLVOICEMSGS
1145 #undef _VOICEMSG
1146 }
1147
1148 float LoadPlayerSounds(string f, float first)
1149 {
1150         float fh;
1151         string s;
1152         var .string field;
1153         fh = fopen(f, FILE_READ);
1154         if(fh < 0)
1155         {
1156                 dprint("Player sound file not found: ", f, "\n");
1157                 return 0;
1158         }
1159         while((s = fgets(fh)))
1160         {
1161                 if(tokenize_console(s) != 3)
1162                         continue;
1163                 field = GetPlayerSoundSampleField(argv(0));
1164                 if(GetPlayerSoundSampleField_notFound)
1165                         field = GetVoiceMessageSampleField(argv(0));
1166                 if(GetPlayerSoundSampleField_notFound)
1167                         continue;
1168                 if(self.field)
1169                         strunzone(self.field);
1170                 self.field = strzone(strcat(argv(1), " ", argv(2)));
1171         }
1172         fclose(fh);
1173         return 1;
1174 }
1175
1176 .float modelindex_for_playersound;
1177 .float skin_for_playersound;
1178 void UpdatePlayerSounds()
1179 {
1180         if(self.modelindex == self.modelindex_for_playersound)
1181         if(self.skin == self.skin_for_playersound)
1182                 return;
1183         self.modelindex_for_playersound = self.modelindex;
1184         self.skin_for_playersound = self.skin;
1185         ClearPlayerSounds();
1186         LoadPlayerSounds("sound/player/default.sounds", 1);
1187         if(!autocvar_g_debug_defaultsounds)
1188                 if(!LoadPlayerSounds(get_model_datafilename(self.model, self.skin, "sounds"), 0))
1189                         LoadPlayerSounds(get_model_datafilename(self.model, 0, "sounds"), 0);
1190 }
1191
1192 void FakeGlobalSound(string sample, float chan, float voicetype)
1193 {
1194         float n;
1195         float tauntrand;
1196
1197         if(sample == "")
1198                 return;
1199
1200         tokenize_console(sample);
1201         n = stof(argv(1));
1202         if(n > 0)
1203                 sample = strcat(argv(0), ftos(floor(random() * n + 1)), ".wav"); // randomization
1204         else
1205                 sample = strcat(argv(0), ".wav"); // randomization
1206
1207         switch(voicetype)
1208         {
1209                 case VOICETYPE_LASTATTACKER_ONLY:
1210                         break;
1211                 case VOICETYPE_LASTATTACKER:
1212                         if(self.pusher)
1213                         {
1214                                 msg_entity = self;
1215                                 if(clienttype(msg_entity) == CLIENTTYPE_REAL)
1216                                         soundto(MSG_ONE, self, chan, sample, VOL_BASE, ATTN_NONE);
1217                         }
1218                         break;
1219                 case VOICETYPE_TEAMRADIO:
1220                         msg_entity = self;
1221                         if(msg_entity.cvar_cl_voice_directional == 1)
1222                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_MIN);
1223                         else
1224                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1225                         break;
1226                 case VOICETYPE_AUTOTAUNT:
1227                         if(!sv_autotaunt)
1228                                 break;
1229                         if(!sv_taunt)
1230                                 break;
1231                         if(sv_gentle)
1232                                 break;
1233                         tauntrand = random();
1234                         msg_entity = self;
1235                         if (tauntrand < msg_entity.cvar_cl_autotaunt)
1236                         {
1237                                 if (msg_entity.cvar_cl_voice_directional >= 1)
1238                                         soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));
1239                                 else
1240                                         soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1241                         }
1242                         break;
1243                 case VOICETYPE_TAUNT:
1244                         if(self.classname == "player")
1245                                 if(self.deadflag == DEAD_NO)
1246                                         setanim(self, self.anim_taunt, FALSE, TRUE, TRUE);
1247                         if(!sv_taunt)
1248                                 break;
1249                         if(sv_gentle)
1250                                 break;
1251                         msg_entity = self;
1252                         if (msg_entity.cvar_cl_voice_directional >= 1)
1253                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));
1254                         else
1255                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1256                         break;
1257                 case VOICETYPE_PLAYERSOUND:
1258                         msg_entity = self;
1259                         soundto(MSG_ONE, self, chan, sample, VOL_BASE, ATTN_NORM);
1260                         break;
1261                 default:
1262                         backtrace("Invalid voice type!");
1263                         break;
1264         }
1265 }
1266
1267 void GlobalSound(string sample, float chan, float voicetype)
1268 {
1269         float n;
1270         float tauntrand;
1271
1272         if(sample == "")
1273                 return;
1274
1275         tokenize_console(sample);
1276         n = stof(argv(1));
1277         if(n > 0)
1278                 sample = strcat(argv(0), ftos(floor(random() * n + 1)), ".wav"); // randomization
1279         else
1280                 sample = strcat(argv(0), ".wav"); // randomization
1281
1282         switch(voicetype)
1283         {
1284                 case VOICETYPE_LASTATTACKER_ONLY:
1285                         if(self.pusher)
1286                         {
1287                                 msg_entity = self.pusher;
1288                                 if(clienttype(msg_entity) == CLIENTTYPE_REAL)
1289                                 {
1290                                         if(msg_entity.cvar_cl_voice_directional == 1)
1291                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_MIN);
1292                                         else
1293                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1294                                 }
1295                         }
1296                         break;
1297                 case VOICETYPE_LASTATTACKER:
1298                         if(self.pusher)
1299                         {
1300                                 msg_entity = self.pusher;
1301                                 if(clienttype(msg_entity) == CLIENTTYPE_REAL)
1302                                 {
1303                                         if(msg_entity.cvar_cl_voice_directional == 1)
1304                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_MIN);
1305                                         else
1306                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1307                                 }
1308                                 msg_entity = self;
1309                                 if(clienttype(msg_entity) == CLIENTTYPE_REAL)
1310                                         soundto(MSG_ONE, self, chan, sample, VOL_BASE, ATTN_NONE);
1311                         }
1312                         break;
1313                 case VOICETYPE_TEAMRADIO:
1314                         FOR_EACH_REALCLIENT(msg_entity)
1315                                 if(!teamplay || msg_entity.team == self.team)
1316                                 {
1317                                         if(msg_entity.cvar_cl_voice_directional == 1)
1318                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_MIN);
1319                                         else
1320                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1321                                 }
1322                         break;
1323                 case VOICETYPE_AUTOTAUNT:
1324                         if(!sv_autotaunt)
1325                                 break;
1326                         if(!sv_taunt)
1327                                 break;
1328                         if(sv_gentle)
1329                                 break;
1330                         tauntrand = random();
1331                         FOR_EACH_REALCLIENT(msg_entity)
1332                                 if (tauntrand < msg_entity.cvar_cl_autotaunt)
1333                                 {
1334                                         if (msg_entity.cvar_cl_voice_directional >= 1)
1335                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));
1336                                         else
1337                                                 soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1338                                 }
1339                         break;
1340                 case VOICETYPE_TAUNT:
1341                         if(self.classname == "player")
1342                                 if(self.deadflag == DEAD_NO)
1343                                         setanim(self, self.anim_taunt, FALSE, TRUE, TRUE);
1344                         if(!sv_taunt)
1345                                 break;
1346                         if(sv_gentle)
1347                                 break;
1348                         FOR_EACH_REALCLIENT(msg_entity)
1349                         {
1350                                 if (msg_entity.cvar_cl_voice_directional >= 1)
1351                                         soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));
1352                                 else
1353                                         soundto(MSG_ONE, self, chan, sample, VOL_BASEVOICE, ATTN_NONE);
1354                         }
1355                         break;
1356                 case VOICETYPE_PLAYERSOUND:
1357                         sound(self, chan, sample, VOL_BASE, ATTN_NORM);
1358                         break;
1359                 default:
1360                         backtrace("Invalid voice type!");
1361                         break;
1362         }
1363 }
1364
1365 void PlayerSound(.string samplefield, float chan, float voicetype)
1366 {
1367         GlobalSound(self.samplefield, chan, voicetype);
1368 }
1369
1370 void VoiceMessage(string type, string msg)
1371 {
1372         var .string sample;
1373         float voicetype, ownteam;
1374         float flood;
1375         sample = GetVoiceMessageSampleField(type);
1376
1377         if(GetPlayerSoundSampleField_notFound)
1378         {
1379                 sprint(self, strcat("Invalid voice. Use one of: ", allvoicesamples, "\n"));
1380                 return;
1381         }
1382
1383         voicetype = GetVoiceMessageVoiceType(type);
1384         ownteam = (voicetype == VOICETYPE_TEAMRADIO);
1385
1386         flood = Say(self, ownteam, world, msg, 1);
1387
1388         if (flood > 0)
1389                 GlobalSound(self.sample, CH_VOICE, voicetype);
1390         else if (flood < 0)
1391                 FakeGlobalSound(self.sample, CH_VOICE, voicetype);
1392 }
1393
1394 void MoveToTeam(entity client, float team_colour, float type, float show_message)
1395 {
1396 //      show_message
1397 //      0 (00) automove centerprint, admin message
1398 //      1 (01) automove centerprint, no admin message
1399 //      2 (10) no centerprint, admin message
1400 //      3 (11) no centerprint, no admin message
1401
1402         float lockteams_backup;
1403
1404         lockteams_backup = lockteams;  // backup any team lock
1405
1406         lockteams = 0;  // disable locked teams
1407
1408         TeamchangeFrags(client);  // move the players frags
1409         SetPlayerColors(client, team_colour - 1);  // set the players colour
1410         Damage(client, client, client, 100000, ((show_message & 2) ? DEATH_QUIET : DEATH_AUTOTEAMCHANGE), client.origin, '0 0 0');  // kill the player
1411
1412         lockteams = lockteams_backup;  // restore the team lock
1413
1414         LogTeamchange(client.playerid, client.team, type);
1415
1416         if not(show_message & 1) // admin message
1417                 sprint(client, strcat("\{1}\{13}^3", admin_name(), "^7: You have been moved to the ", Team_ColorNameLowerCase(team_colour), " team\n"));  // send a chat message
1418
1419         bprint(strcat(client.netname, " joined the ", ColoredTeamName(client.team), "\n"));
1420 }