communication
package communication
- Alphabetic
- Public
- All
Type Members
-
case class
JoinCasualQueueRequest(player: PlayerInfo, operation: Operation) extends Product with Serializable
The request message that clients must send if they want to join a casual queue in the matchmaking system.
The request message that clients must send if they want to join a casual queue in the matchmaking system.
- player
the player that wants to join.
- operation
add or remove to/from matchmaking
-
case class
JoinCasualQueueResponse(opponentData: Either[String, (PlayerInfo, BattleId)]) extends Product with Serializable
The response message that the client will receive after an opponent is chosen from the matchmaking service.
The response message that the client will receive after an opponent is chosen from the matchmaking service.
- opponentData
Right((player, battleId)) player and his battle id, Left(error) details about the error
-
case class
LoginGuestRequest(details: Option[String]) extends Product with Serializable
The request message that clients must send if they want to login as guests.
The request message that clients must send if they want to login as guests.
- details
possible details that the client could want to attach
-
case class
LoginGuestResponse(guestId: Either[String, Int]) extends Product with Serializable
The response message that the client will receive after a LoginGuestRequest.
The response message that the client will receive after a LoginGuestRequest.
- guestId
Right(id) the incremental ID assigned to the guest, Left(error) details about the error
-
case class
StartRoundRequest(playerName: String, playerTeamSpeeds: Map[String, Int], opponentName: String, battleId: String, round: Int) extends Product with Serializable
The request message that the clients send to start a new round, asking to obtain the ordered turns' list.
The request message that the clients send to start a new round, asking to obtain the ordered turns' list.
- playerName
the name of the player who made the request
- playerTeamSpeeds
team's speeds of the player
- opponentName
the opponent name
- battleId
the battle identifier
- round
the round that the player wants to start
-
case class
StartRoundResponse(turnInformation: Either[String, List[CharacterKey]], round: Int) extends Product with Serializable
The response message that the turn ordering service sends to the client to inform them about the next round ordered turns.
The response message that the turn ordering service sends to the client to inform them about the next round ordered turns.
- turnInformation
Right(List(Character) ordered turns Left(error) details about the error
- round
the round that's about to start
-
case class
StatusUpdateMessage(attacker: CharacterKey, moveName: String, targets: Set[CharacterKey], newStatuses: Map[CharacterKey, Status], round: Int, actSelector: ActSelector) extends Product with Serializable
The message that the clients exchange with each other.
The message that the clients exchange with each other. Every client sends this message to notify his opponent about his move.
- attacker
the character that makes the move
- moveName
the move that the character makes
- targets
the characters targets of the move
- newStatuses
all the statuses that were been modified by the move
- round
the current round
Value Members
- object JoinCasualQueueRequest extends Serializable
- object JoinCasualQueueResponse extends Serializable
-
object
MessageFormat
Provides features of Marshalling and Unmarshalling of messages through the use of serialization.
-
object
Queues
All the queues that connect the services to the clients.
- object StatusUpdateMessage extends Serializable