3 #include <common/mapinfo.qh>
4 #include <common/mutators/base.qh>
5 #include <common/net_linked.qh>
6 #include <common/playerstats.qh>
7 #include <common/scores.qh>
8 #include <common/state.qh>
9 #include <common/stats.qh>
10 #include <common/teams.qh>
11 #include <common/weapons/_all.qh>
12 #include <server/client.qh>
13 #include <server/command/common.qh>
14 #include <server/intermission.qh>
15 #include <server/mutators/_mod.qh>
16 #include <server/round_handler.qh>
17 #include <server/world.qh>
20 entity teamscorekeepers[16];
21 float teamscores_entities_count;
22 var .float scores_primary;
23 var .float teamscores_primary;
24 float scores_flags_primary;
25 float teamscores_flags_primary;
27 vector ScoreField_Compare(entity t1, entity t2, .float field, float fieldflags, vector previous, bool strict) // returns: cmp value, best prio
29 if(!strict && !(fieldflags & SFL_SORT_PRIO_MASK)) // column does not sort
31 if((fieldflags & SFL_SORT_PRIO_MASK) < previous.y)
33 if (t1.(field) == t2.(field))
36 previous.y = fieldflags & SFL_SORT_PRIO_MASK;
38 if(fieldflags & SFL_ZERO_IS_WORST)
45 else if (t2.(field) == 0)
52 if (fieldflags & SFL_LOWER_IS_BETTER)
53 previous.x = (t2.(field) - t1.(field));
55 previous.x = (t1.(field) - t2.(field));
64 bool TeamScore_SendEntity(entity this, entity to, float sendflags)
68 WriteHeader(MSG_ENTITY, ENT_CLIENT_TEAMSCORES);
69 int t = this.team - 1;
70 assert(t, eprint(this));
71 WriteByte(MSG_ENTITY, t);
74 for(i = 0; i < MAX_TEAMSCORE; ++i)
75 if(this.(teamscores(i)) > 127 || this.(teamscores(i)) <= -128)
78 #if MAX_TEAMSCORE <= 8
79 WriteByte(MSG_ENTITY, sendflags);
80 WriteByte(MSG_ENTITY, longflags);
82 WriteShort(MSG_ENTITY, sendflags);
83 WriteShort(MSG_ENTITY, longflags);
85 for(i = 0; i < MAX_TEAMSCORE; ++i)
86 if(sendflags & BIT(i))
88 if(longflags & BIT(i))
89 WriteInt24_t(MSG_ENTITY, this.(teamscores(i)));
91 WriteChar(MSG_ENTITY, this.(teamscores(i)));
97 void TeamScore_Spawn(float t, string name)
99 entity ts = new_pure(csqc_score_team);
100 ts.netname = name; // not used yet, FIXME
102 Net_LinkEntity(ts, false, 0, TeamScore_SendEntity);
103 teamscorekeepers[t - 1] = ts;
104 ++teamscores_entities_count;
105 PlayerStats_GameReport_AddTeam(t);
108 float TeamScore_AddToTeam(int t, float scorefield, float score)
117 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
118 if(t <= 0 || t >= 16)
122 error("Adding score to invalid team!");
124 s = teamscorekeepers[t - 1];
129 error("Adding score to unknown team!");
132 if(teamscores_label(scorefield) != "")
133 s.SendFlags |= BIT(scorefield);
134 return (s.(teamscores(scorefield)) += score);
137 float TeamScore_Add(entity player, float scorefield, float score)
139 return TeamScore_AddToTeam(player.team, scorefield, score);
142 float TeamScore_Compare(entity t1, entity t2, bool strict)
144 if(!t1 || !t2) return (!t2) - !t1;
146 vector result = '0 0 0';
148 for(i = 0; i < MAX_TEAMSCORE; ++i)
152 result = ScoreField_Compare(t1, t2, f, teamscores_flags(i), result, strict);
155 if (result.x == 0 && strict)
156 result.x = t1.team - t2.team;
162 * the scoreinfo entity
165 void ScoreInfo_SetLabel_PlayerScore(PlayerScoreField i, string label, float scoreflags)
167 scores_label(i) = label;
168 scores_flags(i) = scoreflags;
169 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
171 scores_primary = scores(i);
172 scores_flags_primary = scoreflags;
176 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
177 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
181 void ScoreInfo_SetLabel_TeamScore(float i, string label, float scoreflags)
183 teamscores_label(i) = label;
184 teamscores_flags(i) = scoreflags;
185 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
187 teamscores_primary = teamscores(i);
188 teamscores_flags_primary = scoreflags;
192 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
193 PlayerStats_GameReport_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
197 bool ScoreInfo_SendEntity(entity this, entity to, int sf)
200 WriteHeader(MSG_ENTITY, ENT_CLIENT_SCORES_INFO);
201 WriteRegistered(Gametypes, MSG_ENTITY, MapInfo_LoadedGametype);
202 FOREACH(Scores, true, {
203 WriteString(MSG_ENTITY, scores_label(it));
204 WriteByte(MSG_ENTITY, scores_flags(it));
206 for(i = 0; i < MAX_TEAMSCORE; ++i)
208 WriteString(MSG_ENTITY, teamscores_label(i));
209 WriteByte(MSG_ENTITY, teamscores_flags(i));
214 void ScoreInfo_Init(int teams)
216 if(scores_initialized)
218 scores_initialized.SendFlags |= 1; // force a resend
222 scores_initialized = new_pure(ent_client_scoreinfo);
223 Net_LinkEntity(scores_initialized, false, 0, ScoreInfo_SendEntity);
226 TeamScore_Spawn(NUM_TEAM_1, "Red");
228 TeamScore_Spawn(NUM_TEAM_2, "Blue");
230 TeamScore_Spawn(NUM_TEAM_3, "Yellow");
232 TeamScore_Spawn(NUM_TEAM_4, "Pink");
236 * per-player score entities
239 bool PlayerScore_SendEntity(entity this, entity to, float sendflags)
241 WriteHeader(MSG_ENTITY, ENT_CLIENT_SCORES);
242 WriteByte(MSG_ENTITY, etof(this.owner));
245 FOREACH(Scores, true, {
246 int p = 1 << (i % 16);
247 if (this.(scores(it)) > 127 || this.(scores(it)) <= -128)
251 WriteShort(MSG_ENTITY, sendflags);
252 WriteShort(MSG_ENTITY, longflags);
253 FOREACH(Scores, true, {
254 int p = 1 << (i % 16);
258 WriteInt24_t(MSG_ENTITY, this.(scores(it)));
260 WriteChar(MSG_ENTITY, this.(scores(it)));
267 float PlayerScore_Clear(entity player)
271 if(teamscores_entities_count)
274 if(MUTATOR_CALLHOOK(ForbidPlayerScore_Clear)) return 0;
276 sk = CS(player).scorekeeper;
277 FOREACH(Scores, true, {
278 if(sk.(scores(it)) != 0)
279 if(scores_label(it) != "")
280 sk.SendFlags |= BIT(i % 16);
288 void Score_ClearAll()
292 FOREACH_CLIENTSLOT(true, {
293 sk = CS(it).scorekeeper;
295 FOREACH(Scores, true, {
296 if(sk.(scores(it)) != 0)
297 if(scores_label(it) != "")
298 sk.SendFlags |= BIT(i % 16);
303 for(t = 0; t < 16; ++t)
305 sk = teamscorekeepers[t];
308 for(int j = 0; j < MAX_TEAMSCORE; ++j)
310 if(sk.(teamscores(j)) != 0)
311 if(teamscores_label(j) != "")
312 sk.SendFlags |= BIT(j);
313 sk.(teamscores(j)) = 0;
318 void PlayerScore_Attach(entity player)
320 if(CS(player).scorekeeper)
321 error("player already has a scorekeeper");
322 entity sk = new_pure(scorekeeper);
324 Net_LinkEntity(sk, false, 0, PlayerScore_SendEntity);
325 CS(player).scorekeeper = sk;
328 void PlayerScore_Detach(entity player)
330 if(!CS(player).scorekeeper)
331 error("player has no scorekeeper");
332 delete(CS(player).scorekeeper);
333 CS(player).scorekeeper = NULL;
336 float PlayerScore_Add(entity player, PlayerScoreField scorefield, float score)
338 bool mutator_returnvalue = MUTATOR_CALLHOOK(AddPlayerScore, scorefield, score, player);
339 score = M_ARGV(1, float);
341 if(!mutator_returnvalue && game_stopped)
346 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
347 entity s = CS(player).scorekeeper;
352 LOG_WARN("Adding score to unknown player!");
357 return s.(scores(scorefield));
359 if(scores_label(scorefield) != "")
360 s.SendFlags |= BIT(scorefield.m_id % 16);
362 PlayerStats_GameReport_Event_Player(s.owner, strcat(PLAYERSTATS_TOTAL, scores_label(scorefield)), score);
363 s.(scores(scorefield)) += score;
364 MUTATOR_CALLHOOK(AddedPlayerScore, scorefield, score, player);
365 return s.(scores(scorefield));
368 float PlayerScore_Set(entity player, PlayerScoreField scorefield, float score)
370 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
371 entity s = CS(player).scorekeeper;
376 LOG_WARN("Setting score of unknown player!");
380 float oldscore = s.(scores(scorefield));
381 if(oldscore == score)
384 if(scores_label(scorefield) != "")
385 s.SendFlags |= BIT(scorefield.m_id % 16);
386 s.(scores(scorefield)) = score;
387 return s.(scores(scorefield));
390 float PlayerTeamScore_Add(entity player, PlayerScoreField pscorefield, float tscorefield, float score)
393 r = PlayerScore_Add(player, pscorefield, score);
394 if(teamscores_entities_count) // only for teamplay
395 r = TeamScore_Add(player, tscorefield, score);
399 float PlayerScore_Compare(entity t1, entity t2, bool strict)
401 if(!t1 || !t2) return (!t2) - !t1;
403 vector result = '0 0 0';
404 FOREACH(Scores, true, {
405 var .float f = scores(it);
406 result = ScoreField_Compare(t1, t2, f, scores_flags(it), result, strict);
409 if (result.x == 0 && strict)
410 result.x = t1.owner.playerid - t2.owner.playerid;
415 void WinningConditionHelper(entity this)
420 entity winnerscorekeeper;
421 entity secondscorekeeper;
425 // gametype:P<pure>:S<slots>::plabel,plabel:tlabel,tlabel:teamid:tscore,tscore:teamid:tscore,tscore
426 // score labels always start with a symbol or with lower case
427 // so to match pure, match for :P0:
428 // to match full, match for :S0:
430 fullstatus = autocvar_g_full_getstatus_responses;
433 s = strcat(s, ":", autocvar_g_xonoticversion);
434 s = strcat(s, ":P", ftos(cvar_purechanges_count));
435 s = strcat(s, ":S", ftos(nJoinAllowed(this, NULL)));
436 s = strcat(s, ":F", ftos(serverflags));
437 s = strcat(s, ":T", sv_termsofservice_url_escaped);
438 s = strcat(s, ":M", modname);
439 s = strcat(s, "::", GetPlayerScoreString(NULL, (fullstatus ? 1 : 2)));
441 if(teamscores_entities_count)
445 s = strcat(s, ":", GetTeamScoreString(0, 1));
446 for(t = 0; t < 16; ++t)
447 if(teamscorekeepers[t])
448 s = strcat(s, ":", ftos(t+1), ":", GetTeamScoreString(t+1, 1));
450 WinningConditionHelper_winnerteam = -1;
451 WinningConditionHelper_secondteam = -1;
452 winnerscorekeeper = NULL;
453 secondscorekeeper = NULL;
454 for(t = 0; t < 16; ++t)
456 sk = teamscorekeepers[t];
457 c = TeamScore_Compare(winnerscorekeeper, sk, 1);
460 WinningConditionHelper_secondteam = WinningConditionHelper_winnerteam;
461 WinningConditionHelper_winnerteam = t + 1;
462 secondscorekeeper = winnerscorekeeper;
463 winnerscorekeeper = sk;
467 c = TeamScore_Compare(secondscorekeeper, sk, 1);
470 WinningConditionHelper_secondteam = t + 1;
471 secondscorekeeper = sk;
476 WinningConditionHelper_equality = (TeamScore_Compare(winnerscorekeeper, secondscorekeeper, 0) == 0);
477 if(WinningConditionHelper_equality)
478 WinningConditionHelper_winnerteam = WinningConditionHelper_secondteam = -1;
480 WinningConditionHelper_topscore = winnerscorekeeper.teamscores_primary;
481 WinningConditionHelper_secondscore = secondscorekeeper.teamscores_primary;
482 WinningConditionHelper_lowerisbetter = (teamscores_flags_primary & SFL_LOWER_IS_BETTER);
483 WinningConditionHelper_zeroisworst = (teamscores_flags_primary & SFL_ZERO_IS_WORST);
485 WinningConditionHelper_winner = NULL; // not supported in teamplay
486 WinningConditionHelper_second = NULL; // not supported in teamplay
490 WinningConditionHelper_winner = NULL;
491 WinningConditionHelper_second = NULL;
492 winnerscorekeeper = NULL;
493 secondscorekeeper = NULL;
494 FOREACH_CLIENT(IS_PLAYER(it), {
495 sk = CS(it).scorekeeper;
496 c = PlayerScore_Compare(winnerscorekeeper, sk, true);
499 WinningConditionHelper_second = WinningConditionHelper_winner;
500 WinningConditionHelper_winner = it;
501 secondscorekeeper = winnerscorekeeper;
502 winnerscorekeeper = sk;
506 c = PlayerScore_Compare(secondscorekeeper, sk, true);
509 WinningConditionHelper_second = it;
510 secondscorekeeper = sk;
515 WinningConditionHelper_equality = (PlayerScore_Compare(winnerscorekeeper, secondscorekeeper, false) == 0);
516 if(WinningConditionHelper_equality)
517 WinningConditionHelper_winner = WinningConditionHelper_second = NULL;
519 WinningConditionHelper_topscore = winnerscorekeeper.scores_primary;
520 WinningConditionHelper_secondscore = secondscorekeeper.scores_primary;
521 WinningConditionHelper_lowerisbetter = (scores_flags_primary & SFL_LOWER_IS_BETTER);
522 WinningConditionHelper_zeroisworst = (scores_flags_primary & SFL_ZERO_IS_WORST);
524 WinningConditionHelper_winnerteam = -1; // no teamplay
525 WinningConditionHelper_secondteam = -1; // no teamplay
528 if(WinningConditionHelper_topscore == 0)
530 if(scores_flags_primary & SFL_ZERO_IS_WORST)
532 if(WinningConditionHelper_lowerisbetter)
533 WinningConditionHelper_topscore = 999999999;
535 WinningConditionHelper_topscore = -999999999;
537 if(player_count == 0) // special case: empty servers DO end the match at a 0:0 tie
538 WinningConditionHelper_equality = 0;
541 if(WinningConditionHelper_secondscore == 0)
543 if(scores_flags_primary & SFL_ZERO_IS_WORST)
545 if(WinningConditionHelper_lowerisbetter)
546 WinningConditionHelper_secondscore = 999999999;
548 WinningConditionHelper_secondscore = -999999999;
552 strcpy(worldstatus, s);
554 FOREACH_CLIENT(true, {
558 s = GetPlayerScoreString(it, 1);
559 s = strcat(s, IS_REAL_CLIENT(it) ? ":human" : ":bot");
560 if(!(IS_PLAYER(it) || INGAME_JOINED(it)))
561 s = strcat(s, ":spectator");
565 if (IS_PLAYER(it) || INGAME_JOINED(it))
566 s = GetPlayerScoreString(it, 2);
571 strcpy(it.clientstatus, s);
575 string GetScoreLogLabel(string label, float fl)
577 if(fl & SFL_LOWER_IS_BETTER)
578 label = strcat(label, "<");
579 if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
580 label = strcat(label, "!!");
581 else if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
582 label = strcat(label, "!");
586 string GetPlayerScoreString(entity pl, float shortString)
597 FOREACH(Scores, true, {
598 if ((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
600 f = scores_flags(it);
601 l = scores_label(it);
602 out = strcat(out, GetScoreLogLabel(l, f), ",");
606 FOREACH(Scores, true, {
607 if((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
609 f = scores_flags(it);
610 l = scores_label(it);
611 out = strcat(out, GetScoreLogLabel(l, f), ",");
615 FOREACH(Scores, true, {
616 if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
617 if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
619 f = scores_flags(it);
620 l = scores_label(it);
621 out = strcat(out, GetScoreLogLabel(l, f), ",");
624 out = substring(out, 0, strlen(out) - 1);
626 else if((sk = CS(pl).scorekeeper))
628 FOREACH(Scores, true, {
629 if ((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
630 out = strcat(out, ftos(sk.(scores(it))), ",");
633 FOREACH(Scores, true, {
634 if ((scores_flags(it) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
635 out = strcat(out, ftos(sk.(scores(it))), ",");
638 FOREACH(Scores, true, {
639 if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
640 if((scores_flags(it) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
641 out = strcat(out, ftos(sk.(scores(it))), ",");
643 out = substring(out, 0, strlen(out) - 1);
648 string GetTeamScoreString(float tm, float shortString)
659 for(i = 0; i < MAX_TEAMSCORE; ++i)
660 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
662 f = teamscores_flags(i);
663 l = teamscores_label(i);
664 out = strcat(out, GetScoreLogLabel(l, f), ",");
667 for(i = 0; i < MAX_TEAMSCORE; ++i)
668 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
670 f = teamscores_flags(i);
671 l = teamscores_label(i);
672 out = strcat(out, GetScoreLogLabel(l, f), ",");
675 for(i = 0; i < MAX_TEAMSCORE; ++i)
676 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
677 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
679 f = teamscores_flags(i);
680 l = teamscores_label(i);
681 out = strcat(out, GetScoreLogLabel(l, f), ",");
683 out = substring(out, 0, strlen(out) - 1);
685 else if((sk = teamscorekeepers[tm - 1]))
687 for(i = 0; i < MAX_TEAMSCORE; ++i)
688 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
689 out = strcat(out, ftos(sk.(teamscores(i))), ",");
691 for(i = 0; i < MAX_TEAMSCORE; ++i)
692 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
693 out = strcat(out, ftos(sk.(teamscores(i))), ",");
695 for(i = 0; i < MAX_TEAMSCORE; ++i)
696 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
697 if((teamscores_flags(i) & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
698 out = strcat(out, ftos(sk.(teamscores(i))), ",");
699 out = substring(out, 0, strlen(out) - 1);
704 float PlayerTeamScore_Compare(entity p1, entity p2, float teams, bool strict)
706 if(teams && teamscores_entities_count)
708 if(p1.team != p2.team)
712 t1 = teamscorekeepers[p1.team - 1];
713 t2 = teamscorekeepers[p2.team - 1];
714 r = TeamScore_Compare(t1, t2, ((teams >= 0) ? 1 : strict));
721 return PlayerScore_Compare(CS(p1).scorekeeper, CS(p2).scorekeeper, strict);
724 entity PlayerScore_Sort(.float field, int teams, bool strict, bool nospectators)
726 entity p, plist, pprev, pbest, pbestprev, pfirst, plast;
731 FOREACH_CLIENT(true, { it.(field) = 0; });
733 FOREACH_CLIENT(CS(it).scorekeeper,
736 if(it.frags == FRAGS_SPECTATOR)
742 // Now plist points to the whole list.
744 pfirst = plast = NULL;
749 pprev = pbestprev = NULL;
751 for(p = plist; (pprev = p), (p = p.chain); )
753 if(PlayerTeamScore_Compare(p, pbest, teams, strict) > 0)
760 // remove pbest out of the chain
761 if(pbestprev == NULL)
764 pbestprev.chain = pbest.chain;
768 if(!plast || PlayerTeamScore_Compare(plast, pbest, teams, strict))
783 float TeamScore_GetCompareValue(float t)
788 if(t <= 0 || t >= 16)
792 error("Reading score of invalid team!");
795 sk = teamscorekeepers[t - 1];
798 s = sk.teamscores_primary;
799 if(teamscores_flags_primary & SFL_ZERO_IS_WORST)
802 if(teamscores_flags_primary & SFL_LOWER_IS_BETTER)
807 const float NAMEWIDTH = 22;
808 const float SCORESWIDTH = 58;
809 // TODO put this somewhere in common?
810 string Score_NicePrint_ItemColor(float vflags)
812 if(vflags & SFL_SORT_PRIO_PRIMARY)
814 else if(vflags & SFL_SORT_PRIO_SECONDARY)
820 void Score_NicePrint_Team(entity to, float t, float w)
828 sk = teamscorekeepers[t - 1];
831 s = strcat(s, Team_ColoredFullName(t));
832 for(i = 0; i < MAX_TEAMSCORE; ++i)
833 if(teamscores_label(i) != "")
835 fl = teamscores_flags(i);
836 sc = sk.(teamscores(i));
837 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), ScoreString(fl, sc));
843 s = strcat(s, strpad(max(0, NAMEWIDTH - strlennocol(s)), ""));
845 FOREACH(Scores, true, {
846 if(scores_label(it) != "")
848 fl = scores_flags(it);
849 s2 = scores_label(it);
850 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, substring(s2, 0, w)));
857 void Score_NicePrint_Player(entity to, entity p, float w)
865 sk = CS(p).scorekeeper;
867 s = strcat(s, playername(p.netname, p.team, false));
870 i = strlennocol(s) - NAMEWIDTH;
872 s = substring(s, 0, strlen(s) - i);
875 s = strcat(s, strpad(i, ""));
880 FOREACH(Scores, true, {
881 if(scores_label(it) != "")
883 fl = scores_flags(it);
884 sc = sk.(scores(it));
885 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, ScoreString(fl, sc)));
892 void Score_NicePrint_Spectators(entity to)
894 print_to(to, "Spectators:");
897 void Score_NicePrint_Spectator(entity to, entity p)
899 print_to(to, strcat(" ", playername(p.netname, p.team, false)));
902 .float score_dummyfield;
903 void Score_NicePrint(entity to)
909 FOREACH(Scores, true, {
910 if(scores_label(it) != "")
913 w = bound(6, floor(SCORESWIDTH / t - 1), 9);
915 p = PlayerScore_Sort(score_dummyfield, 1, true, false);
918 if(!teamscores_entities_count)
919 Score_NicePrint_Team(to, t, w);
922 if(teamscores_entities_count)
924 Score_NicePrint_Team(to, p.team, w);
925 Score_NicePrint_Player(to, p, w);
931 FOREACH_CLIENT(!IS_PLAYER(it), {
933 Score_NicePrint_Spectators(to);
934 Score_NicePrint_Spectator(to, it);
939 void PlayerScore_PlayerStats(entity p)
941 entity s = CS(p).scorekeeper;
942 FOREACH(Scores, true, {
943 if(s.(scores(it)) != 0 && scores_label(it) != "")
944 PlayerStats_GameReport_Event_Player(s.owner,
945 strcat(PLAYERSTATS_SCOREBOARD, scores_label(it)), s.(scores(it)));
949 void PlayerScore_TeamStats()
953 for(t = 0; t < 16; ++t)
955 sk = teamscorekeepers[t];
958 for(i = 0; i < MAX_TEAMSCORE; ++i)
959 if(sk.(teamscores(i)) != 0 && teamscores_label(i) != "")
960 // the +1 is important here!
961 PlayerStats_GameReport_Event_Team(t+1,
962 strcat(PLAYERSTATS_SCOREBOARD, teamscores_label(i)), sk.(teamscores(i)));