raspberry_games_engine_helpers 1.8.381 → 1.8.383
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/Logic_Debertz-core.js
CHANGED
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
217
217
|
//endregion
|
|
218
218
|
function GameEngineConfig() {
|
|
219
|
-
this.version = '1.8.
|
|
219
|
+
this.version = '1.8.383';
|
|
220
220
|
}
|
|
221
221
|
protoOf(GameEngineConfig).k17 = function () {
|
|
222
222
|
return this.version;
|
|
@@ -875,16 +875,16 @@ export declare namespace games.jass.logic.data.models {
|
|
|
875
875
|
}
|
|
876
876
|
export declare namespace games.jass.logic.data.models.config {
|
|
877
877
|
class RatingConfig {
|
|
878
|
-
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean,
|
|
878
|
+
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, ffaMaxRatingDecreaseFraction?: number, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean);
|
|
879
879
|
get defaultFactor(): number;
|
|
880
880
|
get eloScaleH2H(): number;
|
|
881
881
|
get eloScaleFfa(): number;
|
|
882
882
|
get h2hCloseLossThresholdRatio(): number;
|
|
883
883
|
get ffaMovEnabled(): boolean;
|
|
884
|
+
get ffaMaxRatingDecreaseFraction(): number;
|
|
884
885
|
get botNativeUpdatesRating(): boolean;
|
|
885
886
|
get replacementForcedDecrease(): boolean;
|
|
886
|
-
|
|
887
|
-
copy(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean, ffaMaxRatingDecreaseFraction?: number): games.jass.logic.data.models.config.RatingConfig;
|
|
887
|
+
copy(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, ffaMaxRatingDecreaseFraction?: number, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean): games.jass.logic.data.models.config.RatingConfig;
|
|
888
888
|
toString(): string;
|
|
889
889
|
hashCode(): number;
|
|
890
890
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2305,6 +2305,14 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
2305
2305
|
}
|
|
2306
2306
|
}
|
|
2307
2307
|
}
|
|
2308
|
+
export declare namespace games.jass.logic.redux {
|
|
2309
|
+
interface AppStatePayload {
|
|
2310
|
+
readonly metadata: Nullable<any>;
|
|
2311
|
+
readonly __doNotUseOrImplementIt: {
|
|
2312
|
+
readonly "games.jass.logic.redux.AppStatePayload": unique symbol;
|
|
2313
|
+
};
|
|
2314
|
+
}
|
|
2315
|
+
}
|
|
2308
2316
|
export declare namespace games.jass.logic.redux.actions {
|
|
2309
2317
|
class ClearAction implements com.logic.redux.store.definitions.Action, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2310
2318
|
constructor(transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
@@ -2546,6 +2554,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2546
2554
|
readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2547
2555
|
readonly config: games.jass.logic.data.models.table.config.Config;
|
|
2548
2556
|
readonly gameCreatorPlayerId: string;
|
|
2557
|
+
readonly metadata: Nullable<any>;
|
|
2549
2558
|
readonly __doNotUseOrImplementIt: {
|
|
2550
2559
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
2551
2560
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
@@ -2557,7 +2566,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2557
2566
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2558
2567
|
}
|
|
2559
2568
|
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 {
|
|
2560
|
-
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>);
|
|
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>, metadata: Nullable<any>);
|
|
2561
2570
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
2562
2571
|
get id(): string;
|
|
2563
2572
|
get version(): string;
|
|
@@ -2565,8 +2574,9 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2565
2574
|
get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2566
2575
|
get aid(): Nullable<string>;
|
|
2567
2576
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2577
|
+
get metadata(): Nullable<any>;
|
|
2568
2578
|
get usersOrder(): kotlin.collections.KtList<string>;
|
|
2569
|
-
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;
|
|
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>, metadata?: Nullable<any>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2570
2580
|
toString(): string;
|
|
2571
2581
|
hashCode(): number;
|
|
2572
2582
|
equals(other: Nullable<any>): boolean;
|