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