-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Server will parse the hand along with the last discarded tile to retrieve possible combinations.
EDIT: Upon design thinking, it makes more sense for client to process the hand during claim phase for available players.
Reason: The server would have to process for 3 players, in addition to the processing for all on-going games, it just makes sense for individual clients to process their own hand and find available combinations, sending the index of the tiles in the player's hand for which they want to combo it with the discard (basically what the server expects the client to pass in currently, but manually).
Security wise, there should be no issue as the server knows what are in the players hand and the client sends the index of the tile position within the player's hand.
If no combinations are available, player will have an auto-skip passed in from the client once the timer is up (Issue #16)
If possible combinations are available, they should be categorized and presented to the player to pick one of the combinations or skip.