1 // =========================================================
2 // Reply messages for common commands, re-worked by Samual
3 // Last updated: December 30th, 2011
4 // =========================================================
6 // These strings are set usually during init in g_world.qc,
7 // or also by some game modes or other functions manually,
8 // and their purpose is to output information to clients
9 // without using any extra processing time.
11 // See common.qc for their proper commands
13 string getrecords(float page) // 50 records per page
22 for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
24 if (MapInfo_Get_ByID(i))
26 r = stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/time")));
32 h = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/netname"));
33 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-6, ftos_decimals(r, 2)), " ", h, "\n");
41 for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
43 if (MapInfo_Get_ByID(i))
45 r = race_readTime(MapInfo_Map_bspname, 1);
50 h = race_readName(MapInfo_Map_bspname, 1);
51 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
59 for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
61 if (MapInfo_Get_ByID(i))
63 r = race_readTime(MapInfo_Map_bspname, 1);
68 h = race_readName(MapInfo_Map_bspname, 1);
69 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
77 if(s == "" && page == 0)
78 return "No records are available on this server.\n";
91 for (i = 1; i <= RANKINGS_CNT; ++i)
93 t = race_readTime(map, i);
98 n = race_readName(map, i);
100 s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t)), " ", n, "\n");
103 MapInfo_ClearTemps();
106 return strcat("No records are available for the map: ", map, "\n");
108 return strcat("Records for ", map, ":\n", s);
113 float i, j, k, uidcnt = 0, thiscnt;
114 string s, temp_s, rr, myuid, thisuid;
121 for(k = 0; k < MapInfo_count; ++k)
123 if(MapInfo_Get_ByID(k))
125 for(i = 0; i <= LADDER_CNT; ++i) // i = 0 because it is the speed award
127 if(i == 0) // speed award
129 if(stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/speed"))) == 0)
132 myuid = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/crypto_idfp"));
134 else // normal record, if it exists (else break)
136 if(race_readTime(MapInfo_Map_bspname, i) == 0)
139 myuid = race_readUID(MapInfo_Map_bspname, i);
142 // string s contains:
143 // arg 0 = # of speed recs
144 // arg 1 = # of 1st place recs
145 // arg 2 = # of 2nd place recs
147 // LADDER_CNT+1 = total points
149 temp_s = db_get(TemporaryDB, strcat("ladder", myuid));
153 db_put(TemporaryDB, strcat("uid", ftos(uidcnt)), myuid);
156 for(j = 0; j <= LADDER_CNT + 1; ++j)
158 if(j != LADDER_CNT + 1)
159 temp_s = strcat(temp_s, "0 ");
161 temp_s = strcat(temp_s, "0");
165 tokenize_console(temp_s);
168 if(i == 0) // speed award
170 for(j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
172 if(j == 0) // speed award
173 s = strcat(s, ftos(stof(argv(j)) +1)); // add 1 to speed rec count and write
175 s = strcat(s, " ", argv(j)); // just copy over everything else
180 for(j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
183 s = strcat(s, argv(j)); // speed award, dont prefix with " "
184 else if(j == i) // wanted rec!
185 s = strcat(s, " ", ftos(stof(argv(j)) +1)); // update argv(j)
187 s = strcat(s, " ", argv(j)); // just copy over everything else
191 // total points are (by default) calculated like this:
192 // speedrec = floor(100 / 10) = 10 points
193 // 1st place = floor(100 / 1) = 100 points
194 // 2nd place = floor(100 / 2) = 50 points
195 // 3rd place = floor(100 / 3) = 33 points
196 // 4th place = floor(100 / 4) = 25 points
197 // 5th place = floor(100 / 5) = 20 points
201 s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + LADDER_FIRSTPOINT / 10)); // speed award, add LADDER_FIRSTPOINT / 10 points
203 s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + floor(LADDER_FIRSTPOINT / i))); // record, add LADDER_FIRSTPOINT / i points
205 db_put(TemporaryDB, strcat("ladder", myuid), s);
210 for(i = 0; i <= uidcnt; ++i) // for each known uid
212 thisuid = db_get(TemporaryDB, strcat("uid", ftos(i)));
213 temp_s = db_get(TemporaryDB, strcat("ladder", thisuid));
214 tokenize_console(temp_s);
215 thiscnt = stof(argv(LADDER_CNT+1));
217 if(thiscnt > top_scores[LADDER_SIZE-1])
219 for(j = 0; j < LADDER_SIZE; ++j) // for each place in ladder
221 if(thiscnt > top_scores[j])
223 for(k = LADDER_SIZE-1; k >= j; --k)
225 top_uids[k] = top_uids[k-1];
226 top_scores[k] = top_scores[k-1];
229 top_uids[j] = thisuid;
230 top_scores[j] = thiscnt;
237 s = "^3-----------------------\n\n";
239 s = strcat(s, "Pos ^3|");
240 s = strcat(s, " ^7Total ^3|");
242 for(i = 1; i <= LADDER_CNT; ++i)
243 { s = strcat(s, " ^7", count_ordinal(i), " ^3|"); }
245 s = strcat(s, " ^7Speed awards ^3| ^7Name");
246 s = strcat(s, "\n^3----+--------");
248 for(i = 1; i <= min(9, LADDER_CNT); ++i)
249 { s = strcat(s, "+-----"); }
252 for(i = 1; i <= LADDER_CNT - 9; ++i)
253 { s = strcat(s, "+------"); }
256 s = strcat(s, "+--------------+--------------------\n");
258 for(i = 0; i < LADDER_SIZE; ++i)
260 temp_s = db_get(TemporaryDB, strcat("ladder", top_uids[i]));
261 tokenize_console(temp_s);
263 if(argv(LADDER_CNT+1) == "") // total is 0, skip
266 s = strcat(s, strpad(4, count_ordinal(i+1)), "^3| ^7"); // pos
267 s = strcat(s, strpad(7, argv(LADDER_CNT+1)), "^3| ^7"); // total
269 for(j = 1; j <= min(9, LADDER_CNT); ++j)
270 { s = strcat(s, strpad(4, argv(j)), "^3| ^7"); } // 1st, 2nd, 3rd etc cnt
273 for(j = 10; j <= LADDER_CNT; ++j)
274 { s = strcat(s, strpad(4, argv(j)), " ^3| ^7"); } // 1st, 2nd, 3rd etc cnt
277 s = strcat(s, strpad(13, argv(0)), "^3| ^7"); // speed award cnt
278 s = strcat(s, uid2name(top_uids[i]), "\n"); // name
281 MapInfo_ClearTemps();
284 return "No ladder on this server!\n";
286 return strcat("Top ", ftos(LADDER_SIZE), " ladder rankings:\n", s);
291 string maplist = "", col;
294 argc = tokenize_console(autocvar_g_maplist);
295 for(i = 0; i < argc; ++i)
297 if(MapInfo_CheckMap(argv(i)))
299 if(mod(i, 2)) { col = "^2"; }
301 maplist = sprintf("%s%s%s ", maplist, col, argv(i));
305 MapInfo_ClearTemps();
306 return sprintf("^7Maps in list: %s\n", maplist);
312 string lsmaps = "", col;
313 float i, newmaps = 0;
315 for(i = 0; i < MapInfo_count; ++i)
317 if((MapInfo_Get_ByID(i)) && !(MapInfo_Map_flags & MapInfo_ForbiddenFlags()))
319 // todo: Check by play count of maps for other game types?
321 (g_race && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, RACE_RECORD, "time"))))
323 (g_cts && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, CTS_RECORD, "time"))))
327 if(mod(i, 2)) { col = "^4*"; }
328 else { col = "^5*"; }
332 if(mod(i, 2)) { col = "^2"; }
336 lsmaps = sprintf("%s%s%s ", lsmaps, col, MapInfo_Map_bspname);
340 MapInfo_ClearTemps();
341 return sprintf("^7Maps available%s: %s\n", (newmaps ? " (New maps have asterisks marked in blue)" : ""), lsmaps);
344 string getmonsterlist()
346 string monsterlist = "", col;
349 for(i = MON_FIRST; i <= MON_LAST; ++i)
351 if(mod(i, 2)) { col = "^2"; }
353 monsterlist = sprintf("%s%s%s ", monsterlist, col, (get_monsterinfo(i)).netname);
356 return sprintf("^7Monsters available: %s\n", monsterlist);