]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/player.qc
Rename 2 macros
[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 "g_subs.qh"
9 #include "miscfunctions.qh"
10 #include "portals.qh"
11 #include "teamplay.qh"
12 #include "weapons/throwing.qh"
13 #include "command/common.qh"
14 #include "../common/state.qh"
15 #include "../common/anim.qh"
16 #include "../common/animdecide.qh"
17 #include "../common/csqcmodel_settings.qh"
18 #include "../common/deathtypes/all.qh"
19 #include "../common/triggers/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/triggers/include.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         clone.health = this.health;
93         clone.armorvalue = this.armorvalue;
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, 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         // damage resistance (ignore most of the damage from a bullet or similar)
177         damage = max(damage - 5, 1);
178
179         v = healtharmor_applydamage(this.armorvalue, autocvar_g_balance_armor_blockpercent, deathtype, damage);
180         take = v.x;
181         save = v.y;
182
183         if(sound_allowed(MSG_BROADCAST, attacker))
184         {
185                 if (save > 10)
186                         sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
187                 else if (take > 30)
188                         sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
189                 else if (take > 10)
190                         sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM);
191         }
192
193         if (take > 50)
194                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
195         if (take > 100)
196                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
197
198         this.armorvalue = this.armorvalue - save;
199         this.health = this.health - take;
200         // pause regeneration for 5 seconds
201         this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
202
203         this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
204         this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
205         this.dmg_inflictor = inflictor;
206
207         if (this.health <= -autocvar_sv_gibhealth && this.alpha >= 0)
208         {
209                 // don't use any animations as a gib
210                 this.frame = 0;
211                 // view just above the floor
212                 this.view_ofs = '0 0 4';
213
214                 Violence_GibSplash(this, 1, 1, attacker);
215                 this.alpha = -1;
216                 this.solid = SOLID_NOT; // restore later
217                 this.takedamage = DAMAGE_NO; // restore later
218                 if(this.damagedbycontents)
219                         IL_REMOVE(g_damagedbycontents, this);
220                 this.damagedbycontents = false;
221         }
222 }
223
224 void calculate_player_respawn_time(entity this)
225 {
226         if(g_ca)
227                 return;
228
229         float gametype_setting_tmp;
230         float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
231         float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
232         float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
233         float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
234         float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
235         float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
236
237         float pcount = 1;  // Include myself whether or not team is already set right and I'm a "player".
238         if (teamplay)
239         {
240                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
241                         if(it.team == this.team)
242                                 ++pcount;
243                 });
244                 if (sdelay_small_count == 0)
245                         sdelay_small_count = 1;
246                 if (sdelay_large_count == 0)
247                         sdelay_large_count = 1;
248         }
249         else
250         {
251                 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
252                         ++pcount;
253                 });
254                 if (sdelay_small_count == 0)
255                 {
256                         if (IS_INDEPENDENT_PLAYER(this))
257                         {
258                                 // Players play independently. No point in requiring enemies.
259                                 sdelay_small_count = 1;
260                         }
261                         else
262                         {
263                                 // Players play AGAINST each other. Enemies required.
264                                 sdelay_small_count = 2;
265                         }
266                 }
267                 if (sdelay_large_count == 0)
268                 {
269                         if (IS_INDEPENDENT_PLAYER(this))
270                         {
271                                 // Players play independently. No point in requiring enemies.
272                                 sdelay_large_count = 1;
273                         }
274                         else
275                         {
276                                 // Players play AGAINST each other. Enemies required.
277                                 sdelay_large_count = 2;
278                         }
279                 }
280         }
281
282         float sdelay;
283
284         if (pcount <= sdelay_small_count)
285                 sdelay = sdelay_small;
286         else if (pcount >= sdelay_large_count)
287                 sdelay = sdelay_large;
288         else  // NOTE: this case implies sdelay_large_count > sdelay_small_count.
289                 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
290
291         if(waves)
292                 this.respawn_time = ceil((time + sdelay) / waves) * waves;
293         else
294                 this.respawn_time = time + sdelay;
295
296         if(sdelay < sdelay_max)
297                 this.respawn_time_max = time + sdelay_max;
298         else
299                 this.respawn_time_max = this.respawn_time;
300
301         if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
302                 this.respawn_countdown = 10; // first number to count down from is 10
303         else
304                 this.respawn_countdown = -1; // do not count down
305
306         if(autocvar_g_forced_respawn)
307                 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
308 }
309
310 void PlayerDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
311 {
312         float take, save, dh, da;
313         vector v;
314         float excess;
315
316         dh = max(this.health, 0);
317         da = max(this.armorvalue, 0);
318
319         if(!DEATH_ISSPECIAL(deathtype))
320         {
321                 damage *= Handicap_GetTotalHandicap(this);
322                 if (this != attacker && IS_PLAYER(attacker))
323                 {
324                         damage /= Handicap_GetTotalHandicap(attacker);
325                 }
326         }
327
328         if (time < this.spawnshieldtime && autocvar_g_spawnshield_blockdamage < 1)
329                 damage *= 1 - max(0, autocvar_g_spawnshield_blockdamage);
330
331         if(DEATH_ISWEAPON(deathtype, WEP_TUBA))
332         {
333                 // tuba causes blood to come out of the ears
334                 vector ear1, ear2;
335                 vector d;
336                 float f;
337                 ear1 = this.origin;
338                 ear1_z += 0.125 * this.view_ofs.z + 0.875 * this.maxs.z; // 7/8
339                 ear2 = ear1;
340                 makevectors(this.angles);
341                 ear1 += v_right * -10;
342                 ear2 += v_right * +10;
343                 d = inflictor.origin - this.origin;
344                 if (d)
345                         f = (d * v_right) / vlen(d); // this is cos of angle of d and v_right!
346                 else
347                         f = 0;  // Assum ecenter.
348                 force = v_right * vlen(force);
349                 Violence_GibSplash_At(ear1, force * -1, 2, bound(0, damage, 25) / 2 * (0.5 - 0.5 * f), this, attacker);
350                 Violence_GibSplash_At(ear2, force,      2, bound(0, damage, 25) / 2 * (0.5 + 0.5 * f), this, attacker);
351                 if(f > 0)
352                 {
353                         hitloc = ear1;
354                         force = force * -1;
355                 }
356                 else
357                 {
358                         hitloc = ear2;
359                         // force is already good
360                 }
361         }
362         else
363                 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
364
365         v = healtharmor_applydamage(this.armorvalue, autocvar_g_balance_armor_blockpercent, deathtype, damage);
366         take = v.x;
367         save = v.y;
368
369         if(attacker == this)
370         {
371                 // don't reset pushltime for this damage as it may be an attempt to
372                 // escape a lava pit or similar
373                 //this.pushltime = 0;
374                 this.istypefrag = 0;
375         }
376         else if(IS_PLAYER(attacker))
377         {
378                 this.pusher = attacker;
379                 this.pushltime = time + autocvar_g_maxpushtime;
380                 this.istypefrag = PHYS_INPUT_BUTTON_CHAT(this);
381         }
382         else if(time < this.pushltime)
383         {
384                 attacker = this.pusher;
385                 this.pushltime = max(this.pushltime, time + 0.6);
386         }
387         else
388         {
389                 this.pushltime = 0;
390                 this.istypefrag = 0;
391         }
392
393         MUTATOR_CALLHOOK(PlayerDamage_SplitHealthArmor, inflictor, attacker, this, force, take, save, deathtype, damage);
394         take = bound(0, M_ARGV(4, float), this.health);
395         save = bound(0, M_ARGV(5, float), this.armorvalue);
396         excess = max(0, damage - take - save);
397
398         if(sound_allowed(MSG_BROADCAST, attacker))
399         {
400                 if (save > 10)
401                         sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
402                 else if (take > 30)
403                         sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
404                 else if (take > 10)
405                         sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM); // FIXME possibly remove them?
406         }
407
408         if (take > 50)
409                 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
410         if (take > 100)
411                 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
412
413         if (time >= this.spawnshieldtime || autocvar_g_spawnshield_blockdamage < 1)
414         {
415                 if (!(this.flags & FL_GODMODE))
416                 {
417                         this.armorvalue = this.armorvalue - save;
418                         this.health = this.health - take;
419                         // pause regeneration for 5 seconds
420                         if(take)
421                                 this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
422
423                         if (time > this.pain_finished)          //Don't switch pain sequences like crazy
424                         {
425                                 this.pain_finished = time + 0.5;        //Supajoe
426
427                                 if(autocvar_sv_gentle < 1) {
428                                         if(this.classname != "body") // pain anim is BORKED on our ZYMs, FIXME remove this once we have good models
429                                         {
430                                                 if (!this.animstate_override)
431                                                 {
432                                                         if (random() > 0.5)
433                                                                 animdecide_setaction(this, ANIMACTION_PAIN1, true);
434                                                         else
435                                                                 animdecide_setaction(this, ANIMACTION_PAIN2, true);
436                                                 }
437                                         }
438
439                                         if(sound_allowed(MSG_BROADCAST, attacker))
440                                         if(this.health < 25 || !(DEATH_WEAPONOF(deathtype).spawnflags & WEP_FLAG_CANCLIMB) || take > 20 || attacker != this)
441                                         if(this.health > 1)
442                                         // exclude pain sounds for laserjumps as long as you aren't REALLY low on health and would die of the next two
443                                         {
444                                                 if(deathtype == DEATH_FALL.m_id)
445                                                         PlayerSound(this, playersound_fall, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
446                                                 else if(this.health > 75)
447                                                         PlayerSound(this, playersound_pain100, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
448                                                 else if(this.health > 50)
449                                                         PlayerSound(this, playersound_pain75, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
450                                                 else if(this.health > 25)
451                                                         PlayerSound(this, playersound_pain50, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
452                                                 else
453                                                         PlayerSound(this, playersound_pain25, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
454                                         }
455                                 }
456                         }
457
458                         // throw off bot aim temporarily
459                         float shake;
460                         if(IS_BOT_CLIENT(this) && this.health >= 1)
461                         {
462                                 shake = damage * 5 / (bound(0,skill,100) + 1);
463                                 this.v_angle_x = this.v_angle.x + (random() * 2 - 1) * shake;
464                                 this.v_angle_y = this.v_angle.y + (random() * 2 - 1) * shake;
465                                 this.v_angle_x = bound(-90, this.v_angle.x, 90);
466                         }
467                 }
468                 else
469                         this.max_armorvalue += (save + take);
470         }
471         this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
472         this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
473         this.dmg_inflictor = inflictor;
474
475         if (this != attacker) {
476                 float realdmg = damage - excess;
477                 if (IS_PLAYER(attacker)) {
478                         GameRules_scoring_add(attacker, DMG, realdmg);
479                 }
480                 if (IS_PLAYER(this)) {
481                         GameRules_scoring_add(this, DMGTAKEN, realdmg);
482                 }
483         }
484
485         bool abot = (IS_BOT_CLIENT(attacker));
486         bool vbot = (IS_BOT_CLIENT(this));
487
488         bool valid_damage_for_weaponstats = false;
489         Weapon awep = WEP_Null;
490         .entity weaponentity = weaponentities[0]; // TODO: unhardcode
491
492         if(vbot || IS_REAL_CLIENT(this))
493         if(abot || IS_REAL_CLIENT(attacker))
494         if(attacker && this != attacker)
495         if(DIFF_TEAM(this, attacker))
496         {
497                 if(DEATH_ISSPECIAL(deathtype))
498                         awep = attacker.(weaponentity).m_weapon;
499                 else
500                         awep = DEATH_WEAPONOF(deathtype);
501                 valid_damage_for_weaponstats = true;
502         }
503
504         dh = dh - max(this.health, 0);
505         da = da - max(this.armorvalue, 0);
506         if(valid_damage_for_weaponstats)
507         {
508                 WeaponStats_LogDamage(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot, dh + da);
509         }
510
511         MUTATOR_CALLHOOK(PlayerDamaged, attacker, this, dh, da, hitloc, deathtype, damage);
512
513         if (this.health < 1)
514         {
515                 float defer_ClientKill_Now_TeamChange;
516                 defer_ClientKill_Now_TeamChange = false;
517
518                 if(this.alivetime)
519                 {
520                         PlayerStats_GameReport_Event_Player(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
521                         this.alivetime = 0;
522                 }
523
524                 if(valid_damage_for_weaponstats)
525                         WeaponStats_LogKill(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot);
526
527                 if(autocvar_sv_gentle < 1)
528                 if(sound_allowed(MSG_BROADCAST, attacker))
529                 {
530                         if(deathtype == DEATH_DROWN.m_id)
531                                 PlayerSound(this, playersound_drown, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
532                         else
533                                 PlayerSound(this, playersound_death, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
534                 }
535
536                 // get rid of kill indicator
537                 if(this.killindicator)
538                 {
539                         delete(this.killindicator);
540                         this.killindicator = NULL;
541                         if(CS(this).killindicator_teamchange)
542                                 defer_ClientKill_Now_TeamChange = true;
543
544                         if(this.classname == "body")
545                         if(deathtype == DEATH_KILL.m_id)
546                         {
547                                 // for the lemmings fans, a small harmless explosion
548                                 Send_Effect(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1);
549                         }
550                 }
551
552                 // print an obituary message
553                 if(this.classname != "body")
554                         Obituary (attacker, inflictor, this, deathtype);
555
556         // increment frag counter for used weapon type
557         Weapon w = DEATH_WEAPONOF(deathtype);
558                 if(w != WEP_Null && accuracy_isgooddamage(attacker, this))
559                         CS(attacker).accuracy.(accuracy_frags[w.m_id-1]) += 1;
560
561                 MUTATOR_CALLHOOK(PlayerDies, inflictor, attacker, this, deathtype, damage);
562                 damage = M_ARGV(4, float);
563                 excess = max(0, damage - take - save);
564
565                 //Weapon wep = this.(weaponentity).m_weapon;
566                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
567                 {
568                         .entity went = weaponentities[slot];
569                         if(!this.(weaponentity))
570                                 continue; // TODO: clones have no weapon, but we don't want to have to check this all the time
571                         Weapon wep = this.(weaponentity).m_weapon;
572                         wep.wr_playerdeath(wep, this, went);
573                 }
574
575                 RemoveGrapplingHooks(this);
576
577                 Portal_ClearAllLater(this);
578
579                 this.fixangle = true;
580
581                 if(defer_ClientKill_Now_TeamChange)
582                         ClientKill_Now_TeamChange(this); // can turn player into spectator
583
584                 // player could have been miraculously resuscitated ;)
585                 // e.g. players in freezetag get frozen, they don't really die
586                 if(this.health >= 1 || !(IS_PLAYER(this) || this.classname == "body"))
587                         return;
588
589                 // when we get here, player actually dies
590
591                 Unfreeze(this); // remove any icy remains
592                 this.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                 // when to allow respawn
625                 calculate_player_respawn_time(this);
626
627                 this.death_time = time;
628                 if (random() < 0.5)
629                         animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD1, true);
630                 else
631                         animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD2, true);
632                 if (this.maxs.z > 5)
633                 {
634                         this.maxs_z = 5;
635                         setsize(this, this.mins, this.maxs);
636                 }
637                 // set damage function to corpse damage
638                 this.event_damage = PlayerCorpseDamage;
639                 // call the corpse damage function just in case it wants to gib
640                 this.event_damage(this, inflictor, attacker, excess, deathtype, hitloc, force);
641
642                 // set up to fade out later
643                 SUB_SetFade (this, time + 6 + random (), 1);
644                 // reset body think wrapper broken by SUB_SetFade
645                 if(this.classname == "body" && getthink(this) != CopyBody_Think) {
646                         this.CopyBody_think = getthink(this);
647                         this.CopyBody_nextthink = this.nextthink;
648                         setthink(this, CopyBody_Think);
649                         this.nextthink = time;
650                 }
651
652                 if(autocvar_sv_gentle > 0 || autocvar_ekg || this.classname == "body") {
653                         // remove corpse
654                         // clones don't run any animation code any more, so we must gib them when they die :(
655                         PlayerCorpseDamage(this, inflictor, attacker, autocvar_sv_gibhealth+1.0, deathtype, hitloc, force);
656                 }
657
658                 // reset fields the weapons may use just in case
659                 if(this.classname != "body")
660                 {
661                         FOREACH(Weapons, it != WEP_Null,
662                         {
663                                 it.wr_resetplayer(it, this);
664                                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
665                                 {
666                                         ATTACK_FINISHED_FOR(this, it.m_id, slot) = 0;
667                                 }
668                         });
669                 }
670                 MUTATOR_CALLHOOK(PlayerDied, this);
671         }
672 }
673
674 bool MoveToTeam(entity client, int team_colour, int type)
675 {
676         int lockteams_backup = lockteams;  // backup any team lock
677         lockteams = 0;  // disable locked teams
678         TeamchangeFrags(client);  // move the players frags
679         if (!SetPlayerTeamSimple(client, team_colour))
680         {
681                 return false;
682         }
683         Damage(client, client, client, 100000, DEATH_AUTOTEAMCHANGE.m_id, client.origin, '0 0 0');  // kill the player
684         lockteams = lockteams_backup;  // restore the team lock
685         LogTeamchange(client.playerid, client.team, type);
686         return true;
687 }
688
689 /** print(), but only print if the server is not local */
690 void dedicated_print(string input)
691 {
692         if (server_is_dedicated) print(input);
693 }
694
695 void PrintToChat(entity player, string text)
696 {
697         text = strcat("\{1}^7", text, "\n");
698         sprint(player, text);
699 }
700
701 void DebugPrintToChat(entity player, string text)
702 {
703         if (autocvar_developer)
704         {
705                 PrintToChat(player, text);
706         }
707 }
708
709 void PrintToChatAll(string text)
710 {
711         text = strcat("\{1}^7", text, "\n");
712         bprint(text);
713 }
714
715 void DebugPrintToChatAll(string text)
716 {
717         if (autocvar_developer)
718         {
719                 PrintToChatAll(text);
720         }
721 }
722
723 void PrintToChatTeam(int teamnum, string text)
724 {
725         text = strcat("\{1}^7", text, "\n");
726         FOREACH_CLIENT(IS_REAL_CLIENT(it),
727         {
728                 if (it.team == teamnum)
729                 {
730                         sprint(it, text);
731                 }
732         });
733 }
734
735 void DebugPrintToChatTeam(int teamnum, string text)
736 {
737         if (autocvar_developer)
738         {
739                 PrintToChatTeam(teamnum, text);
740         }
741 }
742
743 /**
744  * message "": do not say, just test flood control
745  * return value:
746  *   1 = accept
747  *   0 = reject
748  *  -1 = fake accept
749  */
750 int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodcontrol)
751 {
752         if (!teamsay && !privatesay && substring(msgin, 0, 1) == " ")
753         msgin = substring(msgin, 1, -1); // work around DP say bug (say_team does not have this!)
754
755     if(source)
756                 msgin = formatmessage(source, msgin);
757
758     string colorstr;
759         if (!IS_PLAYER(source))
760                 colorstr = "^0"; // black for spectators
761         else if(teamplay)
762                 colorstr = Team_ColorCode(source.team);
763         else
764         {
765                 colorstr = "";
766                 teamsay = false;
767         }
768
769         if(game_stopped)
770                 teamsay = false;
771
772     if (!source) {
773                 colorstr = "";
774                 teamsay = false;
775     }
776
777         if(msgin != "")
778                 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
779
780         /*
781          * using bprint solves this... me stupid
782         // how can we prevent the message from appearing in a listen server?
783         // for now, just give "say" back and only handle say_team
784         if(!teamsay)
785         {
786                 clientcommand(source, strcat("say ", msgin));
787                 return;
788         }
789         */
790
791     string namestr = "";
792     if (source)
793         namestr = playername(source, autocvar_g_chat_teamcolors);
794
795     string colorprefix = (strdecolorize(namestr) == namestr) ? "^3" : "^7";
796
797     string msgstr, cmsgstr;
798     string privatemsgprefix = string_null;
799     int privatemsgprefixlen = 0;
800         if (msgin == "") {
801         msgstr = cmsgstr = "";
802         } else {
803                 if(privatesay)
804                 {
805                         msgstr = strcat("\{1}\{13}* ", colorprefix, namestr, "^3 tells you: ^7");
806                         privatemsgprefixlen = strlen(msgstr);
807                         msgstr = strcat(msgstr, msgin);
808                         cmsgstr = strcat(colorstr, colorprefix, namestr, "^3 tells you:\n^7", msgin);
809                         privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay, autocvar_g_chat_teamcolors), ": ^7");
810                 }
811                 else if(teamsay)
812                 {
813                         if(strstrofs(msgin, "/me", 0) >= 0)
814                         {
815                                 //msgin = strreplace("/me", "", msgin);
816                                 //msgin = substring(msgin, 3, strlen(msgin));
817                                 msgin = strreplace("/me", strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7"), msgin);
818                                 msgstr = strcat("\{1}\{13}^4* ", "^7", msgin);
819                         }
820                         else
821                                 msgstr = strcat("\{1}\{13}", colorstr, "(", colorprefix, namestr, colorstr, ") ^7", msgin);
822                         cmsgstr = strcat(colorstr, "(", colorprefix, namestr, colorstr, ")\n^7", msgin);
823                 }
824                 else
825                 {
826                         if(strstrofs(msgin, "/me", 0) >= 0)
827                         {
828                                 //msgin = strreplace("/me", "", msgin);
829                                 //msgin = substring(msgin, 3, strlen(msgin));
830                                 msgin = strreplace("/me", strcat(colorprefix, namestr), msgin);
831                                 msgstr = strcat("\{1}^4* ", "^7", msgin);
832                         }
833                         else {
834                 msgstr = "\{1}";
835                 msgstr = strcat(msgstr, (namestr != "") ? strcat(colorprefix, namestr, "^7: ") : "^7");
836                 msgstr = strcat(msgstr, msgin);
837             }
838                         cmsgstr = "";
839                 }
840                 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
841         }
842
843         string fullmsgstr = msgstr;
844         string fullcmsgstr = cmsgstr;
845
846         // FLOOD CONTROL
847         int flood = 0;
848         var .float flood_field = floodcontrol_chat;
849         if(floodcontrol && source)
850         {
851                 float flood_spl;
852                 float flood_burst;
853                 float flood_lmax;
854                 float lines;
855                 if(privatesay)
856                 {
857                         flood_spl = autocvar_g_chat_flood_spl_tell;
858                         flood_burst = autocvar_g_chat_flood_burst_tell;
859                         flood_lmax = autocvar_g_chat_flood_lmax_tell;
860                         flood_field = floodcontrol_chattell;
861                 }
862                 else if(teamsay)
863                 {
864                         flood_spl = autocvar_g_chat_flood_spl_team;
865                         flood_burst = autocvar_g_chat_flood_burst_team;
866                         flood_lmax = autocvar_g_chat_flood_lmax_team;
867                         flood_field = floodcontrol_chatteam;
868                 }
869                 else
870                 {
871                         flood_spl = autocvar_g_chat_flood_spl;
872                         flood_burst = autocvar_g_chat_flood_burst;
873                         flood_lmax = autocvar_g_chat_flood_lmax;
874                         flood_field = floodcontrol_chat;
875                 }
876                 flood_burst = max(0, flood_burst - 1);
877                 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
878
879                 // do flood control for the default line size
880                 if(msgstr != "")
881                 {
882                         getWrappedLine_remaining = msgstr;
883                         msgstr = "";
884                         lines = 0;
885                         while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
886                         {
887                                 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
888                                 ++lines;
889                         }
890                         msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
891
892                         if(getWrappedLine_remaining != "")
893                         {
894                                 msgstr = strcat(msgstr, "\n");
895                                 flood = 2;
896                         }
897
898                         if (time >= source.(flood_field))
899                         {
900                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + lines * flood_spl;
901                         }
902                         else
903                         {
904                                 flood = 1;
905                                 msgstr = fullmsgstr;
906                         }
907                 }
908                 else
909                 {
910                         if (time >= source.(flood_field))
911                                 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + flood_spl;
912                         else
913                                 flood = 1;
914                 }
915
916                 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
917                         source.(flood_field) = flood = 0;
918         }
919
920     string sourcemsgstr, sourcecmsgstr;
921         if(flood == 2) // cannot happen for empty msgstr
922         {
923                 if(autocvar_g_chat_flood_notify_flooder)
924                 {
925                         sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
926                         sourcecmsgstr = "";
927                 }
928                 else
929                 {
930                         sourcemsgstr = fullmsgstr;
931                         sourcecmsgstr = fullcmsgstr;
932                 }
933                 cmsgstr = "";
934         }
935         else
936         {
937                 sourcemsgstr = msgstr;
938                 sourcecmsgstr = cmsgstr;
939         }
940
941         if (!privatesay && source && !IS_PLAYER(source))
942         {
943                 if (!game_stopped)
944                 if (teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
945                         teamsay = -1; // spectators
946         }
947
948         if(flood)
949                 LOG_INFO("NOTE: ", playername(source, true), "^7 is flooding.");
950
951         // build sourcemsgstr by cutting off a prefix and replacing it by the other one
952         if(privatesay)
953                 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
954
955     int ret;
956         if(source && CS(source).muted)
957         {
958                 // always fake the message
959                 ret = -1;
960         }
961         else if(flood == 1)
962         {
963                 if (autocvar_g_chat_flood_notify_flooder)
964                 {
965                         sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.(flood_field) - time), "^3 seconds\n"));
966                         ret = 0;
967                 }
968                 else
969                         ret = -1;
970         }
971         else
972         {
973                 ret = 1;
974         }
975
976         if (privatesay && source && !IS_PLAYER(source))
977         {
978                 if (!game_stopped)
979                 if ((privatesay && !IS_PLAYER(privatesay)) || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
980                         ret = -1; // just hide the message completely
981         }
982
983         MUTATOR_CALLHOOK(ChatMessage, source, ret);
984         ret = M_ARGV(1, int);
985
986         if(sourcemsgstr != "" && ret != 0)
987         {
988                 if(ret < 0) // faked message, because the player is muted
989                 {
990                         sprint(source, sourcemsgstr);
991                         if(sourcecmsgstr != "" && !privatesay)
992                                 centerprint(source, sourcecmsgstr);
993                 }
994                 else if(privatesay) // private message, between 2 people only
995                 {
996                         sprint(source, sourcemsgstr);
997                         if (!autocvar_g_chat_tellprivacy) { dedicated_print(msgstr); } // send to server console too if "tellprivacy" is disabled
998                         if(!MUTATOR_CALLHOOK(ChatMessageTo, privatesay, source))
999                         {
1000                                 sprint(privatesay, msgstr);
1001                                 if(cmsgstr != "")
1002                                         centerprint(privatesay, cmsgstr);
1003                         }
1004                 }
1005                 else if ( teamsay && CS(source).active_minigame )
1006                 {
1007                         sprint(source, sourcemsgstr);
1008                         dedicated_print(msgstr); // send to server console too
1009                         FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && CS(it).active_minigame == CS(source).active_minigame && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1010                 }
1011                 else if(teamsay > 0) // team message, only sent to team mates
1012                 {
1013                         sprint(source, sourcemsgstr);
1014                         dedicated_print(msgstr); // send to server console too
1015                         if(sourcecmsgstr != "")
1016                                 centerprint(source, sourcecmsgstr);
1017                         FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && it.team == source.team && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
1018                                 sprint(it, msgstr);
1019                                 if(cmsgstr != "")
1020                                         centerprint(it, cmsgstr);
1021                         });
1022                 }
1023                 else if(teamsay < 0) // spectator message, only sent to spectators
1024                 {
1025                         sprint(source, sourcemsgstr);
1026                         dedicated_print(msgstr); // send to server console too
1027                         FOREACH_CLIENT(!IS_PLAYER(it) && IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1028                 }
1029                 else
1030                 {
1031             if (source) {
1032                 sprint(source, sourcemsgstr);
1033                 dedicated_print(msgstr); // send to server console too
1034                 MX_Say(strcat(playername(source, true), "^7: ", msgin));
1035             }
1036             FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), sprint(it, msgstr));
1037         }
1038         }
1039
1040         return ret;
1041 }