3 #include <common/weapons/_all.qh>
4 #include <common/stats.qh>
5 #include <server/miscfunctions.qh>
6 #include <common/effects/all.qh>
7 #include "anticheat.qh"
11 #include "miscfunctions.qh"
13 #include "teamplay.qh"
14 #include "spawnpoints.qh"
15 #include "resources.qh"
17 #include "handicap.qh"
19 #include "command/common.qh"
20 #include "command/vote.qh"
21 #include "clientkill.qh"
24 #include <server/gamelog.qh>
26 #include <server/main.qh>
28 #include "campaign.qh"
29 #include "command/common.qh"
30 #include "scores_rules.qh"
31 #include "weapons/common.qh"
35 #include "../common/ent_cs.qh"
36 #include "../common/wepent.qh"
37 #include <common/state.qh>
39 #include "compat/quake3.qh"
41 #include <common/effects/qc/globalsound.qh>
43 #include "../common/mapobjects/func/conveyor.qh"
44 #include <common/mapobjects/func/ladder.qh>
45 #include "../common/mapobjects/teleporters.qh"
46 #include "../common/mapobjects/target/spawnpoint.qh"
47 #include <common/mapobjects/trigger/counter.qh>
48 #include <common/mapobjects/trigger/swamp.qh>
50 #include "../common/vehicles/all.qh"
52 #include "weapons/hitplot.qh"
53 #include "weapons/selection.qh"
54 #include "weapons/weaponsystem.qh"
56 #include "../common/net_notice.qh"
57 #include "../common/net_linked.qh"
58 #include "../common/physics/player.qh"
60 #include <common/vehicles/sv_vehicles.qh>
62 #include "../common/items/_mod.qh"
64 #include <common/gamemodes/gamemode/nexball/sv_nexball.qh>
66 #include "../common/mutators/mutator/waypoints/all.qh"
67 #include "../common/mutators/mutator/instagib/sv_instagib.qh"
68 #include <common/gamemodes/_mod.qh>
70 #include "../common/mapobjects/subs.qh"
71 #include "../common/mapobjects/triggers.qh"
72 #include "../common/mapobjects/trigger/secret.qh"
74 #include "../common/minigames/sv_minigames.qh"
76 #include "../common/items/inventory.qh"
78 #include "../common/monsters/sv_monsters.qh"
80 #include "../lib/warpzone/server.qh"
82 #include <common/mutators/mutator/overkill/oknex.qh>
84 #include <common/weapons/weapon/vortex.qh>
86 STATIC_METHOD(Client, Add, void(Client this, int _team))
89 TRANSMUTE(Player, this);
92 PutClientInServer(this);
95 STATIC_METHOD(Client, Remove, void(Client this))
97 TRANSMUTE(Observer, this);
98 PutClientInServer(this);
99 ClientDisconnect(this);
102 void send_CSQC_teamnagger() {
103 WriteHeader(MSG_BROADCAST, TE_CSQC_TEAMNAGGER);
106 int CountSpectators(entity player, entity to)
108 if(!player) { return 0; } // not sure how, but best to be safe
112 FOREACH_CLIENT(IS_REAL_CLIENT(it) && IS_SPEC(it) && it != to && it.enemy == player,
120 void WriteSpectators(entity player, entity to)
122 if(!player) { return; } // not sure how, but best to be safe
125 FOREACH_CLIENT(IS_REAL_CLIENT(it) && IS_SPEC(it) && it != to && it.enemy == player,
127 if(spec_count >= MAX_SPECTATORS)
129 WriteByte(MSG_ENTITY, num_for_edict(it));
134 bool ClientData_Send(entity this, entity to, int sf)
136 assert(to == this.owner, return false);
139 if (IS_SPEC(e)) e = e.enemy;
142 if (CS(e).race_completed) sf |= BIT(0); // forced scoreboard
143 if (CS(to).spectatee_status) sf |= BIT(1); // spectator ent number follows
144 if (CS(e).zoomstate) sf |= BIT(2); // zoomed
145 if (autocvar_sv_showspectators) sf |= BIT(4); // show spectators
147 WriteHeader(MSG_ENTITY, ENT_CLIENT_CLIENTDATA);
148 WriteByte(MSG_ENTITY, sf);
151 WriteByte(MSG_ENTITY, CS(to).spectatee_status);
155 float specs = CountSpectators(e, to);
156 WriteByte(MSG_ENTITY, specs);
157 WriteSpectators(e, to);
163 void ClientData_Attach(entity this)
165 Net_LinkEntity(CS(this).clientdata = new_pure(clientdata), false, 0, ClientData_Send);
166 CS(this).clientdata.drawonlytoclient = this;
167 CS(this).clientdata.owner = this;
170 void ClientData_Detach(entity this)
172 delete(CS(this).clientdata);
173 CS(this).clientdata = NULL;
176 void ClientData_Touch(entity e)
178 entity cd = CS(e).clientdata;
179 if (cd) { cd.SendFlags = 1; }
181 // make it spectatable
182 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != e && IS_SPEC(it) && it.enemy == e,
184 entity cd = CS(it).clientdata;
185 if (cd) { cd.SendFlags = 1; }
194 Checks if the argument string can be a valid playermodel.
195 Returns a valid one in doubt.
198 string FallbackPlayerModel;
199 string CheckPlayerModel(string plyermodel) {
200 if(FallbackPlayerModel != cvar_defstring("_cl_playermodel"))
202 // note: we cannot summon Don Strunzone here, some player may
203 // still have the model string set. In case anyone manages how
204 // to change a cvar default, we'll have a small leak here.
205 FallbackPlayerModel = strzone(cvar_defstring("_cl_playermodel"));
207 // only in right path
208 if( substring(plyermodel,0,14) != "models/player/")
209 return FallbackPlayerModel;
210 // only good file extensions
211 if(substring(plyermodel,-4,4) != ".zym")
212 if(substring(plyermodel,-4,4) != ".dpm")
213 if(substring(plyermodel,-4,4) != ".iqm")
214 if(substring(plyermodel,-4,4) != ".md3")
215 if(substring(plyermodel,-4,4) != ".psk")
216 return FallbackPlayerModel;
217 // forbid the LOD models
218 if(substring(plyermodel, -9,5) == "_lod1")
219 return FallbackPlayerModel;
220 if(substring(plyermodel, -9,5) == "_lod2")
221 return FallbackPlayerModel;
222 if(plyermodel != strtolower(plyermodel))
223 return FallbackPlayerModel;
224 // also, restrict to server models
225 if(autocvar_sv_servermodelsonly)
227 if(!fexists(plyermodel))
228 return FallbackPlayerModel;
233 void setplayermodel(entity e, string modelname)
235 precache_model(modelname);
236 _setmodel(e, modelname);
237 player_setupanimsformodel(e);
238 if(!autocvar_g_debug_globalsounds)
239 UpdatePlayerSounds(e);
242 /** putting a client as observer in the server */
243 void PutObserverInServer(entity this)
245 bool mutator_returnvalue = MUTATOR_CALLHOOK(MakePlayerObserver, this);
246 PlayerState_detach(this);
250 if(GetResource(this, RES_HEALTH) >= 1)
253 Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
256 // was a player, recount votes and ready status
257 if(IS_REAL_CLIENT(this))
259 if (vote_called) { VoteCount(false); }
265 entity spot = SelectSpawnPoint(this, true);
266 if (!spot) LOG_FATAL("No spawnpoints for observers?!?");
267 this.angles = vec2(spot.angles);
268 this.fixangle = true;
269 // offset it so that the spectator spawns higher off the ground, looks better this way
270 setorigin(this, spot.origin + STAT(PL_VIEW_OFS, this));
271 if (IS_REAL_CLIENT(this))
274 WriteByte(MSG_ONE, SVC_SETVIEW);
275 WriteEntity(MSG_ONE, this);
277 // give the spectator some space between walls for MOVETYPE_FLY_WORLDONLY
278 // so that your view doesn't go into the ceiling with MOVETYPE_FLY_WORLDONLY, previously "PL_VIEW_OFS"
279 if(!autocvar_g_debug_globalsounds)
281 // needed for player sounds
283 FixPlayermodel(this);
285 setmodel(this, MDL_Null);
286 setsize(this, STAT(PL_CROUCH_MIN, this), STAT(PL_CROUCH_MAX, this));
287 this.view_ofs = '0 0 0';
290 RemoveGrapplingHooks(this);
291 Portal_ClearAll(this);
292 Unfreeze(this, false);
293 SetSpectatee(this, NULL);
298 PlayerStats_GameReport_Event_Player(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
302 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
304 WaypointSprite_PlayerDead(this);
306 if (CS(this).killcount != FRAGS_SPECTATOR)
309 if(autocvar_g_chat_nospectators == 1 || (!warmup_stage && autocvar_g_chat_nospectators == 2))
310 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_CHAT_NOSPECTATORS);
313 accuracy_resend(this);
315 CS(this).spectatortime = time;
317 IL_REMOVE(g_bot_targets, this);
318 this.bot_attack = false;
319 if(this.monster_attack)
320 IL_REMOVE(g_monster_targets, this);
321 this.monster_attack = false;
322 STAT(HUD, this) = HUD_NORMAL;
323 TRANSMUTE(Observer, this);
324 this.iscreature = false;
325 this.teleportable = TELEPORT_SIMPLE;
326 if(this.damagedbycontents)
327 IL_REMOVE(g_damagedbycontents, this);
328 this.damagedbycontents = false;
329 SetResourceExplicit(this, RES_HEALTH, FRAGS_SPECTATOR);
330 SetSpectatee_status(this, etof(this));
331 this.takedamage = DAMAGE_NO;
332 this.solid = SOLID_NOT;
333 set_movetype(this, MOVETYPE_FLY_WORLDONLY); // user preference is controlled by playerprethink
334 this.flags = FL_CLIENT | FL_NOTARGET;
336 SetResourceExplicit(this, RES_ARMOR, autocvar_g_balance_armor_start); // was 666?!
337 this.pauserotarmor_finished = 0;
338 this.pauserothealth_finished = 0;
339 this.pauseregen_finished = 0;
340 this.damageforcescale = 0;
342 this.respawn_flags = 0;
343 this.respawn_time = 0;
344 STAT(RESPAWN_TIME, this) = 0;
348 this.pain_finished = 0;
349 STAT(STRENGTH_FINISHED, this) = 0;
350 STAT(INVINCIBLE_FINISHED, this) = 0;
351 STAT(SUPERWEAPONS_FINISHED, this) = 0;
352 STAT(AIR_FINISHED, this) = 0;
353 //this.dphitcontentsmask = 0;
354 this.dphitcontentsmask = DPCONTENTS_SOLID;
355 if (autocvar_g_playerclip_collisions)
356 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
359 setthink(this, func_null);
361 this.deadflag = DEAD_NO;
363 STAT(REVIVE_PROGRESS, this) = 0;
364 this.revival_time = 0;
365 this.draggable = drag_undraggable;
368 STAT(WEAPONS, this) = '0 0 0';
369 this.drawonlytoclient = this;
373 //this.spawnpoint_targ = NULL; // keep it so they can return to where they were?
375 this.weaponmodel = "";
376 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
378 this.weaponentities[slot] = NULL;
380 this.exteriorweaponentity = NULL;
381 CS(this).killcount = FRAGS_SPECTATOR;
382 this.velocity = '0 0 0';
383 this.avelocity = '0 0 0';
384 this.punchangle = '0 0 0';
385 this.punchvector = '0 0 0';
386 this.oldvelocity = this.velocity;
387 this.fire_endtime = -1;
388 this.event_damage = func_null;
389 this.event_heal = func_null;
391 for(int slot = 0; slot < MAX_AXH; ++slot)
393 entity axh = this.(AuxiliaryXhair[slot]);
394 this.(AuxiliaryXhair[slot]) = NULL;
396 if(axh.owner == this && axh != NULL && !wasfreed(axh))
400 if (mutator_returnvalue)
402 // mutator prevents resetting teams+score
406 SetPlayerTeam(this, -1, TEAM_CHANGE_SPECTATOR);
407 this.frags = FRAGS_SPECTATOR;
409 if (CS(this).just_joined)
410 CS(this).just_joined = false;
413 int player_getspecies(entity this)
415 get_model_parameters(this.model, this.skin);
416 int s = get_model_parameters_species;
417 get_model_parameters(string_null, 0);
418 if (s < 0) return SPECIES_HUMAN;
422 .float model_randomizer;
423 void FixPlayermodel(entity player)
425 string defaultmodel = "";
427 if(autocvar_sv_defaultcharacter)
433 case NUM_TEAM_1: defaultmodel = autocvar_sv_defaultplayermodel_red; defaultskin = autocvar_sv_defaultplayerskin_red; break;
434 case NUM_TEAM_2: defaultmodel = autocvar_sv_defaultplayermodel_blue; defaultskin = autocvar_sv_defaultplayerskin_blue; break;
435 case NUM_TEAM_3: defaultmodel = autocvar_sv_defaultplayermodel_yellow; defaultskin = autocvar_sv_defaultplayerskin_yellow; break;
436 case NUM_TEAM_4: defaultmodel = autocvar_sv_defaultplayermodel_pink; defaultskin = autocvar_sv_defaultplayerskin_pink; break;
440 if(defaultmodel == "")
442 defaultmodel = autocvar_sv_defaultplayermodel;
443 defaultskin = autocvar_sv_defaultplayerskin;
446 int n = tokenize_console(defaultmodel);
449 defaultmodel = argv(floor(n * CS(player).model_randomizer));
450 // However, do NOT randomize if the player-selected model is in the list.
451 for (int i = 0; i < n; ++i)
452 if ((argv(i) == player.playermodel && defaultskin == stof(player.playerskin)) || argv(i) == strcat(player.playermodel, ":", player.playerskin))
453 defaultmodel = argv(i);
456 int i = strstrofs(defaultmodel, ":", 0);
459 defaultskin = stof(substring(defaultmodel, i+1, -1));
460 defaultmodel = substring(defaultmodel, 0, i);
463 if(autocvar_sv_defaultcharacterskin && !defaultskin)
469 case NUM_TEAM_1: defaultskin = autocvar_sv_defaultplayerskin_red; break;
470 case NUM_TEAM_2: defaultskin = autocvar_sv_defaultplayerskin_blue; break;
471 case NUM_TEAM_3: defaultskin = autocvar_sv_defaultplayerskin_yellow; break;
472 case NUM_TEAM_4: defaultskin = autocvar_sv_defaultplayerskin_pink; break;
477 defaultskin = autocvar_sv_defaultplayerskin;
480 MUTATOR_CALLHOOK(FixPlayermodel, defaultmodel, defaultskin, player);
481 defaultmodel = M_ARGV(0, string);
482 defaultskin = M_ARGV(1, int);
486 if(defaultmodel != "")
488 if (defaultmodel != player.model)
490 vector m1 = player.mins;
491 vector m2 = player.maxs;
492 setplayermodel (player, defaultmodel);
493 setsize (player, m1, m2);
497 oldskin = player.skin;
498 player.skin = defaultskin;
500 if (player.playermodel != player.model || player.playermodel == "")
502 player.playermodel = CheckPlayerModel(player.playermodel); // this is never "", so no endless loop
503 vector m1 = player.mins;
504 vector m2 = player.maxs;
505 setplayermodel (player, player.playermodel);
506 setsize (player, m1, m2);
510 if(!autocvar_sv_defaultcharacterskin)
512 oldskin = player.skin;
513 player.skin = stof(player.playerskin);
517 oldskin = player.skin;
518 player.skin = defaultskin;
522 if(chmdl || oldskin != player.skin) // model or skin has changed
524 player.species = player_getspecies(player); // update species
525 if(!autocvar_g_debug_globalsounds)
526 UpdatePlayerSounds(player); // update skin sounds
530 if(strlen(autocvar_sv_defaultplayercolors))
531 if(player.clientcolors != stof(autocvar_sv_defaultplayercolors))
532 setcolor(player, stof(autocvar_sv_defaultplayercolors));
535 void PutPlayerInServer(entity this)
537 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
539 PlayerState_attach(this);
540 accuracy_resend(this);
543 TeamBalance_JoinBestTeam(this);
545 entity spot = SelectSpawnPoint(this, false);
547 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_NOSPAWNS);
548 return; // spawn failed
551 TRANSMUTE(Player, this);
553 CS(this).wasplayer = true;
554 this.iscreature = true;
555 this.teleportable = TELEPORT_NORMAL;
556 if(!this.damagedbycontents)
557 IL_PUSH(g_damagedbycontents, this);
558 this.damagedbycontents = true;
559 set_movetype(this, MOVETYPE_WALK);
560 this.solid = SOLID_SLIDEBOX;
561 this.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_SOLID;
562 if (autocvar_g_playerclip_collisions)
563 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
564 if (IS_BOT_CLIENT(this) && autocvar_g_botclip_collisions)
565 this.dphitcontentsmask |= DPCONTENTS_BOTCLIP;
566 this.frags = FRAGS_PLAYER;
567 if (INDEPENDENT_PLAYERS) MAKE_INDEPENDENT_PLAYER(this);
568 this.flags = FL_CLIENT | FL_PICKUPITEMS;
569 if (autocvar__notarget)
570 this.flags |= FL_NOTARGET;
571 this.takedamage = DAMAGE_AIM;
572 this.effects = EF_TELEPORT_BIT | EF_RESTARTANIM_BIT;
575 SetResource(this, RES_SHELLS, warmup_start_ammo_shells);
576 SetResource(this, RES_BULLETS, warmup_start_ammo_nails);
577 SetResource(this, RES_ROCKETS, warmup_start_ammo_rockets);
578 SetResource(this, RES_CELLS, warmup_start_ammo_cells);
579 SetResource(this, RES_PLASMA, warmup_start_ammo_plasma);
580 SetResource(this, RES_FUEL, warmup_start_ammo_fuel);
581 SetResource(this, RES_HEALTH, warmup_start_health);
582 SetResource(this, RES_ARMOR, warmup_start_armorvalue);
583 STAT(WEAPONS, this) = WARMUP_START_WEAPONS;
585 SetResource(this, RES_SHELLS, start_ammo_shells);
586 SetResource(this, RES_BULLETS, start_ammo_nails);
587 SetResource(this, RES_ROCKETS, start_ammo_rockets);
588 SetResource(this, RES_CELLS, start_ammo_cells);
589 SetResource(this, RES_PLASMA, start_ammo_plasma);
590 SetResource(this, RES_FUEL, start_ammo_fuel);
591 SetResource(this, RES_HEALTH, start_health);
592 SetResource(this, RES_ARMOR, start_armorvalue);
593 STAT(WEAPONS, this) = start_weapons;
594 if (MUTATOR_CALLHOOK(ForbidRandomStartWeapons, this) == false)
596 GiveRandomWeapons(this, random_start_weapons_count,
597 autocvar_g_random_start_weapons, random_start_ammo);
600 SetSpectatee_status(this, 0);
602 PS(this).dual_weapons = '0 0 0';
604 STAT(SUPERWEAPONS_FINISHED, this) = (STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS) ? time + autocvar_g_balance_superweapons_time : 0;
606 this.items = start_items;
608 this.spawnshieldtime = time + autocvar_g_spawnshieldtime;
609 this.pauserotarmor_finished = time + autocvar_g_balance_pause_armor_rot_spawn;
610 this.pauserothealth_finished = time + autocvar_g_balance_pause_health_rot_spawn;
611 this.pauserotfuel_finished = time + autocvar_g_balance_pause_fuel_rot_spawn;
612 this.pauseregen_finished = time + autocvar_g_balance_pause_health_regen_spawn;
613 if (!sv_ready_restart_after_countdown && time < game_starttime)
615 float f = game_starttime - time;
616 this.spawnshieldtime += f;
617 this.pauserotarmor_finished += f;
618 this.pauserothealth_finished += f;
619 this.pauseregen_finished += f;
622 this.damageforcescale = autocvar_g_player_damageforcescale;
624 this.respawn_flags = 0;
625 this.respawn_time = 0;
626 STAT(RESPAWN_TIME, this) = 0;
627 bool q3dfcompat = autocvar_sv_q3defragcompat && autocvar_sv_q3defragcompat_changehitbox;
628 this.scale = ((q3dfcompat) ? 0.9 : autocvar_sv_player_scale);
630 this.pain_finished = 0;
632 setthink(this, func_null); // players have no think function
635 PS(this).ballistics_density = autocvar_g_ballistics_density_player;
637 this.deadflag = DEAD_NO;
639 this.angles = spot.angles;
640 this.angles_z = 0; // never spawn tilted even if the spot says to
641 if (IS_BOT_CLIENT(this))
643 this.v_angle = this.angles;
646 this.fixangle = true; // turn this way immediately
647 this.oldvelocity = this.velocity = '0 0 0';
648 this.avelocity = '0 0 0';
649 this.punchangle = '0 0 0';
650 this.punchvector = '0 0 0';
652 STAT(STRENGTH_FINISHED, this) = 0;
653 STAT(INVINCIBLE_FINISHED, this) = 0;
654 this.fire_endtime = -1;
655 STAT(REVIVE_PROGRESS, this) = 0;
656 this.revival_time = 0;
658 // TODO: we can't set these in the PlayerSpawn hook since the target code is called before it!
659 STAT(BUFFS, this) = 0;
660 STAT(BUFF_TIME, this) = 0;
662 STAT(AIR_FINISHED, this) = 0;
663 this.waterlevel = WATERLEVEL_NONE;
664 this.watertype = CONTENT_EMPTY;
666 entity spawnevent = new_pure(spawnevent);
667 spawnevent.owner = this;
668 Net_LinkEntity(spawnevent, false, 0.5, SpawnEvent_Send);
670 // Cut off any still running player sounds.
671 stopsound(this, CH_PLAYER_SINGLE);
674 FixPlayermodel(this);
675 this.drawonlytoclient = NULL;
679 for(int slot = 0; slot < MAX_AXH; ++slot)
681 entity axh = this.(AuxiliaryXhair[slot]);
682 this.(AuxiliaryXhair[slot]) = NULL;
684 if(axh.owner == this && axh != NULL && !wasfreed(axh))
688 this.spawnpoint_targ = NULL;
691 this.view_ofs = STAT(PL_VIEW_OFS, this);
692 setsize(this, STAT(PL_MIN, this), STAT(PL_MAX, this));
693 this.spawnorigin = spot.origin;
694 setorigin(this, spot.origin + '0 0 1' * (1 - this.mins.z - 24));
695 // don't reset back to last position, even if new position is stuck in solid
696 this.oldorigin = this.origin;
698 IL_REMOVE(g_conveyed, this);
699 this.conveyor = NULL; // prevent conveyors at the previous location from moving a freshly spawned player
701 IL_REMOVE(g_swamped, this);
702 this.swampslug = NULL;
703 this.swamp_interval = 0;
704 if(this.ladder_entity)
705 IL_REMOVE(g_ladderents, this);
706 this.ladder_entity = NULL;
707 IL_EACH(g_counters, it.realowner == this,
711 STAT(HUD, this) = HUD_NORMAL;
713 this.event_damage = PlayerDamage;
714 this.event_heal = PlayerHeal;
716 this.draggable = func_null;
719 IL_PUSH(g_bot_targets, this);
720 this.bot_attack = true;
721 if(!this.monster_attack)
722 IL_PUSH(g_monster_targets, this);
723 this.monster_attack = true;
724 navigation_dynamicgoal_init(this, false);
726 PHYS_INPUT_BUTTON_ATCK(this) = PHYS_INPUT_BUTTON_JUMP(this) = PHYS_INPUT_BUTTON_ATCK2(this) = false;
728 // player was spectator
729 if (CS(this).killcount == FRAGS_SPECTATOR) {
730 PlayerScore_Clear(this);
731 CS(this).killcount = 0;
732 CS(this).startplaytime = time;
735 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
737 .entity weaponentity = weaponentities[slot];
738 CL_SpawnWeaponentity(this, weaponentity);
740 this.alpha = default_player_alpha;
741 this.colormod = '1 1 1' * autocvar_g_player_brightness;
742 this.exteriorweaponentity.alpha = default_weapon_alpha;
744 this.speedrunning = false;
746 this.counter_cnt = 0;
747 this.fragsfilter_cnt = 0;
749 target_voicescript_clear(this);
751 // reset fields the weapons may use
752 FOREACH(Weapons, true, {
753 it.wr_resetplayer(it, this);
754 // reload all reloadable weapons
755 if (it.spawnflags & WEP_FLAG_RELOADABLE) {
756 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
758 .entity weaponentity = weaponentities[slot];
759 this.(weaponentity).weapon_load[it.m_id] = it.reloading_ammo;
765 string s = spot.target;
766 if(g_assault || g_race) // TODO: make targeting work in assault & race without this hack
767 spot.target = string_null;
768 SUB_UseTargets(spot, this, NULL);
769 if(g_assault || g_race)
773 Unfreeze(this, false);
775 MUTATOR_CALLHOOK(PlayerSpawn, this, spot);
777 if (autocvar_spawn_debug)
779 sprint(this, strcat("spawnpoint origin: ", vtos(spot.origin), "\n"));
780 delete(spot); // usefull for checking if there are spawnpoints, that let drop through the floor
783 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
785 .entity weaponentity = weaponentities[slot];
786 if(slot == 0 || autocvar_g_weaponswitch_debug == 1)
787 this.(weaponentity).m_switchweapon = w_getbestweapon(this, weaponentity);
789 this.(weaponentity).m_switchweapon = WEP_Null;
790 this.(weaponentity).m_weapon = WEP_Null;
791 this.(weaponentity).weaponname = "";
792 this.(weaponentity).m_switchingweapon = WEP_Null;
793 this.(weaponentity).cnt = -1;
796 MUTATOR_CALLHOOK(PlayerWeaponSelect, this);
798 if (CS(this).impulse) ImpulseCommands(this);
800 W_ResetGunAlign(this, CS(this).cvar_cl_gunalign);
801 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
803 .entity weaponentity = weaponentities[slot];
804 W_WeaponFrame(this, weaponentity);
807 if (!warmup_stage && !this.alivetime)
808 this.alivetime = time;
810 antilag_clear(this, CS(this));
813 /** Called when a client spawns in the server */
814 void PutClientInServer(entity this)
816 if (IS_BOT_CLIENT(this)) {
817 TRANSMUTE(Player, this);
818 } else if (IS_REAL_CLIENT(this)) {
820 WriteByte(MSG_ONE, SVC_SETVIEW);
821 WriteEntity(MSG_ONE, this);
824 TRANSMUTE(Observer, this);
826 SetSpectatee(this, NULL);
830 PS(this).itemkeys = 0;
832 MUTATOR_CALLHOOK(PutClientInServer, this);
834 if (IS_OBSERVER(this)) {
835 PutObserverInServer(this);
836 } else if (IS_PLAYER(this)) {
837 PutPlayerInServer(this);
841 // TODO do we need all these fields, or should we stop autodetecting runtime
842 // changes and just have a console command to update this?
843 bool ClientInit_SendEntity(entity this, entity to, int sf)
845 WriteHeader(MSG_ENTITY, _ENT_CLIENT_INIT);
848 // MSG_INIT replacement
849 // TODO: make easier to use
851 W_PROP_reload(MSG_ONE, to);
852 ClientInit_misc(this);
853 MUTATOR_CALLHOOK(Ent_Init);
855 void ClientInit_misc(entity this)
857 int channel = MSG_ONE;
858 WriteHeader(channel, ENT_CLIENT_INIT);
859 WriteByte(channel, g_nexball_meter_period * 32);
860 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[0]));
861 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[1]));
862 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[2]));
863 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[3]));
864 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[0]));
865 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[1]));
866 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[2]));
867 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[3]));
869 if(sv_foginterval && world.fog != "")
870 WriteString(channel, world.fog);
872 WriteString(channel, "");
873 WriteByte(channel, this.count * 255.0); // g_balance_armor_blockpercent
874 WriteByte(channel, this.cnt * 255.0); // g_balance_damagepush_speedfactor
875 WriteByte(channel, serverflags);
876 WriteCoord(channel, autocvar_g_trueaim_minrange);
879 void ClientInit_CheckUpdate(entity this)
881 this.nextthink = time;
882 if(this.count != autocvar_g_balance_armor_blockpercent)
884 this.count = autocvar_g_balance_armor_blockpercent;
887 if(this.cnt != autocvar_g_balance_damagepush_speedfactor)
889 this.cnt = autocvar_g_balance_damagepush_speedfactor;
894 void ClientInit_Spawn()
896 entity e = new_pure(clientinit);
897 setthink(e, ClientInit_CheckUpdate);
898 Net_LinkEntity(e, false, 0, ClientInit_SendEntity);
900 ClientInit_CheckUpdate(e);
910 // initialize parms for a new player
911 parm1 = -(86400 * 366);
913 MUTATOR_CALLHOOK(SetNewParms);
921 void SetChangeParms (entity this)
923 // save parms for level change
924 parm1 = CS(this).parm_idlesince - time;
926 MUTATOR_CALLHOOK(SetChangeParms);
934 void DecodeLevelParms(entity this)
937 CS(this).parm_idlesince = parm1;
938 if (CS(this).parm_idlesince == -(86400 * 366))
939 CS(this).parm_idlesince = time;
941 // whatever happens, allow 60 seconds of idling directly after connect for map loading
942 CS(this).parm_idlesince = max(CS(this).parm_idlesince, time - sv_maxidle + 60);
944 MUTATOR_CALLHOOK(DecodeLevelParms);
947 void FixClientCvars(entity e)
949 // send prediction settings to the client
950 stuffcmd(e, "\nin_bindmap 0 0\n");
951 if(autocvar_g_antilag == 3) // client side hitscan
952 stuffcmd(e, "cl_cmd settemp cl_prydoncursor_notrace 0\n");
953 if(autocvar_sv_gentle)
954 stuffcmd(e, "cl_cmd settemp cl_gentle 1\n");
956 stuffcmd(e, sprintf("\ncl_jumpspeedcap_min \"%s\"\n", autocvar_sv_jumpspeedcap_min));
957 stuffcmd(e, sprintf("\ncl_jumpspeedcap_max \"%s\"\n", autocvar_sv_jumpspeedcap_max));
959 stuffcmd(e, sprintf("\ncl_shootfromfixedorigin \"%s\"\n", autocvar_g_shootfromfixedorigin));
961 MUTATOR_CALLHOOK(FixClientCvars, e);
964 bool findinlist_abbrev(string tofind, string list)
966 if(list == "" || tofind == "")
967 return false; // empty list or search, just return
969 // this function allows abbreviated strings!
970 FOREACH_WORD(list, it == substring(tofind, 0, strlen(it)),
978 bool PlayerInIPList(entity p, string iplist)
980 // some safety checks (never allow local?)
981 if(p.netaddress == "local" || p.netaddress == "" || !IS_REAL_CLIENT(p))
984 return findinlist_abbrev(p.netaddress, iplist);
987 bool PlayerInIDList(entity p, string idlist)
989 // NOTE: we do NOT check crypto_idfp_signed here, an unsigned ID is fine too for this
993 return findinlist_abbrev(p.crypto_idfp, idlist);
996 bool PlayerInList(entity player, string list)
998 return boolean(PlayerInIDList(player, list) || PlayerInIPList(player, list));
1001 #ifdef DP_EXT_PRECONNECT
1006 Called once (not at each match start) when a client begins a connection to the server
1009 void ClientPreConnect(entity this)
1011 if(autocvar_sv_eventlog)
1013 GameLogEcho(sprintf(":connect:%d:%d:%s",
1016 ((IS_REAL_CLIENT(this)) ? this.netaddress : "bot")
1022 string GetClientVersionMessage(entity this)
1024 if (CS(this).version_mismatch) {
1025 if(CS(this).version < autocvar_gameversion) {
1026 return strcat("This is Xonotic ", autocvar_g_xonoticversion,
1027 "\n^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8");
1029 return strcat("This is Xonotic ", autocvar_g_xonoticversion,
1030 "\n^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8");
1033 return strcat("Welcome to Xonotic ", autocvar_g_xonoticversion);
1037 string getwelcomemessage(entity this)
1039 MUTATOR_CALLHOOK(BuildMutatorsPrettyString, "");
1040 string modifications = M_ARGV(0, string);
1044 if(g_weaponarena_random)
1045 modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
1047 modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
1049 else if(cvar("g_balance_blaster_weaponstartoverride") == 0)
1050 modifications = strcat(modifications, ", No start weapons");
1051 if(cvar("sv_gravity") < stof(cvar_defstring("sv_gravity")))
1052 modifications = strcat(modifications, ", Low gravity");
1053 if(g_weapon_stay && !g_cts)
1054 modifications = strcat(modifications, ", Weapons stay");
1056 modifications = strcat(modifications, ", Jet pack");
1057 if(autocvar_g_powerups == 0)
1058 modifications = strcat(modifications, ", No powerups");
1059 if(autocvar_g_powerups > 0)
1060 modifications = strcat(modifications, ", Powerups");
1061 modifications = substring(modifications, 2, strlen(modifications) - 2);
1063 string versionmessage = GetClientVersionMessage(this);
1064 string s = strcat(versionmessage, "^8\n^8\nhost is ^9", autocvar_hostname, "^8\n");
1066 s = strcat(s, "^8\nmatch type is ^1", gamemode_name, "^8\n");
1068 if(modifications != "")
1069 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
1071 if(cache_lastmutatormsg != autocvar_g_mutatormsg)
1073 strcpy(cache_lastmutatormsg, autocvar_g_mutatormsg);
1074 strcpy(cache_mutatormsg, cache_lastmutatormsg);
1077 if (cache_mutatormsg != "") {
1078 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
1081 string mutator_msg = "";
1082 MUTATOR_CALLHOOK(BuildGameplayTipsString, mutator_msg);
1083 mutator_msg = M_ARGV(0, string);
1085 s = strcat(s, mutator_msg); // trust that the mutator will do proper formatting
1087 string motd = autocvar_sv_motd;
1089 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
1094 bool autocvar_sv_qcphysics = true; // TODO this is for testing - remove when qcphysics work
1100 Called when a client connects to the server
1103 void ClientConnect(entity this)
1105 if (Ban_MaybeEnforceBanOnce(this)) return;
1106 assert(!IS_CLIENT(this), return);
1107 this.flags |= FL_CLIENT;
1108 assert(player_count >= 0, player_count = 0);
1111 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_WATERMARK, WATERMARK);
1113 TRANSMUTE(Client, this);
1114 CS(this).version_nagtime = time + 10 + random() * 10;
1116 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_JOIN_CONNECT, this.netname);
1118 bot_clientconnect(this);
1120 Player_DetermineForcedTeam(this);
1122 TRANSMUTE(Observer, this);
1124 PlayerStats_GameReport_AddEvent(sprintf("kills-%d", this.playerid));
1126 // always track bots, don't ask for cl_allow_uidtracking
1127 if (IS_BOT_CLIENT(this))
1128 PlayerStats_GameReport_AddPlayer(this);
1130 CS(this).allowed_timeouts = autocvar_sv_timeout_number;
1132 if (autocvar_sv_eventlog)
1133 GameLogEcho(strcat(":join:", ftos(this.playerid), ":", ftos(etof(this)), ":", ((IS_REAL_CLIENT(this)) ? GameLog_ProcessIP(this.netaddress) : "bot"), ":", playername(this, false)));
1135 CS(this).just_joined = true; // stop spamming the eventlog with additional lines when the client connects
1137 stuffcmd(this, clientstuff, "\n");
1138 stuffcmd(this, "cl_particles_reloadeffects\n"); // TODO do we still need this?
1140 FixClientCvars(this);
1142 // get version info from player
1143 stuffcmd(this, "cmd clientversion $gameversion\n");
1145 // notify about available teams
1148 entity balance = TeamBalance_CheckAllowedTeams(this);
1149 int t = TeamBalance_GetAllowedTeams(balance);
1150 TeamBalance_Destroy(balance);
1151 stuffcmd(this, sprintf("set _teams_available %d\n", t));
1155 stuffcmd(this, "set _teams_available 0\n");
1158 bot_relinkplayerlist();
1160 CS(this).spectatortime = time;
1161 if (blockSpectators)
1163 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
1166 CS(this).jointime = time;
1168 if (IS_REAL_CLIENT(this))
1170 if (g_weaponarena_weapons == WEPSET(TUBA))
1171 stuffcmd(this, "cl_cmd settemp chase_active 1\n");
1174 if (!sv_foginterval && world.fog != "")
1175 stuffcmd(this, strcat("\nfog ", world.fog, "\nr_fog_exp2 0\nr_drawfog 1\n"));
1177 if (autocvar_sv_teamnagger && !(autocvar_bot_vs_human && AvailableTeams() == 2))
1178 if(!MUTATOR_CALLHOOK(HideTeamNagger, this))
1179 send_CSQC_teamnagger();
1181 CSQCMODEL_AUTOINIT(this);
1183 CS(this).model_randomizer = random();
1185 if (IS_REAL_CLIENT(this))
1186 sv_notice_join(this);
1188 this.move_qcphysics = autocvar_sv_qcphysics;
1190 // update physics stats (players can spawn before physics runs)
1191 Physics_UpdateStats(this);
1193 IL_EACH(g_initforplayer, it.init_for_player, {
1194 it.init_for_player(it, this);
1197 Handicap_Initialize(this);
1199 MUTATOR_CALLHOOK(ClientConnect, this);
1201 if (IS_REAL_CLIENT(this))
1203 if (!autocvar_g_campaign && !IS_PLAYER(this))
1205 CS(this).motd_actived_time = -1;
1206 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
1214 Called when a client disconnects from the server
1217 .entity chatbubbleentity;
1218 void ClientDisconnect(entity this)
1220 assert(IS_CLIENT(this), return);
1222 PlayerStats_GameReport_FinalizePlayer(this);
1223 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
1224 if (CS(this).active_minigame) part_minigame(this);
1225 if (IS_PLAYER(this)) Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
1227 if (autocvar_sv_eventlog)
1228 GameLogEcho(strcat(":part:", ftos(this.playerid)));
1230 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_DISCONNECT, this.netname);
1233 SetSpectatee(this, NULL);
1235 MUTATOR_CALLHOOK(ClientDisconnect, this);
1237 strfree(CS(this).netname_previous); // needs to be before the CS entity is removed!
1238 strfree(CS(this).weaponorder_byimpulse);
1239 ClientState_detach(this);
1241 Portal_ClearAll(this);
1243 Unfreeze(this, false);
1245 RemoveGrapplingHooks(this);
1247 // Here, everything has been done that requires this player to be a client.
1249 this.flags &= ~FL_CLIENT;
1251 if (this.chatbubbleentity) delete(this.chatbubbleentity);
1252 if (this.killindicator) delete(this.killindicator);
1254 IL_EACH(g_counters, it.realowner == this,
1259 WaypointSprite_PlayerGone(this);
1261 bot_relinkplayerlist();
1263 strfree(this.clientstatus);
1264 if (this.personal) delete(this.personal);
1268 if (vote_called && IS_REAL_CLIENT(this)) VoteCount(false);
1273 void ChatBubbleThink(entity this)
1275 this.nextthink = time;
1276 if ((this.owner.alpha < 0) || this.owner.chatbubbleentity != this)
1278 if(this.owner) // but why can that ever be NULL?
1279 this.owner.chatbubbleentity = NULL;
1286 if ( !IS_DEAD(this.owner) && IS_PLAYER(this.owner) )
1288 if ( CS(this.owner).active_minigame && PHYS_INPUT_BUTTON_MINIGAME(this.owner) )
1289 this.mdl = "models/sprites/minigame_busy.iqm";
1290 else if (PHYS_INPUT_BUTTON_CHAT(this.owner))
1291 this.mdl = "models/misc/chatbubble.spr";
1294 if ( this.model != this.mdl )
1295 _setmodel(this, this.mdl);
1299 void UpdateChatBubble(entity this)
1303 // spawn a chatbubble entity if needed
1304 if (!this.chatbubbleentity)
1306 this.chatbubbleentity = new(chatbubbleentity);
1307 this.chatbubbleentity.owner = this;
1308 this.chatbubbleentity.exteriormodeltoclient = this;
1309 setthink(this.chatbubbleentity, ChatBubbleThink);
1310 this.chatbubbleentity.nextthink = time;
1311 setmodel(this.chatbubbleentity, MDL_CHAT); // precision set below
1312 //setorigin(this.chatbubbleentity, this.origin + '0 0 15' + this.maxs_z * '0 0 1');
1313 setorigin(this.chatbubbleentity, '0 0 15' + this.maxs_z * '0 0 1');
1314 setattachment(this.chatbubbleentity, this, ""); // sticks to moving player better, also conserves bandwidth
1315 this.chatbubbleentity.mdl = this.chatbubbleentity.model;
1316 //this.chatbubbleentity.model = "";
1317 this.chatbubbleentity.effects = EF_LOWPRECISION;
1321 void calculate_player_respawn_time(entity this)
1323 if(MUTATOR_CALLHOOK(CalculateRespawnTime, this))
1326 float gametype_setting_tmp;
1327 float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
1328 float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
1329 float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
1330 float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
1331 float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
1332 float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
1334 float pcount = 1; // Include myself whether or not team is already set right and I'm a "player".
1337 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
1338 if(it.team == this.team)
1341 if (sdelay_small_count == 0)
1342 sdelay_small_count = 1;
1343 if (sdelay_large_count == 0)
1344 sdelay_large_count = 1;
1348 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
1351 if (sdelay_small_count == 0)
1353 if (IS_INDEPENDENT_PLAYER(this))
1355 // Players play independently. No point in requiring enemies.
1356 sdelay_small_count = 1;
1360 // Players play AGAINST each other. Enemies required.
1361 sdelay_small_count = 2;
1364 if (sdelay_large_count == 0)
1366 if (IS_INDEPENDENT_PLAYER(this))
1368 // Players play independently. No point in requiring enemies.
1369 sdelay_large_count = 1;
1373 // Players play AGAINST each other. Enemies required.
1374 sdelay_large_count = 2;
1381 if (pcount <= sdelay_small_count)
1382 sdelay = sdelay_small;
1383 else if (pcount >= sdelay_large_count)
1384 sdelay = sdelay_large;
1385 else // NOTE: this case implies sdelay_large_count > sdelay_small_count.
1386 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
1389 this.respawn_time = ceil((time + sdelay) / waves) * waves;
1391 this.respawn_time = time + sdelay;
1393 if(sdelay < sdelay_max)
1394 this.respawn_time_max = time + sdelay_max;
1396 this.respawn_time_max = this.respawn_time;
1398 if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
1399 this.respawn_countdown = 10; // first number to count down from is 10
1401 this.respawn_countdown = -1; // do not count down
1403 if(autocvar_g_forced_respawn)
1404 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
1407 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1408 // added to the model skins
1409 /*void UpdateColorModHack()
1412 c = this.clientcolors & 15;
1413 // LordHavoc: only bothering to support white, green, red, yellow, blue
1414 if (!teamplay) this.colormod = '0 0 0';
1415 else if (c == 0) this.colormod = '1.00 1.00 1.00';
1416 else if (c == 3) this.colormod = '0.10 1.73 0.10';
1417 else if (c == 4) this.colormod = '1.73 0.10 0.10';
1418 else if (c == 12) this.colormod = '1.22 1.22 0.10';
1419 else if (c == 13) this.colormod = '0.10 0.10 1.73';
1420 else this.colormod = '1 1 1';
1423 void respawn(entity this)
1425 bool damagedbycontents_prev = this.damagedbycontents;
1428 if(autocvar_g_respawn_ghosts)
1430 this.solid = SOLID_NOT;
1431 this.takedamage = DAMAGE_NO;
1432 this.damagedbycontents = false;
1433 set_movetype(this, MOVETYPE_FLY);
1434 this.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
1435 this.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3;
1436 this.effects |= CSQCMODEL_EF_RESPAWNGHOST;
1437 this.alpha = min(this.alpha, autocvar_g_respawn_ghosts_alpha);
1438 Send_Effect(EFFECT_RESPAWN_GHOST, this.origin, '0 0 0', 1);
1439 if(autocvar_g_respawn_ghosts_time > 0)
1440 SUB_SetFade(this, time + autocvar_g_respawn_ghosts_time, autocvar_g_respawn_ghosts_fadetime);
1443 SUB_SetFade (this, time, 1); // fade out the corpse immediately
1447 this.damagedbycontents = damagedbycontents_prev;
1449 this.effects |= EF_NODRAW; // prevent another CopyBody
1450 PutClientInServer(this);
1454 void PrintToChat(entity client, string text)
1456 text = strcat("\{1}^7", text, "\n");
1457 sprint(client, text);
1461 void DebugPrintToChat(entity client, string text)
1463 if (autocvar_developer > 0)
1465 PrintToChat(client, text);
1470 void PrintToChatAll(string text)
1472 text = strcat("\{1}^7", text, "\n");
1477 void DebugPrintToChatAll(string text)
1479 if (autocvar_developer > 0)
1481 PrintToChatAll(text);
1486 void PrintToChatTeam(int team_num, string text)
1488 text = strcat("\{1}^7", text, "\n");
1489 FOREACH_CLIENT(IS_REAL_CLIENT(it),
1491 if (it.team == team_num)
1499 void DebugPrintToChatTeam(int team_num, string text)
1501 if (autocvar_developer > 0)
1503 PrintToChatTeam(team_num, text);
1507 void play_countdown(entity this, float finished, Sound samp)
1510 if(IS_REAL_CLIENT(this))
1511 if(floor(finished - time - frametime) != floor(finished - time))
1512 if(finished - time < 6)
1513 sound (this, CH_INFO, samp, VOL_BASE, ATTEN_NORM);
1516 void player_powerups(entity this)
1518 if((this.items & IT_USING_JETPACK) && !IS_DEAD(this) && !game_stopped)
1519 this.modelflags |= MF_ROCKET;
1521 this.modelflags &= ~MF_ROCKET;
1523 this.effects &= ~(EF_RED | EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT | EF_FLAME | EF_NODEPTHTEST);
1527 if (this.items & (ITEM_Strength.m_itemid | ITEM_Shield.m_itemid | IT_SUPERWEAPON))
1529 sound(this, CH_INFO, SND_POWEROFF, VOL_BASE, ATTEN_NORM);
1530 stopsound(this, CH_TRIGGER_SINGLE); // get rid of the pickup sound
1531 this.items &= ~ITEM_Strength.m_itemid;
1532 this.items &= ~ITEM_Shield.m_itemid;
1533 this.items -= (this.items & IT_SUPERWEAPON);
1537 if((this.alpha < 0 || IS_DEAD(this)) && !this.vehicle) // don't apply the flags if the player is gibbed
1540 // add a way to see what the items were BEFORE all of these checks for the mutator hook
1541 int items_prev = this.items;
1543 Fire_ApplyDamage(this);
1544 Fire_ApplyEffect(this);
1546 if (!MUTATOR_IS_ENABLED(mutator_instagib))
1548 if (this.items & ITEM_Strength.m_itemid)
1550 play_countdown(this, STAT(STRENGTH_FINISHED, this), SND_POWEROFF);
1551 this.effects = this.effects | (EF_BLUE | EF_ADDITIVE | EF_FULLBRIGHT);
1552 if (time > STAT(STRENGTH_FINISHED, this))
1554 this.items = this.items - (this.items & ITEM_Strength.m_itemid);
1555 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERDOWN_STRENGTH, this.netname);
1556 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERDOWN_STRENGTH);
1561 if (time < STAT(STRENGTH_FINISHED, this))
1563 this.items = this.items | ITEM_Strength.m_itemid;
1565 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERUP_STRENGTH, this.netname);
1566 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERUP_STRENGTH);
1569 if (this.items & ITEM_Shield.m_itemid)
1571 play_countdown(this, STAT(INVINCIBLE_FINISHED, this), SND_POWEROFF);
1572 this.effects = this.effects | (EF_RED | EF_ADDITIVE | EF_FULLBRIGHT);
1573 if (time > STAT(INVINCIBLE_FINISHED, this))
1575 this.items = this.items - (this.items & ITEM_Shield.m_itemid);
1576 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERDOWN_SHIELD, this.netname);
1577 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERDOWN_SHIELD);
1582 if (time < STAT(INVINCIBLE_FINISHED, this))
1584 this.items = this.items | ITEM_Shield.m_itemid;
1586 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_POWERUP_SHIELD, this.netname);
1587 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_POWERUP_SHIELD);
1590 if (this.items & IT_SUPERWEAPON)
1592 if (!(STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS))
1594 STAT(SUPERWEAPONS_FINISHED, this) = 0;
1595 this.items = this.items - (this.items & IT_SUPERWEAPON);
1596 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_LOST, this.netname);
1597 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_LOST);
1599 else if (this.items & IT_UNLIMITED_SUPERWEAPONS)
1601 // don't let them run out
1605 play_countdown(this, STAT(SUPERWEAPONS_FINISHED, this), SND_POWEROFF);
1606 if (time > STAT(SUPERWEAPONS_FINISHED, this))
1608 this.items = this.items - (this.items & IT_SUPERWEAPON);
1609 STAT(WEAPONS, this) &= ~WEPSET_SUPERWEAPONS;
1610 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_BROKEN, this.netname);
1611 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_BROKEN);
1615 else if(STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS)
1617 if (time < STAT(SUPERWEAPONS_FINISHED, this) || (this.items & IT_UNLIMITED_SUPERWEAPONS))
1619 this.items = this.items | IT_SUPERWEAPON;
1620 if(!(this.items & IT_UNLIMITED_SUPERWEAPONS))
1623 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_PICKUP, this.netname);
1624 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_PICKUP);
1629 STAT(SUPERWEAPONS_FINISHED, this) = 0;
1630 STAT(WEAPONS, this) &= ~WEPSET_SUPERWEAPONS;
1635 STAT(SUPERWEAPONS_FINISHED, this) = 0;
1639 if(autocvar_g_nodepthtestplayers)
1640 this.effects = this.effects | EF_NODEPTHTEST;
1642 if(autocvar_g_fullbrightplayers)
1643 this.effects = this.effects | EF_FULLBRIGHT;
1645 if (time >= game_starttime)
1646 if (time < this.spawnshieldtime)
1647 this.effects = this.effects | (EF_ADDITIVE | EF_FULLBRIGHT);
1649 MUTATOR_CALLHOOK(PlayerPowerups, this, items_prev);
1652 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
1654 if(current > stable)
1656 else if(current > stable - 0.25) // when close enough, "snap"
1659 return min(stable, current + (stable - current) * regenfactor * regenframetime);
1662 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
1664 if(current < stable)
1666 else if(current < stable + 0.25) // when close enough, "snap"
1669 return max(stable, current + (stable - current) * rotfactor * rotframetime);
1672 void RotRegen(entity this, int res, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit_mod)
1674 float old = GetResource(this, res);
1675 float current = old;
1676 if(current > rotstable)
1678 if(rotframetime > 0)
1680 current = CalcRot(current, rotstable, rotfactor, rotframetime);
1681 current = max(rotstable, current - rotlinear * rotframetime);
1684 else if(current < regenstable)
1686 if(regenframetime > 0)
1688 current = CalcRegen(current, regenstable, regenfactor, regenframetime);
1689 current = min(regenstable, current + regenlinear * regenframetime);
1693 float limit = GetResourceLimit(this, res) * limit_mod;
1698 SetResource(this, res, current);
1701 void player_regen(entity this)
1703 float max_mod, regen_mod, rot_mod, limit_mod;
1704 max_mod = regen_mod = rot_mod = limit_mod = 1;
1706 float regen_health = autocvar_g_balance_health_regen;
1707 float regen_health_linear = autocvar_g_balance_health_regenlinear;
1708 float regen_health_rot = autocvar_g_balance_health_rot;
1709 float regen_health_rotlinear = autocvar_g_balance_health_rotlinear;
1710 float regen_health_stable = autocvar_g_balance_health_regenstable;
1711 float regen_health_rotstable = autocvar_g_balance_health_rotstable;
1712 bool mutator_returnvalue = MUTATOR_CALLHOOK(PlayerRegen, this, max_mod, regen_mod, rot_mod, limit_mod, regen_health, regen_health_linear, regen_health_rot,
1713 regen_health_rotlinear, regen_health_stable, regen_health_rotstable);
1714 max_mod = M_ARGV(1, float);
1715 regen_mod = M_ARGV(2, float);
1716 rot_mod = M_ARGV(3, float);
1717 limit_mod = M_ARGV(4, float);
1718 regen_health = M_ARGV(5, float);
1719 regen_health_linear = M_ARGV(6, float);
1720 regen_health_rot = M_ARGV(7, float);
1721 regen_health_rotlinear = M_ARGV(8, float);
1722 regen_health_stable = M_ARGV(9, float);
1723 regen_health_rotstable = M_ARGV(10, float);
1725 if(!mutator_returnvalue)
1726 if(!STAT(FROZEN, this))
1728 float maxa = autocvar_g_balance_armor_rotstable;
1729 float mina = autocvar_g_balance_armor_regenstable;
1731 RotRegen(this, RES_ARMOR, mina, autocvar_g_balance_armor_regen, autocvar_g_balance_armor_regenlinear,
1732 regen_mod * frametime * (time > this.pauseregen_finished), maxa, autocvar_g_balance_armor_rot, autocvar_g_balance_armor_rotlinear,
1733 rot_mod * frametime * (time > this.pauserotarmor_finished), limit_mod);
1735 RotRegen(this, RES_HEALTH, regen_health_stable * max_mod, regen_health, regen_health_linear,
1736 regen_mod * frametime * (time > this.pauseregen_finished), regen_health_rotstable * max_mod, regen_health_rot, regen_health_rotlinear,
1737 rot_mod * frametime * (time > this.pauserothealth_finished), limit_mod);
1740 // if player rotted to death... die!
1741 // check this outside above checks, as player may still be able to rot to death
1742 if(GetResource(this, RES_HEALTH) < 1)
1745 vehicles_exit(this.vehicle, VHEF_RELEASE);
1746 if(this.event_damage)
1747 this.event_damage(this, this, this, 1, DEATH_ROT.m_id, DMG_NOWEP, this.origin, '0 0 0');
1750 if (!(this.items & IT_UNLIMITED_AMMO))
1752 float maxf = autocvar_g_balance_fuel_rotstable;
1753 float minf = autocvar_g_balance_fuel_regenstable;
1755 RotRegen(this, RES_FUEL, minf, autocvar_g_balance_fuel_regen, autocvar_g_balance_fuel_regenlinear,
1756 frametime * (time > this.pauseregen_finished) * ((this.items & ITEM_JetpackRegen.m_itemid) != 0),
1757 maxf, autocvar_g_balance_fuel_rot, autocvar_g_balance_fuel_rotlinear, frametime * (time > this.pauserotfuel_finished), 1);
1762 void SetZoomState(entity this, float newzoom)
1764 if(newzoom != CS(this).zoomstate)
1766 CS(this).zoomstate = newzoom;
1767 ClientData_Touch(this);
1769 zoomstate_set = true;
1772 void GetPressedKeys(entity this)
1774 MUTATOR_CALLHOOK(GetPressedKeys, this);
1775 int keys = STAT(PRESSED_KEYS, this);
1776 keys = BITSET(keys, KEY_FORWARD, CS(this).movement.x > 0);
1777 keys = BITSET(keys, KEY_BACKWARD, CS(this).movement.x < 0);
1778 keys = BITSET(keys, KEY_RIGHT, CS(this).movement.y > 0);
1779 keys = BITSET(keys, KEY_LEFT, CS(this).movement.y < 0);
1781 keys = BITSET(keys, KEY_JUMP, PHYS_INPUT_BUTTON_JUMP(this));
1782 keys = BITSET(keys, KEY_CROUCH, IS_DUCKED(this)); // workaround: player can't un-crouch until their path is clear, so we keep the button held here
1783 keys = BITSET(keys, KEY_ATCK, PHYS_INPUT_BUTTON_ATCK(this));
1784 keys = BITSET(keys, KEY_ATCK2, PHYS_INPUT_BUTTON_ATCK2(this));
1785 CS(this).pressedkeys = keys; // store for other users
1787 STAT(PRESSED_KEYS, this) = keys;
1791 ======================
1792 spectate mode routines
1793 ======================
1796 void SpectateCopy(entity this, entity spectatee)
1798 TC(Client, this); TC(Client, spectatee);
1800 MUTATOR_CALLHOOK(SpectateCopy, spectatee, this);
1801 PS(this) = PS(spectatee);
1802 this.armortype = spectatee.armortype;
1803 SetResourceExplicit(this, RES_ARMOR, GetResource(spectatee, RES_ARMOR));
1804 SetResourceExplicit(this, RES_CELLS, GetResource(spectatee, RES_CELLS));
1805 SetResourceExplicit(this, RES_PLASMA, GetResource(spectatee, RES_PLASMA));
1806 SetResourceExplicit(this, RES_SHELLS, GetResource(spectatee, RES_SHELLS));
1807 SetResourceExplicit(this, RES_BULLETS, GetResource(spectatee, RES_BULLETS));
1808 SetResourceExplicit(this, RES_ROCKETS, GetResource(spectatee, RES_ROCKETS));
1809 SetResourceExplicit(this, RES_FUEL, GetResource(spectatee, RES_FUEL));
1810 this.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
1811 SetResourceExplicit(this, RES_HEALTH, GetResource(spectatee, RES_HEALTH));
1812 CS(this).impulse = 0;
1813 this.disableclientprediction = 1; // no need to run prediction on a spectator
1814 this.items = spectatee.items;
1815 STAT(LAST_PICKUP, this) = STAT(LAST_PICKUP, spectatee);
1816 STAT(HIT_TIME, this) = STAT(HIT_TIME, spectatee);
1817 STAT(STRENGTH_FINISHED, this) = STAT(STRENGTH_FINISHED, spectatee);
1818 STAT(INVINCIBLE_FINISHED, this) = STAT(INVINCIBLE_FINISHED, spectatee);
1819 STAT(SUPERWEAPONS_FINISHED, this) = STAT(SUPERWEAPONS_FINISHED, spectatee);
1820 STAT(AIR_FINISHED, this) = STAT(AIR_FINISHED, spectatee);
1821 STAT(PRESSED_KEYS, this) = STAT(PRESSED_KEYS, spectatee);
1822 STAT(WEAPONS, this) = STAT(WEAPONS, spectatee);
1823 this.punchangle = spectatee.punchangle;
1824 this.view_ofs = spectatee.view_ofs;
1825 this.velocity = spectatee.velocity;
1826 this.dmg_take = spectatee.dmg_take;
1827 this.dmg_save = spectatee.dmg_save;
1828 this.dmg_inflictor = spectatee.dmg_inflictor;
1829 this.v_angle = spectatee.v_angle;
1830 this.angles = spectatee.v_angle;
1831 STAT(FROZEN, this) = STAT(FROZEN, spectatee);
1832 STAT(REVIVE_PROGRESS, this) = STAT(REVIVE_PROGRESS, spectatee);
1833 this.viewloc = spectatee.viewloc;
1834 if(!PHYS_INPUT_BUTTON_USE(this) && STAT(CAMERA_SPECTATOR, this) != 2)
1835 this.fixangle = true;
1836 setorigin(this, spectatee.origin);
1837 setsize(this, spectatee.mins, spectatee.maxs);
1838 SetZoomState(this, CS(spectatee).zoomstate);
1840 anticheat_spectatecopy(this, spectatee);
1841 STAT(HUD, this) = STAT(HUD, spectatee);
1842 if(spectatee.vehicle)
1844 this.angles = spectatee.v_angle;
1846 //this.fixangle = false;
1847 //this.velocity = spectatee.vehicle.velocity;
1848 this.vehicle_health = spectatee.vehicle_health;
1849 this.vehicle_shield = spectatee.vehicle_shield;
1850 this.vehicle_energy = spectatee.vehicle_energy;
1851 this.vehicle_ammo1 = spectatee.vehicle_ammo1;
1852 this.vehicle_ammo2 = spectatee.vehicle_ammo2;
1853 this.vehicle_reload1 = spectatee.vehicle_reload1;
1854 this.vehicle_reload2 = spectatee.vehicle_reload2;
1856 //msg_entity = this;
1858 // WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
1859 //WriteAngle(MSG_ONE, spectatee.v_angle.x);
1860 // WriteAngle(MSG_ONE, spectatee.v_angle.y);
1861 // WriteAngle(MSG_ONE, spectatee.v_angle.z);
1863 //WriteByte (MSG_ONE, SVC_SETVIEW);
1864 // WriteEntity(MSG_ONE, this);
1865 //makevectors(spectatee.v_angle);
1866 //setorigin(this, spectatee.origin - v_forward * 400 + v_up * 300);*/
1870 bool SpectateUpdate(entity this)
1875 if(!IS_PLAYER(this.enemy) || this == this.enemy)
1877 SetSpectatee(this, NULL);
1881 SpectateCopy(this, this.enemy);
1886 bool SpectateSet(entity this)
1888 if(!IS_PLAYER(this.enemy))
1891 ClientData_Touch(this.enemy);
1894 WriteByte(MSG_ONE, SVC_SETVIEW);
1895 WriteEntity(MSG_ONE, this.enemy);
1896 set_movetype(this, MOVETYPE_NONE);
1897 accuracy_resend(this);
1899 if(!SpectateUpdate(this))
1900 PutObserverInServer(this);
1905 void SetSpectatee_status(entity this, int spectatee_num)
1907 int oldspectatee_status = CS(this).spectatee_status;
1908 CS(this).spectatee_status = spectatee_num;
1910 if (CS(this).spectatee_status != oldspectatee_status)
1912 if (STAT(PRESSED_KEYS, this))
1914 CS(this).pressedkeys = 0;
1915 STAT(PRESSED_KEYS, this) = 0;
1917 ClientData_Touch(this);
1918 if (g_race || g_cts) race_InitSpectator();
1922 void SetSpectatee(entity this, entity spectatee)
1924 if(IS_BOT_CLIENT(this))
1925 return; // bots abuse .enemy, this code is useless to them
1927 entity old_spectatee = this.enemy;
1929 this.enemy = spectatee;
1932 // these are required to fix the spectator bug with arc
1935 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1937 .entity weaponentity = weaponentities[slot];
1938 if(old_spectatee.(weaponentity).arc_beam)
1939 old_spectatee.(weaponentity).arc_beam.SendFlags |= ARC_SF_SETTINGS;
1944 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1946 .entity weaponentity = weaponentities[slot];
1947 if(this.enemy.(weaponentity).arc_beam)
1948 this.enemy.(weaponentity).arc_beam.SendFlags |= ARC_SF_SETTINGS;
1953 SetSpectatee_status(this, etof(this.enemy));
1955 // needed to update spectator list
1956 if(old_spectatee) { ClientData_Touch(old_spectatee); }
1959 bool Spectate(entity this, entity pl)
1961 if(MUTATOR_CALLHOOK(SpectateSet, this, pl))
1963 pl = M_ARGV(1, entity);
1965 SetSpectatee(this, pl);
1966 return SpectateSet(this);
1969 bool SpectateNext(entity this)
1971 entity ent = find(this.enemy, classname, STR_PLAYER);
1973 if (MUTATOR_CALLHOOK(SpectateNext, this, ent))
1974 ent = M_ARGV(1, entity);
1976 ent = find(ent, classname, STR_PLAYER);
1978 if(ent) { SetSpectatee(this, ent); }
1980 return SpectateSet(this);
1983 bool SpectatePrev(entity this)
1985 // NOTE: chain order is from the highest to the lower entnum (unlike find)
1986 entity ent = findchain(classname, STR_PLAYER);
1987 if (!ent) // no player
1991 // skip players until current spectated player
1993 while(ent && ent != this.enemy)
1996 switch (MUTATOR_CALLHOOK(SpectatePrev, this, ent, first))
1998 case MUT_SPECPREV_FOUND:
1999 ent = M_ARGV(1, entity);
2001 case MUT_SPECPREV_RETURN:
2003 case MUT_SPECPREV_CONTINUE:
2014 SetSpectatee(this, ent);
2015 return SpectateSet(this);
2020 ShowRespawnCountdown()
2022 Update a respawn countdown display.
2025 void ShowRespawnCountdown(entity this)
2028 if(!IS_DEAD(this)) // just respawned?
2032 number = ceil(this.respawn_time - time);
2035 if(number <= this.respawn_countdown)
2037 this.respawn_countdown = number - 1;
2038 if(ceil(this.respawn_time - (time + 0.5)) == number) // only say it if it is the same number even in 0.5s; to prevent overlapping sounds
2039 { Send_Notification(NOTIF_ONE, this, MSG_ANNCE, Announcer_PickNumber(CNT_RESPAWN, number)); }
2044 .bool team_selected;
2045 bool ShowTeamSelection(entity this)
2047 if (!teamplay || autocvar_g_campaign || autocvar_g_balance_teams || this.team_selected || (CS(this).wasplayer && autocvar_g_changeteam_banned) || Player_HasRealForcedTeam(this))
2049 stuffcmd(this, "menu_showteamselect\n");
2052 void Join(entity this)
2054 TRANSMUTE(Player, this);
2056 if(!this.team_selected)
2057 if(autocvar_g_campaign || autocvar_g_balance_teams)
2058 TeamBalance_JoinBestTeam(this);
2060 if(autocvar_g_campaign)
2061 campaign_bots_may_start = true;
2063 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_PREVENT_JOIN);
2065 PutClientInServer(this);
2068 if(teamplay && this.team != -1)
2072 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_JOIN_PLAY, this.netname);
2073 this.team_selected = false;
2076 int GetPlayerLimit()
2079 return 2; // TODO: this workaround is needed since the mutator hook from duel can't be activated before the gametype is loaded (e.g. switching modes via gametype vote screen)
2080 int player_limit = autocvar_g_maxplayers;
2081 MUTATOR_CALLHOOK(GetPlayerLimit, player_limit);
2082 player_limit = M_ARGV(0, int);
2083 return player_limit;
2087 * Determines whether the player is allowed to join. This depends on cvar
2088 * g_maxplayers, if it isn't used this function always return true, otherwise
2089 * it checks whether the number of currently playing players exceeds g_maxplayers.
2090 * @return int number of free slots for players, 0 if none
2092 int nJoinAllowed(entity this, entity ignore)
2095 // this is called that way when checking if anyone may be able to join (to build qcstatus)
2096 // so report 0 free slots if restricted
2098 if(autocvar_g_forced_team_otherwise == "spectate")
2100 if(autocvar_g_forced_team_otherwise == "spectator")
2104 if(this && (Player_GetForcedTeamIndex(this) == TEAM_FORCE_SPECTATOR))
2105 return 0; // forced spectators can never join
2107 // TODO simplify this
2108 int totalClients = 0;
2109 int currentlyPlaying = 0;
2110 FOREACH_CLIENT(true, {
2113 if(IS_REAL_CLIENT(it))
2114 if(IS_PLAYER(it) || it.caplayer)
2118 int player_limit = GetPlayerLimit();
2122 free_slots = maxclients - totalClients;
2123 else if(player_limit > 0 && currentlyPlaying < player_limit)
2124 free_slots = min(maxclients - totalClients, player_limit - currentlyPlaying);
2126 static float msg_time = 0;
2127 if(this && !this.caplayer && ignore && !free_slots && time > msg_time)
2129 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_PREVENT);
2130 msg_time = time + 0.5;
2137 * Checks whether the client is an observer or spectator, if so, he will get kicked after
2138 * g_maxplayers_spectator_blocktime seconds
2140 void checkSpectatorBlock(entity this)
2142 if(IS_SPEC(this) || IS_OBSERVER(this))
2144 if(IS_REAL_CLIENT(this))
2146 if( time > (CS(this).spectatortime + autocvar_g_maxplayers_spectator_blocktime) ) {
2147 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_QUIT_KICK_SPECTATING);
2153 void PrintWelcomeMessage(entity this)
2155 if(CS(this).motd_actived_time == 0)
2157 if (autocvar_g_campaign) {
2158 if ((IS_PLAYER(this) && PHYS_INPUT_BUTTON_INFO(this)) || (!IS_PLAYER(this))) {
2159 CS(this).motd_actived_time = time;
2160 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_CAMPAIGN_MESSAGE, Campaign_GetMessage(), Campaign_GetLevelNum());
2163 if (PHYS_INPUT_BUTTON_INFO(this)) {
2164 CS(this).motd_actived_time = time;
2165 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
2169 else if(CS(this).motd_actived_time > 0) // showing MOTD or campaign message
2171 if (autocvar_g_campaign) {
2172 if (PHYS_INPUT_BUTTON_INFO(this))
2173 CS(this).motd_actived_time = time;
2174 else if ((time - CS(this).motd_actived_time > 2) && IS_PLAYER(this)) { // hide it some seconds after BUTTON_INFO has been released
2175 CS(this).motd_actived_time = 0;
2176 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE);
2179 if (PHYS_INPUT_BUTTON_INFO(this))
2180 CS(this).motd_actived_time = time;
2181 else if (time - CS(this).motd_actived_time > 2) { // hide it some seconds after BUTTON_INFO has been released
2182 CS(this).motd_actived_time = 0;
2183 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
2187 else //if(CS(this).motd_actived_time < 0) // just connected, motd is active
2189 if(PHYS_INPUT_BUTTON_INFO(this)) // BUTTON_INFO hides initial MOTD
2190 CS(this).motd_actived_time = -2; // wait until BUTTON_INFO gets released
2191 else if (CS(this).motd_actived_time == -2)
2193 // instantly hide MOTD
2194 CS(this).motd_actived_time = 0;
2195 if (autocvar_g_campaign)
2196 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE);
2198 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
2200 else if (IS_PLAYER(this) || IS_SPEC(this))
2202 // FIXME occasionally for some reason MOTD never goes away
2203 // delay MOTD removal a little bit in the hope it fixes this bug
2204 if (CS(this).motd_actived_time == -1) // MOTD marked to fade away as soon as client becomes player or spectator
2205 CS(this).motd_actived_time = -(5 + floor(random() * 10)); // add small delay
2206 else //if (CS(this).motd_actived_time < -2)
2207 CS(this).motd_actived_time++;
2212 bool joinAllowed(entity this)
2214 if (CS(this).version_mismatch) return false;
2215 if (time < CS(this).jointime + MIN_SPEC_TIME) return false;
2216 if (!nJoinAllowed(this, this)) return false;
2217 if (teamplay && lockteams) return false;
2218 if (MUTATOR_CALLHOOK(ForbidSpawn, this)) return false;
2219 if (ShowTeamSelection(this)) return false;
2223 .string shootfromfixedorigin;
2224 .bool dualwielding_prev;
2225 bool PlayerThink(entity this)
2227 if (game_stopped || intermission_running) {
2228 this.modelflags &= ~MF_ROCKET;
2229 if(intermission_running)
2230 IntermissionThink(this);
2234 if (timeout_status == TIMEOUT_ACTIVE) {
2235 // don't allow the player to turn around while game is paused
2236 // FIXME turn this into CSQC stuff
2237 this.v_angle = this.lastV_angle;
2238 this.angles = this.lastV_angle;
2239 this.fixangle = true;
2242 if (frametime) player_powerups(this);
2244 if (IS_DEAD(this)) {
2245 if (this.personal && g_race_qualifying) {
2246 if (time > this.respawn_time) {
2247 STAT(RESPAWN_TIME, this) = this.respawn_time = time + 1; // only retry once a second
2249 CS(this).impulse = CHIMPULSE_SPEEDRUN.impulse;
2252 if (frametime) player_anim(this);
2254 if (this.respawn_flags & RESPAWN_DENY)
2256 STAT(RESPAWN_TIME, this) = 0;
2260 bool button_pressed = (PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this) || PHYS_INPUT_BUTTON_ATCK2(this) || PHYS_INPUT_BUTTON_HOOK(this) || PHYS_INPUT_BUTTON_USE(this));
2262 switch(this.deadflag)
2266 if ((this.respawn_flags & RESPAWN_FORCE) && !(this.respawn_time < this.respawn_time_max))
2267 this.deadflag = DEAD_RESPAWNING;
2268 else if (!button_pressed || (time >= this.respawn_time_max && (this.respawn_flags & RESPAWN_FORCE)))
2269 this.deadflag = DEAD_DEAD;
2275 this.deadflag = DEAD_RESPAWNABLE;
2276 else if (time >= this.respawn_time_max && (this.respawn_flags & RESPAWN_FORCE))
2277 this.deadflag = DEAD_RESPAWNING;
2280 case DEAD_RESPAWNABLE:
2282 if (!button_pressed || (this.respawn_flags & RESPAWN_FORCE))
2283 this.deadflag = DEAD_RESPAWNING;
2286 case DEAD_RESPAWNING:
2288 if (time > this.respawn_time)
2290 this.respawn_time = time + 1; // only retry once a second
2291 this.respawn_time_max = this.respawn_time;
2298 ShowRespawnCountdown(this);
2300 if (this.respawn_flags & RESPAWN_SILENT)
2301 STAT(RESPAWN_TIME, this) = 0;
2302 else if ((this.respawn_flags & RESPAWN_FORCE) && this.respawn_time < this.respawn_time_max)
2304 if (time < this.respawn_time)
2305 STAT(RESPAWN_TIME, this) = this.respawn_time;
2306 else if (this.deadflag != DEAD_RESPAWNING)
2307 STAT(RESPAWN_TIME, this) = -this.respawn_time_max;
2310 STAT(RESPAWN_TIME, this) = this.respawn_time;
2313 // if respawning, invert stat_respawn_time to indicate this, the client translates it
2314 if (this.deadflag == DEAD_RESPAWNING && STAT(RESPAWN_TIME, this) > 0)
2315 STAT(RESPAWN_TIME, this) *= -1;
2320 FixPlayermodel(this);
2322 if (this.shootfromfixedorigin != autocvar_g_shootfromfixedorigin) {
2323 this.shootfromfixedorigin = autocvar_g_shootfromfixedorigin;
2324 stuffcmd(this, sprintf("\ncl_shootfromfixedorigin \"%s\"\n", autocvar_g_shootfromfixedorigin));
2327 // reset gun alignment when dual wielding status changes
2328 // to ensure guns are always aligned right and left
2329 bool dualwielding = W_DualWielding(this);
2330 if(this.dualwielding_prev != dualwielding)
2332 W_ResetGunAlign(this, CS(this).cvar_cl_gunalign);
2333 this.dualwielding_prev = dualwielding;
2336 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2339 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2341 .entity weaponentity = weaponentities[slot];
2342 if(WEP_CVAR(vortex, charge_always))
2343 W_Vortex_Charge(this, weaponentity, frametime);
2344 W_WeaponFrame(this, weaponentity);
2350 // WEAPONTODO: Add a weapon request for this
2351 // rot vortex charge to the charge limit
2352 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2354 .entity weaponentity = weaponentities[slot];
2355 if (WEP_CVAR(vortex, charge_rot_rate) && this.(weaponentity).vortex_charge > WEP_CVAR(vortex, charge_limit) && this.(weaponentity).vortex_charge_rottime < time)
2356 this.(weaponentity).vortex_charge = bound(WEP_CVAR(vortex, charge_limit), this.(weaponentity).vortex_charge - WEP_CVAR(vortex, charge_rot_rate) * frametime / W_TICSPERFRAME, 1);
2361 this.dmg_team = max(0, this.dmg_team - autocvar_g_teamdamage_resetspeed * frametime);
2364 monsters_setstatus(this);
2369 .bool would_spectate;
2370 void ObserverOrSpectatorThink(entity this)
2372 bool is_spec = IS_SPEC(this);
2373 if ( CS(this).impulse )
2375 int r = MinigameImpulse(this, CS(this).impulse);
2377 CS(this).impulse = 0;
2379 if (is_spec && CS(this).impulse == IMP_weapon_drop.impulse)
2381 STAT(CAMERA_SPECTATOR, this) = (STAT(CAMERA_SPECTATOR, this) + 1) % 3;
2382 CS(this).impulse = 0;
2387 if (this.flags & FL_JUMPRELEASED) {
2388 if (PHYS_INPUT_BUTTON_JUMP(this) && (joinAllowed(this) || time < CS(this).jointime + MIN_SPEC_TIME)) {
2389 this.flags &= ~FL_JUMPRELEASED;
2390 this.flags |= FL_SPAWNING;
2391 } else if((is_spec && (PHYS_INPUT_BUTTON_ATCK(this) || CS(this).impulse == 10 || CS(this).impulse == 15 || CS(this).impulse == 18 || (CS(this).impulse >= 200 && CS(this).impulse <= 209)))
2392 || (!is_spec && ((PHYS_INPUT_BUTTON_ATCK(this) && !CS(this).version_mismatch) || this.would_spectate))) {
2393 this.flags &= ~FL_JUMPRELEASED;
2394 if(SpectateNext(this)) {
2395 TRANSMUTE(Spectator, this);
2396 } else if (is_spec) {
2397 TRANSMUTE(Observer, this);
2398 PutClientInServer(this);
2401 CS(this).impulse = 0;
2402 } else if (is_spec) {
2403 if(CS(this).impulse == 12 || CS(this).impulse == 16 || CS(this).impulse == 19 || (CS(this).impulse >= 220 && CS(this).impulse <= 229)) {
2404 this.flags &= ~FL_JUMPRELEASED;
2405 if(SpectatePrev(this)) {
2406 TRANSMUTE(Spectator, this);
2408 TRANSMUTE(Observer, this);
2409 PutClientInServer(this);
2411 CS(this).impulse = 0;
2412 } else if(PHYS_INPUT_BUTTON_ATCK2(this)) {
2413 this.would_spectate = false;
2414 this.flags &= ~FL_JUMPRELEASED;
2415 TRANSMUTE(Observer, this);
2416 PutClientInServer(this);
2417 } else if(!SpectateUpdate(this) && !SpectateNext(this)) {
2418 PutObserverInServer(this);
2419 this.would_spectate = true;
2423 int preferred_movetype = ((!PHYS_INPUT_BUTTON_USE(this) ? CS(this).cvar_cl_clippedspectating : !CS(this).cvar_cl_clippedspectating) ? MOVETYPE_FLY_WORLDONLY : MOVETYPE_NOCLIP);
2424 set_movetype(this, preferred_movetype);
2427 if ((is_spec && !(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_ATCK2(this)))
2428 || (!is_spec && !(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this)))) {
2429 this.flags |= FL_JUMPRELEASED;
2430 if(this.flags & FL_SPAWNING)
2432 this.flags &= ~FL_SPAWNING;
2433 if(joinAllowed(this))
2435 else if(time < CS(this).jointime + MIN_SPEC_TIME)
2436 CS(this).autojoin_checked = -1;
2440 if(is_spec && !SpectateUpdate(this))
2441 PutObserverInServer(this);
2444 this.flags |= FL_CLIENT | FL_NOTARGET;
2447 void PlayerUseKey(entity this)
2449 if (!IS_PLAYER(this))
2456 vehicles_exit(this.vehicle, VHEF_NORMAL);
2460 else if(autocvar_g_vehicles_enter)
2462 if(!game_stopped && !STAT(FROZEN, this) && !IS_DEAD(this) && !IS_INDEPENDENT_PLAYER(this))
2464 entity head, closest_target = NULL;
2465 head = WarpZone_FindRadius(this.origin, autocvar_g_vehicles_enter_radius, true);
2467 while(head) // find the closest acceptable target to enter
2469 if(IS_VEHICLE(head) && !IS_DEAD(head) && head.takedamage != DAMAGE_NO)
2470 if(!head.owner || ((head.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(head.owner, this)))
2474 if(vlen2(this.origin - head.origin) < vlen2(this.origin - closest_target.origin))
2475 { closest_target = head; }
2477 else { closest_target = head; }
2483 if(closest_target) { vehicles_enter(this, closest_target); return; }
2487 // a use key was pressed; call handlers
2488 MUTATOR_CALLHOOK(PlayerUseKey, this);
2496 Called every frame for each client before the physics are run
2499 .float last_vehiclecheck;
2500 void PlayerPreThink (entity this)
2502 STAT(GUNALIGN, this) = CS(this).cvar_cl_gunalign; // TODO
2503 STAT(MOVEVARS_CL_TRACK_CANJUMP, this) = CS(this).cvar_cl_movement_track_canjump;
2505 WarpZone_PlayerPhysics_FixVAngle(this);
2508 // physics frames: update anticheat stuff
2509 anticheat_prethink(this);
2512 if (blockSpectators && frametime) {
2513 // WORKAROUND: only use dropclient in server frames (frametime set).
2514 // Never use it in cl_movement frames (frametime zero).
2515 checkSpectatorBlock(this);
2518 zoomstate_set = false;
2520 // Check for nameless players
2521 if (this.netname == "" || this.netname != CS(this).netname_previous)
2523 bool assume_unchanged = (CS(this).netname_previous == "");
2524 if (autocvar_sv_name_maxlength > 0 && strlennocol(this.netname) > autocvar_sv_name_maxlength)
2526 int new_length = textLengthUpToLength(this.netname, autocvar_sv_name_maxlength, strlennocol);
2527 this.netname = strzone(strcat(substring(this.netname, 0, new_length), "^7"));
2528 sprint(this, sprintf("Warning: your name is longer than %d characters, it has been truncated.\n", autocvar_sv_name_maxlength));
2529 assume_unchanged = false;
2530 // stuffcmd(this, strcat("name ", this.netname, "\n")); // maybe?
2532 if (isInvisibleString(this.netname))
2534 this.netname = strzone(sprintf("Player#%d", this.playerid));
2535 sprint(this, "Warning: invisible names are not allowed.\n");
2536 assume_unchanged = false;
2537 // stuffcmd(this, strcat("name ", this.netname, "\n")); // maybe?
2539 if (!assume_unchanged && autocvar_sv_eventlog)
2540 GameLogEcho(strcat(":name:", ftos(this.playerid), ":", playername(this, false)));
2541 strcpy(CS(this).netname_previous, this.netname);
2545 if (CS(this).version_nagtime && CS(this).cvar_g_xonoticversion && time > CS(this).version_nagtime) {
2546 CS(this).version_nagtime = 0;
2547 if (strstrofs(CS(this).cvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(CS(this).cvar_g_xonoticversion, "autobuild", 0) >= 0) {
2549 } else if (strstrofs(autocvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(autocvar_g_xonoticversion, "autobuild", 0) >= 0) {
2551 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_BETA, autocvar_g_xonoticversion, CS(this).cvar_g_xonoticversion);
2553 int r = vercmp(CS(this).cvar_g_xonoticversion, autocvar_g_xonoticversion);
2554 if (r < 0) { // old client
2555 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OUTDATED, autocvar_g_xonoticversion, CS(this).cvar_g_xonoticversion);
2556 } else if (r > 0) { // old server
2557 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OLD, autocvar_g_xonoticversion, CS(this).cvar_g_xonoticversion);
2563 if (!(this.flags & FL_GODMODE) && this.max_armorvalue)
2565 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_GODMODE_OFF, this.max_armorvalue);
2566 this.max_armorvalue = 0;
2569 if (frametime && IS_PLAYER(this))
2571 if (STAT(FROZEN, this) == FROZEN_TEMP_REVIVING)
2573 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) + frametime * this.revive_speed, 1);
2574 SetResourceExplicit(this, RES_HEALTH, max(1, STAT(REVIVE_PROGRESS, this) * start_health));
2576 this.iceblock.alpha = bound(0.2, 1 - STAT(REVIVE_PROGRESS, this), 1);
2578 if (STAT(REVIVE_PROGRESS, this) >= 1)
2579 Unfreeze(this, false);
2581 else if (STAT(FROZEN, this) == FROZEN_TEMP_DYING)
2583 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) - frametime * this.revive_speed, 1);
2584 SetResourceExplicit(this, RES_HEALTH, max(0, autocvar_g_nades_ice_health + (start_health-autocvar_g_nades_ice_health) * STAT(REVIVE_PROGRESS, this)));
2586 if (GetResource(this, RES_HEALTH) < 1)
2589 vehicles_exit(this.vehicle, VHEF_RELEASE);
2590 if(this.event_damage)
2591 this.event_damage(this, this, this.frozen_by, 1, DEATH_NADE_ICE_FREEZE.m_id, DMG_NOWEP, this.origin, '0 0 0');
2593 else if (STAT(REVIVE_PROGRESS, this) <= 0)
2594 Unfreeze(this, false);
2598 MUTATOR_CALLHOOK(PlayerPreThink, this);
2600 if(autocvar_g_vehicles_enter && (time > this.last_vehiclecheck) && !game_stopped && !this.vehicle)
2601 if(IS_PLAYER(this) && !STAT(FROZEN, this) && !IS_DEAD(this) && !IS_INDEPENDENT_PLAYER(this))
2603 FOREACH_ENTITY_RADIUS(this.origin, autocvar_g_vehicles_enter_radius, IS_VEHICLE(it) && !IS_DEAD(it) && it.takedamage != DAMAGE_NO,
2607 if(!it.team || SAME_TEAM(this, it))
2608 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER);
2609 else if(autocvar_g_vehicles_steal)
2610 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_STEAL);
2612 else if((it.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(it.owner, this))
2614 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_GUNNER);
2618 this.last_vehiclecheck = time + 1;
2621 if(!CS(this).cvar_cl_newusekeysupported) // FIXME remove this - it was a stupid idea to begin with, we can JUST use the button
2623 if(PHYS_INPUT_BUTTON_USE(this) && !CS(this).usekeypressed)
2625 CS(this).usekeypressed = PHYS_INPUT_BUTTON_USE(this);
2628 if (IS_REAL_CLIENT(this))
2629 PrintWelcomeMessage(this);
2631 if (IS_PLAYER(this)) {
2632 if (IS_REAL_CLIENT(this) && time < CS(this).jointime + MIN_SPEC_TIME)
2633 error("Client can't be spawned as player on connection!");
2634 if(!PlayerThink(this))
2637 else if (game_stopped || intermission_running) {
2638 if(intermission_running)
2639 IntermissionThink(this);
2642 else if (IS_REAL_CLIENT(this) && CS(this).autojoin_checked <= 0 && time >= CS(this).jointime + MIN_SPEC_TIME)
2644 bool early_join_requested = (CS(this).autojoin_checked < 0);
2645 CS(this).autojoin_checked = 1;
2646 // don't do this in ClientConnect
2647 // many things can go wrong if a client is spawned as player on connection
2648 if (early_join_requested || MUTATOR_CALLHOOK(AutoJoinOnConnection, this)
2649 || (!(autocvar_sv_spectate || autocvar_g_campaign || (Player_GetForcedTeamIndex(this) == TEAM_FORCE_SPECTATOR))
2650 && (!teamplay || autocvar_g_balance_teams)))
2652 campaign_bots_may_start = true;
2653 if(joinAllowed(this))
2658 else if (IS_OBSERVER(this) || IS_SPEC(this)) {
2659 ObserverOrSpectatorThink(this);
2662 // WEAPONTODO: Add weapon request for this
2663 if (!zoomstate_set) {
2664 bool wep_zoomed = false;
2665 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2667 .entity weaponentity = weaponentities[slot];
2668 Weapon thiswep = this.(weaponentity).m_weapon;
2669 if(thiswep != WEP_Null && thiswep.wr_zoom)
2670 wep_zoomed += thiswep.wr_zoom(thiswep, this);
2672 SetZoomState(this, PHYS_INPUT_BUTTON_ZOOM(this) || PHYS_INPUT_BUTTON_ZOOMSCRIPT(this) || wep_zoomed);
2675 if (CS(this).teamkill_soundtime && time > CS(this).teamkill_soundtime)
2677 CS(this).teamkill_soundtime = 0;
2679 entity e = CS(this).teamkill_soundsource;
2680 entity oldpusher = e.pusher;
2682 PlayerSound(e, playersound_teamshoot, CH_VOICE, VOL_BASEVOICE, VOICETYPE_LASTATTACKER_ONLY);
2683 e.pusher = oldpusher;
2686 if (CS(this).taunt_soundtime && time > CS(this).taunt_soundtime) {
2687 CS(this).taunt_soundtime = 0;
2688 PlayerSound(this, playersound_taunt, CH_VOICE, VOL_BASEVOICE, VOICETYPE_AUTOTAUNT);
2691 target_voicescript_next(this);
2693 // WEAPONTODO: Move into weaponsystem somehow
2694 // if a player goes unarmed after holding a loaded weapon, empty his clip size and remove the crosshair ammo ring
2695 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2697 .entity weaponentity = weaponentities[slot];
2698 if(this.(weaponentity).m_weapon == WEP_Null)
2699 this.(weaponentity).clip_load = this.(weaponentity).clip_size = 0;
2703 void DrownPlayer(entity this)
2705 if(IS_DEAD(this) || game_stopped || time < game_starttime || this.vehicle
2706 || STAT(FROZEN, this) || this.watertype != CONTENT_WATER)
2708 STAT(AIR_FINISHED, this) = 0;
2712 if (this.waterlevel != WATERLEVEL_SUBMERGED)
2714 if(STAT(AIR_FINISHED, this) && STAT(AIR_FINISHED, this) < time)
2715 PlayerSound(this, playersound_gasp, CH_PLAYER, VOL_BASE, VOICETYPE_PLAYERSOUND);
2716 STAT(AIR_FINISHED, this) = 0;
2720 if (!STAT(AIR_FINISHED, this))
2721 STAT(AIR_FINISHED, this) = time + autocvar_g_balance_contents_drowndelay;
2722 if (STAT(AIR_FINISHED, this) < time)
2724 if (this.pain_finished < time)
2726 Damage (this, NULL, NULL, autocvar_g_balance_contents_playerdamage_drowning * autocvar_g_balance_contents_damagerate, DEATH_DROWN.m_id, DMG_NOWEP, this.origin, '0 0 0');
2727 this.pain_finished = time + 0.5;
2733 .bool move_qcphysics;
2735 void Player_Physics(entity this)
2737 this.movetype = (this.move_qcphysics) ? MOVETYPE_QCPLAYER : this.move_movetype;
2739 if(!this.move_qcphysics)
2742 if(!frametime && !CS(this).pm_frametime)
2745 Movetype_Physics_NoMatchTicrate(this, CS(this).pm_frametime, true);
2747 CS(this).pm_frametime = 0;
2754 Called every frame for each client after the physics are run
2757 void PlayerPostThink (entity this)
2759 Player_Physics(this);
2762 if (frametime) // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2763 if (IS_REAL_CLIENT(this))
2764 if (IS_PLAYER(this) || sv_maxidle_spectatorsareidle)
2766 int totalClients = 0;
2767 if(sv_maxidle_slots > 0)
2769 FOREACH_CLIENT(IS_REAL_CLIENT(it) || sv_maxidle_slots_countbots,
2775 if (sv_maxidle_slots > 0 && (maxclients - totalClients) > sv_maxidle_slots)
2776 { /* do nothing */ }
2777 else if (time - CS(this).parm_idlesince < 1) // instead of (time == this.parm_idlesince) to support sv_maxidle <= 10
2779 if (CS(this).idlekick_lasttimeleft)
2781 CS(this).idlekick_lasttimeleft = 0;
2782 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_IDLING);
2787 float timeleft = ceil(sv_maxidle - (time - CS(this).parm_idlesince));
2788 if (timeleft == min(10, sv_maxidle - 1)) { // - 1 to support sv_maxidle <= 10
2789 if (!CS(this).idlekick_lasttimeleft)
2790 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_DISCONNECT_IDLING, timeleft);
2792 if (timeleft <= 0) {
2793 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_KICK_IDLING, this.netname);
2797 else if (timeleft <= 10) {
2798 if (timeleft != CS(this).idlekick_lasttimeleft) {
2799 Send_Notification(NOTIF_ONE, this, MSG_ANNCE, Announcer_PickNumber(CNT_IDLE, timeleft));
2801 CS(this).idlekick_lasttimeleft = timeleft;
2810 this.solid = SOLID_NOT;
2811 this.takedamage = DAMAGE_NO;
2812 set_movetype(this, MOVETYPE_NONE);
2813 CS(this).teamkill_complain = 0;
2814 CS(this).teamkill_soundtime = 0;
2815 CS(this).teamkill_soundsource = NULL;
2818 if (IS_PLAYER(this)) {
2819 if(this.death_time == time && IS_DEAD(this))
2821 // player's bbox gets resized now, instead of in the damage event that killed the player,
2822 // once all the damage events of this frame have been processed with normal size
2824 setsize(this, this.mins, this.maxs);
2827 UpdateChatBubble(this);
2828 if (CS(this).impulse) ImpulseCommands(this);
2831 CSQCMODEL_AUTOUPDATE(this);
2834 GetPressedKeys(this);
2836 else if (IS_OBSERVER(this) && STAT(PRESSED_KEYS, this))
2838 CS(this).pressedkeys = 0;
2839 STAT(PRESSED_KEYS, this) = 0;
2842 if (this.waypointsprite_attachedforcarrier) {
2843 float hp = healtharmor_maxdamage(GetResource(this, RES_HEALTH), GetResource(this, RES_ARMOR), autocvar_g_balance_armor_blockpercent, DEATH_WEAPON.m_id).x;
2844 WaypointSprite_UpdateHealth(this.waypointsprite_attachedforcarrier, hp);
2847 CSQCMODEL_AUTOUPDATE(this);
2851 * message "": do not say, just test flood control
2857 int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodcontrol)
2859 if (!teamsay && !privatesay && substring(msgin, 0, 1) == " ")
2860 msgin = substring(msgin, 1, -1); // work around DP say bug (say_team does not have this!)
2863 msgin = formatmessage(source, msgin);
2866 if (!(IS_PLAYER(source) || source.caplayer))
2867 colorstr = "^0"; // black for spectators
2869 colorstr = Team_ColorCode(source.team);
2882 msgin = trigger_magicear_processmessage_forallears(source, teamsay, privatesay, msgin);
2885 * using bprint solves this... me stupid
2886 // how can we prevent the message from appearing in a listen server?
2887 // for now, just give "say" back and only handle say_team
2890 clientcommand(source, strcat("say ", msgin));
2895 string namestr = "";
2897 namestr = playername(source, autocvar_g_chat_teamcolors);
2899 string colorprefix = (strdecolorize(namestr) == namestr) ? "^3" : "^7";
2901 string msgstr = "", cmsgstr = "";
2902 string privatemsgprefix = string_null;
2903 int privatemsgprefixlen = 0;
2906 bool found_me = false;
2907 if(strstrofs(msgin, "/me", 0) >= 0)
2909 string newmsgin = "";
2910 string newnamestr = ((teamsay) ? strcat(colorstr, "(", colorprefix, namestr, colorstr, ")", "^7") : strcat(colorprefix, namestr, "^7"));
2911 FOREACH_WORD(msgin, true,
2913 if(strdecolorize(it) == "/me")
2916 newmsgin = cons(newmsgin, newnamestr);
2919 newmsgin = cons(newmsgin, it);
2926 msgstr = strcat("\{1}\{13}* ", colorprefix, namestr, "^3 tells you: ^7");
2927 privatemsgprefixlen = strlen(msgstr);
2928 msgstr = strcat(msgstr, msgin);
2929 cmsgstr = strcat(colorstr, colorprefix, namestr, "^3 tells you:\n^7", msgin);
2930 privatemsgprefix = strcat("\{1}\{13}* ^3You tell ", playername(privatesay, autocvar_g_chat_teamcolors), ": ^7");
2936 //msgin = strreplace("/me", "", msgin);
2937 //msgin = substring(msgin, 3, strlen(msgin));
2938 //msgin = strreplace("/me", strcat(colorstr, "(", colorprefix, namestr, colorstr, ")^7"), msgin);
2939 msgstr = strcat("\{1}\{13}^4* ", "^7", msgin);
2942 msgstr = strcat("\{1}\{13}", colorstr, "(", colorprefix, namestr, colorstr, ") ^7", msgin);
2943 cmsgstr = strcat(colorstr, "(", colorprefix, namestr, colorstr, ")\n^7", msgin);
2949 //msgin = strreplace("/me", "", msgin);
2950 //msgin = substring(msgin, 3, strlen(msgin));
2951 //msgin = strreplace("/me", strcat(colorprefix, namestr), msgin);
2952 msgstr = strcat("\{1}^4* ^7", msgin);
2956 msgstr = strcat(msgstr, (namestr != "") ? strcat(colorprefix, namestr, "^7: ") : "^7");
2957 msgstr = strcat(msgstr, msgin);
2961 msgstr = strcat(strreplace("\n", " ", msgstr), "\n"); // newlines only are good for centerprint
2964 string fullmsgstr = msgstr;
2965 string fullcmsgstr = cmsgstr;
2969 var .float flood_field = floodcontrol_chat;
2970 if(floodcontrol && source)
2978 flood_spl = autocvar_g_chat_flood_spl_tell;
2979 flood_burst = autocvar_g_chat_flood_burst_tell;
2980 flood_lmax = autocvar_g_chat_flood_lmax_tell;
2981 flood_field = floodcontrol_chattell;
2985 flood_spl = autocvar_g_chat_flood_spl_team;
2986 flood_burst = autocvar_g_chat_flood_burst_team;
2987 flood_lmax = autocvar_g_chat_flood_lmax_team;
2988 flood_field = floodcontrol_chatteam;
2992 flood_spl = autocvar_g_chat_flood_spl;
2993 flood_burst = autocvar_g_chat_flood_burst;
2994 flood_lmax = autocvar_g_chat_flood_lmax;
2995 flood_field = floodcontrol_chat;
2997 flood_burst = max(0, flood_burst - 1);
2998 // to match explanation in default.cfg, a value of 3 must allow three-line bursts and not four!
3000 // do flood control for the default line size
3003 getWrappedLine_remaining = msgstr;
3006 while(getWrappedLine_remaining && (!flood_lmax || lines <= flood_lmax))
3008 msgstr = strcat(msgstr, " ", getWrappedLineLen(82.4289758859709, strlennocol)); // perl averagewidth.pl < gfx/vera-sans.width
3011 msgstr = substring(msgstr, 1, strlen(msgstr) - 1);
3013 if(getWrappedLine_remaining != "")
3015 msgstr = strcat(msgstr, "\n");
3019 if (time >= source.(flood_field))
3021 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + lines * flood_spl;
3026 msgstr = fullmsgstr;
3031 if (time >= source.(flood_field))
3032 source.(flood_field) = max(time - flood_burst * flood_spl, source.(flood_field)) + flood_spl;
3037 if (timeout_status == TIMEOUT_ACTIVE) // when game is paused, no flood protection
3038 source.(flood_field) = flood = 0;
3041 string sourcemsgstr, sourcecmsgstr;
3042 if(flood == 2) // cannot happen for empty msgstr
3044 if(autocvar_g_chat_flood_notify_flooder)
3046 sourcemsgstr = strcat(msgstr, "\n^3FLOOD CONTROL: ^7message too long, trimmed\n");
3051 sourcemsgstr = fullmsgstr;
3052 sourcecmsgstr = fullcmsgstr;
3058 sourcemsgstr = msgstr;
3059 sourcecmsgstr = cmsgstr;
3062 if (!privatesay && source && !(IS_PLAYER(source) || source.caplayer))
3065 if (teamsay || (autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage))
3066 teamsay = -1; // spectators
3070 LOG_INFO("NOTE: ", playername(source, true), "^7 is flooding.");
3072 // build sourcemsgstr by cutting off a prefix and replacing it by the other one
3074 sourcemsgstr = strcat(privatemsgprefix, substring(sourcemsgstr, privatemsgprefixlen, -1));
3077 if(source && CS(source).muted)
3079 // always fake the message
3084 if (autocvar_g_chat_flood_notify_flooder)
3086 sprint(source, strcat("^3FLOOD CONTROL: ^7wait ^1", ftos(source.(flood_field) - time), "^3 seconds\n"));
3097 if (privatesay && source && !(IS_PLAYER(source) || source.caplayer))
3100 if ((privatesay && (IS_PLAYER(privatesay) || privatesay.caplayer)) && ((autocvar_g_chat_nospectators == 1) || (autocvar_g_chat_nospectators == 2 && !warmup_stage)))
3101 ret = -1; // just hide the message completely
3104 MUTATOR_CALLHOOK(ChatMessage, source, ret);
3105 ret = M_ARGV(1, int);
3107 string event_log_msg = "";
3109 if(sourcemsgstr != "" && ret != 0)
3111 if(ret < 0) // faked message, because the player is muted
3113 sprint(source, sourcemsgstr);
3114 if(sourcecmsgstr != "" && !privatesay)
3115 centerprint(source, sourcecmsgstr);
3117 else if(privatesay) // private message, between 2 people only
3119 sprint(source, sourcemsgstr);
3120 if (!autocvar_g_chat_tellprivacy) { dedicated_print(msgstr); } // send to server console too if "tellprivacy" is disabled
3121 if(!MUTATOR_CALLHOOK(ChatMessageTo, privatesay, source))
3123 sprint(privatesay, msgstr);
3125 centerprint(privatesay, cmsgstr);
3128 else if ( teamsay && CS(source).active_minigame )
3130 sprint(source, sourcemsgstr);
3131 dedicated_print(msgstr); // send to server console too
3132 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && CS(it).active_minigame == CS(source).active_minigame && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
3135 event_log_msg = sprintf(":chat_minigame:%d:%s:%s", source.playerid, CS(source).active_minigame.netname, msgin);
3138 else if(teamsay > 0) // team message, only sent to team mates
3140 sprint(source, sourcemsgstr);
3141 dedicated_print(msgstr); // send to server console too
3142 if(sourcecmsgstr != "")
3143 centerprint(source, sourcecmsgstr);
3144 FOREACH_CLIENT((IS_PLAYER(it) || it.caplayer) && IS_REAL_CLIENT(it) && it != source && it.team == source.team && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
3147 centerprint(it, cmsgstr);
3149 event_log_msg = sprintf(":chat_team:%d:%d:%s", source.playerid, source.team, strreplace("\n", " ", msgin));
3151 else if(teamsay < 0) // spectator message, only sent to spectators
3153 sprint(source, sourcemsgstr);
3154 dedicated_print(msgstr); // send to server console too
3155 FOREACH_CLIENT(!(IS_PLAYER(it) || it.caplayer) && IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
3158 event_log_msg = sprintf(":chat_spec:%d:%s", source.playerid, strreplace("\n", " ", msgin));
3163 sprint(source, sourcemsgstr);
3164 dedicated_print(msgstr); // send to server console too
3165 MX_Say(strcat(playername(source, true), "^7: ", msgin));
3167 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != source && !MUTATOR_CALLHOOK(ChatMessageTo, it, source), {
3170 event_log_msg = sprintf(":chat:%d:%s", source.playerid, strreplace("\n", " ", msgin));
3174 if (autocvar_sv_eventlog && (event_log_msg != "")) {
3175 GameLogEcho(event_log_msg);
3181 // hack to copy the button fields from the client entity to the Client State
3182 void PM_UpdateButtons(entity this, entity store)
3185 store.impulse = this.impulse;
3188 bool typing = this.buttonchat || this.button12;
3190 store.button0 = (typing) ? 0 : this.button0;
3192 store.button2 = (typing) ? 0 : this.button2;
3193 store.button3 = (typing) ? 0 : this.button3;
3194 store.button4 = this.button4;
3195 store.button5 = (typing) ? 0 : this.button5;
3196 store.button6 = this.button6;
3197 store.button7 = this.button7;
3198 store.button8 = this.button8;
3199 store.button9 = this.button9;
3200 store.button10 = this.button10;
3201 store.button11 = this.button11;
3202 store.button12 = this.button12;
3203 store.button13 = this.button13;
3204 store.button14 = this.button14;
3205 store.button15 = this.button15;
3206 store.button16 = this.button16;
3207 store.buttonuse = this.buttonuse;
3208 store.buttonchat = this.buttonchat;
3210 store.cursor_active = this.cursor_active;
3211 store.cursor_screen = this.cursor_screen;
3212 store.cursor_trace_start = this.cursor_trace_start;
3213 store.cursor_trace_endpos = this.cursor_trace_endpos;
3214 store.cursor_trace_ent = this.cursor_trace_ent;
3216 store.ping = this.ping;
3217 store.ping_packetloss = this.ping_packetloss;
3218 store.ping_movementloss = this.ping_movementloss;
3220 store.v_angle = this.v_angle;
3221 store.movement = this.movement;
3224 NET_HANDLE(fpsreport, bool)
3226 int fps = ReadShort();
3227 PlayerScore_Set(sender, SP_FPS, fps);