X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fscores.qh;fp=qcsrc%2Fserver%2Fscores.qh;h=3e553f4d813b5b6396a133eef6e32c790dfc4e11;hb=61bd69dc7a8e218b6beff349fd332eb7ac8a81ae;hp=b547730efef6035e008386d4fd38d199d55d3fdd;hpb=389e36355a60860d710df42b1370b9f4e6e7ddb3;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/scores.qh b/qcsrc/server/scores.qh index b547730ef..3e553f4d8 100644 --- a/qcsrc/server/scores.qh +++ b/qcsrc/server/scores.qh @@ -3,8 +3,6 @@ #include entity scores_initialized; // non-world when scores labels/rules have been set -.float scores[MAX_SCORE]; -.float teamscores[MAX_TEAMSCORE]; .float scoreboard_pos; /** @@ -24,7 +22,7 @@ void PlayerScore_Detach(entity player); * Means: FIXME make players unable to join the game when not called ClientConnect yet. * Returns the new score. */ -float PlayerScore_Add(entity player, float scorefield, float score); +float PlayerScore_Add(entity player, PlayerScoreField scorefield, float score); /** * Initialize the score of this player if needed. @@ -57,12 +55,12 @@ float TeamScore_GetCompareValue(float t); * Adds a score to both the player and the team. Returns the team score if * possible, otherwise the player score. */ -float PlayerTeamScore_Add(entity player, float pscorefield, float tscorefield, float score); +float PlayerTeamScore_Add(entity player, PlayerScoreField pscorefield, float tscorefield, float score); /** * Adds to the generic score fields for both the player and the team. */ -#define PlayerTeamScore_AddScore(p,s) PlayerTeamScore_Add(p, SP_SCORE, ST_SCORE, s) +#define PlayerTeamScore_AddScore(p, s) PlayerTeamScore_Add(p, SP_SCORE, ST_SCORE, s) /** * Set the label of a team score item, as well as the scoring flags. @@ -72,7 +70,7 @@ void ScoreInfo_SetLabel_TeamScore(float i, string label, float scoreflags); /** * Set the label of a player score item, as well as the scoring flags. */ -void ScoreInfo_SetLabel_PlayerScore(float i, string label, float scoreflags); +void ScoreInfo_SetLabel_PlayerScore(PlayerScoreField i, string label, float scoreflags); /** * Initialize the scores info for the given number of teams.