2 entity teamscorekeepers[16];
3 string scores_label[MAX_SCORE];
4 float scores_flags[MAX_SCORE];
5 string teamscores_label[MAX_TEAMSCORE];
6 float teamscores_flags[MAX_TEAMSCORE];
7 float teamscores_entities_count;
8 var .float scores_primary;
9 var .float teamscores_primary;
10 float scores_flags_primary;
11 float teamscores_flags_primary;
13 vector ScoreField_Compare(entity t1, entity t2, .float field, float fieldflags, vector previous, float strict) // returns: cmp value, best prio
15 if(!strict && !(fieldflags & SFL_SORT_PRIO_MASK)) // column does not sort
17 if((fieldflags & SFL_SORT_PRIO_MASK) < previous_y)
19 if(t1.field == t2.field)
22 previous_y = fieldflags & SFL_SORT_PRIO_MASK;
24 if(fieldflags & SFL_ZERO_IS_WORST)
31 else if(t2.field == 0)
38 if(fieldflags & SFL_LOWER_IS_BETTER)
39 previous_x = (t2.field - t1.field);
41 previous_x = (t1.field - t2.field);
50 float TeamScore_SendEntity(entity to, float sendflags)
52 float i, p, longflags;
54 WriteByte(MSG_ENTITY, ENT_CLIENT_TEAMSCORES);
55 WriteByte(MSG_ENTITY, self.team - 1);
58 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
59 if(self.(teamscores[i]) > 127 || self.(teamscores[i]) <= -128)
62 #if MAX_TEAMSCORE <= 8
63 WriteByte(MSG_ENTITY, sendflags);
64 WriteByte(MSG_ENTITY, longflags);
66 WriteShort(MSG_ENTITY, sendflags);
67 WriteShort(MSG_ENTITY, longflags);
69 for(i = 0, p = 1; i < MAX_TEAMSCORE; ++i, p *= 2)
73 WriteInt24_t(MSG_ENTITY, self.(teamscores[i]));
75 WriteChar(MSG_ENTITY, self.(teamscores[i]));
81 void TeamScore_Spawn(float t, string name)
85 ts.classname = "csqc_score_team";
86 ts.netname = name; // not used yet, FIXME
88 Net_LinkEntity(ts, FALSE, 0, TeamScore_SendEntity);
89 teamscorekeepers[t - 1] = ts;
90 ++teamscores_entities_count;
91 PlayerStats_AddTeam(t);
94 float TeamScore_AddToTeam(float t, float scorefield, float score)
101 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
102 if(t <= 0 || t >= 16)
106 error("Adding score to invalid team!");
108 s = teamscorekeepers[t - 1];
113 error("Adding score to unknown team!");
116 if(teamscores_label[scorefield] != "")
117 s.SendFlags |= pow(2, scorefield);
118 return (s.(teamscores[scorefield]) += score);
121 float TeamScore_Add(entity player, float scorefield, float score)
123 return TeamScore_AddToTeam(player.team, scorefield, score);
126 float TeamScore_Compare(entity t1, entity t2, float strict)
128 if(!t1 || !t2) return (!t2) - !t1;
130 vector result = '0 0 0';
132 for(i = 0; i < MAX_TEAMSCORE; ++i)
136 result = ScoreField_Compare(t1, t2, f, teamscores_flags[i], result, strict);
139 if (result_x == 0 && strict)
140 result_x = t1.team - t2.team;
146 * the scoreinfo entity
149 void ScoreInfo_SetLabel_PlayerScore(float i, string label, float scoreflags)
151 scores_label[i] = label;
152 scores_flags[i] = scoreflags;
153 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
155 scores_primary = scores[i];
156 scores_flags_primary = scoreflags;
160 PlayerStats_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
161 PlayerStats_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
165 void ScoreInfo_SetLabel_TeamScore(float i, string label, float scoreflags)
167 teamscores_label[i] = label;
168 teamscores_flags[i] = scoreflags;
169 if((scoreflags & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
171 teamscores_primary = teamscores[i];
172 teamscores_flags_primary = scoreflags;
176 PlayerStats_AddEvent(strcat(PLAYERSTATS_TOTAL, label));
177 PlayerStats_AddEvent(strcat(PLAYERSTATS_SCOREBOARD, label));
181 float ScoreInfo_SendEntity(entity to, float sf)
184 WriteByte(MSG_ENTITY, ENT_CLIENT_SCORES_INFO);
185 WriteInt24_t(MSG_ENTITY, MapInfo_LoadedGametype);
186 for(i = 0; i < MAX_SCORE; ++i)
188 WriteString(MSG_ENTITY, scores_label[i]);
189 WriteByte(MSG_ENTITY, scores_flags[i]);
191 for(i = 0; i < MAX_TEAMSCORE; ++i)
193 WriteString(MSG_ENTITY, teamscores_label[i]);
194 WriteByte(MSG_ENTITY, teamscores_flags[i]);
199 void ScoreInfo_Init(float teams)
201 if(scores_initialized)
203 scores_initialized.SendFlags |= 1; // force a resend
207 scores_initialized = spawn();
208 scores_initialized.classname = "ent_client_scoreinfo";
209 Net_LinkEntity(scores_initialized, FALSE, 0, ScoreInfo_SendEntity);
212 TeamScore_Spawn(NUM_TEAM_1, "Red");
214 TeamScore_Spawn(NUM_TEAM_2, "Blue");
216 TeamScore_Spawn(NUM_TEAM_3, "Yellow");
218 TeamScore_Spawn(NUM_TEAM_4, "Pink");
222 * per-player score entities
225 float PlayerScore_SendEntity(entity to, float sendflags)
227 float i, p, longflags;
229 WriteByte(MSG_ENTITY, ENT_CLIENT_SCORES);
230 WriteByte(MSG_ENTITY, num_for_edict(self.owner));
233 for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
234 if(self.(scores[i]) > 127 || self.(scores[i]) <= -128)
238 WriteByte(MSG_ENTITY, sendflags);
239 WriteByte(MSG_ENTITY, longflags);
241 WriteShort(MSG_ENTITY, sendflags);
242 WriteShort(MSG_ENTITY, longflags);
244 for(i = 0, p = 1; i < MAX_SCORE; ++i, p *= 2)
248 WriteInt24_t(MSG_ENTITY, self.(scores[i]));
250 WriteChar(MSG_ENTITY, self.(scores[i]));
256 float PlayerScore_Clear(entity player)
261 if(teamscores_entities_count)
264 if(MUTATOR_CALLHOOK(ForbidPlayerScore_Clear)) return 0;
266 sk = player.scorekeeper;
267 for(i = 0; i < MAX_SCORE; ++i)
269 if(sk.(scores[i]) != 0)
270 if(scores_label[i] != "")
271 sk.SendFlags |= pow(2, i);
278 void Score_ClearAll()
282 FOR_EACH_CLIENTSLOT(p)
287 for(i = 0; i < MAX_SCORE; ++i)
289 if(sk.(scores[i]) != 0)
290 if(scores_label[i] != "")
291 sk.SendFlags |= pow(2, i);
295 for(t = 0; t < 16; ++t)
297 sk = teamscorekeepers[t];
300 for(i = 0; i < MAX_TEAMSCORE; ++i)
302 if(sk.(teamscores[i]) != 0)
303 if(teamscores_label[i] != "")
304 sk.SendFlags |= pow(2, i);
305 sk.(teamscores[i]) = 0;
310 void PlayerScore_Attach(entity player)
313 if(player.scorekeeper)
314 error("player already has a scorekeeper");
317 Net_LinkEntity(sk, FALSE, 0, PlayerScore_SendEntity);
318 player.scorekeeper = sk;
321 void PlayerScore_Detach(entity player)
323 if(!player.scorekeeper)
324 error("player has no scorekeeper");
325 remove(player.scorekeeper);
326 player.scorekeeper = world;
329 float PlayerScore_Add(entity player, float scorefield, float score)
334 if(!(g_lms && scorefield == SP_LMS_RANK)) // allow writing to this field in intermission as it is needed for newly joining players
337 if(!scores_initialized) return 0; // FIXME remove this when everything uses this system
338 s = player.scorekeeper;
343 backtrace("Adding score to unknown player!");
347 if(scores_label[scorefield] != "")
348 s.SendFlags |= pow(2, scorefield);
350 PlayerStats_Event(s.owner, strcat(PLAYERSTATS_TOTAL, scores_label[scorefield]), score);
351 return (s.(scores[scorefield]) += score);
354 float PlayerTeamScore_Add(entity player, float pscorefield, float tscorefield, float score)
357 r = PlayerScore_Add(player, pscorefield, score);
358 if(teamscores_entities_count) // only for teamplay
359 r = TeamScore_Add(player, tscorefield, score);
363 float PlayerScore_Compare(entity t1, entity t2, float strict)
365 if(!t1 || !t2) return (!t2) - !t1;
367 vector result = '0 0 0';
369 for(i = 0; i < MAX_SCORE; ++i)
373 result = ScoreField_Compare(t1, t2, f, scores_flags[i], result, strict);
376 if (result_x == 0 && strict)
377 result_x = num_for_edict(t1.owner) - num_for_edict(t2.owner);
382 void WinningConditionHelper()
388 entity winnerscorekeeper;
389 entity secondscorekeeper;
393 // gametype:P<pure>:S<slots>::plabel,plabel:tlabel,tlabel:teamid:tscore,tscore:teamid:tscore,tscore
394 // score labels always start with a symbol or with lower case
395 // so to match pure, match for :P0:
396 // to match full, match for :S0:
398 fullstatus = autocvar_g_full_getstatus_responses;
401 s = strcat(s, ":", autocvar_g_xonoticversion);
402 s = strcat(s, ":P", ftos(cvar_purechanges_count));
403 s = strcat(s, ":S", ftos(nJoinAllowed(world)));
404 s = strcat(s, ":F", ftos(serverflags));
405 s = strcat(s, ":M", modname);
406 s = strcat(s, "::", GetPlayerScoreString(world, (fullstatus ? 1 : 2)));
408 if(teamscores_entities_count)
412 s = strcat(s, ":", GetTeamScoreString(0, 1));
413 for(t = 0; t < 16; ++t)
414 if(teamscorekeepers[t])
415 s = strcat(s, ":", ftos(t+1), ":", GetTeamScoreString(t+1, 1));
417 WinningConditionHelper_winnerteam = -1;
418 WinningConditionHelper_secondteam = -1;
419 winnerscorekeeper = world;
420 secondscorekeeper = world;
421 for(t = 0; t < 16; ++t)
423 sk = teamscorekeepers[t];
424 c = TeamScore_Compare(winnerscorekeeper, sk, 1);
427 WinningConditionHelper_secondteam = WinningConditionHelper_winnerteam;
428 WinningConditionHelper_winnerteam = t + 1;
429 secondscorekeeper = winnerscorekeeper;
430 winnerscorekeeper = sk;
434 c = TeamScore_Compare(secondscorekeeper, sk, 1);
437 WinningConditionHelper_secondteam = t + 1;
438 secondscorekeeper = sk;
443 WinningConditionHelper_equality = (TeamScore_Compare(winnerscorekeeper, secondscorekeeper, 0) == 0);
444 if(WinningConditionHelper_equality)
445 WinningConditionHelper_winnerteam = WinningConditionHelper_secondteam = -1;
447 WinningConditionHelper_topscore = winnerscorekeeper.teamscores_primary;
448 WinningConditionHelper_secondscore = secondscorekeeper.teamscores_primary;
449 WinningConditionHelper_lowerisbetter = (teamscores_flags_primary & SFL_LOWER_IS_BETTER);
450 WinningConditionHelper_zeroisworst = (teamscores_flags_primary & SFL_ZERO_IS_WORST);
452 WinningConditionHelper_winner = world; // not supported in teamplay
453 WinningConditionHelper_second = world; // not supported in teamplay
457 WinningConditionHelper_winner = world;
458 WinningConditionHelper_second = world;
459 winnerscorekeeper = world;
460 secondscorekeeper = world;
464 c = PlayerScore_Compare(winnerscorekeeper, sk, 1);
467 WinningConditionHelper_second = WinningConditionHelper_winner;
468 WinningConditionHelper_winner = p;
469 secondscorekeeper = winnerscorekeeper;
470 winnerscorekeeper = sk;
474 c = PlayerScore_Compare(secondscorekeeper, sk, 1);
477 WinningConditionHelper_second = p;
478 secondscorekeeper = sk;
483 WinningConditionHelper_equality = (PlayerScore_Compare(winnerscorekeeper, secondscorekeeper, 0) == 0);
484 if(WinningConditionHelper_equality)
485 WinningConditionHelper_winner = WinningConditionHelper_second = world;
487 WinningConditionHelper_topscore = winnerscorekeeper.scores_primary;
488 WinningConditionHelper_secondscore = secondscorekeeper.scores_primary;
489 WinningConditionHelper_lowerisbetter = (scores_flags_primary & SFL_LOWER_IS_BETTER);
490 WinningConditionHelper_zeroisworst = (scores_flags_primary & SFL_ZERO_IS_WORST);
492 WinningConditionHelper_winnerteam = -1; // no teamplay
493 WinningConditionHelper_secondteam = -1; // no teamplay
496 if(WinningConditionHelper_topscore == 0)
498 if(scores_flags_primary & SFL_ZERO_IS_WORST)
500 if(WinningConditionHelper_lowerisbetter)
501 WinningConditionHelper_topscore = 999999999;
503 WinningConditionHelper_topscore = -999999999;
505 WinningConditionHelper_equality = 0;
508 if(WinningConditionHelper_secondscore == 0)
510 if(scores_flags_primary & SFL_ZERO_IS_WORST)
512 if(WinningConditionHelper_lowerisbetter)
513 WinningConditionHelper_secondscore = 999999999;
515 WinningConditionHelper_secondscore = -999999999;
520 strunzone(worldstatus);
521 worldstatus = strzone(s);
527 s = GetPlayerScoreString(p, 1);
528 if(IS_REAL_CLIENT(p))
529 s = strcat(s, ":human");
531 s = strcat(s, ":bot");
532 if(!IS_PLAYER(p) && p.caplayer != 1 && !g_lms)
533 s = strcat(s, ":spectator");
537 if(IS_PLAYER(p) || p.caplayer == 1 || g_lms)
538 s = GetPlayerScoreString(p, 2);
544 strunzone(p.clientstatus);
545 p.clientstatus = strzone(s);
549 string GetScoreLogLabel(string label, float fl)
551 if(fl & SFL_LOWER_IS_BETTER)
552 label = strcat(label, "<");
553 if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
554 label = strcat(label, "!!");
555 else if((fl & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
556 label = strcat(label, "!");
560 string GetPlayerScoreString(entity pl, float shortString)
571 for(i = 0; i < MAX_SCORE; ++i)
572 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
576 out = strcat(out, GetScoreLogLabel(l, f), ",");
579 for(i = 0; i < MAX_SCORE; ++i)
580 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
584 out = strcat(out, GetScoreLogLabel(l, f), ",");
587 for(i = 0; i < MAX_SCORE; ++i)
588 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
589 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
593 out = strcat(out, GetScoreLogLabel(l, f), ",");
595 out = substring(out, 0, strlen(out) - 1);
597 else if((sk = pl.scorekeeper))
599 for(i = 0; i < MAX_SCORE; ++i)
600 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
601 out = strcat(out, ftos(sk.(scores[i])), ",");
603 for(i = 0; i < MAX_SCORE; ++i)
604 if((scores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
605 out = strcat(out, ftos(sk.(scores[i])), ",");
607 for(i = 0; i < MAX_SCORE; ++i)
608 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
609 if((scores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
610 out = strcat(out, ftos(sk.(scores[i])), ",");
611 out = substring(out, 0, strlen(out) - 1);
616 string GetTeamScoreString(float tm, float shortString)
627 for(i = 0; i < MAX_TEAMSCORE; ++i)
628 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
630 f = teamscores_flags[i];
631 l = teamscores_label[i];
632 out = strcat(out, GetScoreLogLabel(l, f), ",");
635 for(i = 0; i < MAX_TEAMSCORE; ++i)
636 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
638 f = teamscores_flags[i];
639 l = teamscores_label[i];
640 out = strcat(out, GetScoreLogLabel(l, f), ",");
643 for(i = 0; i < MAX_TEAMSCORE; ++i)
644 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
645 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
647 f = teamscores_flags[i];
648 l = teamscores_label[i];
649 out = strcat(out, GetScoreLogLabel(l, f), ",");
651 out = substring(out, 0, strlen(out) - 1);
653 else if((sk = teamscorekeepers[tm - 1]))
655 for(i = 0; i < MAX_TEAMSCORE; ++i)
656 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_PRIMARY)
657 out = strcat(out, ftos(sk.(teamscores[i])), ",");
659 for(i = 0; i < MAX_TEAMSCORE; ++i)
660 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) == SFL_SORT_PRIO_SECONDARY)
661 out = strcat(out, ftos(sk.(teamscores[i])), ",");
663 for(i = 0; i < MAX_TEAMSCORE; ++i)
664 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_PRIMARY)
665 if((teamscores_flags[i] & SFL_SORT_PRIO_MASK) != SFL_SORT_PRIO_SECONDARY)
666 out = strcat(out, ftos(sk.(teamscores[i])), ",");
667 out = substring(out, 0, strlen(out) - 1);
672 float PlayerTeamScore_Compare(entity p1, entity p2, float teams, float strict)
674 if(teams && teamscores_entities_count)
676 if(p1.team != p2.team)
680 t1 = teamscorekeepers[p1.team - 1];
681 t2 = teamscorekeepers[p2.team - 1];
682 r = TeamScore_Compare(t1, t2, ((teams >= 0) ? 1 : strict));
689 return PlayerScore_Compare(p1.scorekeeper, p2.scorekeeper, strict);
692 entity PlayerScore_Sort(.float field, float teams, float strict, float nospectators)
694 entity p, plist, pprev, pbest, pbestprev, pfirst, plast;
702 FOR_EACH_CLIENT(p) if(p.scorekeeper)
705 if(p.frags == FRAGS_SPECTATOR)
711 // Now plist points to the whole list.
713 pfirst = plast = world;
718 pprev = pbestprev = world;
720 for(p = plist; (pprev = p), (p = p.chain); )
722 if(PlayerTeamScore_Compare(p, pbest, teams, strict) > 0)
729 // remove pbest out of the chain
730 if(pbestprev == world)
733 pbestprev.chain = pbest.chain;
737 if(!plast || PlayerTeamScore_Compare(plast, pbest, teams, 0))
752 float TeamScore_GetCompareValue(float t)
757 if(t <= 0 || t >= 16)
761 error("Reading score of invalid team!");
764 sk = teamscorekeepers[t - 1];
767 s = sk.teamscores_primary;
768 if(teamscores_flags_primary & SFL_ZERO_IS_WORST)
771 if(teamscores_flags_primary & SFL_LOWER_IS_BETTER)
777 #define SCORESWIDTH 58
778 // TODO put this somewhere in common?
779 string Score_NicePrint_ItemColor(float vflags)
781 if(vflags & SFL_SORT_PRIO_PRIMARY)
783 else if(vflags & SFL_SORT_PRIO_SECONDARY)
789 void Score_NicePrint_Team(entity to, float t, float w)
797 sk = teamscorekeepers[t - 1];
800 s = strcat(s, Team_ColoredFullName(t));
801 for(i = 0; i < MAX_TEAMSCORE; ++i)
802 if(teamscores_label[i] != "")
804 fl = teamscores_flags[i];
805 sc = sk.(teamscores[i]);
806 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), ScoreString(fl, sc));
812 s = strcat(s, strpad(max(0, NAMEWIDTH - strlennocol(s)), ""));
814 for(i = 0; i < MAX_SCORE; ++i)
815 if(scores_label[i] != "")
817 fl = scores_flags[i];
818 s2 = scores_label[i];
819 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, substring(s2, 0, w)));
825 void Score_NicePrint_Player(entity to, entity p, float w)
835 s = strcat(s, p.netname);
838 i = strlennocol(s) - NAMEWIDTH;
840 s = substring(s, 0, strlen(s) - i);
843 s = strcat(s, strpad(i, ""));
848 for(i = 0; i < MAX_SCORE; ++i)
849 if(scores_label[i] != "")
851 fl = scores_flags[i];
853 s = strcat(s, " ", Score_NicePrint_ItemColor(fl), strpad(-w, ScoreString(fl, sc)));
859 void Score_NicePrint_Spectators(entity to)
861 print_to(to, "Spectators:");
864 void Score_NicePrint_Spectator(entity to, entity p)
866 print_to(to, strcat(" ", p.netname));
869 .float score_dummyfield;
870 void Score_NicePrint(entity to)
877 for(i = 0; i < MAX_SCORE; ++i)
878 if(scores_label[i] != "")
880 w = bound(6, floor(SCORESWIDTH / t - 1), 9);
882 p = PlayerScore_Sort(score_dummyfield, 1, 1, 0);
885 if(!teamscores_entities_count)
886 Score_NicePrint_Team(to, t, w);
889 if(teamscores_entities_count)
891 Score_NicePrint_Team(to, p.team, w);
892 Score_NicePrint_Player(to, p, w);
902 Score_NicePrint_Spectators(to);
903 Score_NicePrint_Spectator(to, p);
908 void PlayerScore_PlayerStats(entity p)
914 for(i = 0; i < MAX_SCORE; ++i)
915 if(s.(scores[i]) != 0)
916 if(scores_label[i] != "")
917 PlayerStats_Event(s.owner, strcat(PLAYERSTATS_SCOREBOARD, scores_label[i]), s.(scores[i]));
920 void PlayerScore_TeamStats(void)
924 for(t = 0; t < 16; ++t)
926 sk = teamscorekeepers[t];
929 for(i = 0; i < MAX_TEAMSCORE; ++i)
930 if(sk.(teamscores[i]) != 0)
931 if(teamscores_label[i] != "")
932 // the +1 is important here!
933 PlayerStats_TeamScore(t+1, strcat(PLAYERSTATS_SCOREBOARD, teamscores_label[i]), sk.(teamscores[i]));