raspberry_games_server_game_logic 1.8.336 → 1.8.340
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kotlin-DateTime-library-kotlinx-datetime.js +2 -2
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +9865 -9820
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +9 -6
- package/Logic_Debertz-game_server.js +890 -803
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +4 -4
- package/package.json +1 -1
|
@@ -516,14 +516,15 @@ export declare namespace games.jass.logic {
|
|
|
516
516
|
}
|
|
517
517
|
export declare namespace games.jass.logic.data.models {
|
|
518
518
|
class DealerConfig {
|
|
519
|
-
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean);
|
|
519
|
+
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
|
|
520
520
|
get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
521
521
|
get isBotsAreHappy(): boolean;
|
|
522
522
|
get cards(): Nullable<Array<number>>;
|
|
523
|
+
get shuffleCardsPlayerNumber(): Nullable<number>;
|
|
523
524
|
get shouldDisplayDealerStrategy(): boolean;
|
|
524
525
|
equals(other: Nullable<any>): boolean;
|
|
525
526
|
hashCode(): number;
|
|
526
|
-
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
|
+
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
528
|
toString(): string;
|
|
528
529
|
static get Companion(): {
|
|
529
530
|
getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
|
|
@@ -2065,18 +2066,20 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2065
2066
|
};
|
|
2066
2067
|
}
|
|
2067
2068
|
class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2068
|
-
constructor(table: games.jass.logic.data.models.table.JassTable);
|
|
2069
|
+
constructor(table: games.jass.logic.data.models.table.JassTable, tableJson: string);
|
|
2069
2070
|
get table(): games.jass.logic.data.models.table.JassTable;
|
|
2070
|
-
|
|
2071
|
+
get tableJson(): string;
|
|
2072
|
+
copy(table?: games.jass.logic.data.models.table.JassTable, tableJson?: string): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
2071
2073
|
toString(): string;
|
|
2072
2074
|
hashCode(): number;
|
|
2073
2075
|
equals(other: Nullable<any>): boolean;
|
|
2074
2076
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
|
|
2075
2077
|
}
|
|
2076
2078
|
class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2077
|
-
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction
|
|
2079
|
+
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson: string);
|
|
2078
2080
|
get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
|
|
2079
|
-
|
|
2081
|
+
get actionsJson(): string;
|
|
2082
|
+
copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson?: string): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
2080
2083
|
toString(): string;
|
|
2081
2084
|
hashCode(): number;
|
|
2082
2085
|
equals(other: Nullable<any>): boolean;
|