Interface | Description |
---|---|
AdminLobbyRequest |
Marks Requests that can only be made by an administrative client.
|
ILobbyRequest |
Parent for all messages the Lobby can handle.
|
Class | Description |
---|---|
AuthenticateRequest |
Sent by Client to authenticate as administrator. Is not answered if successful.
|
CancelRequest |
Used to cancel game and delete a GameRoom.
|
ControlTimeoutRequest |
Used to change whether a player in a slot can time out.
|
FreeReservationRequest |
Frees a claimed reservation.
|
JoinPreparedRoomRequest |
Used by client to join a room by reservation code.
The code can be received from the administrative client who requested game creation via PrepareGameRequest.
|
JoinRoomRequest |
Send by client to join game by gameType.
Creates a new gameRoom if no open gameRoom of the specified gameType exists.
|
ObservationRequest |
Request of administrative client to observe a gameRoom specified by given roomId.
|
PauseGameRequest |
Request by administrative client to pause or unpause a game specified by given roomId.
|
PlayerScoreRequest |
Request of administrative client to get score for a player (displayName of player).
Only useful if testMode was enabled before game ended.
|
PrepareGameRequest |
Request to prepare a game of gameType with two reserved slots according to slotDescriptors.
|
StepRequest |
Sent by administrative client to send a MoveRequest to the current player. Only works for paused games.
|
TestModeRequest |
Send by administrative client to enable or disable testMode.
|