]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/playerstats.qh
Rename playerstats_waitforme to PlayerStats_GameReport_DelayMapVote
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / playerstats.qh
1 #ifdef SVQC
2
3 // time the player was alive and kicking
4 const string PLAYERSTATS_ALIVETIME  = "alivetime";
5 const string PLAYERSTATS_AVGLATENCY = "avglatency";
6 const string PLAYERSTATS_WINS = "wins";
7 const string PLAYERSTATS_MATCHES = "matches";
8 const string PLAYERSTATS_JOINS = "joins";
9 const string PLAYERSTATS_SCOREBOARD_VALID = "scoreboardvalid";
10 const string PLAYERSTATS_RANK = "rank";
11 const string PLAYERSTATS_SCOREBOARD_POS = "scoreboardpos";
12
13 const string PLAYERSTATS_TOTAL = "total-";
14 const string PLAYERSTATS_SCOREBOARD = "scoreboard-";
15
16 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_3 = "achievement-kill-spree-3";
17 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_5 = "achievement-kill-spree-5";
18 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_10 = "achievement-kill-spree-10";
19 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_15 = "achievement-kill-spree-15";
20 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_20 = "achievement-kill-spree-20";
21 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_25 = "achievement-kill-spree-25";
22 const string PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_30 = "achievement-kill-spree-30";
23 const string PLAYERSTATS_ACHIEVEMENT_BOTLIKE = "achievement-botlike";
24 const string PLAYERSTATS_ACHIEVEMENT_FIRSTBLOOD = "achievement-firstblood";
25 const string PLAYERSTATS_ACHIEVEMENT_FIRSTVICTIM = "achievement-firstvictim";
26
27 // delay map switch until this is set
28 float PlayerStats_GameReport_DelayMapVote;
29
30 // call at initialization
31 void PlayerStats_GameReport_Init();
32
33 // add a new player
34 void PlayerStats_GameReport_AddPlayer(entity e);
35
36 // add a new team
37 void PlayerStats_GameReport_AddTeam(float t);
38
39 // add a new event
40 void PlayerStats_GameReport_AddEvent(string event_id);
41
42 // call on each event to track, or at player disconnect OR match end for "global stuff"
43 #define PS_GR_P_ADDVAL(ent,eventid,val) PlayerStats_GameReport_Event(ent.playerstats_id, eventid, val)
44 #define PS_GR_T_ADDVAL(team,eventid,val) PlayerStats_GameReport_Event(sprintf("team#%d", team), eventid, val)
45 float PlayerStats_GameReport_Event(string prefix, string event_id, float value);
46
47 // call at game over
48 void PlayerStats_GameReport_Shutdown(); // send stats to the server
49
50 void PlayerStats_GameReport_Accuracy(entity p);
51
52 // call this whenever a player leaves
53 void PlayerStats_GameReport_AddGlobalInfo(entity p);
54
55 // call this at the end of the match
56 void PlayerStats_GameReport_EndMatch(float finished);
57
58 void PlayerStats_GameReport_Handler(entity fh, entity pass, float status);
59
60 .string playerstats_id;
61
62 string autocvar_g_playerstats_uri;
63
64 #endif //SVQC
65
66
67
68 /*
69 //// WIP -zykure /////////////////////////////////////////////////////
70
71
72 //const string playerinfo_uri = "http://localhost:6543"; // FIXME
73
74 string PlayerInfo_GetItem(entity e, string item_id);
75 string PlayerInfo_GetItemLocal(string item_id);
76
77 void PlayerInfo_Init();
78 #ifdef SVQC
79 string autocvar_g_playerinfo_uri;
80 void PlayerInfo_Basic(entity p);
81 #endif
82 #ifdef MENUQC
83 string autocvar_g_playerinfo_uri;
84 void PlayerInfo_Details();
85 #endif
86 #ifdef CSQC
87
88 //void PlayerInfo_Details();
89 #endif
90 */