raspberry_games_server_game_logic 1.8.383 → 1.8.385
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 +1 -1
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +1151 -1172
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +9 -12
- package/Logic_Debertz-game_server.js +595 -627
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +2 -2
- package/package.json +1 -1
|
@@ -2307,7 +2307,6 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
2307
2307
|
}
|
|
2308
2308
|
export declare namespace games.jass.logic.redux {
|
|
2309
2309
|
interface AppStatePayload {
|
|
2310
|
-
readonly metadata: Nullable<any>;
|
|
2311
2310
|
readonly __doNotUseOrImplementIt: {
|
|
2312
2311
|
readonly "games.jass.logic.redux.AppStatePayload": unique symbol;
|
|
2313
2312
|
};
|
|
@@ -2554,7 +2553,6 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2554
2553
|
readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2555
2554
|
readonly config: games.jass.logic.data.models.table.config.Config;
|
|
2556
2555
|
readonly gameCreatorPlayerId: string;
|
|
2557
|
-
readonly metadata: Nullable<any>;
|
|
2558
2556
|
readonly __doNotUseOrImplementIt: {
|
|
2559
2557
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
2560
2558
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
@@ -2566,7 +2564,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2566
2564
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2567
2565
|
}
|
|
2568
2566
|
class StartGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction, games.jass.logic.redux.actions.mechanic.PlayerOrderChangeMechanicAction {
|
|
2569
|
-
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo
|
|
2567
|
+
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>);
|
|
2570
2568
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
2571
2569
|
get id(): string;
|
|
2572
2570
|
get version(): string;
|
|
@@ -2574,9 +2572,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2574
2572
|
get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2575
2573
|
get aid(): Nullable<string>;
|
|
2576
2574
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2577
|
-
get metadata(): Nullable<any>;
|
|
2578
2575
|
get usersOrder(): kotlin.collections.KtList<string>;
|
|
2579
|
-
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo
|
|
2576
|
+
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2580
2577
|
toString(): string;
|
|
2581
2578
|
hashCode(): number;
|
|
2582
2579
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2923,9 +2920,10 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2923
2920
|
}
|
|
2924
2921
|
export declare namespace games.jass.logic.server.domain {
|
|
2925
2922
|
interface ServerGameEngineContract extends games.jass.logic.GameStoreContract {
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2923
|
+
metadata: any;
|
|
2924
|
+
roomOnCreate(roomId: string, gameCreatorId: string, config: games.jass.logic.data.models.table.config.Config, usersArray: Array<com.logic.data.models.player.GameUserInfo>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, spectators?: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
2925
|
+
roomOnContinueFromState(roomId: string, state: games.jass.logic.data.models.table.TableStateWithActions): void;
|
|
2926
|
+
roomOnContinueFromRound(roomId: string, tableLite: games.jass.logic.data.models.table.JassTableLite): void;
|
|
2929
2927
|
addSpectatorsToRoom(spectators: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
2930
2928
|
removeSpectatorsFromRoom(spectators: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
2931
2929
|
roomRefreshPlayerState(playerId: string): void;
|
|
@@ -2948,10 +2946,9 @@ export declare namespace games.jass.logic.server.domain {
|
|
|
2948
2946
|
}
|
|
2949
2947
|
export declare namespace games.jass.logic.server.redux.state {
|
|
2950
2948
|
class ServerStatePayload implements games.jass.logic.redux.AppStatePayload {
|
|
2951
|
-
constructor(config: games.jass.logic.server.data.models.config.ServerConfig
|
|
2949
|
+
constructor(config: games.jass.logic.server.data.models.config.ServerConfig);
|
|
2952
2950
|
get config(): games.jass.logic.server.data.models.config.ServerConfig;
|
|
2953
|
-
|
|
2954
|
-
copy(config?: games.jass.logic.server.data.models.config.ServerConfig, metadata?: Nullable<any>): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
2951
|
+
copy(config?: games.jass.logic.server.data.models.config.ServerConfig): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
2955
2952
|
toString(): string;
|
|
2956
2953
|
hashCode(): number;
|
|
2957
2954
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2968,7 +2965,7 @@ export declare namespace games.jass.logic.server.redux.state {
|
|
|
2968
2965
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2969
2966
|
namespace Companion.$metadata$ {
|
|
2970
2967
|
abstract class constructor {
|
|
2971
|
-
initial(config?: games.jass.logic.server.data.models.config.ServerConfig
|
|
2968
|
+
initial(config?: games.jass.logic.server.data.models.config.ServerConfig): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
2972
2969
|
private constructor();
|
|
2973
2970
|
}
|
|
2974
2971
|
}
|