]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/player.qc
0b9e36b5503d79692d00a05212c45c68732acc75
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / player.qc
1 #include "player.qh"
2
3 #include <common/effects/all.qh>
4 #include "bot/api.qh"
5 #include "cheats.qh"
6 #include "g_damage.qh"
7 #include "handicap.qh"
8 #include "miscfunctions.qh"
9 #include "portals.qh"
10 #include "teamplay.qh"
11 #include "weapons/throwing.qh"
12 #include "command/common.qh"
13 #include "../common/state.qh"
14 #include "../common/anim.qh"
15 #include "../common/animdecide.qh"
16 #include "../common/csqcmodel_settings.qh"
17 #include "../common/gamemodes/sv_rules.qh"
18 #include "../common/deathtypes/all.qh"
19 #include "../common/mapobjects/subs.qh"
20 #include "../common/playerstats.qh"
21 #include "../lib/csqcmodel/sv_model.qh"
22
23 #include "../common/minigames/sv_minigames.qh"
24
25 #include "../common/physics/player.qh"
26 #include "../common/effects/qc/_mod.qh"
27 #include "../common/mutators/mutator/waypoints/waypointsprites.qh"
28 #include "../common/mapobjects/_mod.qh"
29 #include "../common/wepent.qh"
30
31 #include "weapons/weaponstats.qh"
32
33 #include "../common/animdecide.qh"
34
35 void Drop_Special_Items(entity player)
36 {
37         // called when the player has become stuck or frozen
38         // so objective items aren't stuck with the player
39
40         MUTATOR_CALLHOOK(DropSpecialItems, player);
41 }
42
43 void CopyBody_Think(entity this)
44 {
45         if(this.CopyBody_nextthink && time > this.CopyBody_nextthink)
46         {
47                 this.CopyBody_think(this);
48                 if(wasfreed(this))
49                         return;
50                 this.CopyBody_nextthink = this.nextthink;
51                 this.CopyBody_think = getthink(this);
52                 setthink(this, CopyBody_Think);
53         }
54         CSQCMODEL_AUTOUPDATE(this);
55         this.nextthink = time;
56 }
57 void CopyBody(entity this, float keepvelocity)
58 {
59         if (this.effects & EF_NODRAW)
60                 return;
61         entity clone = new(body);
62         clone.enemy = this;
63         clone.lip = this.lip;
64         clone.colormap = this.colormap;
65         clone.iscreature = this.iscreature;
66         clone.teleportable = this.teleportable;
67         clone.damagedbycontents = this.damagedbycontents;
68         if(clone.damagedbycontents)
69                 IL_PUSH(g_damagedbycontents, clone);
70         clone.angles = this.angles;
71         clone.v_angle = this.v_angle;
72         clone.avelocity = this.avelocity;
73         clone.damageforcescale = this.damageforcescale;
74         clone.effects = this.effects;
75         clone.glowmod = this.glowmod;
76         clone.event_damage = this.event_damage;
77         clone.anim_state = this.anim_state;
78         clone.anim_time = this.anim_time;
79         clone.anim_lower_action = this.anim_lower_action;
80         clone.anim_lower_time = this.anim_lower_time;
81         clone.anim_upper_action = this.anim_upper_action;
82         clone.anim_upper_time = this.anim_upper_time;
83         clone.anim_implicit_state = this.anim_implicit_state;
84         clone.anim_implicit_time = this.anim_implicit_time;
85         clone.anim_lower_implicit_action = this.anim_lower_implicit_action;
86         clone.anim_lower_implicit_time = this.anim_lower_implicit_time;
87         clone.anim_upper_implicit_action = this.anim_upper_implicit_action;
88         clone.anim_upper_implicit_time = this.anim_upper_implicit_time;
89         clone.dphitcontentsmask = this.dphitcontentsmask;
90         clone.death_time = this.death_time;
91         clone.pain_finished = this.pain_finished;
92         SetResourceAmountExplicit(clone, RESOURCE_HEALTH, GetResourceAmount(this, RESOURCE_HEALTH));
93         SetResourceAmountExplicit(clone, RESOURCE_ARMOR, GetResourceAmount(this, RESOURCE_ARMOR));
94         clone.armortype = this.armortype;
95         clone.model = this.model;
96         clone.modelindex = this.modelindex;
97         clone.skin = this.skin;
98         clone.species = this.species;
99         clone.move_qcphysics = false; // don't run gamecode logic on clones, too many
100         set_movetype(clone, this.move_movetype);
101         clone.solid = this.solid;
102         clone.takedamage = this.takedamage;
103         setcefc(clone, getcefc(this));
104         clone.uncustomizeentityforclient = this.uncustomizeentityforclient;
105         clone.uncustomizeentityforclient_set = this.uncustomizeentityforclient_set;
106         if (keepvelocity == 1)
107                 clone.velocity = this.velocity;
108         clone.oldvelocity = clone.velocity;
109         clone.alpha = this.alpha;
110         clone.fade_time = this.fade_time;
111         clone.fade_rate = this.fade_rate;
112         //clone.weapon = this.weapon;
113         setorigin(clone, this.origin);
114         setsize(clone, this.mins, this.maxs);
115         clone.reset = SUB_Remove;
116         clone._ps = this._ps;
117
118         Drag_MoveDrag(this, clone);
119
120         if(clone.colormap <= maxclients && clone.colormap > 0)
121                 clone.colormap = 1024 + this.clientcolors;
122
123         CSQCMODEL_AUTOINIT(clone);
124         clone.CopyBody_nextthink = this.nextthink;
125         clone.CopyBody_think = getthink(this);
126         clone.nextthink = time;
127         setthink(clone, CopyBody_Think);
128         // "bake" the current animation frame for clones (they don't get clientside animation)
129         animdecide_load_if_needed(clone);
130         animdecide_setframes(clone, false, frame, frame1time, frame2, frame2time);
131
132         IL_PUSH(g_clones, clone);
133
134         MUTATOR_CALLHOOK(CopyBody, this, clone, keepvelocity);
135 }
136
137 void player_setupanimsformodel(entity this)
138 {
139         // load animation info
140         animdecide_load_if_needed(this);
141         animdecide_setstate(this, 0, false);
142 }
143
144 void player_anim(entity this)
145 {
146         int deadbits = (this.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
147         if(IS_DEAD(this)) {
148                 if (!deadbits) {
149                         // Decide on which death animation to use.
150                         if(random() < 0.5)
151                                 deadbits = ANIMSTATE_DEAD1;
152                         else
153                                 deadbits = ANIMSTATE_DEAD2;
154                 }
155         } else {
156                 // Clear a previous death animation.
157                 deadbits = 0;
158         }
159         int animbits = deadbits;
160         if(STAT(FROZEN, this))
161                 animbits |= ANIMSTATE_FROZEN;
162         if(this.move_movetype == MOVETYPE_FOLLOW)
163                 animbits |= ANIMSTATE_FOLLOW;
164         if(this.crouch)
165                 animbits |= ANIMSTATE_DUCK;
166         animdecide_setstate(this, animbits, false);
167         animdecide_setimplicitstate(this, IS_ONGROUND(this));
168 }
169
170 void PlayerCorpseDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
171 {
172         float take, save;
173         vector v;
174         Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
175
176         v = healtharmor_applydamage(GetResourceAmount(this, RESOURCE_ARMOR), autocvar_g_balance_armor_blockpercent, deathtype, damage);
177         take = v.x;
178         save = v.y;
179
180         if(sound_allowed(MSG_BROADCAST, attacker))
181         {
182                 if (save > 10)
183                         sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
184                 else if (take > 30)
185                         sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
186                 else if (take > 10)
187                         sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM);
188         }
189
190         if (take > 50)
191                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
192         if (take > 100)
193                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
194
195         TakeResource(this, RESOURCE_ARMOR, save);
196         TakeResource(this, RESOURCE_HEALTH, take);
197         // pause regeneration for 5 seconds
198         this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
199
200         this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
201         this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
202         this.dmg_inflictor = inflictor;
203
204         if (GetResourceAmount(this, RESOURCE_HEALTH) <= -autocvar_sv_gibhealth && this.alpha >= 0)
205         {
206                 // don't use any animations as a gib
207                 this.frame = 0;
208                 // view just above the floor
209                 this.view_ofs = '0 0 4';
210
211                 Violence_GibSplash(this, 1, 1, attacker);
212                 this.alpha = -1;
213                 this.solid = SOLID_NOT; // restore later
214                 this.takedamage = DAMAGE_NO; // restore later
215                 if(this.damagedbycontents)
216                         IL_REMOVE(g_damagedbycontents, this);
217                 this.damagedbycontents = false;
218         }
219 }
220
221 void calculate_player_respawn_time(entity this)
222 {
223         if(MUTATOR_CALLHOOK(CalculateRespawnTime, this))
224                 return;
225
226         float gametype_setting_tmp;
227         float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
228         float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
229         float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
230         float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
231         float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
232         float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
233
234         float pcount = 1;  // Include myself whether or not team is already set right and I'm a "player".
235         if (teamplay)
236         {
237                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
238                         if(it.team == this.team)
239                                 ++pcount;
240                 });
241                 if (sdelay_small_count == 0)
242                         sdelay_small_count = 1;
243                 if (sdelay_large_count == 0)
244                         sdelay_large_count = 1;
245         }
246         else
247         {
248                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
249                         ++pcount;
250                 });
251                 if (sdelay_small_count == 0)
252                 {
253                         if (IS_INDEPENDENT_PLAYER(this))
254                         {
255                                 // Players play independently. No point in requiring enemies.
256                                 sdelay_small_count = 1;
257                         }
258                         else
259                         {
260                                 // Players play AGAINST each other. Enemies required.
261                                 sdelay_small_count = 2;
262                         }
263                 }
264                 if (sdelay_large_count == 0)
265                 {
266                         if (IS_INDEPENDENT_PLAYER(this))
267                         {
268                                 // Players play independently. No point in requiring enemies.
269                                 sdelay_large_count = 1;
270                         }
271                         else
272                         {
273                                 // Players play AGAINST each other. Enemies required.
274                                 sdelay_large_count = 2;
275                         }
276                 }
277         }
278
279         float sdelay;
280
281         if (pcount <= sdelay_small_count)
282                 sdelay = sdelay_small;
283         else if (pcount >= sdelay_large_count)
284                 sdelay = sdelay_large;
285         else  // NOTE: this case implies sdelay_large_count > sdelay_small_count.
286                 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
287
288         if(waves)
289                 this.respawn_time = ceil((time + sdelay) / waves) * waves;
290         else
291                 this.respawn_time = time + sdelay;
292
293         if(sdelay < sdelay_max)
294                 this.respawn_time_max = time + sdelay_max;
295         else
296                 this.respawn_time_max = this.respawn_time;
297
298         if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
299                 this.respawn_countdown = 10; // first number to count down from is 10
300         else
301                 this.respawn_countdown = -1; // do not count down
302
303         if(autocvar_g_forced_respawn)
304                 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
305 }
306
307 void PlayerDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
308 {
309         float take, save, dh, da;
310         vector v;
311         float excess;
312
313         dh = max(GetResourceAmount(this, RESOURCE_HEALTH), 0);
314         da = max(GetResourceAmount(this, RESOURCE_ARMOR), 0);
315
316         if(!DEATH_ISSPECIAL(deathtype))
317         {
318                 damage *= Handicap_GetTotalHandicap(this);
319                 if (this != attacker && IS_PLAYER(attacker))
320                 {
321                         damage /= Handicap_GetTotalHandicap(attacker);
322                 }
323         }
324
325         if (time < this.spawnshieldtime && autocvar_g_spawnshield_blockdamage < 1)
326                 damage *= 1 - max(0, autocvar_g_spawnshield_blockdamage);
327
328         if(DEATH_ISWEAPON(deathtype, WEP_TUBA))
329         {
330                 // tuba causes blood to come out of the ears
331                 vector ear1, ear2;
332                 vector d;
333                 float f;
334                 ear1 = this.origin;
335                 ear1_z += 0.125 * this.view_ofs.z + 0.875 * this.maxs.z; // 7/8
336                 ear2 = ear1;
337                 makevectors(this.angles);
338                 ear1 += v_right * -10;
339                 ear2 += v_right * +10;
340                 d = inflictor.origin - this.origin;
341                 if (d)
342                         f = (d * v_right) / vlen(d); // this is cos of angle of d and v_right!
343                 else
344                         f = 0;  // Assum ecenter.
345                 force = v_right * vlen(force);
346                 Violence_GibSplash_At(ear1, force * -1, 2, bound(0, damage, 25) / 2 * (0.5 - 0.5 * f), this, attacker);
347                 Violence_GibSplash_At(ear2, force,      2, bound(0, damage, 25) / 2 * (0.5 + 0.5 * f), this, attacker);
348                 if(f > 0)
349                 {
350                         hitloc = ear1;
351                         force = force * -1;
352                 }
353                 else
354                 {
355                         hitloc = ear2;
356                         // force is already good
357                 }
358         }
359         else
360                 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
361
362         v = healtharmor_applydamage(GetResourceAmount(this, RESOURCE_ARMOR), autocvar_g_balance_armor_blockpercent, deathtype, damage);
363         take = v.x;
364         save = v.y;
365
366         if(attacker == this)
367         {
368                 // don't reset pushltime for this damage as it may be an attempt to
369                 // escape a lava pit or similar
370                 //this.pushltime = 0;
371                 this.istypefrag = 0;
372         }
373         else if(IS_PLAYER(attacker))
374         {
375                 this.pusher = attacker;
376                 this.pushltime = time + autocvar_g_maxpushtime;
377                 this.istypefrag = PHYS_INPUT_BUTTON_CHAT(this);
378         }
379         else if(time < this.pushltime)
380         {
381                 attacker = this.pusher;
382                 this.pushltime = max(this.pushltime, time + 0.6);
383         }
384         else
385         {
386                 this.pushltime = 0;
387                 this.istypefrag = 0;
388         }
389
390         MUTATOR_CALLHOOK(PlayerDamage_SplitHealthArmor, inflictor, attacker, this, force, take, save, deathtype, damage);
391         take = bound(0, M_ARGV(4, float), GetResourceAmount(this, RESOURCE_HEALTH));
392         save = bound(0, M_ARGV(5, float), GetResourceAmount(this, RESOURCE_ARMOR));
393         excess = max(0, damage - take - save);
394
395         if(sound_allowed(MSG_BROADCAST, attacker))
396         {
397                 if (save > 10)
398                         sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
399                 else if (take > 30)
400                         sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
401                 else if (take > 10)
402                         sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM); // FIXME possibly remove them?
403         }
404
405         if (take > 50)
406                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
407         if (take > 100)
408                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
409
410         if (time >= this.spawnshieldtime || autocvar_g_spawnshield_blockdamage < 1)
411         {
412                 if (!(this.flags & FL_GODMODE))
413                 {
414                         TakeResource(this, RESOURCE_ARMOR, save);
415                         TakeResource(this, RESOURCE_HEALTH, take);
416                         // pause regeneration for 5 seconds
417                         if(take)
418                                 this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
419
420                         if (time > this.pain_finished)          //Don't switch pain sequences like crazy
421                         {
422                                 this.pain_finished = time + 0.5;        //Supajoe
423
424                                 if(autocvar_sv_gentle < 1) {
425                                         if(this.classname != "body") // pain anim is BORKED on our ZYMs, FIXME remove this once we have good models
426                                         {
427                                                 if (!this.animstate_override)
428                                                 {
429                                                         if (random() > 0.5)
430                                                                 animdecide_setaction(this, ANIMACTION_PAIN1, true);
431                                                         else
432                                                                 animdecide_setaction(this, ANIMACTION_PAIN2, true);
433                                                 }
434                                         }
435                                         float myhp = GetResourceAmount(this, RESOURCE_HEALTH);
436                                         if(myhp > 1)
437                                         if(myhp < 25 || !(DEATH_WEAPONOF(deathtype).spawnflags & WEP_FLAG_CANCLIMB) || take > 20 || attacker != this)
438                                         if(sound_allowed(MSG_BROADCAST, attacker))
439                                         // exclude pain sounds for laserjumps as long as you aren't REALLY low on health and would die of the next two
440                                         {
441                                                 if(deathtype == DEATH_FALL.m_id)
442                                                         PlayerSound(this, playersound_fall, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
443                                                 else if(myhp > 75)
444                                                         PlayerSound(this, playersound_pain100, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
445                                                 else if(myhp > 50)
446                                                         PlayerSound(this, playersound_pain75, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
447                                                 else if(myhp > 25)
448                                                         PlayerSound(this, playersound_pain50, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
449                                                 else
450                                                         PlayerSound(this, playersound_pain25, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
451                                         }
452                                 }
453                         }
454
455                         // throw off bot aim temporarily
456                         float shake;
457                         if(IS_BOT_CLIENT(this) && GetResourceAmount(this, RESOURCE_HEALTH) >= 1)
458                         {
459                                 shake = damage * 5 / (bound(0,skill,100) + 1);
460                                 this.v_angle_x = this.v_angle.x + (random() * 2 - 1) * shake;
461                                 this.v_angle_y = this.v_angle.y + (random() * 2 - 1) * shake;
462                                 this.v_angle_x = bound(-90, this.v_angle.x, 90);
463                         }
464                 }
465                 else
466                         this.max_armorvalue += (save + take);
467         }
468         this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
469         this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
470         this.dmg_inflictor = inflictor;
471
472         if (this != attacker) {
473                 float realdmg = damage - excess;
474                 if (IS_PLAYER(attacker)) {
475                         GameRules_scoring_add(attacker, DMG, realdmg);
476                 }
477                 if (IS_PLAYER(this)) {
478                         GameRules_scoring_add(this, DMGTAKEN, realdmg);
479                 }
480         }
481
482         bool abot = (IS_BOT_CLIENT(attacker));
483         bool vbot = (IS_BOT_CLIENT(this));
484
485         bool valid_damage_for_weaponstats = false;
486         Weapon awep = WEP_Null;
487
488         if(vbot || IS_REAL_CLIENT(this))
489         if(abot || IS_REAL_CLIENT(attacker))
490         if(attacker && this != attacker)
491         if(DIFF_TEAM(this, attacker))
492         {
493                 if(DEATH_ISSPECIAL(deathtype))
494                         awep = attacker.(weaponentity).m_weapon;
495                 else
496                         awep = DEATH_WEAPONOF(deathtype);
497                 valid_damage_for_weaponstats = true;
498         }
499
500         dh = dh - max(GetResourceAmount(this, RESOURCE_HEALTH), 0);
501         da = da - max(GetResourceAmount(this, RESOURCE_ARMOR), 0);
502         if(valid_damage_for_weaponstats)
503         {
504                 WeaponStats_LogDamage(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot, dh + da);
505         }
506
507         MUTATOR_CALLHOOK(PlayerDamaged, attacker, this, dh, da, hitloc, deathtype, damage);
508
509         if (GetResourceAmount(this, RESOURCE_HEALTH) < 1)
510         {
511                 float defer_ClientKill_Now_TeamChange;
512                 defer_ClientKill_Now_TeamChange = false;
513
514                 if(this.alivetime)
515                 {
516                         PlayerStats_GameReport_Event_Player(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
517                         this.alivetime = 0;
518                 }
519
520                 if(valid_damage_for_weaponstats)
521                         WeaponStats_LogKill(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot);
522
523                 if(autocvar_sv_gentle < 1)
524                 if(sound_allowed(MSG_BROADCAST, attacker))
525                 {
526                         if(deathtype == DEATH_DROWN.m_id)
527                                 PlayerSound(this, playersound_drown, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
528                         else
529                                 PlayerSound(this, playersound_death, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
530                 }
531
532                 // get rid of kill indicator
533                 if(this.killindicator)
534                 {
535                         delete(this.killindicator);
536                         this.killindicator = NULL;
537                         if(this.killindicator_teamchange)
538                                 defer_ClientKill_Now_TeamChange = true;
539
540                         if(this.classname == "body")
541                         if(deathtype == DEATH_KILL.m_id)
542                         {
543                                 // for the lemmings fans, a small harmless explosion
544                                 Send_Effect(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1);
545                         }
546                 }
547
548                 // print an obituary message
549                 if(this.classname != "body")
550                         Obituary (attacker, inflictor, this, deathtype, weaponentity);
551
552         // increment frag counter for used weapon type
553         Weapon w = DEATH_WEAPONOF(deathtype);
554                 if(w != WEP_Null && accuracy_isgooddamage(attacker, this))
555                         CS(attacker).accuracy.(accuracy_frags[w.m_id-1]) += 1;
556
557                 this.respawn_time = 0;
558                 MUTATOR_CALLHOOK(PlayerDies, inflictor, attacker, this, deathtype, damage);
559                 damage = M_ARGV(4, float);
560                 excess = max(0, damage - take - save);
561
562                 //Weapon wep = this.(weaponentity).m_weapon;
563                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
564                 {
565                         .entity went = weaponentities[slot];
566                         if(!this.(went))
567                                 continue; // TODO: clones have no weapon, but we don't want to have to check this all the time
568                         Weapon wep = this.(went).m_weapon;
569                         wep.wr_playerdeath(wep, this, went);
570                 }
571
572                 RemoveGrapplingHooks(this);
573
574                 Portal_ClearAllLater(this);
575
576                 this.fixangle = true;
577
578                 if(defer_ClientKill_Now_TeamChange)
579                         ClientKill_Now_TeamChange(this); // can turn player into spectator
580
581                 // player could have been miraculously resuscitated ;)
582                 // e.g. players in freezetag get frozen, they don't really die
583                 if(GetResourceAmount(this, RESOURCE_HEALTH) >= 1 || !(IS_PLAYER(this) || this.classname == "body"))
584                         return;
585
586                 if (!this.respawn_time) // can be set in the mutator hook PlayerDies
587                         calculate_player_respawn_time(this);
588
589                 // when we get here, player actually dies
590
591                 Unfreeze(this); // remove any icy remains
592                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, 0); // Unfreeze resets health, so we need to set it back
593
594                 // clear waypoints
595                 WaypointSprite_PlayerDead(this);
596                 // throw a weapon
597                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
598                 {
599                         .entity went = weaponentities[slot];
600                         SpawnThrownWeapon(this, this.origin + (this.mins + this.maxs) * 0.5, this.(went).m_weapon, went);
601                 }
602
603                 // become fully visible
604                 this.alpha = default_player_alpha;
605                 // make the corpse upright (not tilted)
606                 this.angles_x = 0;
607                 this.angles_z = 0;
608                 // don't spin
609                 this.avelocity = '0 0 0';
610                 // view from the floor
611                 this.view_ofs = '0 0 -8';
612                 // toss the corpse
613                 set_movetype(this, MOVETYPE_TOSS);
614                 // shootable corpse
615                 this.solid = SOLID_CORPSE;
616                 PS(this).ballistics_density = autocvar_g_ballistics_density_corpse;
617                 // don't stick to the floor
618                 UNSET_ONGROUND(this);
619                 // dying animation
620                 this.deadflag = DEAD_DYING;
621
622                 STAT(MOVEVARS_SPECIALCOMMAND, this) = false; // sweet release
623
624                 this.death_time = time;
625                 if (random() < 0.5)
626                         animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD1, true);
627                 else
628                         animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD2, true);
629
630                 // set damage function to corpse damage
631                 this.event_damage = PlayerCorpseDamage;
632                 // call the corpse damage function just in case it wants to gib
633                 this.event_damage(this, inflictor, attacker, excess, deathtype, weaponentity, hitloc, force);
634
635                 // set up to fade out later
636                 SUB_SetFade (this, time + 6 + random (), 1);
637                 // reset body think wrapper broken by SUB_SetFade
638                 if(this.classname == "body" && getthink(this) != CopyBody_Think) {
639                         this.CopyBody_think = getthink(this);
640                         this.CopyBody_nextthink = this.nextthink;
641                         setthink(this, CopyBody_Think);
642                         this.nextthink = time;
643                 }
644
645                 if(autocvar_sv_gentle > 0 || autocvar_ekg || this.classname == "body") {
646                         // remove corpse
647                         // clones don't run any animation code any more, so we must gib them when they die :(
648                         this.event_damage(this, inflictor, attacker, autocvar_sv_gibhealth + 1, deathtype, weaponentity, hitloc, force);
649                 }
650
651                 // reset fields the weapons may use just in case
652                 if(this.classname != "body")
653                 {
654                         FOREACH(Weapons, it != WEP_Null,
655                         {
656                                 it.wr_resetplayer(it, this);
657                                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
658                                 {
659                                         ATTACK_FINISHED_FOR(this, it.m_id, slot) = 0;
660                                 }
661                         });
662                 }
663                 MUTATOR_CALLHOOK(PlayerDied, this);
664         }
665 }
666
667 /**
668  * message "": do not say, just test flood control
669  * return value:
670  *   1 = accept
671  *   0 = reject
672  *  -1 = fake accept
673  */
674 int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodcontrol)
675 {
676         if (!teamsay && !privatesay && substring(msgin, 0, 1) == " ")
677         msgin = substring(msgin, 1, -1); // work around DP say bug (say_team does not have this!)
678
679     if(source)
680                 msgin = formatmessage(source, msgin);
681
682     string colorstr;
683         if (!IS_PLAYER(source))
684                 colorstr = "^0"; // black for spectators
685         else if(teamplay)
686                 colorstr = Team_ColorCode(source.team);
687         else
688         {
689                 colorstr = "";
690                 teamsay = false;
691         }
692
693         if(game_stopped)
694                 teamsay = false;
695
696     if (!source) {
697                 colorstr = "";
698                 teamsay = false;
699     }
700
701         if(msgin != "")
702                 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
703
704         /*
705          * using bprint solves this... me stupid
706         // how can we prevent the message from appearing in a listen server?
707         // for now, just give "say" back and only handle say_team
708         if(!teamsay)
709         {
710                 clientcommand(source, strcat("say ", msgin));
711                 return;
712         }
713         */
714
715     string namestr = "";
716     if (source)
717         namestr = playername(source, autocvar_g_chat_teamcolors);
718
719     string colorprefix = (strdecolorize(namestr) == namestr) ? "^3" : "^7";
720
721     string msgstr, cmsgstr;
722     string privatemsgprefix = string_null;
723     int privatemsgprefixlen = 0;
724         if (msgin == "") {
725         msgstr = cmsgstr = "";
726         } else {
727                 if(privatesay)
728                 {
729                         msgstr = strcat("\{1}\{13}* ", colorprefix, namestr, "^3 tells you: ^7");
730                         privatemsgprefixlen = strlen(msgstr);
731                         msgstr = strcat(msgstr, msgin);
732                         cmsgstr = strcat(colorstr, colorprefix, namestr, "^3 tells you:\n^7", msgin);
733                         privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay, autocvar_g_chat_teamcolors), ": ^7");
734                 }
735                 else if(teamsay)
736                 {
737                         if(strstrofs(msgin, "/me", 0) >= 0)
738                         {
739                                 //msgin = strreplace("/me", "", msgin);
740                                 //msgin = substring(msgin, 3, strlen(msgin));
741                                 msgin = strreplace("/me", strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7"), msgin);
742                                 msgstr = strcat("\{1}\{13}^4* ", "^7", msgin);
743                         }
744                         else
745                                 msgstr = strcat("\{1}\{13}", colorstr, "(", colorprefix, namestr, colorstr, ") ^7", msgin);
746                         cmsgstr = strcat(colorstr, "(", colorprefix, namestr, colorstr, ")\n^7", msgin);
747                 }
748                 else
749                 {
750                         if(strstrofs(msgin, "/me", 0) >= 0)
751                         {
752                                 //msgin = strreplace("/me", "", msgin);
753                                 //msgin = substring(msgin, 3, strlen(msgin));
754                                 msgin = strreplace("/me", strcat(colorprefix, namestr), msgin);
755                                 msgstr = strcat("\{1}^4* ", "^7", msgin);
756                         }
757                         else {
758                 msgstr = "\{1}";
759                 msgstr = strcat(msgstr, (namestr != "") ? strcat(colorprefix, namestr, "^7: ") : "^7");
760                 msgstr = strcat(msgstr, msgin);
761             }
762                         cmsgstr = "";
763                 }
764                 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
765         }
766
767         string fullmsgstr = msgstr;
768         string fullcmsgstr = cmsgstr;
769
770         // FLOOD CONTROL
771         int flood = 0;
772         var .float flood_field = floodcontrol_chat;
773         if(floodcontrol && source)
774         {
775                 float flood_spl;
776                 float flood_burst;
777                 float flood_lmax;
778                 float lines;
779                 if(privatesay)
780                 {
781                         flood_spl = autocvar_g_chat_flood_spl_tell;
782                         flood_burst = autocvar_g_chat_flood_burst_tell;
783                         flood_lmax = autocvar_g_chat_flood_lmax_tell;
784                         flood_field = floodcontrol_chattell;
785                 }
786                 else if(teamsay)
787                 {
788                         flood_spl = autocvar_g_chat_flood_spl_team;
789                         flood_burst = autocvar_g_chat_flood_burst_team;
790                         flood_lmax = autocvar_g_chat_flood_lmax_team;
791                         flood_field = floodcontrol_chatteam;
792                 }
793                 else
794                 {
795                         flood_spl = autocvar_g_chat_flood_spl;
796                         flood_burst = autocvar_g_chat_flood_burst;
797                         flood_lmax = autocvar_g_chat_flood_lmax;
798                         flood_field = floodcontrol_chat;
799                 }
800                 flood_burst = max(0, flood_burst - 1);
801                 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
802
803                 // do flood control for the default line size
804                 if(msgstr != "")
805                 {
806                         getWrappedLine_remaining = msgstr;
807                         msgstr = "";
808                         lines = 0;
809                         while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
810                         {
811                                 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
812                                 ++lines;
813                         }
814                         msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
815
816                         if(getWrappedLine_remaining != "")
817                         {
818                                 msgstr = strcat(msgstr, "\n");
819                                 flood = 2;
820                         }
821
822                         if (time >= source.(flood_field))
823                         {
824                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + lines * flood_spl;
825                         }
826                         else
827                         {
828                                 flood = 1;
829                                 msgstr = fullmsgstr;
830                         }
831                 }
832                 else
833                 {
834                         if (time >= source.(flood_field))
835                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + flood_spl;
836                         else
837                                 flood = 1;
838                 }
839
840                 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
841                         source.(flood_field) = flood = 0;
842         }
843
844     string sourcemsgstr, sourcecmsgstr;
845         if(flood == 2) // cannot happen for empty msgstr
846         {
847                 if(autocvar_g_chat_flood_notify_flooder)
848                 {
849                         sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
850                         sourcecmsgstr = "";
851                 }
852                 else
853                 {
854                         sourcemsgstr = fullmsgstr;
855                         sourcecmsgstr = fullcmsgstr;
856                 }
857                 cmsgstr = "";
858         }
859         else
860         {
861                 sourcemsgstr = msgstr;
862                 sourcecmsgstr = cmsgstr;
863         }
864
865         if (!privatesay && source && !IS_PLAYER(source))
866         {
867                 if (!game_stopped)
868                 if (teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
869                         teamsay = -1; // spectators
870         }
871
872         if(flood)
873                 LOG_INFO("NOTE: ", playername(source, true), "^7 is flooding.");
874
875         // build sourcemsgstr by cutting off a prefix and replacing it by the other one
876         if(privatesay)
877                 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
878
879     int ret;
880         if(source && CS(source).muted)
881         {
882                 // always fake the message
883                 ret = -1;
884         }
885         else if(flood == 1)
886         {
887                 if (autocvar_g_chat_flood_notify_flooder)
888                 {
889                         sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.(flood_field) - time), "^3 seconds\n"));
890                         ret = 0;
891                 }
892                 else
893                         ret = -1;
894         }
895         else
896         {
897                 ret = 1;
898         }
899
900         if (privatesay && source && !IS_PLAYER(source))
901         {
902                 if (!game_stopped)
903                 if ((privatesay && IS_PLAYER(privatesay)) && ((autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage)))
904                         ret = -1; // just hide the message completely
905         }
906
907         MUTATOR_CALLHOOK(ChatMessage, source, ret);
908         ret = M_ARGV(1, int);
909
910         if(sourcemsgstr != "" && ret != 0)
911         {
912                 if(ret < 0) // faked message, because the player is muted
913                 {
914                         sprint(source, sourcemsgstr);
915                         if(sourcecmsgstr != "" && !privatesay)
916                                 centerprint(source, sourcecmsgstr);
917                 }
918                 else if(privatesay) // private message, between 2 people only
919                 {
920                         sprint(source, sourcemsgstr);
921                         if (!autocvar_g_chat_tellprivacy) { dedicated_print(msgstr); } // send to server console too if "tellprivacy" is disabled
922                         if(!MUTATOR_CALLHOOK(ChatMessageTo, privatesay, source))
923                         {
924                                 sprint(privatesay, msgstr);
925                                 if(cmsgstr != "")
926                                         centerprint(privatesay, cmsgstr);
927                         }
928                 }
929                 else if ( teamsay && CS(source).active_minigame )
930                 {
931                         sprint(source, sourcemsgstr);
932                         dedicated_print(msgstr); // send to server console too
933                         FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && CS(it).active_minigame == CS(source).active_minigame && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
934                 }
935                 else if(teamsay > 0) // team message, only sent to team mates
936                 {
937                         sprint(source, sourcemsgstr);
938                         dedicated_print(msgstr); // send to server console too
939                         if(sourcecmsgstr != "")
940                                 centerprint(source, sourcecmsgstr);
941                         FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && it.team == source.team && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
942                                 sprint(it, msgstr);
943                                 if(cmsgstr != "")
944                                         centerprint(it, cmsgstr);
945                         });
946                 }
947                 else if(teamsay < 0) // spectator message, only sent to spectators
948                 {
949                         sprint(source, sourcemsgstr);
950                         dedicated_print(msgstr); // send to server console too
951                         FOREACH_CLIENT(!IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
952                 }
953                 else
954                 {
955             if (source) {
956                 sprint(source, sourcemsgstr);
957                 dedicated_print(msgstr); // send to server console too
958                 MX_Say(strcat(playername(source, true), "^7: ", msgin));
959             }
960             FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
961         }
962         }
963
964         return ret;
965 }