3 #include <common/csqcmodel_settings.qh>
4 #include <common/deathtypes/all.qh>
5 #include <common/effects/all.qh>
6 #include <common/effects/qc/globalsound.qh>
7 #include <common/ent_cs.qh>
8 #include <common/gamemodes/_mod.qh>
9 #include <common/gamemodes/gamemode/nexball/sv_nexball.qh>
10 #include <common/items/_mod.qh>
11 #include <common/items/inventory.qh>
12 #include <common/mapobjects/func/conveyor.qh>
13 #include <common/mapobjects/func/ladder.qh>
14 #include <common/mapobjects/subs.qh>
15 #include <common/mapobjects/target/spawnpoint.qh>
16 #include <common/mapobjects/teleporters.qh>
17 #include <common/mapobjects/trigger/counter.qh>
18 #include <common/mapobjects/trigger/secret.qh>
19 #include <common/mapobjects/trigger/swamp.qh>
20 #include <common/mapobjects/triggers.qh>
21 #include <common/minigames/sv_minigames.qh>
22 #include <common/monsters/sv_monsters.qh>
23 #include <common/mutators/mutator/instagib/sv_instagib.qh>
24 #include <common/mutators/mutator/nades/nades.qh>
25 #include <common/mutators/mutator/overkill/oknex.qh>
26 #include <common/mutators/mutator/status_effects/_mod.qh>
27 #include <common/mutators/mutator/waypoints/all.qh>
28 #include <common/net_linked.qh>
29 #include <common/net_notice.qh>
30 #include <common/notifications/all.qh>
31 #include <common/physics/player.qh>
32 #include <common/playerstats.qh>
33 #include <common/resources/sv_resources.qh>
34 #include <common/state.qh>
35 #include <common/stats.qh>
36 #include <common/vehicles/all.qh>
37 #include <common/vehicles/sv_vehicles.qh>
38 #include <common/viewloc.qh>
39 #include <common/weapons/_all.qh>
40 #include <common/weapons/weapon/vortex.qh>
41 #include <common/wepent.qh>
42 #include <lib/csqcmodel/sv_model.qh>
43 #include <lib/warpzone/common.qh>
44 #include <lib/warpzone/server.qh>
45 #include <server/anticheat.qh>
46 #include <server/antilag.qh>
47 #include <server/bot/api.qh>
48 #include <server/bot/default/cvars.qh>
49 #include <server/campaign.qh>
50 #include <server/chat.qh>
51 #include <server/cheats.qh>
52 #include <server/clientkill.qh>
53 #include <server/command/common.qh>
54 #include <server/command/common.qh>
55 #include <server/command/vote.qh>
56 #include <server/compat/quake3.qh>
57 #include <server/damage.qh>
58 #include <server/gamelog.qh>
59 #include <server/handicap.qh>
60 #include <server/hook.qh>
61 #include <server/impulse.qh>
62 #include <server/intermission.qh>
63 #include <server/ipban.qh>
64 #include <server/main.qh>
65 #include <server/mutators/_mod.qh>
66 #include <server/player.qh>
67 #include <server/portals.qh>
68 #include <server/race.qh>
69 #include <server/scores.qh>
70 #include <server/scores_rules.qh>
71 #include <server/spawnpoints.qh>
72 #include <server/teamplay.qh>
73 #include <server/weapons/accuracy.qh>
74 #include <server/weapons/common.qh>
75 #include <server/weapons/hitplot.qh>
76 #include <server/weapons/selection.qh>
77 #include <server/weapons/tracing.qh>
78 #include <server/weapons/weaponsystem.qh>
79 #include <server/world.qh>
81 STATIC_METHOD(Client, Add, void(Client this, int _team))
84 TRANSMUTE(Player, this);
87 PutClientInServer(this);
90 STATIC_METHOD(Client, Remove, void(Client this))
92 TRANSMUTE(Observer, this);
93 PutClientInServer(this);
94 ClientDisconnect(this);
97 void send_CSQC_teamnagger() {
98 WriteHeader(MSG_BROADCAST, TE_CSQC_TEAMNAGGER);
101 int CountSpectators(entity player, entity to)
103 if(!player) { return 0; } // not sure how, but best to be safe
107 FOREACH_CLIENT(IS_REAL_CLIENT(it) && IS_SPEC(it) && it != to && it.enemy == player,
115 void WriteSpectators(entity player, entity to)
117 if(!player) { return; } // not sure how, but best to be safe
120 FOREACH_CLIENT(IS_REAL_CLIENT(it) && IS_SPEC(it) && it != to && it.enemy == player,
122 if(spec_count >= MAX_SPECTATORS)
124 WriteByte(MSG_ENTITY, num_for_edict(it));
129 bool ClientData_Send(entity this, entity to, int sf)
131 assert(to == this.owner, return false);
134 if (IS_SPEC(e)) e = e.enemy;
137 if (CS(e).race_completed) sf |= BIT(0); // forced scoreboard
138 if (CS(to).spectatee_status) sf |= BIT(1); // spectator ent number follows
139 if (CS(e).zoomstate) sf |= BIT(2); // zoomed
140 if (autocvar_sv_showspectators) sf |= BIT(4); // show spectators
142 WriteHeader(MSG_ENTITY, ENT_CLIENT_CLIENTDATA);
143 WriteByte(MSG_ENTITY, sf);
146 WriteByte(MSG_ENTITY, CS(to).spectatee_status);
150 float specs = CountSpectators(e, to);
151 WriteByte(MSG_ENTITY, specs);
152 WriteSpectators(e, to);
158 void ClientData_Attach(entity this)
160 Net_LinkEntity(CS(this).clientdata = new_pure(clientdata), false, 0, ClientData_Send);
161 CS(this).clientdata.drawonlytoclient = this;
162 CS(this).clientdata.owner = this;
165 void ClientData_Detach(entity this)
167 delete(CS(this).clientdata);
168 CS(this).clientdata = NULL;
171 void ClientData_Touch(entity e)
173 entity cd = CS(e).clientdata;
174 if (cd) { cd.SendFlags = 1; }
176 // make it spectatable
177 FOREACH_CLIENT(IS_REAL_CLIENT(it) && it != e && IS_SPEC(it) && it.enemy == e,
179 entity cd = CS(it).clientdata;
180 if (cd) { cd.SendFlags = 1; }
189 Checks if the argument string can be a valid playermodel.
190 Returns a valid one in doubt.
193 string FallbackPlayerModel;
194 string CheckPlayerModel(string plyermodel) {
195 if(FallbackPlayerModel != cvar_defstring("_cl_playermodel"))
197 // note: we cannot summon Don Strunzone here, some player may
198 // still have the model string set. In case anyone manages how
199 // to change a cvar default, we'll have a small leak here.
200 FallbackPlayerModel = strzone(cvar_defstring("_cl_playermodel"));
202 // only in right path
203 if(substring(plyermodel, 0, 14) != "models/player/")
204 return FallbackPlayerModel;
205 // only good file extensions
206 if(substring(plyermodel, -4, 4) != ".iqm"
207 && substring(plyermodel, -4, 4) != ".zym"
208 && substring(plyermodel, -4, 4) != ".dpm"
209 && substring(plyermodel, -4, 4) != ".md3"
210 && substring(plyermodel, -4, 4) != ".psk")
212 return FallbackPlayerModel;
214 // forbid the LOD models
215 if(substring(plyermodel, -9, 5) == "_lod1" || substring(plyermodel, -9, 5) == "_lod2")
216 return FallbackPlayerModel;
217 if(plyermodel != strtolower(plyermodel))
218 return FallbackPlayerModel;
219 // also, restrict to server models
220 if(autocvar_sv_servermodelsonly)
222 if(!fexists(plyermodel))
223 return FallbackPlayerModel;
228 void setplayermodel(entity e, string modelname)
230 precache_model(modelname);
231 _setmodel(e, modelname);
232 player_setupanimsformodel(e);
233 if(!autocvar_g_debug_globalsounds)
234 UpdatePlayerSounds(e);
237 /** putting a client as observer in the server */
238 void PutObserverInServer(entity this, bool is_forced, bool use_spawnpoint)
240 bool mutator_returnvalue = MUTATOR_CALLHOOK(MakePlayerObserver, this, is_forced);
241 bool recount_ready = false;
242 PlayerState_detach(this);
246 if(GetResource(this, RES_HEALTH) >= 1)
249 Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
252 // was a player, recount votes and ready status
253 if(IS_REAL_CLIENT(this))
255 if (vote_called) { VoteCount(false); }
257 recount_ready = true;
259 entcs_update_players(this);
264 entity spot = SelectSpawnPoint(this, true);
265 if (!spot) LOG_FATAL("No spawnpoints for observers?!?");
266 this.angles = vec2(spot.angles);
267 // offset it so that the spectator spawns higher off the ground, looks better this way
268 setorigin(this, spot.origin + STAT(PL_VIEW_OFS, this));
270 else // change origin to restore previous view origin
271 setorigin(this, this.origin + STAT(PL_VIEW_OFS, this) - STAT(PL_CROUCH_VIEW_OFS, this));
272 this.fixangle = true;
274 if (IS_REAL_CLIENT(this))
277 WriteByte(MSG_ONE, SVC_SETVIEW);
278 WriteEntity(MSG_ONE, this);
280 // give the spectator some space between walls for MOVETYPE_FLY_WORLDONLY
281 // so that your view doesn't go into the ceiling with MOVETYPE_FLY_WORLDONLY, previously "PL_VIEW_OFS"
282 if(!autocvar_g_debug_globalsounds)
284 // needed for player sounds
286 FixPlayermodel(this);
288 setmodel(this, MDL_Null);
289 setsize(this, STAT(PL_CROUCH_MIN, this), STAT(PL_CROUCH_MAX, this));
290 this.view_ofs = '0 0 0';
292 RemoveGrapplingHooks(this);
293 Portal_ClearAll(this);
294 Unfreeze(this, false);
295 SetSpectatee(this, NULL);
300 PlayerStats_GameReport_Event_Player(this, PLAYERSTATS_ALIVETIME, time - this.alivetime);
304 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
306 TRANSMUTE(Observer, this);
308 if(recount_ready) ReadyCount();
310 WaypointSprite_PlayerDead(this);
311 accuracy_resend(this);
313 if (CS(this).killcount != FRAGS_SPECTATOR && !game_stopped && CHAT_NOSPECTATORS())
314 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_CHAT_NOSPECTATORS);
316 CS(this).spectatortime = time;
318 IL_REMOVE(g_bot_targets, this);
319 this.bot_attack = false;
320 if(this.monster_attack)
321 IL_REMOVE(g_monster_targets, this);
322 this.monster_attack = false;
323 STAT(HUD, this) = HUD_NORMAL;
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(AIR_FINISHED, this) = 0;
350 //this.dphitcontentsmask = 0;
351 this.dphitcontentsmask = DPCONTENTS_SOLID;
352 if (autocvar_g_playerclip_collisions)
353 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
356 setthink(this, func_null);
358 this.deadflag = DEAD_NO;
360 STAT(REVIVE_PROGRESS, this) = 0;
361 this.revival_time = 0;
362 this.draggable = drag_undraggable;
365 STAT(WEAPONS, this) = '0 0 0';
366 this.drawonlytoclient = this;
370 //this.spawnpoint_targ = NULL; // keep it so they can return to where they were?
372 this.weaponmodel = "";
373 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
375 this.weaponentities[slot] = NULL;
377 this.exteriorweaponentity = NULL;
378 CS(this).killcount = FRAGS_SPECTATOR;
379 this.velocity = '0 0 0';
380 this.avelocity = '0 0 0';
381 this.punchangle = '0 0 0';
382 this.punchvector = '0 0 0';
383 this.oldvelocity = this.velocity;
384 this.event_damage = func_null;
385 this.event_heal = func_null;
387 for(int slot = 0; slot < MAX_AXH; ++slot)
389 entity axh = this.(AuxiliaryXhair[slot]);
390 this.(AuxiliaryXhair[slot]) = NULL;
392 if(axh.owner == this && axh != NULL && !wasfreed(axh))
396 if (mutator_returnvalue)
398 // mutator prevents resetting teams+score
402 SetPlayerTeam(this, -1, TEAM_CHANGE_SPECTATOR);
403 this.frags = FRAGS_SPECTATOR;
406 bot_relinkplayerlist();
408 if (CS(this).just_joined)
409 CS(this).just_joined = false;
412 int player_getspecies(entity this)
414 get_model_parameters(this.model, this.skin);
415 int s = get_model_parameters_species;
416 get_model_parameters(string_null, 0);
417 if (s < 0) return SPECIES_HUMAN;
421 .float model_randomizer;
422 void FixPlayermodel(entity player)
424 string defaultmodel = "";
426 if(autocvar_sv_defaultcharacter)
432 case NUM_TEAM_1: defaultmodel = autocvar_sv_defaultplayermodel_red; defaultskin = autocvar_sv_defaultplayerskin_red; break;
433 case NUM_TEAM_2: defaultmodel = autocvar_sv_defaultplayermodel_blue; defaultskin = autocvar_sv_defaultplayerskin_blue; break;
434 case NUM_TEAM_3: defaultmodel = autocvar_sv_defaultplayermodel_yellow; defaultskin = autocvar_sv_defaultplayerskin_yellow; break;
435 case NUM_TEAM_4: defaultmodel = autocvar_sv_defaultplayermodel_pink; defaultskin = autocvar_sv_defaultplayerskin_pink; break;
439 if(defaultmodel == "")
441 defaultmodel = autocvar_sv_defaultplayermodel;
442 defaultskin = autocvar_sv_defaultplayerskin;
445 int n = tokenize_console(defaultmodel);
448 defaultmodel = argv(floor(n * CS(player).model_randomizer));
449 // However, do NOT randomize if the player-selected model is in the list.
450 for (int i = 0; i < n; ++i)
451 if ((argv(i) == player.playermodel && defaultskin == stof(player.playerskin)) || argv(i) == strcat(player.playermodel, ":", player.playerskin))
452 defaultmodel = argv(i);
455 int i = strstrofs(defaultmodel, ":", 0);
458 defaultskin = stof(substring(defaultmodel, i+1, -1));
459 defaultmodel = substring(defaultmodel, 0, i);
462 if(autocvar_sv_defaultcharacterskin && !defaultskin)
468 case NUM_TEAM_1: defaultskin = autocvar_sv_defaultplayerskin_red; break;
469 case NUM_TEAM_2: defaultskin = autocvar_sv_defaultplayerskin_blue; break;
470 case NUM_TEAM_3: defaultskin = autocvar_sv_defaultplayerskin_yellow; break;
471 case NUM_TEAM_4: defaultskin = autocvar_sv_defaultplayerskin_pink; break;
476 defaultskin = autocvar_sv_defaultplayerskin;
479 MUTATOR_CALLHOOK(FixPlayermodel, defaultmodel, defaultskin, player);
480 defaultmodel = M_ARGV(0, string);
481 defaultskin = M_ARGV(1, int);
485 if(defaultmodel != "")
487 if (defaultmodel != player.model)
489 vector m1 = player.mins;
490 vector m2 = player.maxs;
491 setplayermodel (player, defaultmodel);
492 setsize (player, m1, m2);
496 oldskin = player.skin;
497 player.skin = defaultskin;
499 if (player.playermodel != player.model || player.playermodel == "")
501 player.playermodel = CheckPlayerModel(player.playermodel); // this is never "", so no endless loop
502 vector m1 = player.mins;
503 vector m2 = player.maxs;
504 setplayermodel (player, player.playermodel);
505 setsize (player, m1, m2);
509 if(!autocvar_sv_defaultcharacterskin)
511 oldskin = player.skin;
512 player.skin = stof(player.playerskin);
516 oldskin = player.skin;
517 player.skin = defaultskin;
521 if(chmdl || oldskin != player.skin) // model or skin has changed
523 player.species = player_getspecies(player); // update species
524 if(!autocvar_g_debug_globalsounds)
525 UpdatePlayerSounds(player); // update skin sounds
529 if(strlen(autocvar_sv_defaultplayercolors))
530 if(player.clientcolors != stof(autocvar_sv_defaultplayercolors))
531 setcolor(player, stof(autocvar_sv_defaultplayercolors));
534 void PutPlayerInServer(entity this)
536 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
538 PlayerState_attach(this);
539 accuracy_resend(this);
542 TeamBalance_JoinBestTeam(this);
544 entity spot = SelectSpawnPoint(this, false);
546 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_NOSPAWNS);
547 return; // spawn failed
550 TRANSMUTE(Player, this);
552 CS(this).wasplayer = true;
553 this.iscreature = true;
554 this.teleportable = TELEPORT_NORMAL;
555 if(!this.damagedbycontents)
556 IL_PUSH(g_damagedbycontents, this);
557 this.damagedbycontents = true;
558 set_movetype(this, MOVETYPE_WALK);
559 this.solid = SOLID_SLIDEBOX;
560 this.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_SOLID;
561 if (autocvar_g_playerclip_collisions)
562 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
563 if (IS_BOT_CLIENT(this) && autocvar_g_botclip_collisions)
564 this.dphitcontentsmask |= DPCONTENTS_BOTCLIP;
565 this.frags = FRAGS_PLAYER;
566 if (INDEPENDENT_PLAYERS) MAKE_INDEPENDENT_PLAYER(this);
567 this.flags = FL_CLIENT | FL_PICKUPITEMS;
568 if (autocvar__notarget)
569 this.flags |= FL_NOTARGET;
570 this.takedamage = DAMAGE_AIM;
571 this.effects = EF_TELEPORT_BIT | EF_RESTARTANIM_BIT;
574 SetResource(this, RES_SHELLS, warmup_start_ammo_shells);
575 SetResource(this, RES_BULLETS, warmup_start_ammo_nails);
576 SetResource(this, RES_ROCKETS, warmup_start_ammo_rockets);
577 SetResource(this, RES_CELLS, warmup_start_ammo_cells);
578 SetResource(this, RES_PLASMA, warmup_start_ammo_plasma);
579 SetResource(this, RES_FUEL, warmup_start_ammo_fuel);
580 SetResource(this, RES_HEALTH, warmup_start_health);
581 SetResource(this, RES_ARMOR, warmup_start_armorvalue);
582 STAT(WEAPONS, this) = WARMUP_START_WEAPONS;
584 SetResource(this, RES_SHELLS, start_ammo_shells);
585 SetResource(this, RES_BULLETS, start_ammo_nails);
586 SetResource(this, RES_ROCKETS, start_ammo_rockets);
587 SetResource(this, RES_CELLS, start_ammo_cells);
588 SetResource(this, RES_PLASMA, start_ammo_plasma);
589 SetResource(this, RES_FUEL, start_ammo_fuel);
590 SetResource(this, RES_HEALTH, start_health);
591 SetResource(this, RES_ARMOR, start_armorvalue);
592 STAT(WEAPONS, this) = start_weapons;
593 if (MUTATOR_CALLHOOK(ForbidRandomStartWeapons, this) == false)
595 GiveRandomWeapons(this, random_start_weapons_count,
596 autocvar_g_random_start_weapons, random_start_ammo);
599 SetSpectatee_status(this, 0);
601 PS(this).dual_weapons = '0 0 0';
603 if(STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS)
604 StatusEffects_apply(STATUSEFFECT_Superweapons, this, time + autocvar_g_balance_superweapons_time, 0);
606 this.items = start_items;
608 float shieldtime = time + autocvar_g_spawnshieldtime;
610 this.pauserotarmor_finished = time + autocvar_g_balance_pause_armor_rot_spawn;
611 this.pauserothealth_finished = time + autocvar_g_balance_pause_health_rot_spawn;
612 this.pauserotfuel_finished = time + autocvar_g_balance_pause_fuel_rot_spawn;
613 this.pauseregen_finished = time + autocvar_g_balance_pause_health_regen_spawn;
614 if (!sv_ready_restart_after_countdown && time < game_starttime)
616 float f = game_starttime - time;
618 this.pauserotarmor_finished += f;
619 this.pauserothealth_finished += f;
620 this.pauseregen_finished += f;
623 StatusEffects_apply(STATUSEFFECT_SpawnShield, this, shieldtime, 0);
625 this.damageforcescale = autocvar_g_player_damageforcescale;
627 this.respawn_flags = 0;
628 this.respawn_time = 0;
629 STAT(RESPAWN_TIME, this) = 0;
630 this.scale = ((q3compat && autocvar_sv_q3compat_changehitbox) ? 0.9 : autocvar_sv_player_scale);
632 this.pain_finished = 0;
634 setthink(this, func_null); // players have no think function
637 PS(this).ballistics_density = autocvar_g_ballistics_density_player;
639 this.deadflag = DEAD_NO;
641 this.angles = spot.angles;
642 this.angles_z = 0; // never spawn tilted even if the spot says to
643 if (IS_BOT_CLIENT(this))
645 this.v_angle = this.angles;
648 this.fixangle = true; // turn this way immediately
649 this.oldvelocity = this.velocity = '0 0 0';
650 this.avelocity = '0 0 0';
651 this.punchangle = '0 0 0';
652 this.punchvector = '0 0 0';
654 STAT(REVIVE_PROGRESS, this) = 0;
655 this.revival_time = 0;
657 STAT(AIR_FINISHED, this) = 0;
658 this.waterlevel = WATERLEVEL_NONE;
659 this.watertype = CONTENT_EMPTY;
661 entity spawnevent = new_pure(spawnevent);
662 spawnevent.owner = this;
663 Net_LinkEntity(spawnevent, false, 0.5, SpawnEvent_Send);
665 // Cut off any still running player sounds.
666 stopsound(this, CH_PLAYER_SINGLE);
669 FixPlayermodel(this);
670 this.drawonlytoclient = NULL;
674 for(int slot = 0; slot < MAX_AXH; ++slot)
676 entity axh = this.(AuxiliaryXhair[slot]);
677 this.(AuxiliaryXhair[slot]) = NULL;
679 if(axh.owner == this && axh != NULL && !wasfreed(axh))
683 this.spawnpoint_targ = NULL;
686 this.view_ofs = STAT(PL_VIEW_OFS, this);
687 setsize(this, STAT(PL_MIN, this), STAT(PL_MAX, this));
688 this.spawnorigin = spot.origin;
689 setorigin(this, spot.origin + '0 0 1' * (1 - this.mins.z - 24));
690 // don't reset back to last position, even if new position is stuck in solid
691 this.oldorigin = this.origin;
693 IL_REMOVE(g_conveyed, this);
694 this.conveyor = NULL; // prevent conveyors at the previous location from moving a freshly spawned player
696 IL_REMOVE(g_swamped, this);
697 this.swampslug = NULL;
698 this.swamp_interval = 0;
699 if(this.ladder_entity)
700 IL_REMOVE(g_ladderents, this);
701 this.ladder_entity = NULL;
702 IL_EACH(g_counters, it.realowner == this,
706 STAT(HUD, this) = HUD_NORMAL;
708 this.event_damage = PlayerDamage;
709 this.event_heal = PlayerHeal;
711 this.draggable = func_null;
714 IL_PUSH(g_bot_targets, this);
715 this.bot_attack = true;
716 if(!this.monster_attack)
717 IL_PUSH(g_monster_targets, this);
718 this.monster_attack = true;
719 navigation_dynamicgoal_init(this, false);
721 PHYS_INPUT_BUTTON_ATCK(this) = PHYS_INPUT_BUTTON_JUMP(this) = PHYS_INPUT_BUTTON_ATCK2(this) = false;
723 // player was spectator
724 if (CS(this).killcount == FRAGS_SPECTATOR) {
725 PlayerScore_Clear(this);
726 CS(this).killcount = 0;
727 CS(this).startplaytime = time;
730 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
732 .entity weaponentity = weaponentities[slot];
733 CL_SpawnWeaponentity(this, weaponentity);
735 this.alpha = default_player_alpha;
736 this.colormod = '1 1 1' * autocvar_g_player_brightness;
737 this.exteriorweaponentity.alpha = default_weapon_alpha;
739 this.speedrunning = false;
741 this.counter_cnt = 0;
742 this.fragsfilter_cnt = 0;
744 target_voicescript_clear(this);
746 // reset fields the weapons may use
747 FOREACH(Weapons, true, {
748 it.wr_resetplayer(it, this);
749 // reload all reloadable weapons
750 if (it.spawnflags & WEP_FLAG_RELOADABLE) {
751 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
753 .entity weaponentity = weaponentities[slot];
754 this.(weaponentity).weapon_load[it.m_id] = it.reloading_ammo;
759 Unfreeze(this, false);
761 MUTATOR_CALLHOOK(PlayerSpawn, this, spot);
764 string s = spot.target;
765 if(g_assault || g_race) // TODO: make targeting work in assault & race without this hack
766 spot.target = string_null;
767 SUB_UseTargets(spot, this, NULL);
768 if(g_assault || g_race)
772 if (autocvar_spawn_debug)
774 sprint(this, strcat("spawnpoint origin: ", vtos(spot.origin), "\n"));
775 delete(spot); // usefull for checking if there are spawnpoints, that let drop through the floor
778 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
780 .entity weaponentity = weaponentities[slot];
781 entity w_ent = this.(weaponentity);
782 if(slot == 0 || autocvar_g_weaponswitch_debug == 1)
783 w_ent.m_switchweapon = w_getbestweapon(this, weaponentity);
785 w_ent.m_switchweapon = WEP_Null;
786 w_ent.m_weapon = WEP_Null;
787 w_ent.weaponname = "";
788 w_ent.m_switchingweapon = WEP_Null;
792 MUTATOR_CALLHOOK(PlayerWeaponSelect, this);
794 if (CS(this).impulse) ImpulseCommands(this);
796 W_ResetGunAlign(this, CS_CVAR(this).cvar_cl_gunalign);
797 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
799 .entity weaponentity = weaponentities[slot];
800 W_WeaponFrame(this, weaponentity);
803 if (!warmup_stage && !this.alivetime)
804 this.alivetime = time;
806 antilag_clear(this, CS(this));
809 /** Called when a client spawns in the server */
810 void PutClientInServer(entity this)
812 if (IS_BOT_CLIENT(this)) {
813 TRANSMUTE(Player, this);
814 } else if (IS_REAL_CLIENT(this)) {
816 WriteByte(MSG_ONE, SVC_SETVIEW);
817 WriteEntity(MSG_ONE, this);
820 TRANSMUTE(Observer, this);
822 bool use_spawnpoint = (!this.enemy); // check this.enemy here since SetSpectatee will clear it
823 SetSpectatee(this, NULL);
827 PS(this).itemkeys = 0;
829 MUTATOR_CALLHOOK(PutClientInServer, this);
831 if (IS_OBSERVER(this)) {
832 PutObserverInServer(this, false, use_spawnpoint);
833 } else if (IS_PLAYER(this)) {
834 PutPlayerInServer(this);
837 bot_relinkplayerlist();
840 // TODO do we need all these fields, or should we stop autodetecting runtime
841 // changes and just have a console command to update this?
842 bool ClientInit_SendEntity(entity this, entity to, int sf)
844 WriteHeader(MSG_ENTITY, _ENT_CLIENT_INIT);
847 // MSG_INIT replacement
848 // TODO: make easier to use
850 W_PROP_reload(MSG_ONE, to);
851 ClientInit_misc(this);
852 MUTATOR_CALLHOOK(Ent_Init);
854 void ClientInit_misc(entity this)
856 int channel = MSG_ONE;
857 WriteHeader(channel, ENT_CLIENT_INIT);
858 WriteByte(channel, g_nexball_meter_period * 32);
859 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[0]));
860 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[1]));
861 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[2]));
862 WriteInt24_t(channel, compressShotOrigin(hook_shotorigin[3]));
863 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[0]));
864 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[1]));
865 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[2]));
866 WriteInt24_t(channel, compressShotOrigin(arc_shotorigin[3]));
868 if(autocvar_sv_foginterval && world.fog != "")
869 WriteString(channel, world.fog);
871 WriteString(channel, "");
872 WriteByte(channel, this.count * 255.0); // g_balance_armor_blockpercent
873 WriteByte(channel, this.cnt * 255.0); // g_balance_damagepush_speedfactor
874 WriteByte(channel, serverflags);
875 WriteCoord(channel, autocvar_g_trueaim_minrange);
878 void ClientInit_CheckUpdate(entity this)
880 this.nextthink = time;
881 if(this.count != autocvar_g_balance_armor_blockpercent)
883 this.count = autocvar_g_balance_armor_blockpercent;
886 if(this.cnt != autocvar_g_balance_damagepush_speedfactor)
888 this.cnt = autocvar_g_balance_damagepush_speedfactor;
893 void ClientInit_Spawn()
895 entity e = new_pure(clientinit);
896 setthink(e, ClientInit_CheckUpdate);
897 Net_LinkEntity(e, false, 0, ClientInit_SendEntity);
899 ClientInit_CheckUpdate(e);
909 // initialize parms for a new player
910 parm1 = -(86400 * 366);
912 MUTATOR_CALLHOOK(SetNewParms);
920 void SetChangeParms (entity this)
922 // save parms for level change
923 parm1 = CS(this).parm_idlesince - time;
925 MUTATOR_CALLHOOK(SetChangeParms);
933 void DecodeLevelParms(entity this)
936 CS(this).parm_idlesince = parm1;
937 if (CS(this).parm_idlesince == -(86400 * 366))
938 CS(this).parm_idlesince = time;
940 // whatever happens, allow 60 seconds of idling directly after connect for map loading
941 CS(this).parm_idlesince = max(CS(this).parm_idlesince, time - autocvar_sv_maxidle + 60);
943 MUTATOR_CALLHOOK(DecodeLevelParms);
946 void FixClientCvars(entity e)
948 // send prediction settings to the client
949 if(autocvar_g_antilag == 3) // client side hitscan
950 stuffcmd(e, "cl_cmd settemp cl_prydoncursor_notrace 0\n");
951 if(autocvar_sv_gentle)
952 stuffcmd(e, "cl_cmd settemp cl_gentle 1\n");
954 stuffcmd(e, sprintf("\ncl_jumpspeedcap_min \"%s\"\n", autocvar_sv_jumpspeedcap_min));
955 stuffcmd(e, sprintf("\ncl_jumpspeedcap_max \"%s\"\n", autocvar_sv_jumpspeedcap_max));
957 stuffcmd(e, sprintf("\ncl_shootfromfixedorigin \"%s\"\n", autocvar_g_shootfromfixedorigin));
959 MUTATOR_CALLHOOK(FixClientCvars, e);
962 bool findinlist_abbrev(string tofind, string list)
964 if(list == "" || tofind == "")
965 return false; // empty list or search, just return
967 // this function allows abbreviated strings!
968 FOREACH_WORD(list, it == substring(tofind, 0, strlen(it)),
976 bool PlayerInIPList(entity p, string iplist)
978 // some safety checks (never allow local?)
979 if(p.netaddress == "local" || p.netaddress == "" || !IS_REAL_CLIENT(p))
982 return findinlist_abbrev(p.netaddress, iplist);
985 bool PlayerInIDList(entity p, string idlist)
987 // NOTE: we do NOT check crypto_idfp_signed here, an unsigned ID is fine too for this
991 return findinlist_abbrev(p.crypto_idfp, idlist);
994 bool PlayerInList(entity player, string list)
996 return boolean(PlayerInIDList(player, list) || PlayerInIPList(player, list));
999 #ifdef DP_EXT_PRECONNECT
1004 Called once (not at each match start) when a client begins a connection to the server
1007 void ClientPreConnect(entity this)
1009 if(autocvar_sv_eventlog)
1011 GameLogEcho(sprintf(":connect:%d:%d:%s",
1014 ((IS_REAL_CLIENT(this)) ? this.netaddress : "bot")
1020 string GetClientVersionMessage(entity this)
1022 if (CS(this).version_mismatch) {
1023 if(CS(this).version < autocvar_gameversion) {
1024 return strcat("This is Xonotic ", autocvar_g_xonoticversion,
1025 "\n^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8");
1027 return strcat("This is Xonotic ", autocvar_g_xonoticversion,
1028 "\n^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8");
1031 return strcat("Welcome to Xonotic ", autocvar_g_xonoticversion);
1035 string getwelcomemessage(entity this)
1037 MUTATOR_CALLHOOK(BuildMutatorsPrettyString, "");
1038 string modifications = M_ARGV(0, string);
1042 if(g_weaponarena_random)
1043 modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
1045 modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
1047 else if(cvar("g_balance_blaster_weaponstartoverride") == 0)
1048 modifications = strcat(modifications, ", No start weapons");
1049 if(cvar("sv_gravity") < stof(cvar_defstring("sv_gravity")))
1050 modifications = strcat(modifications, ", Low gravity");
1051 if(g_weapon_stay && !g_cts)
1052 modifications = strcat(modifications, ", Weapons stay");
1053 if(autocvar_g_jetpack)
1054 modifications = strcat(modifications, ", Jet pack");
1055 modifications = substring(modifications, 2, strlen(modifications) - 2);
1057 string versionmessage = GetClientVersionMessage(this);
1058 string s = strcat(versionmessage, "^8\n^8\nserver is ^9", autocvar_hostname, "^8\n");
1060 s = strcat(s, "^8\nmatch type is ^1", gamemode_name, "^8\n");
1062 if(modifications != "")
1063 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
1065 if(cache_lastmutatormsg != autocvar_g_mutatormsg)
1067 strcpy(cache_lastmutatormsg, autocvar_g_mutatormsg);
1068 strcpy(cache_mutatormsg, cache_lastmutatormsg);
1071 if (cache_mutatormsg != "") {
1072 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
1075 string mutator_msg = "";
1076 MUTATOR_CALLHOOK(BuildGameplayTipsString, mutator_msg);
1077 mutator_msg = M_ARGV(0, string);
1079 s = strcat(s, mutator_msg); // trust that the mutator will do proper formatting
1081 string motd = autocvar_sv_motd;
1083 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
1092 Called when a client connects to the server
1095 void ClientConnect(entity this)
1097 if (Ban_MaybeEnforceBanOnce(this)) return;
1098 assert(!IS_CLIENT(this), return);
1099 this.flags |= FL_CLIENT;
1100 assert(player_count >= 0, player_count = 0);
1102 TRANSMUTE(Client, this);
1103 CS(this).version_nagtime = time + 10 + random() * 10;
1105 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_JOIN_CONNECT, this.netname);
1107 bot_clientconnect(this);
1109 Player_DetermineForcedTeam(this);
1111 TRANSMUTE(Observer, this);
1113 PlayerStats_GameReport_AddEvent(sprintf("kills-%d", this.playerid));
1115 // always track bots, don't ask for cl_allow_uidtracking
1116 if (IS_BOT_CLIENT(this))
1117 PlayerStats_GameReport_AddPlayer(this);
1119 CS(this).allowed_timeouts = autocvar_sv_timeout_number;
1121 if (autocvar_sv_eventlog)
1122 GameLogEcho(strcat(":join:", ftos(this.playerid), ":", ftos(etof(this)), ":", ((IS_REAL_CLIENT(this)) ? GameLog_ProcessIP(this.netaddress) : "bot"), ":", playername(this.netname, this.team, false)));
1124 CS(this).just_joined = true; // stop spamming the eventlog with additional lines when the client connects
1126 stuffcmd(this, clientstuff, "\n");
1127 stuffcmd(this, "cl_particles_reloadeffects\n"); // TODO do we still need this?
1129 FixClientCvars(this);
1131 // get version info from player
1132 stuffcmd(this, "cmd clientversion $gameversion\n");
1134 // notify about available teams
1137 entity balance = TeamBalance_CheckAllowedTeams(this);
1138 int t = TeamBalance_GetAllowedTeams(balance);
1139 TeamBalance_Destroy(balance);
1140 stuffcmd(this, sprintf("set _teams_available %d\n", t));
1144 stuffcmd(this, "set _teams_available 0\n");
1147 bot_relinkplayerlist();
1149 CS(this).spectatortime = time;
1150 if (blockSpectators)
1152 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
1155 CS(this).jointime = time;
1157 if (IS_REAL_CLIENT(this))
1159 if (g_weaponarena_weapons == WEPSET(TUBA))
1160 stuffcmd(this, "cl_cmd settemp chase_active 1\n");
1163 if (!autocvar_sv_foginterval && world.fog != "")
1164 stuffcmd(this, strcat("\nfog ", world.fog, "\nr_fog_exp2 0\nr_drawfog 1\n"));
1166 if (autocvar_sv_teamnagger && !(autocvar_bot_vs_human && AvailableTeams() == 2))
1167 if(!MUTATOR_CALLHOOK(HideTeamNagger, this))
1168 send_CSQC_teamnagger();
1170 CSQCMODEL_AUTOINIT(this);
1172 CS(this).model_randomizer = random();
1174 if (IS_REAL_CLIENT(this))
1175 sv_notice_join(this);
1177 this.move_qcphysics = autocvar_sv_qcphysics;
1179 // update physics stats (players can spawn before physics runs)
1180 Physics_UpdateStats(this);
1182 IL_EACH(g_initforplayer, it.init_for_player, {
1183 it.init_for_player(it, this);
1186 Handicap_Initialize(this);
1188 MUTATOR_CALLHOOK(ClientConnect, this);
1190 if (IS_REAL_CLIENT(this))
1192 if (!autocvar_g_campaign && !IS_PLAYER(this))
1194 CS(this).motd_actived_time = -1;
1195 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
1203 Called when a client disconnects from the server
1206 .entity chatbubbleentity;
1207 void player_powerups_remove_all(entity this);
1209 void ClientDisconnect(entity this)
1211 assert(IS_CLIENT(this), return);
1213 PlayerStats_GameReport_FinalizePlayer(this);
1214 if (this.vehicle) vehicles_exit(this.vehicle, VHEF_RELEASE);
1215 if (CS(this).active_minigame) part_minigame(this);
1216 if (IS_PLAYER(this)) Send_Effect(EFFECT_SPAWN_NEUTRAL, this.origin, '0 0 0', 1);
1218 if (autocvar_sv_eventlog)
1219 GameLogEcho(strcat(":part:", ftos(this.playerid)));
1221 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_DISCONNECT, this.netname);
1224 SetSpectatee(this, NULL);
1226 MUTATOR_CALLHOOK(ClientDisconnect, this);
1228 strfree(CS(this).netname_previous); // needs to be before the CS entity is removed!
1229 strfree(CS_CVAR(this).weaponorder_byimpulse);
1230 ClientState_detach(this);
1232 Portal_ClearAll(this);
1234 Unfreeze(this, false);
1236 RemoveGrapplingHooks(this);
1238 // Here, everything has been done that requires this player to be a client.
1240 this.flags &= ~FL_CLIENT;
1242 if (this.chatbubbleentity) delete(this.chatbubbleentity);
1243 if (this.killindicator) delete(this.killindicator);
1245 IL_EACH(g_counters, it.realowner == this,
1250 WaypointSprite_PlayerGone(this);
1252 bot_relinkplayerlist();
1254 strfree(this.clientstatus);
1255 if (this.personal) delete(this.personal);
1259 if (vote_called && IS_REAL_CLIENT(this)) VoteCount(false);
1261 player_powerups_remove_all(this); // stop powerup sound
1266 void ChatBubbleThink(entity this)
1268 this.nextthink = time;
1269 if ((this.owner.alpha < 0) || this.owner.chatbubbleentity != this)
1271 if(this.owner) // but why can that ever be NULL?
1272 this.owner.chatbubbleentity = NULL;
1279 if ( !IS_DEAD(this.owner) && IS_PLAYER(this.owner) )
1281 if ( CS(this.owner).active_minigame && PHYS_INPUT_BUTTON_MINIGAME(this.owner) )
1282 this.mdl = "models/sprites/minigame_busy.iqm";
1283 else if (PHYS_INPUT_BUTTON_CHAT(this.owner))
1284 this.mdl = "models/misc/chatbubble.spr";
1287 if ( this.model != this.mdl )
1288 _setmodel(this, this.mdl);
1292 void UpdateChatBubble(entity this)
1296 // spawn a chatbubble entity if needed
1297 if (!this.chatbubbleentity)
1299 this.chatbubbleentity = new(chatbubbleentity);
1300 this.chatbubbleentity.owner = this;
1301 this.chatbubbleentity.exteriormodeltoclient = this;
1302 setthink(this.chatbubbleentity, ChatBubbleThink);
1303 this.chatbubbleentity.nextthink = time;
1304 setmodel(this.chatbubbleentity, MDL_CHAT); // precision set below
1305 //setorigin(this.chatbubbleentity, this.origin + '0 0 15' + this.maxs_z * '0 0 1');
1306 setorigin(this.chatbubbleentity, '0 0 15' + this.maxs_z * '0 0 1');
1307 setattachment(this.chatbubbleentity, this, ""); // sticks to moving player better, also conserves bandwidth
1308 this.chatbubbleentity.mdl = this.chatbubbleentity.model;
1309 //this.chatbubbleentity.model = "";
1310 this.chatbubbleentity.effects = EF_LOWPRECISION;
1314 void calculate_player_respawn_time(entity this)
1316 if(MUTATOR_CALLHOOK(CalculateRespawnTime, this))
1319 float gametype_setting_tmp;
1320 float sdelay_max = GAMETYPE_DEFAULTED_SETTING(respawn_delay_max);
1321 float sdelay_small = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small);
1322 float sdelay_large = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large);
1323 float sdelay_small_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_small_count);
1324 float sdelay_large_count = GAMETYPE_DEFAULTED_SETTING(respawn_delay_large_count);
1325 float waves = GAMETYPE_DEFAULTED_SETTING(respawn_waves);
1327 float pcount = 1; // Include myself whether or not team is already set right and I'm a "player".
1330 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
1331 if(it.team == this.team)
1334 if (sdelay_small_count == 0)
1335 sdelay_small_count = 1;
1336 if (sdelay_large_count == 0)
1337 sdelay_large_count = 1;
1341 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
1344 if (sdelay_small_count == 0)
1346 if (IS_INDEPENDENT_PLAYER(this))
1348 // Players play independently. No point in requiring enemies.
1349 sdelay_small_count = 1;
1353 // Players play AGAINST each other. Enemies required.
1354 sdelay_small_count = 2;
1357 if (sdelay_large_count == 0)
1359 if (IS_INDEPENDENT_PLAYER(this))
1361 // Players play independently. No point in requiring enemies.
1362 sdelay_large_count = 1;
1366 // Players play AGAINST each other. Enemies required.
1367 sdelay_large_count = 2;
1374 if (pcount <= sdelay_small_count)
1375 sdelay = sdelay_small;
1376 else if (pcount >= sdelay_large_count)
1377 sdelay = sdelay_large;
1378 else // NOTE: this case implies sdelay_large_count > sdelay_small_count.
1379 sdelay = sdelay_small + (sdelay_large - sdelay_small) * (pcount - sdelay_small_count) / (sdelay_large_count - sdelay_small_count);
1382 this.respawn_time = ceil((time + sdelay) / waves) * waves;
1384 this.respawn_time = time + sdelay;
1386 if(sdelay < sdelay_max)
1387 this.respawn_time_max = time + sdelay_max;
1389 this.respawn_time_max = this.respawn_time;
1391 if((sdelay + waves >= 5.0) && (this.respawn_time - time > 1.75))
1392 this.respawn_countdown = 10; // first number to count down from is 10
1394 this.respawn_countdown = -1; // do not count down
1396 if(autocvar_g_forced_respawn)
1397 this.respawn_flags = this.respawn_flags | RESPAWN_FORCE;
1400 // LordHavoc: this hack will be removed when proper _pants/_shirt layers are
1401 // added to the model skins
1402 /*void UpdateColorModHack()
1405 c = this.clientcolors & 15;
1406 // LordHavoc: only bothering to support white, green, red, yellow, blue
1407 if (!teamplay) this.colormod = '0 0 0';
1408 else if (c == 0) this.colormod = '1.00 1.00 1.00';
1409 else if (c == 3) this.colormod = '0.10 1.73 0.10';
1410 else if (c == 4) this.colormod = '1.73 0.10 0.10';
1411 else if (c == 12) this.colormod = '1.22 1.22 0.10';
1412 else if (c == 13) this.colormod = '0.10 0.10 1.73';
1413 else this.colormod = '1 1 1';
1416 void respawn(entity this)
1418 bool damagedbycontents_prev = this.damagedbycontents;
1421 if(autocvar_g_respawn_ghosts)
1423 this.solid = SOLID_NOT;
1424 this.takedamage = DAMAGE_NO;
1425 this.damagedbycontents = false;
1426 set_movetype(this, MOVETYPE_FLY);
1427 this.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
1428 this.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3;
1429 this.effects |= CSQCMODEL_EF_RESPAWNGHOST;
1430 this.alpha = min(this.alpha, autocvar_g_respawn_ghosts_alpha);
1431 Send_Effect(EFFECT_RESPAWN_GHOST, this.origin, '0 0 0', 1);
1432 if(autocvar_g_respawn_ghosts_time > 0)
1433 SUB_SetFade(this, time + autocvar_g_respawn_ghosts_time, autocvar_g_respawn_ghosts_fadetime);
1436 SUB_SetFade (this, time, 1); // fade out the corpse immediately
1440 this.damagedbycontents = damagedbycontents_prev;
1442 this.effects |= EF_NODRAW; // prevent another CopyBody
1443 PutClientInServer(this);
1446 void play_countdown(entity this, float finished, Sound samp)
1449 if(IS_REAL_CLIENT(this))
1450 if(floor(finished - time - frametime) != floor(finished - time))
1451 if(finished - time < 6)
1452 sound (this, CH_INFO, samp, VOL_BASE, ATTEN_NORM);
1455 void player_powerups_remove_all(entity this)
1457 if (this.items & IT_SUPERWEAPON)
1459 // don't play the poweroff sound when the game restarts or the player disconnects
1460 if (time > game_starttime + 1 && IS_CLIENT(this))
1461 sound(this, CH_INFO, SND_POWEROFF, VOL_BASE, ATTEN_NORM);
1462 stopsound(this, CH_TRIGGER_SINGLE); // get rid of the pickup sound
1463 this.items -= (this.items & IT_SUPERWEAPON);
1467 void player_powerups(entity this)
1469 if((this.items & IT_USING_JETPACK) && !IS_DEAD(this) && !game_stopped)
1470 this.modelflags |= MF_ROCKET;
1472 this.modelflags &= ~MF_ROCKET;
1474 this.effects &= ~EF_NODEPTHTEST;
1477 player_powerups_remove_all(this);
1479 if((this.alpha < 0 || IS_DEAD(this)) && !this.vehicle) // don't apply the flags if the player is gibbed
1482 // add a way to see what the items were BEFORE all of these checks for the mutator hook
1483 int items_prev = this.items;
1485 if (!MUTATOR_IS_ENABLED(mutator_instagib))
1487 // NOTE: superweapons are a special case and as such are handled here instead of the status effects system
1488 if (this.items & IT_SUPERWEAPON)
1490 if (!(STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS))
1492 StatusEffects_remove(STATUSEFFECT_Superweapons, this, STATUSEFFECT_REMOVE_NORMAL);
1493 this.items = this.items - (this.items & IT_SUPERWEAPON);
1494 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_LOST, this.netname);
1495 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_LOST);
1497 else if (this.items & IT_UNLIMITED_SUPERWEAPONS)
1499 // don't let them run out
1503 play_countdown(this, StatusEffects_gettime(STATUSEFFECT_Superweapons, this), SND_POWEROFF);
1504 if (time > StatusEffects_gettime(STATUSEFFECT_Superweapons, this))
1506 this.items = this.items - (this.items & IT_SUPERWEAPON);
1507 STAT(WEAPONS, this) &= ~WEPSET_SUPERWEAPONS;
1508 //Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_BROKEN, this.netname);
1509 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_BROKEN);
1513 else if(STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS)
1515 if (time < StatusEffects_gettime(STATUSEFFECT_Superweapons, this) || (this.items & IT_UNLIMITED_SUPERWEAPONS))
1517 this.items = this.items | IT_SUPERWEAPON;
1518 if(!(this.items & IT_UNLIMITED_SUPERWEAPONS))
1521 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_SUPERWEAPON_PICKUP, this.netname);
1522 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_SUPERWEAPON_PICKUP);
1527 if(StatusEffects_active(STATUSEFFECT_Superweapons, this))
1528 StatusEffects_remove(STATUSEFFECT_Superweapons, this, STATUSEFFECT_REMOVE_TIMEOUT);
1529 STAT(WEAPONS, this) &= ~WEPSET_SUPERWEAPONS;
1532 else if(StatusEffects_active(STATUSEFFECT_Superweapons, this)) // cheaper to check than to update each frame!
1534 StatusEffects_remove(STATUSEFFECT_Superweapons, this, STATUSEFFECT_REMOVE_CLEAR);
1538 if(autocvar_g_nodepthtestplayers)
1539 this.effects = this.effects | EF_NODEPTHTEST;
1541 if(autocvar_g_fullbrightplayers)
1542 this.effects = this.effects | EF_FULLBRIGHT;
1544 MUTATOR_CALLHOOK(PlayerPowerups, this, items_prev);
1547 float CalcRegen(float current, float stable, float regenfactor, float regenframetime)
1549 if(current > stable)
1551 else if(current > stable - 0.25) // when close enough, "snap"
1554 return min(stable, current + (stable - current) * regenfactor * regenframetime);
1557 float CalcRot(float current, float stable, float rotfactor, float rotframetime)
1559 if(current < stable)
1561 else if(current < stable + 0.25) // when close enough, "snap"
1564 return max(stable, current + (stable - current) * rotfactor * rotframetime);
1567 void RotRegen(entity this, Resource res, float limit_mod,
1568 float regenstable, float regenfactor, float regenlinear, float regenframetime,
1569 float rotstable, float rotfactor, float rotlinear, float rotframetime)
1571 float old = GetResource(this, res);
1572 float current = old;
1573 if(current > rotstable)
1575 if(rotframetime > 0)
1577 current = CalcRot(current, rotstable, rotfactor, rotframetime);
1578 current = max(rotstable, current - rotlinear * rotframetime);
1581 else if(current < regenstable)
1583 if(regenframetime > 0)
1585 current = CalcRegen(current, regenstable, regenfactor, regenframetime);
1586 current = min(regenstable, current + regenlinear * regenframetime);
1590 float limit = GetResourceLimit(this, res) * limit_mod;
1595 SetResource(this, res, current);
1598 void player_regen(entity this)
1600 float max_mod, regen_mod, rot_mod, limit_mod;
1601 max_mod = regen_mod = rot_mod = limit_mod = 1;
1603 float regen_health = autocvar_g_balance_health_regen;
1604 float regen_health_linear = autocvar_g_balance_health_regenlinear;
1605 float regen_health_rot = autocvar_g_balance_health_rot;
1606 float regen_health_rotlinear = autocvar_g_balance_health_rotlinear;
1607 float regen_health_stable = autocvar_g_balance_health_regenstable;
1608 float regen_health_rotstable = autocvar_g_balance_health_rotstable;
1609 bool mutator_returnvalue = MUTATOR_CALLHOOK(PlayerRegen, this, max_mod, regen_mod, rot_mod, limit_mod, regen_health, regen_health_linear, regen_health_rot,
1610 regen_health_rotlinear, regen_health_stable, regen_health_rotstable);
1611 max_mod = M_ARGV(1, float);
1612 regen_mod = M_ARGV(2, float);
1613 rot_mod = M_ARGV(3, float);
1614 limit_mod = M_ARGV(4, float);
1615 regen_health = M_ARGV(5, float);
1616 regen_health_linear = M_ARGV(6, float);
1617 regen_health_rot = M_ARGV(7, float);
1618 regen_health_rotlinear = M_ARGV(8, float);
1619 regen_health_stable = M_ARGV(9, float);
1620 regen_health_rotstable = M_ARGV(10, float);
1622 float rotstable, regenstable, rotframetime, regenframetime;
1624 if(!mutator_returnvalue)
1625 if(!STAT(FROZEN, this))
1627 regenstable = autocvar_g_balance_armor_regenstable;
1628 rotstable = autocvar_g_balance_armor_rotstable;
1629 regenframetime = (time > this.pauseregen_finished) ? (regen_mod * frametime) : 0;
1630 rotframetime = (time > this.pauserotarmor_finished) ? (rot_mod * frametime) : 0;
1631 RotRegen(this, RES_ARMOR, limit_mod,
1632 regenstable, autocvar_g_balance_armor_regen, autocvar_g_balance_armor_regenlinear, regenframetime,
1633 rotstable, autocvar_g_balance_armor_rot, autocvar_g_balance_armor_rotlinear, rotframetime);
1635 // NOTE: max_mod is only applied to health
1636 regenstable = regen_health_stable * max_mod;
1637 rotstable = regen_health_rotstable * max_mod;
1638 regenframetime = (time > this.pauseregen_finished) ? (regen_mod * frametime) : 0;
1639 rotframetime = (time > this.pauserothealth_finished) ? (rot_mod * frametime) : 0;
1640 RotRegen(this, RES_HEALTH, limit_mod,
1641 regenstable, regen_health, regen_health_linear, regenframetime,
1642 rotstable, regen_health_rot, regen_health_rotlinear, rotframetime);
1645 // if player rotted to death... die!
1646 // check this outside above checks, as player may still be able to rot to death
1647 if(GetResource(this, RES_HEALTH) < 1)
1650 vehicles_exit(this.vehicle, VHEF_RELEASE);
1651 if(this.event_damage)
1652 this.event_damage(this, this, this, 1, DEATH_ROT.m_id, DMG_NOWEP, this.origin, '0 0 0');
1655 if (!(this.items & IT_UNLIMITED_AMMO))
1657 regenstable = autocvar_g_balance_fuel_regenstable;
1658 rotstable = autocvar_g_balance_fuel_rotstable;
1659 regenframetime = ((time > this.pauseregen_finished) && (this.items & ITEM_JetpackRegen.m_itemid)) ? frametime : 0;
1660 rotframetime = (time > this.pauserotfuel_finished) ? frametime : 0;
1661 RotRegen(this, RES_FUEL, 1,
1662 regenstable, autocvar_g_balance_fuel_regen, autocvar_g_balance_fuel_regenlinear, regenframetime,
1663 rotstable, autocvar_g_balance_fuel_rot, autocvar_g_balance_fuel_rotlinear, rotframetime);
1668 void SetZoomState(entity this, float newzoom)
1670 if(newzoom != CS(this).zoomstate)
1672 CS(this).zoomstate = newzoom;
1673 ClientData_Touch(this);
1675 zoomstate_set = true;
1678 void GetPressedKeys(entity this)
1680 MUTATOR_CALLHOOK(GetPressedKeys, this);
1683 CS(this).pressedkeys = 0;
1684 STAT(PRESSED_KEYS, this) = 0;
1688 // NOTE: GetPressedKeys and PM_dodging_GetPressedKeys use similar code
1689 int keys = STAT(PRESSED_KEYS, this);
1690 keys = BITSET(keys, KEY_FORWARD, CS(this).movement.x > 0);
1691 keys = BITSET(keys, KEY_BACKWARD, CS(this).movement.x < 0);
1692 keys = BITSET(keys, KEY_RIGHT, CS(this).movement.y > 0);
1693 keys = BITSET(keys, KEY_LEFT, CS(this).movement.y < 0);
1695 keys = BITSET(keys, KEY_JUMP, PHYS_INPUT_BUTTON_JUMP(this));
1696 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
1697 keys = BITSET(keys, KEY_ATCK, PHYS_INPUT_BUTTON_ATCK(this));
1698 keys = BITSET(keys, KEY_ATCK2, PHYS_INPUT_BUTTON_ATCK2(this));
1699 CS(this).pressedkeys = keys; // store for other users
1701 STAT(PRESSED_KEYS, this) = keys;
1705 ======================
1706 spectate mode routines
1707 ======================
1710 void SpectateCopy(entity this, entity spectatee)
1712 TC(Client, this); TC(Client, spectatee);
1714 MUTATOR_CALLHOOK(SpectateCopy, spectatee, this);
1715 PS(this) = PS(spectatee);
1716 this.armortype = spectatee.armortype;
1717 SetResourceExplicit(this, RES_ARMOR, GetResource(spectatee, RES_ARMOR));
1718 SetResourceExplicit(this, RES_CELLS, GetResource(spectatee, RES_CELLS));
1719 SetResourceExplicit(this, RES_PLASMA, GetResource(spectatee, RES_PLASMA));
1720 SetResourceExplicit(this, RES_SHELLS, GetResource(spectatee, RES_SHELLS));
1721 SetResourceExplicit(this, RES_BULLETS, GetResource(spectatee, RES_BULLETS));
1722 SetResourceExplicit(this, RES_ROCKETS, GetResource(spectatee, RES_ROCKETS));
1723 SetResourceExplicit(this, RES_FUEL, GetResource(spectatee, RES_FUEL));
1724 this.effects = spectatee.effects & EFMASK_CHEAP; // eat performance
1725 SetResourceExplicit(this, RES_HEALTH, GetResource(spectatee, RES_HEALTH));
1726 CS(this).impulse = 0;
1727 this.disableclientprediction = 1; // no need to run prediction on a spectator
1728 this.items = spectatee.items;
1729 STAT(LAST_PICKUP, this) = STAT(LAST_PICKUP, spectatee);
1730 STAT(HIT_TIME, this) = STAT(HIT_TIME, spectatee);
1731 STAT(AIR_FINISHED, this) = STAT(AIR_FINISHED, spectatee);
1732 STAT(PRESSED_KEYS, this) = STAT(PRESSED_KEYS, spectatee);
1733 STAT(WEAPONS, this) = STAT(WEAPONS, spectatee);
1734 this.punchangle = spectatee.punchangle;
1735 this.view_ofs = spectatee.view_ofs;
1736 this.velocity = spectatee.velocity;
1737 this.dmg_take = spectatee.dmg_take;
1738 this.dmg_save = spectatee.dmg_save;
1739 this.dmg_inflictor = spectatee.dmg_inflictor;
1740 this.v_angle = spectatee.v_angle;
1741 this.angles = spectatee.v_angle;
1742 STAT(FROZEN, this) = STAT(FROZEN, spectatee);
1743 STAT(REVIVE_PROGRESS, this) = STAT(REVIVE_PROGRESS, spectatee);
1744 this.viewloc = spectatee.viewloc;
1745 if(!PHYS_INPUT_BUTTON_USE(this) && STAT(CAMERA_SPECTATOR, this) != 2)
1746 this.fixangle = true;
1747 setorigin(this, spectatee.origin);
1748 setsize(this, spectatee.mins, spectatee.maxs);
1749 SetZoomState(this, CS(spectatee).zoomstate);
1751 anticheat_spectatecopy(this, spectatee);
1752 STAT(HUD, this) = STAT(HUD, spectatee);
1753 if(spectatee.vehicle)
1755 this.angles = spectatee.v_angle;
1757 //this.fixangle = false;
1758 //this.velocity = spectatee.vehicle.velocity;
1759 this.vehicle_health = spectatee.vehicle_health;
1760 this.vehicle_shield = spectatee.vehicle_shield;
1761 this.vehicle_energy = spectatee.vehicle_energy;
1762 this.vehicle_ammo1 = spectatee.vehicle_ammo1;
1763 this.vehicle_ammo2 = spectatee.vehicle_ammo2;
1764 this.vehicle_reload1 = spectatee.vehicle_reload1;
1765 this.vehicle_reload2 = spectatee.vehicle_reload2;
1767 //msg_entity = this;
1769 // WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
1770 //WriteAngle(MSG_ONE, spectatee.v_angle.x);
1771 // WriteAngle(MSG_ONE, spectatee.v_angle.y);
1772 // WriteAngle(MSG_ONE, spectatee.v_angle.z);
1774 //WriteByte (MSG_ONE, SVC_SETVIEW);
1775 // WriteEntity(MSG_ONE, this);
1776 //makevectors(spectatee.v_angle);
1777 //setorigin(this, spectatee.origin - v_forward * 400 + v_up * 300);*/
1781 bool SpectateUpdate(entity this)
1786 if(!IS_PLAYER(this.enemy) || this == this.enemy)
1788 SetSpectatee(this, NULL);
1792 SpectateCopy(this, this.enemy);
1797 bool SpectateSet(entity this)
1799 if(!IS_PLAYER(this.enemy))
1802 ClientData_Touch(this.enemy);
1805 WriteByte(MSG_ONE, SVC_SETVIEW);
1806 WriteEntity(MSG_ONE, this.enemy);
1807 set_movetype(this, MOVETYPE_NONE);
1808 accuracy_resend(this);
1810 if(!SpectateUpdate(this))
1811 PutObserverInServer(this, false, true);
1816 void SetSpectatee_status(entity this, int spectatee_num)
1818 int oldspectatee_status = CS(this).spectatee_status;
1819 CS(this).spectatee_status = spectatee_num;
1821 if (CS(this).spectatee_status != oldspectatee_status)
1823 if (STAT(PRESSED_KEYS, this))
1825 CS(this).pressedkeys = 0;
1826 STAT(PRESSED_KEYS, this) = 0;
1828 ClientData_Touch(this);
1829 if (g_race || g_cts) race_InitSpectator();
1833 void SetSpectatee(entity this, entity spectatee)
1835 if(IS_BOT_CLIENT(this))
1836 return; // bots abuse .enemy, this code is useless to them
1838 entity old_spectatee = this.enemy;
1840 this.enemy = spectatee;
1843 // these are required to fix the spectator bug with arc
1846 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1848 .entity weaponentity = weaponentities[slot];
1849 if(old_spectatee.(weaponentity).arc_beam)
1850 old_spectatee.(weaponentity).arc_beam.SendFlags |= ARC_SF_SETTINGS;
1855 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1857 .entity weaponentity = weaponentities[slot];
1858 if(spectatee.(weaponentity).arc_beam)
1859 spectatee.(weaponentity).arc_beam.SendFlags |= ARC_SF_SETTINGS;
1864 SetSpectatee_status(this, etof(spectatee));
1866 // needed to update spectator list
1867 if(old_spectatee) { ClientData_Touch(old_spectatee); }
1870 bool Spectate(entity this, entity pl)
1872 if(MUTATOR_CALLHOOK(SpectateSet, this, pl))
1874 pl = M_ARGV(1, entity);
1876 SetSpectatee(this, pl);
1877 return SpectateSet(this);
1880 bool SpectateNext(entity this)
1882 entity ent = find(this.enemy, classname, STR_PLAYER);
1884 if (MUTATOR_CALLHOOK(SpectateNext, this, ent))
1885 ent = M_ARGV(1, entity);
1887 ent = find(ent, classname, STR_PLAYER);
1889 if(ent) { SetSpectatee(this, ent); }
1891 return SpectateSet(this);
1894 bool SpectatePrev(entity this)
1896 // NOTE: chain order is from the highest to the lower entnum (unlike find)
1897 entity ent = findchain(classname, STR_PLAYER);
1898 if (!ent) // no player
1902 // skip players until current spectated player
1904 while(ent && ent != this.enemy)
1907 switch (MUTATOR_CALLHOOK(SpectatePrev, this, ent, first))
1909 case MUT_SPECPREV_FOUND:
1910 ent = M_ARGV(1, entity);
1912 case MUT_SPECPREV_RETURN:
1914 case MUT_SPECPREV_CONTINUE:
1925 SetSpectatee(this, ent);
1926 return SpectateSet(this);
1931 ShowRespawnCountdown()
1933 Update a respawn countdown display.
1936 void ShowRespawnCountdown(entity this)
1939 if(!IS_DEAD(this)) // just respawned?
1943 number = ceil(this.respawn_time - time);
1946 if(number <= this.respawn_countdown)
1948 this.respawn_countdown = number - 1;
1949 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
1950 { Send_Notification(NOTIF_ONE, this, MSG_ANNCE, Announcer_PickNumber(CNT_RESPAWN, number)); }
1955 .bool team_selected;
1956 bool ShowTeamSelection(entity this)
1958 if (!teamplay || autocvar_g_campaign || autocvar_g_balance_teams || this.team_selected || (CS(this).wasplayer && autocvar_g_changeteam_banned) || Player_HasRealForcedTeam(this))
1960 stuffcmd(this, "menu_showteamselect\n");
1963 void Join(entity this)
1965 TRANSMUTE(Player, this);
1967 if(!this.team_selected)
1968 if(autocvar_g_campaign || autocvar_g_balance_teams)
1969 TeamBalance_JoinBestTeam(this);
1971 if(autocvar_g_campaign)
1972 campaign_bots_may_start = true;
1974 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_PREVENT_JOIN);
1976 PutClientInServer(this);
1979 if(teamplay && this.team != -1)
1983 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_JOIN_PLAY, this.netname);
1984 this.team_selected = false;
1987 int GetPlayerLimit()
1990 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)
1991 int player_limit = autocvar_g_maxplayers;
1992 MUTATOR_CALLHOOK(GetPlayerLimit, player_limit);
1993 player_limit = M_ARGV(0, int);
1994 return player_limit;
1998 * Determines whether the player is allowed to join. This depends on cvar
1999 * g_maxplayers, if it isn't used this function always return true, otherwise
2000 * it checks whether the number of currently playing players exceeds g_maxplayers.
2001 * @return int number of free slots for players, 0 if none
2003 int nJoinAllowed(entity this, entity ignore)
2006 // this is called that way when checking if anyone may be able to join (to build qcstatus)
2007 // so report 0 free slots if restricted
2009 if(autocvar_g_forced_team_otherwise == "spectate")
2011 if(autocvar_g_forced_team_otherwise == "spectator")
2015 if(this && (Player_GetForcedTeamIndex(this) == TEAM_FORCE_SPECTATOR))
2016 return 0; // forced spectators can never join
2018 // TODO simplify this
2019 int totalClients = 0;
2020 int currentlyPlaying = 0;
2021 FOREACH_CLIENT(true, {
2024 if(IS_REAL_CLIENT(it) && (IS_PLAYER(it) || INGAME(it)))
2028 int player_limit = GetPlayerLimit();
2032 free_slots = maxclients - totalClients;
2033 else if(player_limit > 0 && currentlyPlaying < player_limit)
2034 free_slots = min(maxclients - totalClients, player_limit - currentlyPlaying);
2036 static float msg_time = 0;
2037 if(this && !INGAME(this) && ignore && !free_slots && time > msg_time)
2039 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_JOIN_PREVENT);
2040 msg_time = time + 0.5;
2046 void PrintWelcomeMessage(entity this)
2048 if(CS(this).motd_actived_time == 0)
2050 if (autocvar_g_campaign) {
2051 if ((IS_PLAYER(this) && PHYS_INPUT_BUTTON_INFO(this)) || (!IS_PLAYER(this))) {
2052 CS(this).motd_actived_time = time;
2053 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_CAMPAIGN_MESSAGE, Campaign_GetMessage(), Campaign_GetLevelNum());
2056 if (PHYS_INPUT_BUTTON_INFO(this)) {
2057 CS(this).motd_actived_time = time;
2058 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this));
2062 else if(CS(this).motd_actived_time > 0) // showing MOTD or campaign message
2064 if (autocvar_g_campaign) {
2065 if (PHYS_INPUT_BUTTON_INFO(this))
2066 CS(this).motd_actived_time = time;
2067 else if ((time - CS(this).motd_actived_time > 2) && IS_PLAYER(this)) { // hide it some seconds after BUTTON_INFO has been released
2068 CS(this).motd_actived_time = 0;
2069 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE);
2072 if (PHYS_INPUT_BUTTON_INFO(this))
2073 CS(this).motd_actived_time = time;
2074 else if (time - CS(this).motd_actived_time > 2) { // hide it some seconds after BUTTON_INFO has been released
2075 CS(this).motd_actived_time = 0;
2076 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
2080 else //if(CS(this).motd_actived_time < 0) // just connected, motd is active
2082 if(PHYS_INPUT_BUTTON_INFO(this)) // BUTTON_INFO hides initial MOTD
2083 CS(this).motd_actived_time = -2; // wait until BUTTON_INFO gets released
2084 else if (CS(this).motd_actived_time == -2)
2086 // instantly hide MOTD
2087 CS(this).motd_actived_time = 0;
2088 if (autocvar_g_campaign)
2089 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE);
2091 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD);
2093 else if (IS_PLAYER(this) || IS_SPEC(this))
2095 // FIXME occasionally for some reason MOTD never goes away
2096 // delay MOTD removal a little bit in the hope it fixes this bug
2097 if (CS(this).motd_actived_time == -1) // MOTD marked to fade away as soon as client becomes player or spectator
2098 CS(this).motd_actived_time = -(5 + floor(random() * 10)); // add small delay
2099 else //if (CS(this).motd_actived_time < -2)
2100 CS(this).motd_actived_time++;
2105 bool joinAllowed(entity this)
2107 if (CS(this).version_mismatch) return false;
2108 if (time < CS(this).jointime + MIN_SPEC_TIME) return false;
2109 if (!nJoinAllowed(this, this)) return false;
2110 if (teamplay && lockteams) return false;
2111 if (MUTATOR_CALLHOOK(ForbidSpawn, this)) return false;
2112 if (ShowTeamSelection(this)) return false;
2116 .string shootfromfixedorigin;
2117 .bool dualwielding_prev;
2118 bool PlayerThink(entity this)
2120 if (game_stopped || intermission_running) {
2121 this.modelflags &= ~MF_ROCKET;
2122 if(intermission_running)
2123 IntermissionThink(this);
2127 if (timeout_status == TIMEOUT_ACTIVE) {
2128 // don't allow the player to turn around while game is paused
2129 // FIXME turn this into CSQC stuff
2130 this.v_angle = this.lastV_angle;
2131 this.angles = this.lastV_angle;
2132 this.fixangle = true;
2135 if (frametime) player_powerups(this);
2137 if (IS_DEAD(this)) {
2138 if (this.personal && g_race_qualifying) {
2139 if (time > this.respawn_time) {
2140 STAT(RESPAWN_TIME, this) = this.respawn_time = time + 1; // only retry once a second
2142 CS(this).impulse = CHIMPULSE_SPEEDRUN.impulse;
2145 if (frametime) player_anim(this);
2147 if (this.respawn_flags & RESPAWN_DENY)
2149 STAT(RESPAWN_TIME, this) = 0;
2153 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));
2155 switch(this.deadflag)
2159 if ((this.respawn_flags & RESPAWN_FORCE) && !(this.respawn_time < this.respawn_time_max))
2160 this.deadflag = DEAD_RESPAWNING;
2161 else if (!button_pressed || (time >= this.respawn_time_max && (this.respawn_flags & RESPAWN_FORCE)))
2162 this.deadflag = DEAD_DEAD;
2168 this.deadflag = DEAD_RESPAWNABLE;
2169 else if (time >= this.respawn_time_max && (this.respawn_flags & RESPAWN_FORCE))
2170 this.deadflag = DEAD_RESPAWNING;
2173 case DEAD_RESPAWNABLE:
2175 if (!button_pressed || (this.respawn_flags & RESPAWN_FORCE))
2176 this.deadflag = DEAD_RESPAWNING;
2179 case DEAD_RESPAWNING:
2181 if (time > this.respawn_time)
2183 this.respawn_time = time + 1; // only retry once a second
2184 this.respawn_time_max = this.respawn_time;
2191 ShowRespawnCountdown(this);
2193 if (this.respawn_flags & RESPAWN_SILENT)
2194 STAT(RESPAWN_TIME, this) = 0;
2195 else if ((this.respawn_flags & RESPAWN_FORCE) && this.respawn_time < this.respawn_time_max)
2197 if (time < this.respawn_time)
2198 STAT(RESPAWN_TIME, this) = this.respawn_time;
2199 else if (this.deadflag != DEAD_RESPAWNING)
2200 STAT(RESPAWN_TIME, this) = -this.respawn_time_max;
2203 STAT(RESPAWN_TIME, this) = this.respawn_time;
2206 // if respawning, invert stat_respawn_time to indicate this, the client translates it
2207 if (this.deadflag == DEAD_RESPAWNING && STAT(RESPAWN_TIME, this) > 0)
2208 STAT(RESPAWN_TIME, this) *= -1;
2213 FixPlayermodel(this);
2215 if (this.shootfromfixedorigin != autocvar_g_shootfromfixedorigin) {
2216 this.shootfromfixedorigin = autocvar_g_shootfromfixedorigin;
2217 stuffcmd(this, sprintf("\ncl_shootfromfixedorigin \"%s\"\n", autocvar_g_shootfromfixedorigin));
2220 // reset gun alignment when dual wielding status changes
2221 // to ensure guns are always aligned right and left
2222 bool dualwielding = W_DualWielding(this);
2223 if(this.dualwielding_prev != dualwielding)
2225 W_ResetGunAlign(this, CS_CVAR(this).cvar_cl_gunalign);
2226 this.dualwielding_prev = dualwielding;
2229 // LordHavoc: allow firing on move frames (sub-ticrate), this gives better timing on slow servers
2232 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2234 .entity weaponentity = weaponentities[slot];
2235 if(WEP_CVAR(vortex, charge_always))
2236 W_Vortex_Charge(this, weaponentity, frametime);
2237 W_WeaponFrame(this, weaponentity);
2243 // WEAPONTODO: Add a weapon request for this
2244 // rot vortex charge to the charge limit
2245 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2247 .entity weaponentity = weaponentities[slot];
2248 if (WEP_CVAR(vortex, charge_rot_rate) && this.(weaponentity).vortex_charge > WEP_CVAR(vortex, charge_limit) && this.(weaponentity).vortex_charge_rottime < time)
2249 this.(weaponentity).vortex_charge = bound(WEP_CVAR(vortex, charge_limit), this.(weaponentity).vortex_charge - WEP_CVAR(vortex, charge_rot_rate) * frametime / W_TICSPERFRAME, 1);
2254 this.dmg_team = max(0, this.dmg_team - autocvar_g_teamdamage_resetspeed * frametime);
2257 monsters_setstatus(this);
2262 .bool would_spectate;
2263 // merged SpectatorThink and ObserverThink (old names are here so you can grep for them)
2264 void ObserverOrSpectatorThink(entity this)
2266 bool is_spec = IS_SPEC(this);
2267 if ( CS(this).impulse )
2269 int r = MinigameImpulse(this, CS(this).impulse);
2271 CS(this).impulse = 0;
2273 if (is_spec && CS(this).impulse == IMP_weapon_drop.impulse)
2275 STAT(CAMERA_SPECTATOR, this) = (STAT(CAMERA_SPECTATOR, this) + 1) % 3;
2276 CS(this).impulse = 0;
2281 if (this.flags & FL_JUMPRELEASED) {
2282 if (PHYS_INPUT_BUTTON_JUMP(this) && (joinAllowed(this) || time < CS(this).jointime + MIN_SPEC_TIME)) {
2283 this.flags &= ~FL_JUMPRELEASED;
2284 this.flags |= FL_SPAWNING;
2285 } 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)))
2286 || (!is_spec && ((PHYS_INPUT_BUTTON_ATCK(this) && !CS(this).version_mismatch) || this.would_spectate))) {
2287 this.flags &= ~FL_JUMPRELEASED;
2288 if(SpectateNext(this)) {
2289 TRANSMUTE(Spectator, this);
2290 } else if (is_spec) {
2291 TRANSMUTE(Observer, this);
2292 PutClientInServer(this);
2295 this.would_spectate = false; // unable to spectate anyone
2297 CS(this).impulse = 0;
2298 } else if (is_spec) {
2299 if(CS(this).impulse == 12 || CS(this).impulse == 16 || CS(this).impulse == 19 || (CS(this).impulse >= 220 && CS(this).impulse <= 229)) {
2300 this.flags &= ~FL_JUMPRELEASED;
2301 if(SpectatePrev(this)) {
2302 TRANSMUTE(Spectator, this);
2304 TRANSMUTE(Observer, this);
2305 PutClientInServer(this);
2307 CS(this).impulse = 0;
2308 } else if(PHYS_INPUT_BUTTON_ATCK2(this)) {
2309 this.would_spectate = false;
2310 this.flags &= ~FL_JUMPRELEASED;
2311 TRANSMUTE(Observer, this);
2312 PutClientInServer(this);
2313 } else if(!SpectateUpdate(this) && !SpectateNext(this)) {
2314 PutObserverInServer(this, false, true);
2315 this.would_spectate = true;
2319 bool wouldclip = CS_CVAR(this).cvar_cl_clippedspectating;
2320 if (PHYS_INPUT_BUTTON_USE(this))
2321 wouldclip = !wouldclip;
2322 int preferred_movetype = (wouldclip ? MOVETYPE_FLY_WORLDONLY : MOVETYPE_NOCLIP);
2323 set_movetype(this, preferred_movetype);
2325 } else { // jump pressed
2326 if ((is_spec && !(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_ATCK2(this)))
2327 || (!is_spec && !(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this)))) {
2328 this.flags |= FL_JUMPRELEASED;
2329 if(this.flags & FL_SPAWNING)
2331 this.flags &= ~FL_SPAWNING;
2332 if(joinAllowed(this))
2334 else if(time < CS(this).jointime + MIN_SPEC_TIME)
2335 CS(this).autojoin_checked = -1;
2339 if(is_spec && !SpectateUpdate(this))
2340 PutObserverInServer(this, false, true);
2343 this.flags |= FL_CLIENT | FL_NOTARGET;
2346 void PlayerUseKey(entity this)
2348 if (!IS_PLAYER(this))
2355 vehicles_exit(this.vehicle, VHEF_NORMAL);
2359 else if(autocvar_g_vehicles_enter)
2361 if(!game_stopped && !STAT(FROZEN, this) && !IS_DEAD(this) && !IS_INDEPENDENT_PLAYER(this))
2363 entity head, closest_target = NULL;
2364 head = WarpZone_FindRadius(this.origin, autocvar_g_vehicles_enter_radius, true);
2366 while(head) // find the closest acceptable target to enter
2368 if(IS_VEHICLE(head) && !IS_DEAD(head) && head.takedamage != DAMAGE_NO)
2369 if(!head.owner || ((head.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(head.owner, this)))
2373 if(vlen2(this.origin - head.origin) < vlen2(this.origin - closest_target.origin))
2374 { closest_target = head; }
2376 else { closest_target = head; }
2382 if(closest_target) { vehicles_enter(this, closest_target); return; }
2386 // a use key was pressed; call handlers
2387 MUTATOR_CALLHOOK(PlayerUseKey, this);
2395 Called every frame for each client before the physics are run
2398 .float last_vehiclecheck;
2399 void PlayerPreThink (entity this)
2401 STAT(GUNALIGN, this) = CS_CVAR(this).cvar_cl_gunalign; // TODO
2402 STAT(MOVEVARS_CL_TRACK_CANJUMP, this) = CS_CVAR(this).cvar_cl_movement_track_canjump;
2404 WarpZone_PlayerPhysics_FixVAngle(this);
2407 // physics frames: update anticheat stuff
2408 anticheat_prethink(this);
2410 // WORKAROUND: only use dropclient in server frames (frametime set).
2411 // Never use it in cl_movement frames (frametime zero).
2412 if (blockSpectators && IS_REAL_CLIENT(this)
2413 && (IS_SPEC(this) || IS_OBSERVER(this)) && !INGAME(this)
2414 && time > (CS(this).spectatortime + autocvar_g_maxplayers_spectator_blocktime))
2416 if (dropclient_schedule(this))
2417 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_QUIT_KICK_SPECTATING);
2421 zoomstate_set = false;
2423 // Check for nameless players
2424 if (this.netname == "" || this.netname != CS(this).netname_previous)
2426 bool assume_unchanged = (CS(this).netname_previous == "");
2427 if (autocvar_sv_name_maxlength > 0 && strlennocol(this.netname) > autocvar_sv_name_maxlength)
2429 int new_length = textLengthUpToLength(this.netname, autocvar_sv_name_maxlength, strlennocol);
2430 this.netname = strzone(strcat(substring(this.netname, 0, new_length), "^7"));
2431 sprint(this, sprintf("Warning: your name is longer than %d characters, it has been truncated.\n", autocvar_sv_name_maxlength));
2432 assume_unchanged = false;
2433 // stuffcmd(this, strcat("name ", this.netname, "\n")); // maybe?
2435 if (isInvisibleString(this.netname))
2437 this.netname = strzone(sprintf("Player#%d", this.playerid));
2438 sprint(this, "Warning: invisible names are not allowed.\n");
2439 assume_unchanged = false;
2440 // stuffcmd(this, strcat("name ", this.netname, "\n")); // maybe?
2442 if (!assume_unchanged && autocvar_sv_eventlog)
2443 GameLogEcho(strcat(":name:", ftos(this.playerid), ":", playername(this.netname, this.team, false)));
2444 strcpy(CS(this).netname_previous, this.netname);
2448 if (CS(this).version_nagtime && CS_CVAR(this).cvar_g_xonoticversion && time > CS(this).version_nagtime) {
2449 CS(this).version_nagtime = 0;
2450 if (strstrofs(CS_CVAR(this).cvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(CS_CVAR(this).cvar_g_xonoticversion, "autobuild", 0) >= 0) {
2452 } else if (strstrofs(autocvar_g_xonoticversion, "git", 0) >= 0 || strstrofs(autocvar_g_xonoticversion, "autobuild", 0) >= 0) {
2454 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_BETA, autocvar_g_xonoticversion, CS_CVAR(this).cvar_g_xonoticversion);
2456 int r = vercmp(CS_CVAR(this).cvar_g_xonoticversion, autocvar_g_xonoticversion);
2457 if (r < 0) { // old client
2458 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OUTDATED, autocvar_g_xonoticversion, CS_CVAR(this).cvar_g_xonoticversion);
2459 } else if (r > 0) { // old server
2460 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_VERSION_OLD, autocvar_g_xonoticversion, CS_CVAR(this).cvar_g_xonoticversion);
2466 if (!(this.flags & FL_GODMODE) && this.max_armorvalue)
2468 Send_Notification(NOTIF_ONE_ONLY, this, MSG_INFO, INFO_GODMODE_OFF, this.max_armorvalue);
2469 this.max_armorvalue = 0;
2472 if (frametime && IS_PLAYER(this) && time >= game_starttime)
2474 if (STAT(FROZEN, this) == FROZEN_TEMP_REVIVING)
2476 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) + frametime * this.revive_speed, 1);
2477 SetResourceExplicit(this, RES_HEALTH, max(1, STAT(REVIVE_PROGRESS, this) * start_health));
2479 this.iceblock.alpha = bound(0.2, 1 - STAT(REVIVE_PROGRESS, this), 1);
2481 if (STAT(REVIVE_PROGRESS, this) >= 1)
2482 Unfreeze(this, false);
2484 else if (STAT(FROZEN, this) == FROZEN_TEMP_DYING)
2486 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) - frametime * this.revive_speed, 1);
2487 SetResourceExplicit(this, RES_HEALTH, max(0, autocvar_g_nades_ice_health + (start_health-autocvar_g_nades_ice_health) * STAT(REVIVE_PROGRESS, this)));
2489 if (GetResource(this, RES_HEALTH) < 1)
2492 vehicles_exit(this.vehicle, VHEF_RELEASE);
2493 if(this.event_damage)
2494 this.event_damage(this, this, this.frozen_by, 1, DEATH_NADE_ICE_FREEZE.m_id, DMG_NOWEP, this.origin, '0 0 0');
2496 else if (STAT(REVIVE_PROGRESS, this) <= 0)
2497 Unfreeze(this, false);
2501 MUTATOR_CALLHOOK(PlayerPreThink, this);
2503 if(autocvar_g_vehicles_enter && (time > this.last_vehiclecheck) && !game_stopped && !this.vehicle)
2504 if(IS_PLAYER(this) && !STAT(FROZEN, this) && !IS_DEAD(this) && !IS_INDEPENDENT_PLAYER(this))
2506 FOREACH_ENTITY_RADIUS(this.origin, autocvar_g_vehicles_enter_radius, IS_VEHICLE(it) && !IS_DEAD(it) && it.takedamage != DAMAGE_NO,
2510 if(!it.team || SAME_TEAM(this, it))
2511 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER);
2512 else if(autocvar_g_vehicles_steal)
2513 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_STEAL);
2515 else if((it.vehicle_flags & VHF_MULTISLOT) && SAME_TEAM(it.owner, this))
2517 Send_Notification(NOTIF_ONE, this, MSG_CENTER, CENTER_VEHICLE_ENTER_GUNNER);
2521 this.last_vehiclecheck = time + 1;
2524 if(PHYS_INPUT_BUTTON_USE(this) && !CS(this).usekeypressed)
2526 CS(this).usekeypressed = PHYS_INPUT_BUTTON_USE(this);
2528 if (IS_REAL_CLIENT(this))
2529 PrintWelcomeMessage(this);
2531 if (IS_PLAYER(this)) {
2532 if (IS_REAL_CLIENT(this) && time < CS(this).jointime + MIN_SPEC_TIME)
2533 error("Client can't be spawned as player on connection!");
2534 if(!PlayerThink(this))
2537 else if (game_stopped || intermission_running) {
2538 if(intermission_running)
2539 IntermissionThink(this);
2542 else if (IS_REAL_CLIENT(this) && CS(this).autojoin_checked <= 0 && time >= CS(this).jointime + MIN_SPEC_TIME)
2544 bool early_join_requested = (CS(this).autojoin_checked < 0);
2545 CS(this).autojoin_checked = 1;
2546 // don't do this in ClientConnect
2547 // many things can go wrong if a client is spawned as player on connection
2548 if (early_join_requested || MUTATOR_CALLHOOK(AutoJoinOnConnection, this)
2549 || (!(autocvar_sv_spectate || autocvar_g_campaign || (Player_GetForcedTeamIndex(this) == TEAM_FORCE_SPECTATOR))
2550 && (!teamplay || autocvar_g_balance_teams)))
2552 campaign_bots_may_start = true;
2553 if(joinAllowed(this))
2558 else if (IS_OBSERVER(this) || IS_SPEC(this)) {
2559 ObserverOrSpectatorThink(this);
2562 // WEAPONTODO: Add weapon request for this
2563 if (!zoomstate_set) {
2564 bool wep_zoomed = false;
2565 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
2567 .entity weaponentity = weaponentities[slot];
2568 Weapon thiswep = this.(weaponentity).m_weapon;
2569 if(thiswep != WEP_Null && thiswep.wr_zoom)
2570 wep_zoomed += thiswep.wr_zoom(thiswep, this);
2572 SetZoomState(this, PHYS_INPUT_BUTTON_ZOOM(this) || PHYS_INPUT_BUTTON_ZOOMSCRIPT(this) || wep_zoomed);
2575 if (CS(this).teamkill_soundtime && time > CS(this).teamkill_soundtime)
2577 CS(this).teamkill_soundtime = 0;
2579 entity e = CS(this).teamkill_soundsource;
2580 entity oldpusher = e.pusher;
2582 PlayerSound(e, playersound_teamshoot, CH_VOICE, VOL_BASEVOICE, VOICETYPE_LASTATTACKER_ONLY);
2583 e.pusher = oldpusher;
2586 if (CS(this).taunt_soundtime && time > CS(this).taunt_soundtime) {
2587 CS(this).taunt_soundtime = 0;
2588 PlayerSound(this, playersound_taunt, CH_VOICE, VOL_BASEVOICE, VOICETYPE_AUTOTAUNT);
2591 target_voicescript_next(this);
2594 void DrownPlayer(entity this)
2596 if(IS_DEAD(this) || game_stopped || time < game_starttime || this.vehicle
2597 || STAT(FROZEN, this) || this.watertype != CONTENT_WATER)
2599 STAT(AIR_FINISHED, this) = 0;
2603 if (this.waterlevel != WATERLEVEL_SUBMERGED)
2605 if(STAT(AIR_FINISHED, this) && STAT(AIR_FINISHED, this) < time)
2606 PlayerSound(this, playersound_gasp, CH_PLAYER, VOL_BASE, VOICETYPE_PLAYERSOUND);
2607 STAT(AIR_FINISHED, this) = 0;
2611 if (!STAT(AIR_FINISHED, this))
2612 STAT(AIR_FINISHED, this) = time + autocvar_g_balance_contents_drowndelay;
2613 if (STAT(AIR_FINISHED, this) < time)
2615 if (this.pain_finished < time)
2617 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');
2618 this.pain_finished = time + 0.5;
2624 .bool move_qcphysics;
2626 void Player_Physics(entity this)
2628 this.movetype = (this.move_qcphysics) ? MOVETYPE_QCPLAYER : this.move_movetype;
2630 if(!this.move_qcphysics)
2633 if(!frametime && !CS(this).pm_frametime)
2636 Movetype_Physics_NoMatchTicrate(this, CS(this).pm_frametime, true);
2638 CS(this).pm_frametime = 0;
2645 Called every frame for each client after the physics are run
2648 void PlayerPostThink (entity this)
2650 Player_Physics(this);
2652 if (autocvar_sv_maxidle > 0 || (IS_PLAYER(this) && autocvar_sv_maxidle_playertospectator > 0))
2653 if (frametime) // WORKAROUND: only use dropclient in server frames (frametime set). Never use it in cl_movement frames (frametime zero).
2654 if (IS_REAL_CLIENT(this))
2655 if (IS_PLAYER(this) || autocvar_sv_maxidle_alsokickspectators)
2656 if (!intermission_running) // NextLevel() kills all centerprints after setting this true
2658 int totalClients = 0;
2659 if(autocvar_sv_maxidle > 0 && autocvar_sv_maxidle_slots > 0)
2661 // maxidle disabled in local matches by not counting clients (totalClients 0)
2662 if (server_is_dedicated)
2664 FOREACH_CLIENT(IS_REAL_CLIENT(it) || autocvar_sv_maxidle_slots_countbots,
2668 if (maxclients - totalClients > autocvar_sv_maxidle_slots)
2672 else if (IS_PLAYER(this) && autocvar_sv_maxidle_playertospectator > 0)
2674 FOREACH_CLIENT(IS_REAL_CLIENT(it),
2680 if (totalClients < autocvar_sv_maxidle_minplayers)
2682 // idle kick disabled
2683 CS(this).parm_idlesince = time;
2685 else if (time - CS(this).parm_idlesince < 1) // instead of (time == this.parm_idlesince) to support sv_maxidle <= 10
2687 if (CS(this).idlekick_lasttimeleft)
2689 CS(this).idlekick_lasttimeleft = 0;
2690 Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_IDLING);
2695 float maxidle_time = autocvar_sv_maxidle;
2696 if (IS_PLAYER(this) && autocvar_sv_maxidle_playertospectator > 0)
2697 maxidle_time = autocvar_sv_maxidle_playertospectator;
2698 float timeleft = ceil(maxidle_time - (time - CS(this).parm_idlesince));
2699 float countdown_time = max(min(10, maxidle_time - 1), ceil(maxidle_time * 0.33)); // - 1 to support maxidle_time <= 10
2700 if (timeleft == countdown_time && !CS(this).idlekick_lasttimeleft)
2702 if (IS_PLAYER(this) && autocvar_sv_maxidle_playertospectator > 0)
2703 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOVETOSPEC_IDLING, timeleft);
2705 Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_DISCONNECT_IDLING, timeleft);
2707 if (timeleft <= 0) {
2708 if (IS_PLAYER(this) && autocvar_sv_maxidle_playertospectator > 0)
2710 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_MOVETOSPEC_IDLING, this.netname, maxidle_time);
2711 PutObserverInServer(this, true, true);
2715 if (dropclient_schedule(this))
2716 Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_QUIT_KICK_IDLING, this.netname, maxidle_time);
2720 else if (timeleft <= countdown_time) {
2721 if (timeleft != CS(this).idlekick_lasttimeleft)
2722 play2(this, SND(TALK2));
2723 CS(this).idlekick_lasttimeleft = timeleft;
2732 this.solid = SOLID_NOT;
2733 this.takedamage = DAMAGE_NO;
2734 set_movetype(this, MOVETYPE_NONE);
2735 CS(this).teamkill_complain = 0;
2736 CS(this).teamkill_soundtime = 0;
2737 CS(this).teamkill_soundsource = NULL;
2740 if (IS_PLAYER(this)) {
2741 if(this.death_time == time && IS_DEAD(this))
2743 // player's bbox gets resized now, instead of in the damage event that killed the player,
2744 // once all the damage events of this frame have been processed with normal size
2746 setsize(this, this.mins, this.maxs);
2749 UpdateChatBubble(this);
2750 if (CS(this).impulse) ImpulseCommands(this);
2751 GetPressedKeys(this);
2754 CSQCMODEL_AUTOUPDATE(this);
2758 else if (IS_OBSERVER(this) && STAT(PRESSED_KEYS, this))
2760 CS(this).pressedkeys = 0;
2761 STAT(PRESSED_KEYS, this) = 0;
2764 if (this.waypointsprite_attachedforcarrier) {
2765 float hp = healtharmor_maxdamage(GetResource(this, RES_HEALTH), GetResource(this, RES_ARMOR), autocvar_g_balance_armor_blockpercent, DEATH_WEAPON.m_id).x;
2766 WaypointSprite_UpdateHealth(this.waypointsprite_attachedforcarrier, hp);
2769 CSQCMODEL_AUTOUPDATE(this);
2772 // hack to copy the button fields from the client entity to the Client State
2773 void PM_UpdateButtons(entity this, entity store)
2776 store.impulse = this.impulse;
2779 bool typing = this.buttonchat || this.button12;
2781 store.button0 = (typing) ? 0 : this.button0;
2783 store.button2 = (typing) ? 0 : this.button2;
2784 store.button3 = (typing) ? 0 : this.button3;
2785 store.button4 = this.button4;
2786 store.button5 = (typing) ? 0 : this.button5;
2787 store.button6 = this.button6;
2788 store.button7 = this.button7;
2789 store.button8 = this.button8;
2790 store.button9 = this.button9;
2791 store.button10 = this.button10;
2792 store.button11 = this.button11;
2793 store.button12 = this.button12;
2794 store.button13 = this.button13;
2795 store.button14 = this.button14;
2796 store.button15 = this.button15;
2797 store.button16 = this.button16;
2798 store.buttonuse = this.buttonuse;
2799 store.buttonchat = this.buttonchat;
2801 store.cursor_active = this.cursor_active;
2802 store.cursor_screen = this.cursor_screen;
2803 store.cursor_trace_start = this.cursor_trace_start;
2804 store.cursor_trace_endpos = this.cursor_trace_endpos;
2805 store.cursor_trace_ent = this.cursor_trace_ent;
2807 store.ping = this.ping;
2808 store.ping_packetloss = this.ping_packetloss;
2809 store.ping_movementloss = this.ping_movementloss;
2811 store.v_angle = this.v_angle;
2812 store.movement = this.movement;
2815 NET_HANDLE(fpsreport, bool)
2817 int fps = ReadShort();
2818 PlayerScore_Set(sender, SP_FPS, fps);