3 void Inventory_new(entity this);
4 void Inventory_delete(entity this);
6 void PlayerState_attach(entity this)
8 this._ps = NEW(PlayerState, this);
13 void PlayerState_detach(entity this)
15 PlayerState ps = PS(this);
16 if (!ps) return; // initial connect
19 if (ps.m_client != this) return; // don't own state, spectator
21 FOREACH_CLIENT(PS(it) == ps, { PS(it) = NULL; });
24 Inventory_delete(this);
27 void GetCvars(entity this, int);
28 void DecodeLevelParms(entity this);
29 void PlayerScore_Attach(entity this);
30 void ClientData_Attach(entity this);
31 void accuracy_init(entity this);
32 void entcs_attach(entity this);
33 void playerdemo_init(entity this);
34 void anticheat_init(entity this);
35 void W_HitPlotOpen(entity this);
36 void bot_clientconnect(entity this);
38 void ClientState_attach(entity this)
40 this._cs = NEW(ClientState, this);
42 GetCvars(this, 0); // get other cvars from player
44 // TODO: fold all of these into ClientState
46 DecodeLevelParms(this);
48 PlayerScore_Attach(this);
49 PlayerStats_PlayerBasic_CheckUpdate(this);
50 ClientData_Attach(this);
53 playerdemo_init(this);
57 bot_clientconnect(this);
60 void bot_clientdisconnect(entity this);
61 void W_HitPlotClose(entity this);
62 void anticheat_report(entity this);
63 void playerdemo_shutdown(entity this);
64 void entcs_detach(entity this);
65 void accuracy_free(entity this);
66 void ClientData_Detach(entity this);
67 void PlayerScore_Detach(entity this);
69 void ClientState_detach(entity this)
74 GetCvars(this, -1); // free cvars
76 bot_clientdisconnect(this);
79 anticheat_report(this);
80 playerdemo_shutdown(this);
83 ClientData_Detach(this);
84 PlayerScore_Detach(this);