2018-06-28 14:34:52 -04:00
//This function is Called at:
//CreateServer(%mission, %missionType) in Server.cs
2018-11-10 19:55:31 -05:00
//
//To control whether the server auto resets when empty
//$Host::EmptyServerReset = 0;
2018-06-28 14:34:52 -04:00
2018-11-10 20:52:29 -05:00
package StartTeamCounts
{
2018-06-28 14:34:52 -04:00
2018-11-13 15:30:41 -05:00
function CreateServer ( % mission , % missionType )
2018-06-28 14:34:52 -04:00
{
2018-11-13 15:30:41 -05:00
parent : : CreateServer ( % mission , % missionType ) ;
2018-11-10 20:52:29 -05:00
//Make sure teamchange variable is set
2018-09-16 11:07:47 -04:00
ResetClientChangedTeams ( ) ;
2018-11-10 20:52:29 -05:00
//Whether the server auto restarts when empty or not
2018-11-10 19:55:31 -05:00
$ Host : : Dedicated = $ Host : : EmptyServerReset ;
2018-10-13 17:32:21 -04:00
//Call for a GetTeamCount update
2018-06-28 14:34:52 -04:00
GetTeamCounts ( % game , % client , % respawn ) ;
}
} ;
// Prevent package from being activated if it is already
if ( ! isActivePackage ( StartTeamCounts ) )
activatePackage ( StartTeamCounts ) ;
function GetTeamCounts ( % game , % client , % respawn )
{
2018-11-10 20:52:29 -05:00
//Check pug password
CheckPUGpassword ( ) ;
2018-10-25 20:36:34 -04:00
2018-11-10 20:52:29 -05:00
//Get teamcounts
2018-11-13 15:30:41 -05:00
if ( $ GetCountsClientTeamChange & & $ countdownStarted & & $ MatchStarted )
2018-11-10 20:52:29 -05:00
{
//Team Count code by Keen
$ PlayerCount [ 0 ] = 0 ;
$ PlayerCount [ 1 ] = 0 ;
$ PlayerCount [ 2 ] = 0 ;
2018-06-28 14:34:52 -04:00
for ( % i = 0 ; % i < ClientGroup . getCount ( ) ; % i + + )
{
% client = ClientGroup . getObject ( % i ) ;
//if(!%client.isAIControlled())
$ PlayerCount [ % client . team ] + + ;
}
2018-09-16 11:07:47 -04:00
//echo ("Clientgroup " @ ClientGroup.getCount());
//echo ("$PlayerCount[0] " @ $PlayerCount[0]);
//echo ("$PlayerCount[1] " @ $PlayerCount[1]);
//echo ("$PlayerCount[2] " @ $PlayerCount[2]);
//echo ("client.team " @ %client.team);
2018-06-28 14:34:52 -04:00
//Other variables
2018-11-10 20:52:29 -05:00
//Amount of players on teams
$ TotalTeamPlayerCount = $ PlayerCount [ 1 ] + $ PlayerCount [ 2 ] ;
//Amount of all players including observers
$ AllPlayerCount = $ PlayerCount [ 1 ] + $ PlayerCount [ 2 ] + $ PlayerCount [ 0 ] ;
2018-06-28 14:34:52 -04:00
2018-09-16 11:07:47 -04:00
2018-11-10 20:52:29 -05:00
//Start Base Rape Notify
NBRStatusNotify ( % game , % client , % respawn ) ;
2018-11-04 16:59:10 -05:00
2018-11-10 20:52:29 -05:00
//Call Team Balance Notify
2018-11-12 23:53:16 -05:00
TeamBalanceNotify ( % game , % client , % respawn ) ;
2018-11-04 16:59:10 -05:00
2018-11-10 20:52:29 -05:00
//AntiCloak Start
2018-11-12 23:53:16 -05:00
ActivateAntiCloak ( ) ;
2018-11-04 16:59:10 -05:00
2018-11-10 23:10:39 -05:00
//Set so counter wont run when it doesnt need to.
2018-09-16 11:07:47 -04:00
$ GetCountsClientTeamChange = false ;
2018-11-10 20:52:29 -05:00
}
2018-06-28 14:34:52 -04:00
2018-11-10 20:52:29 -05:00
//Call itself again. Every 5 seconds.
schedule ( 5000 , 0 , "GetTeamCounts" ) ;
2018-06-28 14:34:52 -04:00
}
2018-09-16 11:07:47 -04:00
//Run at DefaultGame::clientJoinTeam, DefaultGame::clientChangeTeam, DefaultGame::assignClientTeam in evo defaultgame.ovl
//Also Run at DefaultGame::onClientEnterObserverMode, DefaultGame::AIChangeTeam, DefaultGame::onClientLeaveGame, DefaultGame::forceObserver in evo defaultgame.ovl
2018-11-10 20:52:29 -05:00
//And finally GameConnection::onConnect in evo server.ovl and CTFGame::flagCap in evo CTFGame.ovl
2018-09-16 11:07:47 -04:00
//Added so the bulk of GetCounts doesnt run when it doesnt need to causing unnecessary latency that may or may not have existed, but probably is good practice.
//GetCounts still runs every 5 seconds as it did, but whether or not someone has changed teams, joined obs, left, etc etc will decide whether or not the bulk of it runs.
2018-11-10 20:52:29 -05:00
//Let GetTeamCounts run if there is a Teamchange.
function ResetClientChangedTeams ( )
{
2018-09-16 11:07:47 -04:00
$ GetCountsClientTeamChange = true ;
}