X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fscores.qh;h=c26a4d295ea78cc9ab977d447f336ce7dbcd424f;hp=f94b683323dfb8b57d974c7d2b2dd683ace5d90b;hb=b0a06888ff894f9d334f6277b996f98ae8a665a0;hpb=dcaa708cee1093798a651369d9fd46ad5074121e diff --git a/qcsrc/server/scores.qh b/qcsrc/server/scores.qh index f94b68332..c26a4d295 100644 --- a/qcsrc/server/scores.qh +++ b/qcsrc/server/scores.qh @@ -1,8 +1,7 @@ entity scores_initialized; // non-world when scores labels/rules have been set .float scores[MAX_SCORE]; .float teamscores[MAX_TEAMSCORE]; - -.float scores_accumulated[MAX_SCORE]; // for player stats only +.float scoreboard_pos; /** * Attaches a PlayerScore entity to a player. Use that in ClientConnect. @@ -27,8 +26,9 @@ float PlayerScore_Add(entity player, float scorefield, float score); * Initialize the score of this player if needed. * Does nothing in teamplay. * Use that when a spectator becomes a player. + * Returns whether clearing has been performed */ -void PlayerScore_Clear(entity player); +float PlayerScore_Clear(entity player); /** * Adds a score to the player's team's scores. @@ -119,5 +119,8 @@ string GetTeamScoreString(float tm, float shortString); * Sorts the players and stores their place in the given field, starting with * 1. Non-players get 0 written into that field. * Returns the beginning of a sorted chain of the non-spectators. + * teams: >0: sort by teams first (always strict ordering); <0: sort by teams only (respects strict flag) + * strict: return a strict ordering + * nospectators: exclude spectators */ -entity PlayerScore_Sort(.float field); +entity PlayerScore_Sort(.float field, float teams, float strict, float nospectators);