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