Class PlayAssistantCard
java.lang.Object
it.polimi.ingsw.Controller.Actions.PlayerAction
it.polimi.ingsw.Controller.Actions.PlayAssistantCard
- All Implemented Interfaces:
Serializable
This
PlayerAction allows the caller to select the desired assistant card to be played this round. This action
is linked to the Setup (Preparation) Phase.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intprivate static final long -
Constructor Summary
ConstructorsConstructorDescriptionPlayAssistantCard(int playerBoardId, int selectedAssistant) Create a new instance of this class with the following inputs: -
Method Summary
Modifier and TypeMethodDescriptionprotected OptionalValue<InputValidationException>customValidation(List<PlayerAction> history, Model ctx) This function is used byPlayerAction.validate(List, Model)to check whether or not the declaredPlayerActionis possible.
This function will check for the following requirements:voidunsafeExecute(Model ctx) Every class extendingPlayerActionmust implement the following method, which takes aModelreference and applies the concrete effect of the action.Methods inherited from class it.polimi.ingsw.Controller.Actions.PlayerAction
getPlayerBoardID, validate
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
selectedAssistant
private final int selectedAssistant
-
-
Constructor Details
-
PlayAssistantCard
public PlayAssistantCard(int playerBoardId, int selectedAssistant) Create a new instance of this class with the following inputs:- Parameters:
playerBoardId- the ID of the currentPlayerBoardselectedAssistant- the priority of theAssistantCardto be selected
-
-
Method Details
-
customValidation
protected OptionalValue<InputValidationException> customValidation(List<PlayerAction> history, Model ctx) This function is used byPlayerAction.validate(List, Model)to check whether or not the declaredPlayerActionis possible.
This function will check for the following requirements:- The
GamePhasemust beGamePhase.SETUP - The selected assistant card must be within bounds (always greater or equal to 0, always lesser or equal to the size of the player's assistants deck
- The player must play a card that has not been chosen by other players before (unless there are no other cards left to choose from)
- The selected
AssistantCardcan only be used once by the player
- Specified by:
customValidationin classPlayerAction- Parameters:
history- the controller stores aListof previousPlayerActions related to the player taking the current turn (at every new turn, the history is cleared). Some actions may use thisListto check for duplicates.ctx- a reference toModel. Some actions may use this reference to check for consistency between what the actions declares and what the Model offers.- Returns:
- An empty
OptionalValuein case of a successful validation. Otherwise the returnedOptionalValuecontains the relatedInputValidationException
- The
-
unsafeExecute
Description copied from class:PlayerActionEvery class extendingPlayerActionmust implement the following method, which takes aModelreference and applies the concrete effect of the action.
Warning: this function, as implied by the name, is unsafe. it should never be called by called outside the scope of the classController, which takes adequate precautions in order to guarantee a coherent execution of the method.- Specified by:
unsafeExecutein classPlayerAction- Parameters:
ctx- theModelreference, once the method finishes running the game state will be altered.- Throws:
OperationException
-