]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/playerstats.qc
a4f48a525ed970611a2f53de04759ea169d0b0b9
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / playerstats.qc
1 float playerstats_db;
2 string teamstats_last;
3 string playerstats_last;
4 string events_last;
5 .float playerstats_addedglobalinfo;
6 float playerstats_requested;
7 .string playerstats_id;
8
9 void PlayerStats_Init()
10 {
11         string uri;
12         playerstats_db = -1;
13         playerstats_waitforme = TRUE;
14         uri = autocvar_g_playerstats_uri;
15         if(uri == "")
16                 return;
17         playerstats_db = db_create();
18         if(playerstats_db >= 0)
19                 playerstats_waitforme = FALSE; // must wait for it at match end
20         
21         PlayerStats_AddEvent(PLAYERSTATS_ALIVETIME);
22         PlayerStats_AddEvent(PLAYERSTATS_WINS);
23         PlayerStats_AddEvent(PLAYERSTATS_MATCHES);
24         PlayerStats_AddEvent(PLAYERSTATS_JOINS);
25         PlayerStats_AddEvent(PLAYERSTATS_SCOREBOARD_VALID);
26         PlayerStats_AddEvent(PLAYERSTATS_RANK);
27
28     // accuracy stats
29     entity w;
30     float i;
31     for(i = WEP_FIRST; i <= WEP_LAST; ++i)
32     {
33         w = get_weaponinfo(i);
34
35         PlayerStats_AddEvent(strcat("acc-", w.netname, "-hit"));
36         PlayerStats_AddEvent(strcat("acc-", w.netname, "-fired"));
37
38         PlayerStats_AddEvent(strcat("acc-", w.netname, "-cnt-hit"));
39         PlayerStats_AddEvent(strcat("acc-", w.netname, "-cnt-fired"));
40
41         PlayerStats_AddEvent(strcat("acc-", w.netname, "-frags"));
42     }
43
44         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_3);
45         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_5);
46         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_10);
47         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_15);
48         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_20);
49         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_25);
50         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_30);
51         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_BOTLIKE);
52         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_FIRSTBLOOD);
53         PlayerStats_AddEvent(PLAYERSTATS_ACHIEVEMENT_FIRSTVICTIM);
54 }
55
56 void PlayerStats_AddPlayer(entity e)
57 {
58         if(playerstats_db < 0)
59                 return;
60         if(e.playerstats_id)
61                 return;
62
63         if(e.crypto_idfp != "" && e.cvar_cl_allow_uidtracking == 1)
64                 e.playerstats_id = strzone(e.crypto_idfp);
65         else if(clienttype(e) == CLIENTTYPE_BOT)
66                 e.playerstats_id = strzone(sprintf("bot#%d", e.playerid));
67         else
68                 e.playerstats_id = strzone(sprintf("player#%d", e.playerid));
69
70         string key;
71         key = sprintf("%s:*", e.playerstats_id);
72         
73         string p;
74         p = db_get(playerstats_db, key);
75         if(p == "")
76         {
77                 if(playerstats_last)
78                 {
79                         db_put(playerstats_db, key, playerstats_last);
80                         strunzone(playerstats_last);
81                 }
82                 else
83                         db_put(playerstats_db, key, "#");
84                 playerstats_last = strzone(e.playerstats_id);
85         }
86 }
87
88 void PlayerStats_AddTeam(float t) // TODO: doesn't this remain unused?
89 {
90         if(playerstats_db < 0)
91                 return;
92
93         string key;
94         key = sprintf("%d", t);
95         
96         string p;
97         p = db_get(playerstats_db, key);
98         if(p == "")
99         {
100                 if(teamstats_last)
101                 {
102                         db_put(playerstats_db, key, teamstats_last);
103                         strunzone(teamstats_last);
104                 }
105                 else
106                         db_put(playerstats_db, key, "#");
107                 teamstats_last = strzone(key);
108         }
109 }
110
111 void PlayerStats_AddEvent(string event_id)
112 {
113         if(playerstats_db < 0)
114                 return;
115         
116         string key;
117         key = sprintf("*:%s", event_id);
118         
119         string p;
120         p = db_get(playerstats_db, key);
121         if(p == "")
122         {
123                 if(events_last)
124                 {
125                         db_put(playerstats_db, key, events_last);
126                         strunzone(events_last);
127                 }
128                 else
129                         db_put(playerstats_db, key, "#");
130                 events_last = strzone(event_id);
131         }
132 }
133
134 void PlayerStats_Event(entity e, string event_id, float value)
135 {
136         if(!e.playerstats_id || playerstats_db < 0)
137                 return;
138         
139         string key;
140         float val;
141         key = sprintf("%s:%s", e.playerstats_id, event_id);
142         val = stof(db_get(playerstats_db, key));
143         val += value;
144         db_put(playerstats_db, key, ftos(val));
145 }
146
147 void PlayerStats_TeamScore(float t, string event_id, float value) // TODO: doesn't this remain unused?
148 {
149         string key;
150         float val;
151         key = sprintf("team#%d:%s", t, event_id);
152         val = stof(db_get(playerstats_db, key));
153         val += value;
154         db_put(playerstats_db, key, ftos(val));
155 }
156
157 /*
158         format spec:
159
160         A collection of lines of the format <key> SPACE <value> NEWLINE, where
161         <key> is always a single character.
162
163         The following keys are defined:
164
165         V: format version (always 1) - this MUST be the first line!
166         #: comment (MUST be ignored by any parser)
167         R: release information on the server
168         T: time at which the game ended
169         G: game type
170         M: map name
171         S: "hostname" of the server
172         C: number of "unpure" cvar changes
173     W: winning team ID
174         P: player ID of an existing player; this also sets the owner for all following "n", "e" and "t" lines (lower case!)
175         n: nickname of the player (optional)
176     t: team ID
177         e: followed by an event name, a space, and the event count/score
178                 event names can be:
179                         alivetime: total playing time of the player
180                         wins: number of games won (can only be set if matches is set)
181                         matches: number of matches played to the end (not aborted by map switch)
182                         joins: number of matches joined (always 1 unless player never played during the match)
183                         scoreboardvalid: set to 1 if the player was there at the end of the match
184                         total-<scoreboardname>: total score of that scoreboard item
185                         scoreboard-<scoreboardname>: end-of-game score of that scoreboard item (can differ in non-team games)
186                         achievement-<achievementname>: achievement counters
187             rank <number>: rank of player
188             acc-<weapon netname>-hit: total damage dealt
189             acc-<weapon netname>-fired: total damage that all fired projectiles *could* have dealt
190             acc-<weapon netname>-cnt-hit: amount of shots that actually hit
191             acc-<weapon netname>-cnt-fired: amount of fired shots
192             acc-<weapon netname>-frags: amount of frags dealt by weapon
193 */
194
195 void PlayerStats_ready(entity fh, entity pass, float status)
196 {
197         string p, pn;
198         string e, en;
199         string nn, tt;
200         string s;
201
202         switch(status)
203         {
204                 case URL_READY_CANWRITE:
205                         url_fputs(fh, "V 1\n");
206 #ifdef WATERMARK
207                         url_fputs(fh, sprintf("R %s\n", WATERMARK()));
208 #endif
209                         url_fputs(fh, sprintf("T %s.%06d\n", strftime(FALSE, "%s"), floor(random() * 1000000)));
210                         url_fputs(fh, sprintf("G %s\n", GetGametype()));
211                         url_fputs(fh, sprintf("M %s\n", GetMapname()));
212                         url_fputs(fh, sprintf("I %s\n", matchid));
213                         url_fputs(fh, sprintf("S %s\n", cvar_string("hostname")));
214                         url_fputs(fh, sprintf("C %d\n", cvar_purechanges_count));
215                         for(p = playerstats_last; (pn = db_get(playerstats_db, sprintf("%s:*", p))) != ""; p = pn)
216                         {
217                                 url_fputs(fh, sprintf("P %s\n", p));
218                                 nn = db_get(playerstats_db, sprintf("%s:_playerid", p));
219                                 if(nn != "")
220                                         url_fputs(fh, sprintf("i %s\n", nn));
221                                 nn = db_get(playerstats_db, sprintf("%s:_netname", p));
222                                 if(nn != "")
223                                         url_fputs(fh, sprintf("n %s\n", nn));
224                                 if(teamplay)
225                                 {
226                                         tt = db_get(playerstats_db, sprintf("%s:_team", p));
227                                         url_fputs(fh, sprintf("t %s\n", tt));
228                                 }
229                                 for(e = events_last; (en = db_get(playerstats_db, sprintf("*:%s", e))) != ""; e = en)
230                                 {
231                                         float v;
232                                         v = stof(db_get(playerstats_db, sprintf("%s:%s", p, e)));
233                                         if(v != 0)
234                                                 url_fputs(fh, sprintf("e %s %g\n", e, v));
235                                 }
236                         }
237                         url_fputs(fh, "\n");
238                         db_close(playerstats_db);
239                         playerstats_db = -1;
240                         url_fclose(fh, PlayerStats_ready, world);
241                         break;
242                 case URL_READY_CANREAD:
243                         // url_fclose is processing, we got a response for writing the data
244                         // this must come from HTTP
245                         print("Got response from player stats server:\n");
246                         while((s = url_fgets(fh)))
247                                 print("  ", s, "\n");
248                         print("End of response.\n");
249                         url_fclose(fh, PlayerStats_ready, world);
250                         break;
251                 case URL_READY_CLOSED:
252                         // url_fclose has finished
253                         print("Player stats written\n");
254                         playerstats_waitforme = TRUE;
255                         break;
256                 case URL_READY_ERROR:
257                 default:
258                         print("Player stats writing failed: ", ftos(status), "\n");
259                         playerstats_waitforme = TRUE;
260                         if(playerstats_db >= 0)
261                         {
262                                 db_close(playerstats_db);
263                                 playerstats_db = -1;
264                         }
265                         break;
266         }
267 }
268
269 //#NO AUTOCVARS START
270 void PlayerStats_Shutdown()
271 {
272         string uri;
273
274         if(playerstats_db < 0)
275                 return;
276
277         uri = autocvar_g_playerstats_uri;
278         if(uri != "")
279         {
280                 url_fopen(uri, FILE_APPEND, PlayerStats_ready, world);
281                 playerstats_waitforme = FALSE;
282         }
283         else
284         {
285                 playerstats_waitforme = TRUE;
286                 db_close(playerstats_db);
287                 playerstats_db = -1;
288         }
289 }
290 //#NO AUTOCVARS END
291
292 void PlayerStats_Accuracy(entity p)
293 {
294     entity a, w;
295     a = p.accuracy;
296     float i;
297
298     for(i = WEP_FIRST; i <= WEP_LAST; ++i)
299     {
300         w = get_weaponinfo(i);
301
302         PlayerStats_Event(p, strcat("acc-", w.netname, "-hit"), a.(accuracy_hit[i-1]));
303         PlayerStats_Event(p, strcat("acc-", w.netname, "-fired"), a.(accuracy_fired[i-1]));
304
305         PlayerStats_Event(p, strcat("acc-", w.netname, "-cnt-hit"), a.(accuracy_cnt_hit[i-1]));
306         PlayerStats_Event(p, strcat("acc-", w.netname, "-cnt-fired"), a.(accuracy_cnt_fired[i-1]));
307
308         PlayerStats_Event(p, strcat("acc-", w.netname, "-frags"), a.(accuracy_frags[i-1]));
309     }
310 }
311
312 void PlayerStats_AddGlobalInfo(entity p)
313 {
314         if(playerstats_db < 0)
315                 return;
316         if(!p.playerstats_id || playerstats_db < 0)
317                 return;
318         p.playerstats_addedglobalinfo = TRUE;
319
320         // add global info!
321         if(p.alivetime)
322         {
323                 PlayerStats_Event(p, PLAYERSTATS_ALIVETIME, time - p.alivetime);
324                 p.alivetime = 0;
325         }
326
327         db_put(playerstats_db, sprintf("%s:_playerid", p.playerstats_id), ftos(p.playerid));
328         
329         if(p.cvar_cl_allow_uid2name == 1 || clienttype(p) == CLIENTTYPE_BOT)
330                 db_put(playerstats_db, sprintf("%s:_netname", p.playerstats_id), p.netname);
331
332     if(teamplay)
333                 db_put(playerstats_db, sprintf("%s:_team", p.playerstats_id), ftos(p.team));
334
335         if(stof(db_get(playerstats_db, sprintf("%d:%s", p.playerstats_id, PLAYERSTATS_ALIVETIME))) > 0)
336                 PlayerStats_Event(p, PLAYERSTATS_JOINS, 1);
337
338         PlayerStats_Accuracy(p);
339
340         strunzone(p.playerstats_id);
341         p.playerstats_id = string_null;
342 }
343
344 void PlayerStats_EndMatch(float finished)
345 {
346         entity p, winner;
347     winner = PlayerScore_Sort(score_dummyfield);
348         FOR_EACH_PLAYER(p) // spectators intentionally not included
349         {
350                 PlayerScore_PlayerStats(p);
351                 PlayerStats_Accuracy(p);
352                 PlayerStats_Event(p, PLAYERSTATS_SCOREBOARD_VALID, 1);
353                 if(finished)
354                 {
355                         PlayerStats_Event(p, PLAYERSTATS_WINS, p.winning);
356                         PlayerStats_Event(p, PLAYERSTATS_MATCHES, 1);
357                         PlayerStats_Event(p, PLAYERSTATS_RANK, p.score_dummyfield);
358                 }
359         }
360 }