X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fteamplay.qh;h=33f9d02d7e6b01da87c6dd86e6217b3ab546aa95;hp=776a80d329cf91d5917f1af4e1ba7275eb18a731;hb=e0012447bfce1b551df3dc01b043655aa93dafad;hpb=5d7faa5a29c0eb014b973c34e057b8774d3f0db9 diff --git a/qcsrc/server/teamplay.qh b/qcsrc/server/teamplay.qh index 776a80d329..33f9d02d7e 100644 --- a/qcsrc/server/teamplay.qh +++ b/qcsrc/server/teamplay.qh @@ -1,5 +1,13 @@ #pragma once +int autocvar_teamplay_mode; + +bool autocvar_g_changeteam_banned; +bool autocvar_teamplay_lockonrestart; + +bool autocvar_g_balance_teams; +bool autocvar_g_balance_teams_prevent_imbalance; + bool lockteams; // ========================== Global teams API ================================ @@ -83,13 +91,25 @@ void SetPlayerColors(entity player, float _color); /// \return True if team switch was successful, false otherwise. bool Player_SetTeamIndex(entity player, int index); +enum +{ + TEAM_CHANGE_AUTO = 2, ///< The team was selected by autobalance. + TEAM_CHANGE_MANUAL = 3, ///< Player has manually selected their team. + TEAM_CHANGE_SPECTATOR = 4 ///< Player is joining spectators. //TODO: Remove? +}; + /// \brief Sets the team of the player. /// \param[in,out] player Player to adjust. /// \param[in] team_index Index of the team to set. -/// \param[in] type ??? +/// \param[in] type Type of the team change. See TEAM_CHANGE constants. /// \return True if team switch was successful, false otherwise. bool SetPlayerTeam(entity player, int team_index, int type); +/// \brief Sets the team of the player with all sanity checks. +/// \param[in,out] player Player to adjust. +/// \param[in] team_index Index of the team to set. +void Player_SetTeamIndexChecked(entity player, int team_index); + /// \brief Moves player to the specified team. /// \param[in,out] client Client to move. /// \param[in] team_index Index of the team. @@ -97,21 +117,39 @@ bool SetPlayerTeam(entity player, int team_index, int type); /// \return True on success, false otherwise. bool MoveToTeam(entity client, int team_index, int type); -/// \brief Kills player as a result of team change. -/// \param[in,out] player Player to kill. -void KillPlayerForTeamChange(entity player); - enum { - TEAM_CHANGE_AUTO = 2, - TEAM_CHANGE_MANUAL = 3, - TEAM_CHANGE_SPECTATOR = 4 + TEAM_FORCE_SPECTATOR = -1, ///< Force the player to spectator team. + TEAM_FORCE_DEFAULT = 0 ///< Don't force any team. }; -void LogTeamchange(float player_id, float team_number, int type); +/// \brief Returns whether player has real forced team. Spectator team is +/// ignored. +/// \param[in] player Player to check. +/// \return True if player has real forced team, false otherwise. +bool Player_HasRealForcedTeam(entity player); + +/// \brief Returns the index of the forced team of the given player. +/// \param[in] player Player to check. +/// \return Index of the forced team. +int Player_GetForcedTeamIndex(entity player); + +/// \brief Sets the index of the forced team of the given player. +/// \param[in,out] player Player to adjust. +/// \param[in] team_index Index of the team to set. +void Player_SetForcedTeamIndex(entity player, int team_index); + +/// \brief Determines the forced team of the player using current global config. +/// \param[in,out] player Player to adjust. +void Player_DetermineForcedTeam(entity player); // ========================= Team balance API ================================= +/// \brief Assigns the given player to a team that will make the game most +/// balanced. +/// \param[in,out] player Player to assign. +void TeamBalance_JoinBestTeam(entity player); + /// \brief Checks whether the player can join teams according to global /// configuration and mutator settings. /// \param[in] for_whom Player to check for. Pass NULL for global rules. @@ -174,8 +212,6 @@ int TeamBalance_FindBestTeam(entity balance, entity player, bool ignore_player); /// function. int TeamBalance_FindBestTeams(entity balance, entity player, bool use_score); -void TeamBalance_JoinBestTeam(entity this); - /// \brief Describes the result of comparing teams. enum { @@ -198,13 +234,33 @@ int TeamBalance_CompareTeams(entity balance, int team_index_a, int team_index_b, entity player, bool use_score); /// \brief Switches a bot from one team to another if teams are not balanced. -/// \param[in] source_team_index Index of the team to switch from. +void TeamBalance_AutoBalanceBots(); + +/// \brief Returns the index of the team with most players that is contained in +/// the given bitmask of teams. +/// \param[in] balance Team balance entity. +/// \param[in] teams Bitmask of teams to search in. +/// \return Index of the team with most players. +int TeamBalance_GetLargestTeamIndex(entity balance, int teams); + +/// \brief Returns the player who is the most suitable for switching between +/// the given teams. +/// \param[in] source_team_index Index of the team to search in. /// \param[in] destination_team_index Index of the team to switch to. -void TeamBalance_AutoBalanceBots(int source_team_index, - int destination_team_index); +/// \param[in] is_bot True to search for bot, false for human. +/// \return Player who is the most suitable for switching between the given +/// teams or NULL if not found. +entity TeamBalance_GetPlayerForTeamSwitch(int source_team_index, + int destination_team_index, bool is_bot); // ============================ Internal API ================================== +void LogTeamChange(float player_id, float team_number, int type); + +/// \brief Kills player as a result of team change. +/// \param[in,out] player Player to kill. +void KillPlayerForTeamChange(entity player); + /// \brief Returns whether the team change to the specified team is allowed. /// \param[in] balance Team balance entity. /// \param[in] index Index of the team. @@ -262,3 +318,9 @@ int TeamBalanceTeam_GetNumberOfBots(entity team_ent); /// function. int TeamBalance_CompareTeamsInternal(entity team_a, entity team_index_b, entity player, bool use_score); + +/// \brief Called when the player connects or when they change their color with +/// the "color" command. +/// \param[in,out] player Player that requested a new color. +/// \param[in] new_color Requested color. +void SV_ChangeTeam(entity player, int new_color);