]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/playerstats.qh
ba81ab754efd05c0cff303bd3dc1a2983d64df45
[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_FinalizePlayer(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 string autocvar_g_playerstats_gamereport_ladder;
64 string autocvar_g_playerstats_gamereport_uri;
65
66 #endif //SVQC
67
68
69
70 /*
71 //// WIP -zykure /////////////////////////////////////////////////////
72
73
74 //const string playerinfo_uri = "http://localhost:6543"; // FIXME
75
76 string PlayerInfo_GetItem(entity e, string item_id);
77 string PlayerInfo_GetItemLocal(string item_id);
78
79 void PlayerInfo_Init();
80 #ifdef SVQC
81 string autocvar_g_playerinfo_uri;
82 void PlayerInfo_Basic(entity p);
83 #endif
84 #ifdef MENUQC
85 string autocvar_g_playerinfo_uri;
86 void PlayerInfo_Details();
87 #endif
88 #ifdef CSQC
89
90 //void PlayerInfo_Details();
91 #endif
92 */