]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/player.qc
server: remove _all
[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 "g_subs.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/deathtypes/all.qh"
18 #include "../common/triggers/subs.qh"
19 #include "../common/playerstats.qh"
20 #include "../lib/csqcmodel/sv_model.qh"
21
22 #include "../common/minigames/sv_minigames.qh"
23
24 #include "../common/physics/player.qh"
25 #include "../common/effects/qc/all.qh"
26 #include "../common/mutators/mutator/waypoints/waypointsprites.qh"
27 #include "../common/triggers/include.qh"
28 #include "../common/wepent.qh"
29
30 #include "weapons/weaponstats.qh"
31
32 #include "../common/animdecide.qh"
33
34 void Drop_Special_Items(entity player)
35 {
36         // called when the player has become stuck or frozen
37         // so objective items aren't stuck with the player
38
39         MUTATOR_CALLHOOK(DropSpecialItems, player);
40 }
41
42 void CopyBody_Think(entity this)
43 {
44         if(this.CopyBody_nextthink && time > this.CopyBody_nextthink)
45         {
46                 this.CopyBody_think(this);
47                 if(wasfreed(this))
48                         return;
49                 this.CopyBody_nextthink = this.nextthink;
50                 this.CopyBody_think = getthink(this);
51                 setthink(this, CopyBody_Think);
52         }
53         CSQCMODEL_AUTOUPDATE(this);
54         this.nextthink = time;
55 }
56 void CopyBody(entity this, float keepvelocity)
57 {
58         if (this.effects & EF_NODRAW)
59                 return;
60         entity clone = new(body);
61         clone.enemy = this;
62         clone.lip = this.lip;
63         clone.colormap = this.colormap;
64         clone.iscreature = this.iscreature;
65         clone.teleportable = this.teleportable;
66         clone.damagedbycontents = this.damagedbycontents;
67         if(clone.damagedbycontents)
68                 IL_PUSH(g_damagedbycontents, clone);
69         clone.angles = this.angles;
70         clone.v_angle = this.v_angle;
71         clone.avelocity = this.avelocity;
72         clone.damageforcescale = this.damageforcescale;
73         clone.effects = this.effects;
74         clone.glowmod = this.glowmod;
75         clone.event_damage = this.event_damage;
76         clone.anim_state = this.anim_state;
77         clone.anim_time = this.anim_time;
78         clone.anim_lower_action = this.anim_lower_action;
79         clone.anim_lower_time = this.anim_lower_time;
80         clone.anim_upper_action = this.anim_upper_action;
81         clone.anim_upper_time = this.anim_upper_time;
82         clone.anim_implicit_state = this.anim_implicit_state;
83         clone.anim_implicit_time = this.anim_implicit_time;
84         clone.anim_lower_implicit_action = this.anim_lower_implicit_action;
85         clone.anim_lower_implicit_time = this.anim_lower_implicit_time;
86         clone.anim_upper_implicit_action = this.anim_upper_implicit_action;
87         clone.anim_upper_implicit_time = this.anim_upper_implicit_time;
88         clone.dphitcontentsmask = this.dphitcontentsmask;
89         clone.death_time = this.death_time;
90         clone.pain_finished = this.pain_finished;
91         clone.health = this.health;
92         clone.armorvalue = this.armorvalue;
93         clone.armortype = this.armortype;
94         clone.model = this.model;
95         clone.modelindex = this.modelindex;
96         clone.skin = this.skin;
97         clone.species = this.species;
98         clone.move_qcphysics = false; // don't run gamecode logic on clones, too many
99         set_movetype(clone, this.move_movetype);
100         clone.solid = this.solid;
101         clone.takedamage = this.takedamage;
102         setcefc(clone, getcefc(this));
103         clone.uncustomizeentityforclient = this.uncustomizeentityforclient;
104         clone.uncustomizeentityforclient_set = this.uncustomizeentityforclient_set;
105         if (keepvelocity == 1)
106                 clone.velocity = this.velocity;
107         clone.oldvelocity = clone.velocity;
108         clone.alpha = this.alpha;
109         clone.fade_time = this.fade_time;
110         clone.fade_rate = this.fade_rate;
111         //clone.weapon = this.weapon;
112         setorigin(clone, this.origin);
113         setsize(clone, this.mins, this.maxs);
114         clone.reset = SUB_Remove;
115         clone._ps = this._ps;
116
117         Drag_MoveDrag(this, clone);
118
119         if(clone.colormap <= maxclients && clone.colormap > 0)
120                 clone.colormap = 1024 + this.clientcolors;
121
122         CSQCMODEL_AUTOINIT(clone);
123         clone.CopyBody_nextthink = this.nextthink;
124         clone.CopyBody_think = getthink(this);
125         clone.nextthink = time;
126         setthink(clone, CopyBody_Think);
127         // "bake" the current animation frame for clones (they don't get clientside animation)
128         animdecide_load_if_needed(clone);
129         animdecide_setframes(clone, false, frame, frame1time, frame2, frame2time);
130
131         IL_PUSH(g_clones, clone);
132
133         MUTATOR_CALLHOOK(CopyBody, this, clone, keepvelocity);
134 }
135
136 void player_setupanimsformodel(entity this)
137 {
138         // load animation info
139         animdecide_load_if_needed(this);
140         animdecide_setstate(this, 0, false);
141 }
142
143 void player_anim(entity this)
144 {
145         int deadbits = (this.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
146         if(IS_DEAD(this)) {
147                 if (!deadbits) {
148                         // Decide on which death animation to use.
149                         if(random() < 0.5)
150                                 deadbits = ANIMSTATE_DEAD1;
151                         else
152                                 deadbits = ANIMSTATE_DEAD2;
153                 }
154         } else {
155                 // Clear a previous death animation.
156                 deadbits = 0;
157         }
158         int animbits = deadbits;
159         if(STAT(FROZEN, this))
160                 animbits |= ANIMSTATE_FROZEN;
161         if(this.move_movetype == MOVETYPE_FOLLOW)
162                 animbits |= ANIMSTATE_FOLLOW;
163         if(this.crouch)
164                 animbits |= ANIMSTATE_DUCK;
165         animdecide_setstate(this, animbits, false);
166         animdecide_setimplicitstate(this, IS_ONGROUND(this));
167 }
168
169 void PlayerCorpseDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
170 {
171         float take, save;
172         vector v;
173         Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
174
175         // damage resistance (ignore most of the damage from a bullet or similar)
176         damage = max(damage - 5, 1);
177
178         v = healtharmor_applydamage(this.armorvalue, autocvar_g_balance_armor_blockpercent, deathtype, damage);
179         take = v.x;
180         save = v.y;
181
182         if(sound_allowed(MSG_BROADCAST, attacker))
183         {
184                 if (save > 10)
185                         sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
186                 else if (take > 30)
187                         sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
188                 else if (take > 10)
189                         sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM);
190         }
191
192         if (take > 50)
193                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
194         if (take > 100)
195                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
196
197         this.armorvalue = this.armorvalue - save;
198         this.health = this.health - take;
199         // pause regeneration for 5 seconds
200         this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
201
202         this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
203         this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
204         this.dmg_inflictor = inflictor;
205
206         if (this.health <= -autocvar_sv_gibhealth && this.alpha >= 0)
207         {
208                 // don't use any animations as a gib
209                 this.frame = 0;
210                 // view just above the floor
211                 this.view_ofs = '0 0 4';
212
213                 Violence_GibSplash(this, 1, 1, attacker);
214                 this.alpha = -1;
215                 this.solid = SOLID_NOT; // restore later
216                 this.takedamage = DAMAGE_NO; // restore later
217                 if(this.damagedbycontents)
218                         IL_REMOVE(g_damagedbycontents, this);
219                 this.damagedbycontents = false;
220         }
221 }
222
223 void calculate_player_respawn_time(entity this)
224 {
225         if(g_ca)
226                 return;
227
228         float gametype_setting_tmp;
229         float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
230         float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
231         float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
232         float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
233         float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
234         float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
235
236         float pcount = 1;  // Include myself whether or not team is already set right and I'm a "player".
237         if (teamplay)
238         {
239                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
240                         if(it.team == this.team)
241                                 ++pcount;
242                 });
243                 if (sdelay_small_count == 0)
244                         sdelay_small_count = 1;
245                 if (sdelay_large_count == 0)
246                         sdelay_large_count = 1;
247         }
248         else
249         {
250                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
251                         ++pcount;
252                 });
253                 if (sdelay_small_count == 0)
254                 {
255                         if (IS_INDEPENDENT_PLAYER(this))
256                         {
257                                 // Players play independently. No point in requiring enemies.
258                                 sdelay_small_count = 1;
259                         }
260                         else
261                         {
262                                 // Players play AGAINST each other. Enemies required.
263                                 sdelay_small_count = 2;
264                         }
265                 }
266                 if (sdelay_large_count == 0)
267                 {
268                         if (IS_INDEPENDENT_PLAYER(this))
269                         {
270                                 // Players play independently. No point in requiring enemies.
271                                 sdelay_large_count = 1;
272                         }
273                         else
274                         {
275                                 // Players play AGAINST each other. Enemies required.
276                                 sdelay_large_count = 2;
277                         }
278                 }
279         }
280
281         float sdelay;
282
283         if (pcount <= sdelay_small_count)
284                 sdelay = sdelay_small;
285         else if (pcount >= sdelay_large_count)
286                 sdelay = sdelay_large;
287         else  // NOTE: this case implies sdelay_large_count > sdelay_small_count.
288                 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
289
290         if(waves)
291                 this.respawn_time = ceil((time + sdelay) / waves) * waves;
292         else
293                 this.respawn_time = time + sdelay;
294
295         if(sdelay < sdelay_max)
296                 this.respawn_time_max = time + sdelay_max;
297         else
298                 this.respawn_time_max = this.respawn_time;
299
300         if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
301                 this.respawn_countdown = 10; // first number to count down from is 10
302         else
303                 this.respawn_countdown = -1; // do not count down
304
305         if(autocvar_g_forced_respawn)
306                 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
307 }
308
309 void PlayerDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
310 {
311         float take, save, dh, da;
312         vector v;
313         float excess;
314
315         dh = max(this.health, 0);
316         da = max(this.armorvalue, 0);
317
318         if(!DEATH_ISSPECIAL(deathtype))
319         {
320                 damage *= bound(1.0, this.cvar_cl_handicap, 10.0);
321                 if(this != attacker)
322                         damage /= bound(1.0, attacker.cvar_cl_handicap, 10.0);
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(this.armorvalue, 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), this.health);
392         save = bound(0, M_ARGV(5, float), this.armorvalue);
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                         this.armorvalue = this.armorvalue - save;
415                         this.health = this.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
436                                         if(sound_allowed(MSG_BROADCAST, attacker))
437                                         if(this.health < 25 || !(DEATH_WEAPONOF(deathtype).spawnflags & WEP_FLAG_CANCLIMB) || take > 20 || attacker != this)
438                                         if(this.health > 1)
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(this.health > 75)
444                                                         PlayerSound(this, playersound_pain100, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
445                                                 else if(this.health > 50)
446                                                         PlayerSound(this, playersound_pain75, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
447                                                 else if(this.health > 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) && this.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                         PlayerScore_Add(attacker, SP_DMG, realdmg);
476                 }
477                 if (IS_PLAYER(this)) {
478                         PlayerScore_Add(this, SP_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         .entity weaponentity = weaponentities[0]; // TODO: unhardcode
488
489         if(vbot || IS_REAL_CLIENT(this))
490         if(abot || IS_REAL_CLIENT(attacker))
491         if(attacker && this != attacker)
492         if(DIFF_TEAM(this, attacker))
493         {
494                 if(DEATH_ISSPECIAL(deathtype))
495                         awep = attacker.(weaponentity).m_weapon;
496                 else
497                         awep = DEATH_WEAPONOF(deathtype);
498                 valid_damage_for_weaponstats = true;
499         }
500
501         dh = dh - max(this.health, 0);
502         da = da - max(this.armorvalue, 0);
503         if(valid_damage_for_weaponstats)
504         {
505                 WeaponStats_LogDamage(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot, dh + da);
506         }
507
508         MUTATOR_CALLHOOK(PlayerDamaged, attacker, this, dh, da, hitloc, deathtype, damage);
509
510         if (this.health < 1)
511         {
512                 float defer_ClientKill_Now_TeamChange;
513                 defer_ClientKill_Now_TeamChange = false;
514
515                 if(this.alivetime)
516                 {
517                         PS_GR_P_ADDVAL(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
518                         this.alivetime = 0;
519                 }
520
521                 if(valid_damage_for_weaponstats)
522                         WeaponStats_LogKill(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot);
523
524                 if(autocvar_sv_gentle < 1)
525                 if(sound_allowed(MSG_BROADCAST, attacker))
526                 {
527                         if(deathtype == DEATH_DROWN.m_id)
528                                 PlayerSound(this, playersound_drown, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
529                         else
530                                 PlayerSound(this, playersound_death, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
531                 }
532
533                 // get rid of kill indicator
534                 if(this.killindicator)
535                 {
536                         delete(this.killindicator);
537                         this.killindicator = NULL;
538                         if(CS(this).killindicator_teamchange)
539                                 defer_ClientKill_Now_TeamChange = true;
540
541                         if(this.classname == "body")
542                         if(deathtype == DEATH_KILL.m_id)
543                         {
544                                 // for the lemmings fans, a small harmless explosion
545                                 Send_Effect(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1);
546                         }
547                 }
548
549                 // print an obituary message
550                 if(this.classname != "body")
551                         Obituary (attacker, inflictor, this, deathtype);
552
553         // increment frag counter for used weapon type
554         Weapon w = DEATH_WEAPONOF(deathtype);
555                 if(w != WEP_Null && accuracy_isgooddamage(attacker, this))
556                         CS(attacker).accuracy.(accuracy_frags[w.m_id-1]) += 1;
557
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.(weaponentity))
567                                 continue; // TODO: clones have no weapon, but we don't want to have to check this all the time
568                         Weapon wep = this.(weaponentity).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(this.health >= 1 || !(IS_PLAYER(this) || this.classname == "body"))
584                         return;
585
586                 // when we get here, player actually dies
587
588                 Unfreeze(this); // remove any icy remains
589                 this.health = 0; // Unfreeze resets health, so we need to set it back
590
591                 // clear waypoints
592                 WaypointSprite_PlayerDead(this);
593                 // throw a weapon
594                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
595                 {
596                         .entity went = weaponentities[slot];
597                         SpawnThrownWeapon(this, this.origin + (this.mins + this.maxs) * 0.5, this.(went).m_weapon, went);
598                 }
599
600                 // become fully visible
601                 this.alpha = default_player_alpha;
602                 // make the corpse upright (not tilted)
603                 this.angles_x = 0;
604                 this.angles_z = 0;
605                 // don't spin
606                 this.avelocity = '0 0 0';
607                 // view from the floor
608                 this.view_ofs = '0 0 -8';
609                 // toss the corpse
610                 set_movetype(this, MOVETYPE_TOSS);
611                 // shootable corpse
612                 this.solid = SOLID_CORPSE;
613                 PS(this).ballistics_density = autocvar_g_ballistics_density_corpse;
614                 // don't stick to the floor
615                 UNSET_ONGROUND(this);
616                 // dying animation
617                 this.deadflag = DEAD_DYING;
618
619                 STAT(MOVEVARS_SPECIALCOMMAND, this) = false; // sweet release
620
621                 // when to allow respawn
622                 calculate_player_respawn_time(this);
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                 if (this.maxs.z > 5)
630                 {
631                         this.maxs_z = 5;
632                         setsize(this, this.mins, this.maxs);
633                 }
634                 // set damage function to corpse damage
635                 this.event_damage = PlayerCorpseDamage;
636                 // call the corpse damage function just in case it wants to gib
637                 this.event_damage(this, inflictor, attacker, excess, deathtype, hitloc, force);
638
639                 // set up to fade out later
640                 SUB_SetFade (this, time + 6 + random (), 1);
641                 // reset body think wrapper broken by SUB_SetFade
642                 if(this.classname == "body" && getthink(this) != CopyBody_Think) {
643                         this.CopyBody_think = getthink(this);
644                         this.CopyBody_nextthink = this.nextthink;
645                         setthink(this, CopyBody_Think);
646                         this.nextthink = time;
647                 }
648
649                 if(autocvar_sv_gentle > 0 || autocvar_ekg || this.classname == "body") {
650                         // remove corpse
651                         // clones don't run any animation code any more, so we must gib them when they die :(
652                         PlayerCorpseDamage(this, inflictor, attacker, autocvar_sv_gibhealth+1.0, deathtype, hitloc, force);
653                 }
654
655                 // reset fields the weapons may use just in case
656                 if(this.classname != "body")
657                 {
658                         FOREACH(Weapons, it != WEP_Null,
659                         {
660                                 it.wr_resetplayer(it, this);
661                                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
662                                 {
663                                         ATTACK_FINISHED_FOR(this, it.m_id, slot) = 0;
664                                 }
665                         });
666                 }
667                 MUTATOR_CALLHOOK(PlayerDied, this);
668         }
669 }
670
671 void MoveToTeam(entity client, int team_colour, int type)
672 {
673         int lockteams_backup = lockteams;  // backup any team lock
674         lockteams = 0;  // disable locked teams
675         TeamchangeFrags(client);  // move the players frags
676         SetPlayerColors(client, team_colour - 1);  // set the players colour
677         Damage(client, client, client, 100000, DEATH_AUTOTEAMCHANGE.m_id, client.origin, '0 0 0');  // kill the player
678         lockteams = lockteams_backup;  // restore the team lock
679         LogTeamchange(client.playerid, client.team, type);
680 }
681
682 /** print(), but only print if the server is not local */
683 void dedicated_print(string input)
684 {
685         if (server_is_dedicated) print(input);
686 }
687
688 void PrintToChat(entity player, string text)
689 {
690         text = strcat("\{1}^7", text, "\n");
691         sprint(player, text);
692 }
693
694 void DebugPrintToChat(entity player, string text)
695 {
696         if (autocvar_developer)
697         {
698                 PrintToChat(player, text);
699         }
700 }
701
702 void PrintToChatAll(string text)
703 {
704         text = strcat("\{1}^7", text, "\n");
705         bprint(text);
706 }
707
708 void DebugPrintToChatAll(string text)
709 {
710         if (autocvar_developer)
711         {
712                 PrintToChatAll(text);
713         }
714 }
715
716 void PrintToChatTeam(int teamnum, string text)
717 {
718         text = strcat("\{1}^7", text, "\n");
719         FOREACH_CLIENT(IS_REAL_CLIENT(it),
720         {
721                 if (it.team == teamnum)
722                 {
723                         sprint(it, text);
724                 }
725         });
726 }
727
728 void DebugPrintToChatTeam(int teamnum, string text)
729 {
730         if (autocvar_developer)
731         {
732                 PrintToChatTeam(teamnum, text);
733         }
734 }
735
736 /**
737  * message "": do not say, just test flood control
738  * return value:
739  *   1 = accept
740  *   0 = reject
741  *  -1 = fake accept
742  */
743 int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodcontrol)
744 {
745         if (!teamsay && !privatesay && substring(msgin, 0, 1) == " ")
746         msgin = substring(msgin, 1, -1); // work around DP say bug (say_team does not have this!)
747
748     if(source)
749                 msgin = formatmessage(source, msgin);
750
751     string colorstr;
752         if (!IS_PLAYER(source))
753                 colorstr = "^0"; // black for spectators
754         else if(teamplay)
755                 colorstr = Team_ColorCode(source.team);
756         else
757         {
758                 colorstr = "";
759                 teamsay = false;
760         }
761
762         if(game_stopped)
763                 teamsay = false;
764
765     if (!source) {
766                 colorstr = "";
767                 teamsay = false;
768     }
769
770         if(msgin != "")
771                 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
772
773         /*
774          * using bprint solves this... me stupid
775         // how can we prevent the message from appearing in a listen server?
776         // for now, just give "say" back and only handle say_team
777         if(!teamsay)
778         {
779                 clientcommand(source, strcat("say ", msgin));
780                 return;
781         }
782         */
783
784     string namestr = "";
785     if (source)
786         namestr = playername(source, autocvar_g_chat_teamcolors);
787
788     string colorprefix = (strdecolorize(namestr) == namestr) ? "^3" : "^7";
789
790     string msgstr, cmsgstr;
791     string privatemsgprefix = string_null;
792     int privatemsgprefixlen = 0;
793         if (msgin == "") {
794         msgstr = cmsgstr = "";
795         } else {
796                 if(privatesay)
797                 {
798                         msgstr = strcat("\{1}\{13}* ", colorprefix, namestr, "^3 tells you: ^7");
799                         privatemsgprefixlen = strlen(msgstr);
800                         msgstr = strcat(msgstr, msgin);
801                         cmsgstr = strcat(colorstr, colorprefix, namestr, "^3 tells you:\n^7", msgin);
802                         privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay, autocvar_g_chat_teamcolors), ": ^7");
803                 }
804                 else if(teamsay)
805                 {
806                         if(strstrofs(msgin, "/me", 0) >= 0)
807                         {
808                                 //msgin = strreplace("/me", "", msgin);
809                                 //msgin = substring(msgin, 3, strlen(msgin));
810                                 msgin = strreplace("/me", strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7"), msgin);
811                                 msgstr = strcat("\{1}\{13}^4* ", "^7", msgin);
812                         }
813                         else
814                                 msgstr = strcat("\{1}\{13}", colorstr, "(", colorprefix, namestr, colorstr, ") ^7", msgin);
815                         cmsgstr = strcat(colorstr, "(", colorprefix, namestr, colorstr, ")\n^7", msgin);
816                 }
817                 else
818                 {
819                         if(strstrofs(msgin, "/me", 0) >= 0)
820                         {
821                                 //msgin = strreplace("/me", "", msgin);
822                                 //msgin = substring(msgin, 3, strlen(msgin));
823                                 msgin = strreplace("/me", strcat(colorprefix, namestr), msgin);
824                                 msgstr = strcat("\{1}^4* ", "^7", msgin);
825                         }
826                         else {
827                 msgstr = "\{1}";
828                 msgstr = strcat(msgstr, (namestr != "") ? strcat(colorprefix, namestr, "^7: ") : "^7");
829                 msgstr = strcat(msgstr, msgin);
830             }
831                         cmsgstr = "";
832                 }
833                 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
834         }
835
836         string fullmsgstr = msgstr;
837         string fullcmsgstr = cmsgstr;
838
839         // FLOOD CONTROL
840         int flood = 0;
841         var .float flood_field = floodcontrol_chat;
842         if(floodcontrol && source)
843         {
844                 float flood_spl;
845                 float flood_burst;
846                 float flood_lmax;
847                 float lines;
848                 if(privatesay)
849                 {
850                         flood_spl = autocvar_g_chat_flood_spl_tell;
851                         flood_burst = autocvar_g_chat_flood_burst_tell;
852                         flood_lmax = autocvar_g_chat_flood_lmax_tell;
853                         flood_field = floodcontrol_chattell;
854                 }
855                 else if(teamsay)
856                 {
857                         flood_spl = autocvar_g_chat_flood_spl_team;
858                         flood_burst = autocvar_g_chat_flood_burst_team;
859                         flood_lmax = autocvar_g_chat_flood_lmax_team;
860                         flood_field = floodcontrol_chatteam;
861                 }
862                 else
863                 {
864                         flood_spl = autocvar_g_chat_flood_spl;
865                         flood_burst = autocvar_g_chat_flood_burst;
866                         flood_lmax = autocvar_g_chat_flood_lmax;
867                         flood_field = floodcontrol_chat;
868                 }
869                 flood_burst = max(0, flood_burst - 1);
870                 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
871
872                 // do flood control for the default line size
873                 if(msgstr != "")
874                 {
875                         getWrappedLine_remaining = msgstr;
876                         msgstr = "";
877                         lines = 0;
878                         while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
879                         {
880                                 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
881                                 ++lines;
882                         }
883                         msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
884
885                         if(getWrappedLine_remaining != "")
886                         {
887                                 msgstr = strcat(msgstr, "\n");
888                                 flood = 2;
889                         }
890
891                         if (time >= source.(flood_field))
892                         {
893                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + lines * flood_spl;
894                         }
895                         else
896                         {
897                                 flood = 1;
898                                 msgstr = fullmsgstr;
899                         }
900                 }
901                 else
902                 {
903                         if (time >= source.(flood_field))
904                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + flood_spl;
905                         else
906                                 flood = 1;
907                 }
908
909                 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
910                         source.(flood_field) = flood = 0;
911         }
912
913     string sourcemsgstr, sourcecmsgstr;
914         if(flood == 2) // cannot happen for empty msgstr
915         {
916                 if(autocvar_g_chat_flood_notify_flooder)
917                 {
918                         sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
919                         sourcecmsgstr = "";
920                 }
921                 else
922                 {
923                         sourcemsgstr = fullmsgstr;
924                         sourcecmsgstr = fullcmsgstr;
925                 }
926                 cmsgstr = "";
927         }
928         else
929         {
930                 sourcemsgstr = msgstr;
931                 sourcecmsgstr = cmsgstr;
932         }
933
934         if (!privatesay && source && !IS_PLAYER(source))
935         {
936                 if (!game_stopped)
937                 if (teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
938                         teamsay = -1; // spectators
939         }
940
941         if(flood)
942                 LOG_INFO("NOTE: ", playername(source, true), "^7 is flooding.\n");
943
944         // build sourcemsgstr by cutting off a prefix and replacing it by the other one
945         if(privatesay)
946                 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
947
948     int ret;
949         if(source && CS(source).muted)
950         {
951                 // always fake the message
952                 ret = -1;
953         }
954         else if(flood == 1)
955         {
956                 if (autocvar_g_chat_flood_notify_flooder)
957                 {
958                         sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.(flood_field) - time), "^3 seconds\n"));
959                         ret = 0;
960                 }
961                 else
962                         ret = -1;
963         }
964         else
965         {
966                 ret = 1;
967         }
968
969         if (privatesay && source && !IS_PLAYER(source))
970         {
971                 if (!game_stopped)
972                 if ((privatesay && !IS_PLAYER(privatesay)) || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
973                         ret = -1; // just hide the message completely
974         }
975
976         MUTATOR_CALLHOOK(ChatMessage, source, ret);
977         ret = M_ARGV(1, int);
978
979         if(sourcemsgstr != "" && ret != 0)
980         {
981                 if(ret < 0) // faked message, because the player is muted
982                 {
983                         sprint(source, sourcemsgstr);
984                         if(sourcecmsgstr != "" && !privatesay)
985                                 centerprint(source, sourcecmsgstr);
986                 }
987                 else if(privatesay) // private message, between 2 people only
988                 {
989                         sprint(source, sourcemsgstr);
990                         if (!autocvar_g_chat_tellprivacy) { dedicated_print(msgstr); } // send to server console too if "tellprivacy" is disabled
991                         if(!MUTATOR_CALLHOOK(ChatMessageTo, privatesay, source))
992                         {
993                                 sprint(privatesay, msgstr);
994                                 if(cmsgstr != "")
995                                         centerprint(privatesay, cmsgstr);
996                         }
997                 }
998                 else if ( teamsay && CS(source).active_minigame )
999                 {
1000                         sprint(source, sourcemsgstr);
1001                         dedicated_print(msgstr); // send to server console too
1002                         FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && CS(it).active_minigame == CS(source).active_minigame && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1003                 }
1004                 else if(teamsay > 0) // team message, only sent to team mates
1005                 {
1006                         sprint(source, sourcemsgstr);
1007                         dedicated_print(msgstr); // send to server console too
1008                         if(sourcecmsgstr != "")
1009                                 centerprint(source, sourcecmsgstr);
1010                         FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && it.team == source.team && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
1011                                 sprint(it, msgstr);
1012                                 if(cmsgstr != "")
1013                                         centerprint(it, cmsgstr);
1014                         });
1015                 }
1016                 else if(teamsay < 0) // spectator message, only sent to spectators
1017                 {
1018                         sprint(source, sourcemsgstr);
1019                         dedicated_print(msgstr); // send to server console too
1020                         FOREACH_CLIENT(!IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1021                 }
1022                 else
1023                 {
1024             if (source) {
1025                 sprint(source, sourcemsgstr);
1026                 dedicated_print(msgstr); // send to server console too
1027                 MX_Say(strcat(playername(source, true), "^7: ", msgin));
1028             }
1029             FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1030         }
1031         }
1032
1033         return ret;
1034 }