1 #include "statslist.qh"
2 #include <common/playerstats.qh>
4 entity makeXonoticStatsList()
7 me = NEW(XonoticStatsList);
8 me.configureXonoticStatsList(me);
12 void XonoticStatsList_configureXonoticStatsList(entity me)
14 me.configureXonoticListBox(me);
18 string XonoticStatsList_convertDate(string input)
22 if(strlen(input) != 10)
25 string monthname = "";
27 switch(stof(substring(input, 5, 2)))
29 case 1: monthname = _("January"); break;
30 case 2: monthname = _("February"); break;
31 case 3: monthname = _("March"); break;
32 case 4: monthname = _("April"); break;
33 case 5: monthname = _("May"); break;
34 case 6: monthname = _("June"); break;
35 case 7: monthname = _("July"); break;
36 case 8: monthname = _("August"); break;
37 case 9: monthname = _("September"); break;
38 case 10: monthname = _("October"); break;
39 case 11: monthname = _("November"); break;
40 case 12: monthname = _("December"); break;
41 default: return input; // failed, why?
44 string date = ZCTX(_("DATE^%m %d, %Y"));
45 date = strreplace("%Y", substring(input, 0, 4), date);
46 date = strreplace("%d", ftos(stof(substring(input, 8, 2))), date); // ftos-stof removes leading 0
47 date = strreplace("%m", monthname, date);
51 void XonoticStatsList_getStats(entity me)
53 LOG_TRACE("XonoticStatsList_getStats() at time: ", ftos(time));
54 // delete the old buffer if it exists
56 buf_del(me.listStats);
58 // create the new buffer if we have a stats buffer
60 me.listStats = buf_create();
62 // now confirmation, if we didn't create a buffer then just return now
70 string e = "", en = "", data = "";
72 string outstr = ""; // NOTE: out string MUST use underscores for spaces here, we'll replace them later
75 float out_total_matches = -1;
76 float out_total_wins = -1;
77 float out_total_losses = -1;
79 float out_total_kills = -1;
80 float out_total_deaths = -1;
82 for(e = PS_D_IN_EVL; (en = db_get(PS_D_IN_DB, e)) != ""; e = en)
87 data = db_get(PS_D_IN_DB, sprintf("#%s", e));
89 // non-gamemode specific stuff
92 case "overall/joined_dt":
95 outstr = _("Joined:");
96 data = XonoticStatsList_convertDate(car(data));
99 case "overall/last_seen_dt":
102 outstr = _("Last match:");
103 data = XonoticStatsList_convertDate(car(data));
106 case "overall/alivetime":
109 outstr = _("Time played:");
110 data = process_time(3, stof(data));
113 case "overall/favorite-map":
116 outstr = _("Favorite map:");
120 case "overall/matches":
123 out_total_matches = stof(data);
129 out_total_wins = stof(data);
132 case "overall/total-kills":
135 out_total_kills = stof(data);
138 case "overall/total-deaths":
141 out_total_deaths = stof(data);
146 if((order == -1) && (out_total_matches >= 0) && (out_total_wins >= 0))
148 bufstr_add(me.listStats, sprintf("003%s\n%d", _("Matches:"), out_total_matches), true);
150 if(out_total_matches > 0) // don't show extra info if there are no matches played
152 out_total_losses = max(0, (out_total_matches - out_total_wins));
153 bufstr_add(me.listStats, sprintf("003%s\n%d/%d", _("Wins/Losses:"), out_total_wins, out_total_losses), true);
154 bufstr_add(me.listStats, sprintf("004%s\n%d%%", _("Win percentage:"), ((out_total_wins / out_total_matches) * 100)), true);
157 out_total_matches = -1;
159 out_total_losses = -1;
163 if((order == -1) && (out_total_kills >= 0) && (out_total_deaths >= 0))
165 bufstr_add(me.listStats, sprintf("005%s\n%d/%d", _("Kills/Deaths:"), out_total_kills, out_total_deaths), true);
167 // if there are no deaths, just show kill count
168 if(out_total_deaths == 0)
169 out_total_deaths = 1;
171 bufstr_add(me.listStats, sprintf("006%s\n%.2f", _("Kill ratio:"), (out_total_kills / out_total_deaths)), true);
173 out_total_kills = -1;
174 out_total_deaths = -1;
178 // game mode specific stuff
181 orderstr = sprintf("%03d", order);
185 float dividerpos = strstrofs(e, "/", 0);
187 string gametype = substring(e, 0, dividerpos);
188 if(gametype == "overall") { continue; }
190 string event = substring(e, (dividerpos + 1), strlen(e) - (dividerpos + 1));
192 // if we are ranked, read these sets of possible options
193 if(stof(db_get(PS_D_IN_DB, sprintf("#%s/rank", gametype))))
200 outstr = _("Matches:");
207 data = sprintf("%d", stof(data));
214 data = sprintf("%d", stof(data));
220 outstr = _("Percentile:");
221 data = sprintf("%d%%", stof(data));
229 outstr = _("Favorite map:");
234 default: continue; // nothing to see here
237 outstr = strcat(strtoupper(gametype), " ", outstr);
238 // now set up order for sorting later
239 orderstr = sprintf("%2.2s%d", gametype, order);
241 else if(event == "matches")
243 outstr = _("Matches:");
244 outstr = strcat(strtoupper(gametype), " ", outstr);
245 data = sprintf(_("%d (unranked)"), stof(data));
247 // unranked game modes ALWAYS get put last
253 bufstr_add(me.listStats, sprintf("%s%s\n%s", orderstr, outstr, data), true);
256 me.nItems = buf_getsize(me.listStats);
258 buf_sort(me.listStats, 128, false);
261 void XonoticStatsList_destroy(entity me)
264 buf_del(me.listStats);
267 void XonoticStatsList_resizeNotify(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
269 me.itemAbsSize = '0 0 0';
270 SUPER(XonoticStatsList).resizeNotify(me, relOrigin, relSize, absOrigin, absSize);
272 me.itemAbsSize.y = absSize.y * me.itemHeight;
273 me.itemAbsSize.x = absSize.x * (1 - me.controlWidth);
274 me.realFontSize.y = me.fontSize / me.itemAbsSize.y;
275 me.realFontSize.x = me.fontSize / me.itemAbsSize.x;
276 me.realUpperMargin = 0.5 * (1 - me.realFontSize.y);
279 me.columnNameOrigin = me.realFontSize.x;
280 me.columnNameSize = 0.5 - me.realFontSize.x; // end halfway at maximum length
281 me.columnDataOrigin = me.columnNameOrigin + me.columnNameSize;
282 me.columnDataSize = 1 - me.columnNameSize - me.realFontSize.x; // fill the rest of the control
284 me.columnNameOrigin = me.realFontSize.x;
285 me.columnNameSize = 1 - 2 * me.realFontSize.x;
289 void XonoticStatsList_drawListBoxItem(entity me, int i, vector absSize, bool isSelected, bool isFocused)
293 me.focusedItemAlpha = getFadedAlpha(me.focusedItemAlpha, SKINALPHA_LISTBOX_FOCUSED, SKINFADEALPHA_LISTBOX_FOCUSED);
294 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_FOCUSED, me.focusedItemAlpha);
297 string data = bufstr_get(me.listStats, i);
298 int ofs = strstrofs(data, "\n", 0);
300 string s = substring(data, 3, ofs - 3);
301 s = draw_TextShortenToWidth(s, 0.5 * me.columnNameSize, 0, me.realFontSize);
302 draw_Text(me.realUpperMargin * eY + me.columnNameOrigin * eX, s, me.realFontSize, '1 1 1', SKINALPHA_TEXT, 1);
304 string d = substring(data, ofs + 1, strlen(data) - (ofs + 1));
305 d = draw_TextShortenToWidth(d, me.columnNameSize - draw_TextWidth(s, 0, me.realFontSize), 0, me.realFontSize);
306 draw_Text(me.realUpperMargin * eY + (me.columnNameOrigin + 1 * (me.columnNameSize - draw_TextWidth(d, 0, me.realFontSize))) * eX, d, me.realFontSize, '1 1 1', SKINALPHA_TEXT, 1);
309 void XonoticStatsList_showNotify(entity me)
311 PlayerStats_PlayerDetail_CheckUpdate();
314 void XonoticStatsList_doubleClickListBoxItem(entity me, float i, vector where)
316 //DemoConfirm_ListClick_Check_Gamestatus(me);
319 float XonoticStatsList_keyDown(entity me, float scan, float ascii, float shift)
321 if(scan == K_ENTER || scan == K_KP_ENTER)
323 //DemoConfirm_ListClick_Check_Gamestatus(me);
328 return SUPER(XonoticStatsList).keyDown(me, scan, ascii, shift);