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