3 #include <common/effects/all.qh>
6 #include "clientkill.qh"
9 #include "miscfunctions.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/gamemodes/sv_rules.qh"
19 #include "../common/deathtypes/all.qh"
20 #include "../common/mapobjects/subs.qh"
21 #include "../common/playerstats.qh"
22 #include "../lib/csqcmodel/sv_model.qh"
24 #include "../common/minigames/sv_minigames.qh"
26 #include <common/gamemodes/_mod.qh>
28 #include "../common/physics/player.qh"
29 #include "../common/effects/qc/_mod.qh"
30 #include "../common/mutators/mutator/waypoints/waypointsprites.qh"
31 #include "../common/mapobjects/_mod.qh"
32 #include "../common/wepent.qh"
34 #include "weapons/weaponstats.qh"
36 #include "../common/animdecide.qh"
38 void Drop_Special_Items(entity player)
40 // called when the player has become stuck or frozen
41 // so objective items aren't stuck with the player
43 MUTATOR_CALLHOOK(DropSpecialItems, player);
46 void CopyBody_Think(entity this)
48 if(this.CopyBody_nextthink && time > this.CopyBody_nextthink)
50 this.CopyBody_think(this);
53 this.CopyBody_nextthink = this.nextthink;
54 this.CopyBody_think = getthink(this);
55 setthink(this, CopyBody_Think);
57 CSQCMODEL_AUTOUPDATE(this);
58 this.nextthink = time;
60 void CopyBody(entity this, float keepvelocity)
62 if (this.effects & EF_NODRAW)
64 entity clone = new(body);
67 clone.colormap = this.colormap;
68 clone.iscreature = this.iscreature;
69 clone.teleportable = this.teleportable;
70 clone.damagedbycontents = this.damagedbycontents;
71 if(clone.damagedbycontents)
72 IL_PUSH(g_damagedbycontents, clone);
73 clone.angles = this.angles;
74 clone.v_angle = this.v_angle;
75 clone.avelocity = this.avelocity;
76 clone.damageforcescale = this.damageforcescale;
77 clone.effects = this.effects;
78 clone.glowmod = this.glowmod;
79 clone.event_damage = this.event_damage;
80 clone.event_heal = this.event_heal;
81 clone.anim_state = this.anim_state;
82 clone.anim_time = this.anim_time;
83 clone.anim_lower_action = this.anim_lower_action;
84 clone.anim_lower_time = this.anim_lower_time;
85 clone.anim_upper_action = this.anim_upper_action;
86 clone.anim_upper_time = this.anim_upper_time;
87 clone.anim_implicit_state = this.anim_implicit_state;
88 clone.anim_implicit_time = this.anim_implicit_time;
89 clone.anim_lower_implicit_action = this.anim_lower_implicit_action;
90 clone.anim_lower_implicit_time = this.anim_lower_implicit_time;
91 clone.anim_upper_implicit_action = this.anim_upper_implicit_action;
92 clone.anim_upper_implicit_time = this.anim_upper_implicit_time;
93 clone.dphitcontentsmask = this.dphitcontentsmask;
94 clone.death_time = this.death_time;
95 clone.pain_finished = this.pain_finished;
96 SetResourceAmountExplicit(clone, RESOURCE_HEALTH, GetResourceAmount(this, RESOURCE_HEALTH));
97 SetResourceAmountExplicit(clone, RESOURCE_ARMOR, GetResourceAmount(this, RESOURCE_ARMOR));
98 clone.armortype = this.armortype;
99 clone.model = this.model;
100 clone.modelindex = this.modelindex;
101 clone.skin = this.skin;
102 clone.species = this.species;
103 clone.move_qcphysics = false; // don't run gamecode logic on clones, too many
104 set_movetype(clone, this.move_movetype);
105 clone.solid = this.solid;
106 clone.takedamage = this.takedamage;
107 setcefc(clone, getcefc(this));
108 clone.uncustomizeentityforclient = this.uncustomizeentityforclient;
109 clone.uncustomizeentityforclient_set = this.uncustomizeentityforclient_set;
110 if (keepvelocity == 1)
111 clone.velocity = this.velocity;
112 clone.oldvelocity = clone.velocity;
113 clone.alpha = this.alpha;
114 clone.fade_time = this.fade_time;
115 clone.fade_rate = this.fade_rate;
116 //clone.weapon = this.weapon;
117 setorigin(clone, this.origin);
118 setsize(clone, this.mins, this.maxs);
119 clone.reset = SUB_Remove;
120 clone._ps = this._ps;
122 Drag_MoveDrag(this, clone);
124 if(clone.colormap <= maxclients && clone.colormap > 0)
125 clone.colormap = 1024 + this.clientcolors;
127 CSQCMODEL_AUTOINIT(clone);
128 clone.CopyBody_nextthink = this.nextthink;
129 clone.CopyBody_think = getthink(this);
130 clone.nextthink = time;
131 setthink(clone, CopyBody_Think);
132 // "bake" the current animation frame for clones (they don't get clientside animation)
133 animdecide_load_if_needed(clone);
134 animdecide_setframes(clone, false, frame, frame1time, frame2, frame2time);
136 IL_PUSH(g_clones, clone);
138 MUTATOR_CALLHOOK(CopyBody, this, clone, keepvelocity);
141 void player_setupanimsformodel(entity this)
143 // load animation info
144 animdecide_load_if_needed(this);
145 animdecide_setstate(this, 0, false);
148 void player_anim(entity this)
150 int deadbits = (this.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
153 // Decide on which death animation to use.
155 deadbits = ANIMSTATE_DEAD1;
157 deadbits = ANIMSTATE_DEAD2;
160 // Clear a previous death animation.
163 int animbits = deadbits;
164 if(STAT(FROZEN, this))
165 animbits |= ANIMSTATE_FROZEN;
166 if(this.move_movetype == MOVETYPE_FOLLOW)
167 animbits |= ANIMSTATE_FOLLOW;
169 animbits |= ANIMSTATE_DUCK;
170 animdecide_setstate(this, animbits, false);
171 animdecide_setimplicitstate(this, IS_ONGROUND(this));
174 void PlayerCorpseDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
178 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
180 v = healtharmor_applydamage(GetResourceAmount(this, RESOURCE_ARMOR), autocvar_g_balance_armor_blockpercent, deathtype, damage);
184 if(sound_allowed(MSG_BROADCAST, attacker))
187 sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
189 sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
191 sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM);
195 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
197 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
199 TakeResource(this, RESOURCE_ARMOR, save);
200 TakeResource(this, RESOURCE_HEALTH, take);
201 // pause regeneration for 5 seconds
202 this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
204 this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
205 this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
206 this.dmg_inflictor = inflictor;
208 if (GetResourceAmount(this, RESOURCE_HEALTH) <= -autocvar_sv_gibhealth && this.alpha >= 0)
210 // don't use any animations as a gib
212 // view just above the floor
213 this.view_ofs = '0 0 4';
215 Violence_GibSplash(this, 1, 1, attacker);
217 this.solid = SOLID_NOT; // restore later
218 this.takedamage = DAMAGE_NO; // restore later
219 if(this.damagedbycontents)
220 IL_REMOVE(g_damagedbycontents, this);
221 this.damagedbycontents = false;
225 void calculate_player_respawn_time(entity this)
227 if(MUTATOR_CALLHOOK(CalculateRespawnTime, this))
230 float gametype_setting_tmp;
231 float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
232 float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
233 float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
234 float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
235 float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
236 float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
238 float pcount = 1; // Include myself whether or not team is already set right and I'm a "player".
241 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
242 if(it.team == this.team)
245 if (sdelay_small_count == 0)
246 sdelay_small_count = 1;
247 if (sdelay_large_count == 0)
248 sdelay_large_count = 1;
252 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
255 if (sdelay_small_count == 0)
257 if (IS_INDEPENDENT_PLAYER(this))
259 // Players play independently. No point in requiring enemies.
260 sdelay_small_count = 1;
264 // Players play AGAINST each other. Enemies required.
265 sdelay_small_count = 2;
268 if (sdelay_large_count == 0)
270 if (IS_INDEPENDENT_PLAYER(this))
272 // Players play independently. No point in requiring enemies.
273 sdelay_large_count = 1;
277 // Players play AGAINST each other. Enemies required.
278 sdelay_large_count = 2;
285 if (pcount <= sdelay_small_count)
286 sdelay = sdelay_small;
287 else if (pcount >= sdelay_large_count)
288 sdelay = sdelay_large;
289 else // NOTE: this case implies sdelay_large_count > sdelay_small_count.
290 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
293 this.respawn_time = ceil((time + sdelay) / waves) * waves;
295 this.respawn_time = time + sdelay;
297 if(sdelay < sdelay_max)
298 this.respawn_time_max = time + sdelay_max;
300 this.respawn_time_max = this.respawn_time;
302 if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
303 this.respawn_countdown = 10; // first number to count down from is 10
305 this.respawn_countdown = -1; // do not count down
307 if(autocvar_g_forced_respawn)
308 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
311 void PlayerDamage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
313 float take, save, dh, da;
317 dh = max(GetResourceAmount(this, RESOURCE_HEALTH), 0);
318 da = max(GetResourceAmount(this, RESOURCE_ARMOR), 0);
320 if(!DEATH_ISSPECIAL(deathtype))
322 damage *= Handicap_GetTotalHandicap(this);
323 if (this != attacker && IS_PLAYER(attacker))
325 damage /= Handicap_GetTotalHandicap(attacker);
329 if (time < this.spawnshieldtime && autocvar_g_spawnshield_blockdamage < 1)
330 damage *= 1 - max(0, autocvar_g_spawnshield_blockdamage);
332 if(DEATH_ISWEAPON(deathtype, WEP_TUBA))
334 // tuba causes blood to come out of the ears
339 ear1_z += 0.125 * this.view_ofs.z + 0.875 * this.maxs.z; // 7/8
341 makevectors(this.angles);
342 ear1 += v_right * -10;
343 ear2 += v_right * +10;
344 d = inflictor.origin - this.origin;
346 f = (d * v_right) / vlen(d); // this is cos of angle of d and v_right!
348 f = 0; // Assum ecenter.
349 force = v_right * vlen(force);
350 Violence_GibSplash_At(ear1, force * -1, 2, bound(0, damage, 25) / 2 * (0.5 - 0.5 * f), this, attacker);
351 Violence_GibSplash_At(ear2, force, 2, bound(0, damage, 25) / 2 * (0.5 + 0.5 * f), this, attacker);
360 // force is already good
364 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
366 v = healtharmor_applydamage(GetResourceAmount(this, RESOURCE_ARMOR), autocvar_g_balance_armor_blockpercent, deathtype, damage);
372 // don't reset pushltime for this damage as it may be an attempt to
373 // escape a lava pit or similar
374 //this.pushltime = 0;
377 else if(IS_PLAYER(attacker))
379 this.pusher = attacker;
380 this.pushltime = time + autocvar_g_maxpushtime;
381 this.istypefrag = PHYS_INPUT_BUTTON_CHAT(this);
383 else if(time < this.pushltime)
385 attacker = this.pusher;
386 this.pushltime = max(this.pushltime, time + 0.6);
394 MUTATOR_CALLHOOK(PlayerDamage_SplitHealthArmor, inflictor, attacker, this, force, take, save, deathtype, damage);
395 take = bound(0, M_ARGV(4, float), GetResourceAmount(this, RESOURCE_HEALTH));
396 save = bound(0, M_ARGV(5, float), GetResourceAmount(this, RESOURCE_ARMOR));
397 excess = max(0, damage - take - save);
399 if(sound_allowed(MSG_BROADCAST, attacker))
402 sound (this, CH_SHOTS, SND_ARMORIMPACT, VOL_BASE, ATTEN_NORM);
404 sound (this, CH_SHOTS, SND_BODYIMPACT2, VOL_BASE, ATTEN_NORM);
406 sound (this, CH_SHOTS, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM); // FIXME possibly remove them?
410 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
412 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
414 if (time >= this.spawnshieldtime || autocvar_g_spawnshield_blockdamage < 1)
416 if (!(this.flags & FL_GODMODE))
418 TakeResource(this, RESOURCE_ARMOR, save);
419 TakeResource(this, RESOURCE_HEALTH, take);
420 // pause regeneration for 5 seconds
422 this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_health_regen);
424 if (time > this.pain_finished) //Don't switch pain sequences like crazy
426 this.pain_finished = time + 0.5; //Supajoe
428 if(autocvar_sv_gentle < 1) {
429 if(this.classname != "body") // pain anim is BORKED on our ZYMs, FIXME remove this once we have good models
431 if (!this.animstate_override)
434 animdecide_setaction(this, ANIMACTION_PAIN1, true);
436 animdecide_setaction(this, ANIMACTION_PAIN2, true);
439 float myhp = GetResourceAmount(this, RESOURCE_HEALTH);
441 if(myhp < 25 || !(DEATH_WEAPONOF(deathtype).spawnflags & WEP_FLAG_CANCLIMB) || take > 20 || attacker != this)
442 if(sound_allowed(MSG_BROADCAST, attacker))
443 // exclude pain sounds for laserjumps as long as you aren't REALLY low on health and would die of the next two
445 if(deathtype == DEATH_FALL.m_id)
446 PlayerSound(this, playersound_fall, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
448 PlayerSound(this, playersound_pain100, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
450 PlayerSound(this, playersound_pain75, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
452 PlayerSound(this, playersound_pain50, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
454 PlayerSound(this, playersound_pain25, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
459 // throw off bot aim temporarily
461 if(IS_BOT_CLIENT(this) && GetResourceAmount(this, RESOURCE_HEALTH) >= 1)
463 shake = damage * 5 / (bound(0,skill,100) + 1);
464 this.v_angle_x = this.v_angle.x + (random() * 2 - 1) * shake;
465 this.v_angle_y = this.v_angle.y + (random() * 2 - 1) * shake;
466 this.v_angle_x = bound(-90, this.v_angle.x, 90);
469 if (this != attacker) {
470 float realdmg = damage - excess;
471 if (IS_PLAYER(attacker) && !SAME_TEAM(attacker, this)) {
472 GameRules_scoring_add(attacker, DMG, realdmg);
474 if (IS_PLAYER(this)) {
475 GameRules_scoring_add(this, DMGTAKEN, realdmg);
480 this.max_armorvalue += (save + take);
482 this.dmg_save = this.dmg_save + save;//max(save - 10, 0);
483 this.dmg_take = this.dmg_take + take;//max(take - 10, 0);
484 this.dmg_inflictor = inflictor;
486 bool abot = (IS_BOT_CLIENT(attacker));
487 bool vbot = (IS_BOT_CLIENT(this));
489 bool valid_damage_for_weaponstats = false;
490 Weapon awep = WEP_Null;
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))
497 if(DEATH_ISSPECIAL(deathtype))
498 awep = attacker.(weaponentity).m_weapon;
500 awep = DEATH_WEAPONOF(deathtype);
501 valid_damage_for_weaponstats = true;
504 dh = dh - max(GetResourceAmount(this, RESOURCE_HEALTH), 0);
505 da = da - max(GetResourceAmount(this, RESOURCE_ARMOR), 0);
506 if(valid_damage_for_weaponstats)
508 WeaponStats_LogDamage(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot, dh + da);
511 MUTATOR_CALLHOOK(PlayerDamaged, attacker, this, dh, da, hitloc, deathtype, damage);
513 if (GetResourceAmount(this, RESOURCE_HEALTH) < 1)
515 float defer_ClientKill_Now_TeamChange;
516 defer_ClientKill_Now_TeamChange = false;
520 PlayerStats_GameReport_Event_Player(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
524 if(valid_damage_for_weaponstats)
525 WeaponStats_LogKill(awep.m_id, abot, this.(weaponentity).m_weapon.m_id, vbot);
527 if(autocvar_sv_gentle < 1)
528 if(sound_allowed(MSG_BROADCAST, attacker))
530 if(deathtype == DEATH_DROWN.m_id)
531 PlayerSound(this, playersound_drown, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
533 PlayerSound(this, playersound_death, CH_PAIN, VOL_BASE, VOICETYPE_PLAYERSOUND);
536 // get rid of kill indicator
537 if(this.killindicator)
539 delete(this.killindicator);
540 this.killindicator = NULL;
541 if(this.killindicator_teamchange)
542 defer_ClientKill_Now_TeamChange = true;
544 if(this.classname == "body")
545 if(deathtype == DEATH_KILL.m_id)
547 // for the lemmings fans, a small harmless explosion
548 Send_Effect(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1);
552 // print an obituary message
553 if(this.classname != "body")
554 Obituary (attacker, inflictor, this, deathtype, weaponentity);
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;
561 this.respawn_time = 0;
562 MUTATOR_CALLHOOK(PlayerDies, inflictor, attacker, this, deathtype, damage);
563 damage = M_ARGV(4, float);
564 excess = max(0, damage - take - save);
566 //Weapon wep = this.(weaponentity).m_weapon;
567 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
569 .entity went = weaponentities[slot];
571 continue; // TODO: clones have no weapon, but we don't want to have to check this all the time
572 Weapon wep = this.(went).m_weapon;
573 wep.wr_playerdeath(wep, this, went);
576 RemoveGrapplingHooks(this);
578 Portal_ClearAllLater(this);
580 this.fixangle = true;
582 if(defer_ClientKill_Now_TeamChange)
583 ClientKill_Now_TeamChange(this); // can turn player into spectator
585 // player could have been miraculously resuscitated ;)
586 // e.g. players in freezetag get frozen, they don't really die
587 if(GetResourceAmount(this, RESOURCE_HEALTH) >= 1 || !(IS_PLAYER(this) || this.classname == "body"))
590 if (!this.respawn_time) // can be set in the mutator hook PlayerDies
591 calculate_player_respawn_time(this);
593 // when we get here, player actually dies
595 Unfreeze(this); // remove any icy remains
596 SetResourceAmountExplicit(this, RESOURCE_HEALTH, 0); // Unfreeze resets health, so we need to set it back
599 WaypointSprite_PlayerDead(this);
601 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
603 .entity went = weaponentities[slot];
604 SpawnThrownWeapon(this, this.origin + (this.mins + this.maxs) * 0.5, this.(went).m_weapon, went);
607 // become fully visible
608 this.alpha = default_player_alpha;
609 // make the corpse upright (not tilted)
613 this.avelocity = '0 0 0';
614 // view from the floor
615 this.view_ofs = '0 0 -8';
617 set_movetype(this, MOVETYPE_TOSS);
619 this.solid = SOLID_CORPSE;
620 PS(this).ballistics_density = autocvar_g_ballistics_density_corpse;
621 // don't stick to the floor
622 UNSET_ONGROUND(this);
624 this.deadflag = DEAD_DYING;
626 STAT(MOVEVARS_SPECIALCOMMAND, this) = false; // sweet release
628 this.death_time = time;
630 animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD1, true);
632 animdecide_setstate(this, this.anim_state | ANIMSTATE_DEAD2, true);
634 // set damage function to corpse damage
635 this.event_damage = PlayerCorpseDamage;
636 this.event_heal = func_null;
637 // call the corpse damage function just in case it wants to gib
638 this.event_damage(this, inflictor, attacker, excess, deathtype, weaponentity, hitloc, force);
640 // set up to fade out later
641 SUB_SetFade (this, time + 6 + random (), 1);
642 // reset body think wrapper broken by SUB_SetFade
643 if(this.classname == "body" && getthink(this) != CopyBody_Think) {
644 this.CopyBody_think = getthink(this);
645 this.CopyBody_nextthink = this.nextthink;
646 setthink(this, CopyBody_Think);
647 this.nextthink = time;
650 if(autocvar_sv_gentle > 0 || autocvar_ekg || this.classname == "body") {
652 // clones don't run any animation code any more, so we must gib them when they die :(
653 this.event_damage(this, inflictor, attacker, autocvar_sv_gibhealth + 1, deathtype, weaponentity, hitloc, force);
656 // reset fields the weapons may use just in case
657 if(this.classname != "body")
659 FOREACH(Weapons, it != WEP_Null,
661 it.wr_resetplayer(it, this);
662 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
664 ATTACK_FINISHED_FOR(this, it.m_id, slot) = 0;
668 MUTATOR_CALLHOOK(PlayerDied, this);
672 bool PlayerHeal(entity targ, entity inflictor, float amount, float limit)
674 if(GetResourceAmount(targ, RESOURCE_HEALTH) <= 0 || GetResourceAmount(targ, RESOURCE_HEALTH) >= limit)
677 GiveResourceWithLimit(targ, RESOURCE_HEALTH, amount, limit);
682 * message "": do not say, just test flood control
688 int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodcontrol)
690 if (!teamsay && !privatesay && substring(msgin, 0, 1) == " ")
691 msgin = substring(msgin, 1, -1); // work around DP say bug (say_team does not have this!)
694 msgin = formatmessage(source, msgin);
697 if (!(IS_PLAYER(source) || source.caplayer))
698 colorstr = "^0"; // black for spectators
700 colorstr = Team_ColorCode(source.team);
716 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
719 * using bprint solves this... me stupid
720 // how can we prevent the message from appearing in a listen server?
721 // for now, just give "say" back and only handle say_team
724 clientcommand(source, strcat("say ", msgin));
731 namestr = playername(source, autocvar_g_chat_teamcolors);
733 string colorprefix = (strdecolorize(namestr) == namestr) ? "^3" : "^7";
735 string msgstr = "", cmsgstr = "";
736 string privatemsgprefix = string_null;
737 int privatemsgprefixlen = 0;
742 msgstr = strcat("\{1}\{13}* ", colorprefix, namestr, "^3 tells you: ^7");
743 privatemsgprefixlen = strlen(msgstr);
744 msgstr = strcat(msgstr, msgin);
745 cmsgstr = strcat(colorstr, colorprefix, namestr, "^3 tells you:\n^7", msgin);
746 privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay, autocvar_g_chat_teamcolors), ": ^7");
750 if(strstrofs(msgin, "/me", 0) >= 0)
752 //msgin = strreplace("/me", "", msgin);
753 //msgin = substring(msgin, 3, strlen(msgin));
754 msgin = strreplace("/me", strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7"), msgin);
755 msgstr = strcat("\{1}\{13}^4* ", "^7", msgin);
758 msgstr = strcat("\{1}\{13}", colorstr, "(", colorprefix, namestr, colorstr, ") ^7", msgin);
759 cmsgstr = strcat(colorstr, "(", colorprefix, namestr, colorstr, ")\n^7", msgin);
763 if(strstrofs(msgin, "/me", 0) >= 0)
765 //msgin = strreplace("/me", "", msgin);
766 //msgin = substring(msgin, 3, strlen(msgin));
767 msgin = strreplace("/me", strcat(colorprefix, namestr), msgin);
768 msgstr = strcat("\{1}^4* ", "^7", msgin);
772 msgstr = strcat(msgstr, (namestr != "") ? strcat(colorprefix, namestr, "^7: ") : "^7");
773 msgstr = strcat(msgstr, msgin);
777 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
780 string fullmsgstr = msgstr;
781 string fullcmsgstr = cmsgstr;
785 var .float flood_field = floodcontrol_chat;
786 if(floodcontrol && source)
794 flood_spl = autocvar_g_chat_flood_spl_tell;
795 flood_burst = autocvar_g_chat_flood_burst_tell;
796 flood_lmax = autocvar_g_chat_flood_lmax_tell;
797 flood_field = floodcontrol_chattell;
801 flood_spl = autocvar_g_chat_flood_spl_team;
802 flood_burst = autocvar_g_chat_flood_burst_team;
803 flood_lmax = autocvar_g_chat_flood_lmax_team;
804 flood_field = floodcontrol_chatteam;
808 flood_spl = autocvar_g_chat_flood_spl;
809 flood_burst = autocvar_g_chat_flood_burst;
810 flood_lmax = autocvar_g_chat_flood_lmax;
811 flood_field = floodcontrol_chat;
813 flood_burst = max(0, flood_burst - 1);
814 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
816 // do flood control for the default line size
819 getWrappedLine_remaining = msgstr;
822 while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
824 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
827 msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
829 if(getWrappedLine_remaining != "")
831 msgstr = strcat(msgstr, "\n");
835 if (time >= source.(flood_field))
837 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + lines * flood_spl;
847 if (time >= source.(flood_field))
848 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + flood_spl;
853 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
854 source.(flood_field) = flood = 0;
857 string sourcemsgstr, sourcecmsgstr;
858 if(flood == 2) // cannot happen for empty msgstr
860 if(autocvar_g_chat_flood_notify_flooder)
862 sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
867 sourcemsgstr = fullmsgstr;
868 sourcecmsgstr = fullcmsgstr;
874 sourcemsgstr = msgstr;
875 sourcecmsgstr = cmsgstr;
878 if (!privatesay && source && !(IS_PLAYER(source) || source.caplayer))
881 if (teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
882 teamsay = -1; // spectators
886 LOG_INFO("NOTE: ", playername(source, true), "^7 is flooding.");
888 // build sourcemsgstr by cutting off a prefix and replacing it by the other one
890 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
893 if(source && CS(source).muted)
895 // always fake the message
900 if (autocvar_g_chat_flood_notify_flooder)
902 sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.(flood_field) - time), "^3 seconds\n"));
913 if (privatesay && source && !(IS_PLAYER(source) || source.caplayer))
916 if ((privatesay && (IS_PLAYER(privatesay) || privatesay.caplayer)) && ((autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage)))
917 ret = -1; // just hide the message completely
920 MUTATOR_CALLHOOK(ChatMessage, source, ret);
921 ret = M_ARGV(1, int);
923 if(sourcemsgstr != "" && ret != 0)
925 if(ret < 0) // faked message, because the player is muted
927 sprint(source, sourcemsgstr);
928 if(sourcecmsgstr != "" && !privatesay)
929 centerprint(source, sourcecmsgstr);
931 else if(privatesay) // private message, between 2 people only
933 sprint(source, sourcemsgstr);
934 if (!autocvar_g_chat_tellprivacy) { dedicated_print(msgstr); } // send to server console too if "tellprivacy" is disabled
935 if(!MUTATOR_CALLHOOK(ChatMessageTo, privatesay, source))
937 sprint(privatesay, msgstr);
939 centerprint(privatesay, cmsgstr);
942 else if ( teamsay && CS(source).active_minigame )
944 sprint(source, sourcemsgstr);
945 dedicated_print(msgstr); // send to server console too
946 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && CS(it).active_minigame == CS(source).active_minigame && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
950 else if(teamsay > 0) // team message, only sent to team mates
952 sprint(source, sourcemsgstr);
953 dedicated_print(msgstr); // send to server console too
954 if(sourcecmsgstr != "")
955 centerprint(source, sourcecmsgstr);
956 FOREACH_CLIENT((IS_PLAYER(it) || it.caplayer) && IS_REAL_CLIENT(it) && it != source && it.team == source.team && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
959 centerprint(it, cmsgstr);
962 else if(teamsay < 0) // spectator message, only sent to spectators
964 sprint(source, sourcemsgstr);
965 dedicated_print(msgstr); // send to server console too
966 FOREACH_CLIENT(!(IS_PLAYER(it) || it.caplayer) && IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
973 sprint(source, sourcemsgstr);
974 dedicated_print(msgstr); // send to server console too
975 MX_Say(strcat(playername(source, true), "^7: ", msgin));
977 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {