This is a documentation for Board Game Arena: play board games online !
State classes: State directory
State classes allow to create a PHP class for each game state. It allows to split the code in multiple files, without using Traits.
The advantage is that the IDE understands the structure and can provide auto-completion and error highlights, that are lost in Traits.
Example
The State class in modules/php/States/PlayerTurn.php will have this structure:
<?php
declare(strict_types=1);
namespace Bga\Games\<MyGameName>\States;
use Bga\GameFramework\StateType;
use Bga\GameFramework\States\GameState;
use Bga\GameFramework\States\PossibleAction;
use Bga\Games\<MyGameName>\Game;
class PlayerTurn extends GameState
{
function __construct(
protected Game $game,
) {
parent::__construct($game,
id: 2,
type: StateType::ACTIVE_PLAYER,
// optional
description: clienttranslate('${actplayer} must play a card or pass'),
descriptionMyTurn: clienttranslate('${you} must play a card or pass'),
transitions: [],
updateGameProgression: false,
initialPrivate: null,
);
}
public function getArgs(): array
{
// the data sent to the front when entering the state
return [];
}
function onEnteringState(int $activePlayerId) {
// the code to run when entering the state
}
#[PossibleAction]
public function actPlayCard(int $cardId, int $activePlayerId, array $args): string
{
// the code to run when the player triggers actPlayCard with bgaPerformAction
}
function zombie(int $playerId): string {
// the code to run when the player is a Zombie
}
}
The state must extends Bga\GameFramework\States\GameState and follow the same __construct function as the example.
Name Parameters of Game State constructor
Only game, id and type are mandatory, other parameters are optional. Parameter name can be specified, by default it will be the class name (including capitalization).
id
The keys determine game state IDs (in the example above: 2).
IDs must be positive integers.
ID=1 is reserved for the first game state and should not be used (and you must not modify it).
ID=99 is reserved for the last game state (end of the game) (and you must not modify it).
Note: you may use any ID, even an ID greater than 100. But you cannot use 1 or 99.
Note²: You must not use the same ID twice.
Note³: When a game is in prod and you change the ID of a state, all active games (including many turn based) will behave unpredictably.
type
(Mandatory)
You can use 4 types of game states:
- StateType::ACTIVE_PLAYER : 1 player is active and must play. ('activeplayer' if using the old array notation)
- StateType::MULTIPLE_ACTIVE_PLAYER : 1..N players can be active and must play. ('multipleactiveplayer' if using the old array notation)
- StateType::PRIVATE (during multiactive states players can independently move to different private parallel states. ('private' if using the old array notation) See more details here.
- StateType::GAME (No player is active. This is a transitional state to do something automatic specified by the game rules.) ('game' if using the old array notation)
name
The name of a game state is used to identify it in your game logic. Default: class name (as is).
Several game states can share the same name; however, this is not recommended.
Warning! Do not put spaces in the name. This could cause unexpected problems in some cases.
PHP example:
// Get current game state
$state = $this->gamestate->state();
if( $state['name'] == 'myGameState' )
{
...
}
JS example:
onEnteringState: function( stateName, args )
{
console.log( 'Entering state: '+stateName );
switch( stateName )
case 'myGameState':
// Do some stuff at the beginning at this game state
....
break;
description
The description is the string that is displayed in the main action bar (top of the screen) when the state is active to ALL players except active.
When a string is specified as a description, you must use "clienttranslate" in order for the string to be translated on the client side:
clienttranslate('${actplayer} must play a card or pass')
In the description string, you can use ${actplayer} to refer to the active player.
You can also use custom arguments in your description. These custom arguments correspond to values returned by your "args" PHP method (see below).
Example of custom field:
I.e:
clienttranslate('${actplayer} must choose ${nbr} identical energies')
Args method:
function getArgs(): array
{
return [
'nbr' => 2 // In this case ${nbr} in the description will be replaced by "2"
];
}
Note: You may omit this for game states
Note²: Usually, you specify a string for ACTIVE_PLAYER and MULTIPLE_ACTIVE_PLAYER game states, and you specify an empty string for GAME game states. BUT, if you are using synchronous notifications, the client can remain on a GAME type game state for a few seconds, and in this case it may be useful to display a description in the status bar while in this state.
Note3: you can use ${otherplayer} to refer to some other player if you want this to be shown in player's color, but you must provide otherplayer_id as argument (along with otherplayer) to specify this player's id in this case or game won't load.
descriptionMyTurn
(Mandatory when the state type is ACTIVE_PLAYER or MULTIPLE_ACTIVE_PLAYER)
"v" has exactly the same role and properties as "description", except that this value is displayed to the current active player - or to all active players in case of a MULTIPLE_ACTIVE_PLAYER game state.
In general, we have this situation:
description: (clienttranslate('${actplayer} can take some actions'))
descriptionMyTurn: (clienttranslate('${you} can take some actions'))
Note: you can use ${you} in descriptionMyTurn so the description will display "You" instead of the name of the player.
Note 2: you can use ${otherplayer} to refer to some other player if you want this to be shown in player's color, but you must provide otherplayer_id as argument (along with otherplayer) to specify this player's id in this case or game won't load.
I.e.
clienttranslate('${you} can follow action of ${otherplayer}')
And this will have to be state arguments for this
function getArgs(){
return ['otherplayer'=> $this->getLeaderPlayerName(),
'otherplayer_id'=> $this->getLeaderPlayerId()
];
}
transitions
With "transitions" you specify which game state(s) you can jump to from a given game state.
Example:
transitions: [
'nextPlayer' => 27,
'endRound' => 39,
])
}
Example to jump to ID 27:
actPlayCard() {
...
return 'nextPlayer';
}
Important: "nextPlayer" is the name of the transition, and NOT the name of the target game state. Multiple transitions can lead to the same game state.
Note: If there is only 1 transition, you may use an empty string.
updateGameProgression
Default: false
If you specify updateGameProgression: true in a game state, your "getGameProgression" PHP method will be called at the beginning of this game state - and thus the game progression of the game will be updated.
At least one of your game states (any one) must specify true
initialPrivate
Default: null
This parameter will enable private parallel states in a multiplayer state. Parameter should be set to first private parallel state a player will be transitioned to. See more details about Private parallel states here.
Initial state
To indicate your initial state, add return PlayerTurn::class; from setupNewGame function.
Function getArgs
This function should return the necessary information for the front to display the information related to this state.
It accepts "magic" params that will be automatically filled by the framework:
int $activePlayerId(orint $active_player_id) will be filled by the id of the active player. To be used on ACTIVE_PLAYER states only.int $playerId(orint $player_id/int $currentPlayerId/int $current_player_id) will be filled by the player id of the current PRIVATE state. To be used on PRIVATE states only.
Private info in args
By default, all data provided through this method are PUBLIC TO ALL PLAYERS. Please do not send any private data with this method, as a cheater could see it even it is not used explicitly by the game interface logic.
However, it is possible to specify that some data should be sent to specific players only.
Example:
function getArgs(int $activePlayerId): array {
return array(
'_private' => array( // all data inside this array will be private
$activePlayerId => array( // will be sent only to that player
'somePrivateData' => $this->getSomePrivateData($activePlayerId)
)
),
'possibleMoves' => $this->getPossibleMoves() // will be sent to all players
);
}
Inside the js file, these variables will be available through `args.args._private`. (e.g. `args.args._private.somePrivateData`)
IMPORTANT: in certain situations (i.e. MULTIPLE_ACTIVE_PLAYER game state) these "private data" features can have a significant impact on performance. Please do not use if not needed.
Flag to indicate a skipped state
By default, The front-end will be notified of entering/leaving all states. To speed up the front-end chaining of automatically passed states, you can disable this state change notification, so the front-end doesn't trigger the preparation steps for a state that you know will be automatically skipped, and it may reduce sent args. In this case, define the _no_notify flag to true in the state args.
function getArgs(int $activePlayerId): array {
$playableCardsIds = ...;
return [
'playableCardsIds' => $playableCardsIds,
'_no_notify' => count(playableCardsIds) === 0,
];
}
function onEnteringState(int $activePlayerId ,array $args): void {
if ($args['_no_notify']) {
return $this->actPass($activePlayerId); // return the redirection sent by the action!
}
}
In this example, it might avoid a blinking message "You must play a card" (quickly replaced by the next state message) when you cannot play a card and the game automatically skips this state.
IMPORTANT: if you use _no_notify, you must handle a redirection to another state on the onEnteringState function!
Note that if you play synced notifications during a skipped state, it will display the notifications on the previous state. For example, for an endScore state width description "Computing end score..." sending a lot of animated notifications, you should NOT use this flag so the description is visible.
Function onEnteringState
This function will be triggered when you enter the state.
It accepts "magic" params that will be automatically filled by the framework:
array $argswill be filled by the result of $this->getArgs().int $activePlayerId(orint $active_player_id) will be filled by the id of the active player. To be used on ACTIVE_PLAYER states only.int $playerId(orint $player_id/int $currentPlayerId/int $current_player_id) will be filled by the player id of the current PRIVATE state. To be used on PRIVATE states only.
This function can do state redirection by returning a value :
- a class name:
return NextPlayer::classwill redirect to the state declared in that class. - a state id:
return ST_END_GAME;=return 99;will redirect to the state of that id. It must be typed as int, numbers in a string won't work. - a transition name:
return 'nextPlayer';will redirect to the transition of that name (requirestransitionsto be declared in the constructor).
"action" specifies a PHP method to call when entering this game state.
Example:
function onEnteringState(int $active_player_id) {
$next_player_id = (int)$this->getPlayerAfter($active_player_id);
$this->giveExtraTime($next_player_id);
$this->incStat(1, 'turns_number', $next_player_id);
$this->incStat(1, 'turns_number');
$this->gamestate->changeActivePlayer($next_player_id);
return 'next';
}
Usually, for a GAME state type, this method is used to perform automatic functions specified by the rules (for example: check victory conditions, deal cards for a new round, go to the next player, etc.) and then jump to another game state.
Note: this field CAN be used for player states to set something up; e.g., for MULTIPLE_ACTIVE_PLAYER states, it can make all players active.
Example in player state:
function onEnteringState() {
$this->gamestate->setAllPlayersMultiactive();
return; // no value
}
Warning: Prevent to do anything on stGameEnd() and argGameEnd() in Game.php. It may cause game never end and always stuck in "Recording game results + computing statistics in progress...".
Functions act*
These functions will be triggered when you call them from the front using bgaPerformAction. They must be prefixed by act.
Every normal function should have a #[PossibleAction] attribute on top of it to indicate the front it's a normal action for the player.
It accepts "magic" params that will be automatically filled by the framework:
array $argswill be filled by the result of $this->getArgs().int $activePlayerId(orint $active_player_id) will be filled by the id of the active player (not necessarily the one triggering the action!). To be used on ACTIVE_PLAYER states only.int $currentPlayerId(orint $current_player_id) will be filled by the id of the player who triggered the action.
The return value works the same way as onEnteringState.
If you trigger an action from the front, and it's not declared in this state, the framework will check if the function exists in the Game.php file (for actions that can be triggered at any state).
Function zombie
In non GAME states, the zombie function is mandatory. The first parameter int $playerId will be filled by the Zombified player id.
You can see some examples in the Zombie Mode page.
It accepts "magic" params that will be automatically filled by the framework:
array $argswill be filled by the result of $this->getArgs().
The return value works the same way as onEnteringState.
Migrating for states written in states.inc.php and Game.php
Moved elements
The function getArgs replaces the function that was declared as "args" => "argXXX" on states.inc.php. Same for the function onEnteringState that was "action" => "stXXX" on states.inc.php. The zombie function doesn't have the state as first parameter anymore, because it's not needed in this context.
The possible actions for this states don't need to be declared as an array, they will be found with the tag #[PossibleAction] over each possible action.
The functions declared in Game.php will be accessible with $this->game instead of $this. The Game sub-objects are available on the State class too, so you can write $this->notif->all without needing to pass through the game variable.
New elements
The getArgs, onEnteringState and actXXX functions can set some predefined parameters that will be automatically filled (see chapter above).
For all those functions, and also the zombie function, they can now send a redirection to a game state as a returned result (see chapter above).
If you use this writing, remove $this->gamestate->nexState to avoid double redirection!
The initialPrivate parameter of the constructor can be null or an int as before, but can now also accept a class name as value initialPrivate: PlaceCard::class
You can now pass a state class as the parameter of GameStateBuilder::gameSetup(PlayDisc::class)->build(), and on some function that previously only accepted transitions, like $this->gamestate->nextPrivateState(ConfirmTurn::class) or $this->gamestate->setPlayerNonMultiactive($currentPlayerId, EndRound::class)
If all your classes are migrated to State classes, you can remove the states.inc.php file.