raspberry_games_engine_helpers 1.8.260 → 1.8.261
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.d.ts +7 -5
- package/Logic_Debertz-engine.js +3706 -3648
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/package.json +1 -1
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
return tmp;
|
|
378
378
|
}
|
|
379
379
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
380
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
380
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithTime, WithUtcOffset]);
|
|
381
381
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
382
382
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
383
383
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_7});
|
|
204
204
|
//endregion
|
|
205
205
|
function GameEngineConfig() {
|
|
206
|
-
this.version = '1.8.
|
|
206
|
+
this.version = '1.8.261';
|
|
207
207
|
}
|
|
208
208
|
protoOf(GameEngineConfig).e25 = function () {
|
|
209
209
|
return this.version;
|
|
@@ -1308,7 +1308,7 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1308
1308
|
}
|
|
1309
1309
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1310
1310
|
class Config {
|
|
1311
|
-
constructor(rules: games.jass.logic.data.models.rules.Rules, rulesSetType: games.jass.logic.data.models.rules.RulesSetType, options: games.jass.logic.data.models.table.config.Options, playersMode: games.jass.logic.data.models.table.config.PlayersMode, pointsMode: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, isPrivate: boolean, dealerStrategy: Nullable<games.jass.logic.domain.interactors.dealer.DealerStrategy>, mode: games.jass.logic.data.models.table.config.RoomMode);
|
|
1311
|
+
constructor(rules: games.jass.logic.data.models.rules.Rules, rulesSetType: games.jass.logic.data.models.rules.RulesSetType, options: games.jass.logic.data.models.table.config.Options, playersMode: games.jass.logic.data.models.table.config.PlayersMode, pointsMode: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, isPrivate: boolean, dealerStrategy: Nullable<games.jass.logic.domain.interactors.dealer.DealerStrategy>, league: Nullable<games.jass.logic.data.models.leagues.League>, mode: games.jass.logic.data.models.table.config.RoomMode);
|
|
1312
1312
|
get rules(): games.jass.logic.data.models.rules.Rules;
|
|
1313
1313
|
get rulesSetType(): games.jass.logic.data.models.rules.RulesSetType;
|
|
1314
1314
|
get options(): games.jass.logic.data.models.table.config.Options;
|
|
@@ -1317,9 +1317,10 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1317
1317
|
get timeoutTimeMillis(): number;
|
|
1318
1318
|
get isPrivate(): boolean;
|
|
1319
1319
|
get dealerStrategy(): Nullable<games.jass.logic.domain.interactors.dealer.DealerStrategy>;
|
|
1320
|
+
get league(): Nullable<games.jass.logic.data.models.leagues.League>;
|
|
1320
1321
|
get mode(): games.jass.logic.data.models.table.config.RoomMode;
|
|
1321
1322
|
get playerHandCardsSize(): number;
|
|
1322
|
-
copy(rules?: games.jass.logic.data.models.rules.Rules, rulesSetType?: games.jass.logic.data.models.rules.RulesSetType, options?: games.jass.logic.data.models.table.config.Options, playersMode?: games.jass.logic.data.models.table.config.PlayersMode, pointsMode?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, isPrivate?: boolean, dealerStrategy?: Nullable<games.jass.logic.domain.interactors.dealer.DealerStrategy>, mode?: games.jass.logic.data.models.table.config.RoomMode): games.jass.logic.data.models.table.config.Config;
|
|
1323
|
+
copy(rules?: games.jass.logic.data.models.rules.Rules, rulesSetType?: games.jass.logic.data.models.rules.RulesSetType, options?: games.jass.logic.data.models.table.config.Options, playersMode?: games.jass.logic.data.models.table.config.PlayersMode, pointsMode?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, isPrivate?: boolean, dealerStrategy?: Nullable<games.jass.logic.domain.interactors.dealer.DealerStrategy>, league?: Nullable<games.jass.logic.data.models.leagues.League>, mode?: games.jass.logic.data.models.table.config.RoomMode): games.jass.logic.data.models.table.config.Config;
|
|
1323
1324
|
toString(): string;
|
|
1324
1325
|
hashCode(): number;
|
|
1325
1326
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1327,7 +1328,8 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1327
1328
|
}
|
|
1328
1329
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1329
1330
|
class ConfigLite {
|
|
1330
|
-
constructor(players: games.jass.logic.data.models.table.config.PlayersMode, points: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, rulesPreset: games.jass.logic.data.models.rules.RulesSetType, isPrivate: boolean, isChatEnabled: boolean, isBotsEnabled: boolean, rules: Nullable<games.jass.logic.data.models.rules.Rules>);
|
|
1331
|
+
constructor(mode: games.jass.logic.data.models.table.config.RoomMode, players: games.jass.logic.data.models.table.config.PlayersMode, points: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, rulesPreset: games.jass.logic.data.models.rules.RulesSetType, isPrivate: boolean, isChatEnabled: boolean, isBotsEnabled: boolean, rules: Nullable<games.jass.logic.data.models.rules.Rules>);
|
|
1332
|
+
get mode(): games.jass.logic.data.models.table.config.RoomMode;
|
|
1331
1333
|
get players(): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1332
1334
|
get points(): games.jass.logic.data.models.table.config.PointsMode;
|
|
1333
1335
|
get timeoutTimeMillis(): number;
|
|
@@ -1336,7 +1338,7 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1336
1338
|
get isChatEnabled(): boolean;
|
|
1337
1339
|
get isBotsEnabled(): boolean;
|
|
1338
1340
|
get rules(): Nullable<games.jass.logic.data.models.rules.Rules>;
|
|
1339
|
-
copy(players?: games.jass.logic.data.models.table.config.PlayersMode, points?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, rulesPreset?: games.jass.logic.data.models.rules.RulesSetType, isPrivate?: boolean, isChatEnabled?: boolean, isBotsEnabled?: boolean, rules?: Nullable<games.jass.logic.data.models.rules.Rules>): games.jass.logic.data.models.table.config.ConfigLite;
|
|
1341
|
+
copy(mode?: games.jass.logic.data.models.table.config.RoomMode, players?: games.jass.logic.data.models.table.config.PlayersMode, points?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, rulesPreset?: games.jass.logic.data.models.rules.RulesSetType, isPrivate?: boolean, isChatEnabled?: boolean, isBotsEnabled?: boolean, rules?: Nullable<games.jass.logic.data.models.rules.Rules>): games.jass.logic.data.models.table.config.ConfigLite;
|
|
1340
1342
|
toString(): string;
|
|
1341
1343
|
hashCode(): number;
|
|
1342
1344
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1845,7 +1847,7 @@ export declare interface GameHelper {
|
|
|
1845
1847
|
filterRealPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|
|
1846
1848
|
getUserSocketId(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerId: string): Nullable<string>;
|
|
1847
1849
|
getUserSocketIds(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>): Nullable<Array<string>>;
|
|
1848
|
-
createConfig(points: number, players: number, timeoutTimeMillis: number, rulesSetType: games.jass.logic.data.models.rules.RulesSetType, rules: any, isEnableChat: boolean, isBotsEnabled: boolean, isPrivate: boolean, dealerStrategy?: Nullable<string>, mode?: Nullable<string>): games.jass.logic.data.models.table.config.Config;
|
|
1850
|
+
createConfig(points: number, players: number, timeoutTimeMillis: number, rulesSetType: games.jass.logic.data.models.rules.RulesSetType, rules: any, isEnableChat: boolean, isBotsEnabled: boolean, isPrivate: boolean, dealerStrategy?: Nullable<string>, mode?: Nullable<string>, league?: Nullable<string>): games.jass.logic.data.models.table.config.Config;
|
|
1849
1851
|
mapToRoomConfig(config: games.jass.logic.data.models.table.config.Config): models.RoomConfig;
|
|
1850
1852
|
mapPoints(points: number): games.jass.logic.data.models.table.config.PointsMode;
|
|
1851
1853
|
mapPlayers(players: number): games.jass.logic.data.models.table.config.PlayersMode;
|