]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/playerstats.qh
Merge remote-tracking branch 'origin/zykure/teamscores'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / playerstats.qh
1 // time the player was alive and kicking
2 string PLAYERSTATS_ALIVETIME  = "alivetime";
3 string PLAYERSTATS_AVGLATENCY = "avglatency";
4 string PLAYERSTATS_WINS = "wins";
5 string PLAYERSTATS_MATCHES = "matches";
6 string PLAYERSTATS_JOINS = "joins";
7 string PLAYERSTATS_SCOREBOARD_VALID = "scoreboardvalid";
8 string PLAYERSTATS_RANK = "rank";
9 string PLAYERSTATS_SCOREBOARD_POS = "scoreboardpos";
10
11 string PLAYERSTATS_TOTAL = "total-";
12 string PLAYERSTATS_SCOREBOARD = "scoreboard-";
13
14 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_3 = "achievement-kill-spree-3";
15 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_5 = "achievement-kill-spree-5";
16 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_10 = "achievement-kill-spree-10";
17 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_15 = "achievement-kill-spree-15";
18 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_20 = "achievement-kill-spree-20";
19 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_25 = "achievement-kill-spree-25";
20 string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_30 = "achievement-kill-spree-30";
21 string PLAYERSTATS_ACHIEVEMENT_BOTLIKE = "achievement-botlike";
22 string PLAYERSTATS_ACHIEVEMENT_FIRSTBLOOD = "achievement-firstblood";
23 string PLAYERSTATS_ACHIEVEMENT_FIRSTVICTIM = "achievement-firstvictim";
24
25 // delay map switch until this is set
26 float playerstats_waitforme;
27
28 // call at initialization
29 void PlayerStats_Init();
30
31 // add a new player
32 void PlayerStats_AddPlayer(entity e);
33
34 // add a new team
35 void PlayerStats_AddTeam(float t);
36
37 // add a new event
38 void PlayerStats_AddEvent(string event_id);
39
40 // call on each event to track, or at player disconnect OR match end for "global stuff"
41 float PlayerStats_Event(entity e, string event_id, float value);
42
43 // add a team score
44 float PlayerStats_TeamScore(float t, string event_id, float value);
45
46 // call at game over
47 void PlayerStats_Shutdown(); // send stats to the server
48
49 // call this whenever a player leaves
50 void PlayerStats_AddGlobalInfo(entity p);
51
52 // call this at the end of the match
53 void PlayerStats_EndMatch(float finished);