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