p

communication

package communication

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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

  6. 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

  7. 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

  1. object JoinCasualQueueRequest extends Serializable
  2. object JoinCasualQueueResponse extends Serializable
  3. object MessageFormat

    Provides features of Marshalling and Unmarshalling of messages through the use of serialization.

  4. object Queues

    All the queues that connect the services to the clients.

  5. object StatusUpdateMessage extends Serializable

Ungrouped