Ejemplo n.º 1
0
 public ApiGameResponse(long successFlag, ApiGameStage gameStage, ApiJoinGameInfo gameInfo, ApiUniverse universe)
     : base(successFlag)
 {
     GameStage = gameStage;
     GameInfo  = gameInfo;
     Universe  = universe;
 }
Ejemplo n.º 2
0
 public PlanetWarsState(long level, PlanetWarsStatus status, long playerKey, ApiPlayerRole myRole, long totalScore, ApiPlayerStatus gameResultStatus, ApiShip selectedShip, IEnumerable <ApiShipCommand> commands, ApiCommandType editingCommand, ApiUniverse universe, ApiJoinGameInfo gameJoinInfo, ApiGameLog gameLog, ApiShipMatter shipMatter)
 {
     Level            = level;
     Status           = status;
     PlayerKey        = playerKey;
     MyRole           = myRole;
     TotalScore       = totalScore;
     GameResultStatus = gameResultStatus;
     SelectedShip     = selectedShip;
     Commands         = commands;
     EditingCommand   = editingCommand;
     Universe         = universe;
     GameJoinInfo     = gameJoinInfo;
     GameLog          = gameLog;
     ShipMatter       = shipMatter;
 }
Ejemplo n.º 3
0
 public static PlanetWarsState InitialForStartGame(long playerKey, ApiJoinGameInfo joinInfo, ApiShipMatter matter)
 {
     return(new PlanetWarsState(
                level: 0,
                PlanetWarsStatus.InitialForStartGame,
                playerKey,
                joinInfo.PlayerRole,
                totalScore: 0,
                ApiPlayerStatus.ReadyToGo,
                selectedShip: null,
                commands: null,
                ApiCommandType.None,
                universe: null,
                joinInfo,
                gameLog: null,
                matter));
 }