]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make sure team is consistently set to -1 on connection for human players and bots 1445/head
authorterencehill <piuntn@gmail.com>
Sun, 26 Jan 2025 03:12:57 +0000 (04:12 +0100)
committerterencehill <piuntn@gmail.com>
Sat, 1 Mar 2025 13:12:02 +0000 (13:12 +0000)
Thanks to this change
* the Player_ChangeTeam and Player_ChangedTeam mutator hooks (currently unused by any
  mutator / gamemode) are consistently no longer called on connection
* the workaround in Player_SetTeamIndex that handles the situation where a bot unintentionally spawns
  with a valid team set depending on its personal colors is no longer needed

qcsrc/server/bot/default/bot.qc
qcsrc/server/client.qc
qcsrc/server/teamplay.qc
qcsrc/server/teamplay.qh

index 6965b0795f986fd0f4395514ebf7fb827a5105e0..e4356fb027945622fef1a8e6f1ee10999dac3e6d 100644 (file)
@@ -312,8 +312,9 @@ void bot_setnameandstuff(entity this)
 
        this.bot_config_loaded = true;
 
-       // this is really only a default, TeamBalance_JoinBestTeam is called later
        setcolor(this, stof(bot_shirt) * 16 + stof(bot_pants));
+       this.team = -1; // undo team change by setcolor
+       // save clientcolors now because they may be overriden when joining a team
        this.bot_preferredcolors = this.clientcolors;
 
        string prefix = (autocvar_g_campaign ? "" : autocvar_bot_prefix);
index 9c2aaf892f6125eeca5cb908706f6273b3c06479..b3a9a806ccc7a65efe2a457ae9b2e3cf8a98884f 100644 (file)
@@ -1141,6 +1141,7 @@ void ClientConnect(entity this)
 
        bot_clientconnect(this);
 
+       this.team = -1;
        Player_DetermineForcedTeam(this);
 
        TRANSMUTE(Observer, this);
index c442a78d6bdaea0bf7e85eb8d9d33f7ce196ed9e..478ba1491e88982dc8959e1021f29f60eaaca00e 100644 (file)
@@ -165,8 +165,10 @@ void setcolor(entity this, int clr)
        if(teamplay)
                this.team = (clr & 15) + 1;
        else
-               this.team = 0;
+               this.team = -1;
 #else
+       // sets clientcolors and team (even in FFA games)
+       // and sends notification to all clients
        builtin_setcolor(this, clr);
 #endif
 }
@@ -209,16 +211,8 @@ bool Player_SetTeamIndex(entity player, int index)
 {
        int new_team = Team_IndexToTeam(index);
        if (player.team == new_team)
-       {
-               if (new_team != -1)
-               {
-                       // This is important when players join the game and one of their
-                       // color matches the team color while other doesn't. For example
-                       // [BOT]Lion: color 0 4.
-                       SetPlayerColors(player, new_team - 1);
-               }
                return true;
-       }
+
        int old_index = Team_TeamToIndex(player.team);
        if (MUTATOR_CALLHOOK(Player_ChangeTeam, player, old_index, index) == true)
        {
index b1f1255c1d20347e31c60142a6e3f3708df2455a..947da8bae7aa700d702cdddc683290a093b05d3c 100644 (file)
@@ -354,7 +354,7 @@ int TeamBalance_CompareTeamsInternal(entity team_a, entity team_index_b,
        entity player, bool use_score);
 
 /// \brief Called when the player changes color with the "color" command.
-/// Note that the "color" command is always called early on player connection
+/// \note the "color" command is always called early on player connection
 /// \param[in,out] player Player that requested a new color.
 /// \param[in] new_color Requested color.
 void SV_ChangeTeam(entity player, int new_color);