]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/client.qh
Port pm_frametime to ClientState
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / client.qh
1 #pragma once
2
3 void ClientState_attach(entity this);
4
5 IntrusiveList g_players;
6 STATIC_INIT(g_players) { g_players = IL_NEW(); }
7
8 CLASS(Client, Object)
9     /** Client name */
10     ATTRIB(Client, netname, string, this.netname);
11     ATTRIB(Client, colormap, int, this.colormap);
12     ATTRIB(Client, team, int, this.team);
13     ATTRIB(Client, clientcolors, int, this.clientcolors);
14     /** Client IP */
15     ATTRIB(Client, netaddress, string, this.netaddress);
16     ATTRIB(Client, playermodel, string, this.playermodel);
17     ATTRIB(Client, playerskin, int, this.playerskin);
18
19     /** fingerprint of CA key the player used to authenticate */
20     ATTRIB(Client, crypto_keyfp, string, this.crypto_keyfp);
21     /** fingerprint of CA key the server used to authenticate to the player */
22     ATTRIB(Client, crypto_mykeyfp, string, this.crypto_mykeyfp);
23     /** fingerprint of ID used by the player entity, or string_null if not identified */
24     ATTRIB(Client, crypto_idfp, string, this.crypto_idfp);
25     /** set if the player's ID has been signed */
26     ATTRIB(Client, crypto_idfp_signed, bool, this.crypto_idfp_signed);
27     /** the string "AES128" if encrypting, and string_null if plaintext */
28     ATTRIB(Client, crypto_encryptmethod, string, this.crypto_encryptmethod);
29     /** the string "HMAC-SHA256" if signing, and string_null if plaintext */
30     ATTRIB(Client, crypto_signmethod, string, this.crypto_signmethod);
31
32     // custom
33
34     ATTRIB(Client, playerid, int, this.playerid);
35
36     ATTRIB(Client, parm_idlesince, int, this.parm_idlesince);
37     ATTRIB(Client, muted, bool, this.muted);
38     ATTRIB(Client, killindicator_teamchange, int, this.killindicator_teamchange);
39     ATTRIB(Client, idlekick_lasttimeleft, float, this.idlekick_lasttimeleft);
40     ATTRIB(Client, pm_frametime, float, this.pm_frametime);
41
42     METHOD(Client, m_unwind, bool(Client this));
43
44     STATIC_METHOD(Client, Add, void(Client this, int _team));
45     STATIC_METHOD(Client, Remove, void(Client this));
46
47     INIT(Client) {
48         if (this.m_unwind(this)) return this;
49         make_impure(this);
50         this.classname = "player_joining";
51         static int playerid_last;
52         this.playerid = ++playerid_last;
53         ClientState_attach(this);
54     }
55     DESTRUCTOR(Client) {
56         Client_Remove(this);
57     }
58     CONSTRUCTOR(Client, string name) {
59         CONSTRUCT(Client);
60         this.netname = name;
61         this.netaddress = "local";
62         this.playermodel = cvar_defstring("sv_defaultplayermodel");
63     }
64 ENDCLASS(Client)
65
66 CLASS(Observer, Client)
67     INIT(Observer) {
68         this.classname = STR_OBSERVER;
69     }
70     DESTRUCTOR(Observer) { }
71 ENDCLASS(Observer)
72
73 CLASS(Spectator, Client)
74     INIT(Spectator) {
75         this.classname = STR_SPECTATOR;
76     }
77     DESTRUCTOR(Spectator) { }
78 ENDCLASS(Spectator)
79
80 CLASS(Player, Client)
81     INIT(Player) {
82         this.classname = STR_PLAYER;
83         IL_PUSH(g_players, this);
84     }
85     DESTRUCTOR(Player) {
86         IL_REMOVE(g_players, this);
87     }
88 ENDCLASS(Player)
89
90 METHOD(Client, m_unwind, bool(Client this))
91 {
92     TC(Client, this);
93     #define UNWIND(class) MACRO_BEGIN if (this.instanceOf##class) { METHOD_REFERENCE(class, dtorimpl)(this); } MACRO_END
94     switch (this.classname) {
95         case "Observer":
96             UNWIND(Spectator);
97             UNWIND(Player);
98             return true;
99         case "Spectator":
100             UNWIND(Observer);
101             UNWIND(Player);
102             return true;
103         case "Player":
104             UNWIND(Observer);
105             UNWIND(Spectator);
106             return true;
107     }
108     #undef UNWIND
109     return false;
110 }
111
112 float c1, c2, c3, c4;
113
114 void play_countdown(entity this, float finished, Sound samp);
115
116 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit);
117
118 bool Spectate(entity this, entity pl);
119
120 #define SPECTATE_COPY() [[accumulate]] void SpectateCopy(entity this, entity spectatee)
121 #define SPECTATE_COPYFIELD(fld) SPECTATE_COPY() { this.(fld) = spectatee.(fld); }