game_client_logic_deb 1.3.49 → 1.3.64
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-ir.js +32 -32
- package/Logic_Debertz-core.js +1682 -920
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +8187 -8613
- package/Logic_Debertz-engine.js.map +1 -1
- package/{Logic_Debertz-game_client_logic_deb.d.ts → Logic_Debertz-game_client.d.ts} +26 -16
- package/{Logic_Debertz-game_client_logic_deb.js → Logic_Debertz-game_client.js} +2505 -2469
- package/Logic_Debertz-game_client.js.map +1 -0
- package/kotlin-kotlin-stdlib-js-ir.js +81 -81
- package/kotlin-kotlin-stdlib-js-ir.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +79 -79
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/package.json +3 -3
- package/uuid-js-ir.js +13 -13
- package/Logic_Debertz-game_client_logic_deb.js.map +0 -1
|
@@ -80,6 +80,9 @@ export namespace com.logic.data.models.player {
|
|
|
80
80
|
static valueOf(value: string): com.logic.data.models.player.PlayerConnectionState;
|
|
81
81
|
get name(): "LIVE" | "TIMEOUT" | "LOST_CONNECTION" | "LEFT" | "DISCONNECTING" | "DELETED";
|
|
82
82
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
83
|
+
static get Companion(): {
|
|
84
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.logic.data.models.player.PlayerConnectionState> */;
|
|
85
|
+
} & any/* kotlinx.serialization.internal.SerializerFactory */;
|
|
83
86
|
}
|
|
84
87
|
}
|
|
85
88
|
export namespace com.logic.data.models.rules {
|
|
@@ -190,6 +193,18 @@ export namespace com.logic.redux.actions {
|
|
|
190
193
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
191
194
|
}
|
|
192
195
|
}
|
|
196
|
+
export namespace com.logic.redux.actions.validation {
|
|
197
|
+
interface NotValidateIfGameFinished {
|
|
198
|
+
notValidateWhenFinished(): boolean;
|
|
199
|
+
readonly __doNotUseIt: __doNotImplementIt;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
export namespace com.logic.redux.actions.validation {
|
|
203
|
+
interface NotValidateIfGameFinishing {
|
|
204
|
+
notValidateWhenFinishing(): boolean;
|
|
205
|
+
readonly __doNotUseIt: __doNotImplementIt;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
193
208
|
export namespace com.logic.utils.logger.game {
|
|
194
209
|
interface LoggerPayload {
|
|
195
210
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
@@ -295,6 +310,9 @@ export namespace com.debertz.logic.data.models.table.config {
|
|
|
295
310
|
static valueOf(value: string): com.debertz.logic.data.models.table.config.BotIntelligenceLevel;
|
|
296
311
|
get name(): "SUPER_HARD" | "HARD" | "MEDIUM" | "EASY" | "SUPER_EASY";
|
|
297
312
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
313
|
+
static get Companion(): {
|
|
314
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.debertz.logic.data.models.table.config.BotIntelligenceLevel> */;
|
|
315
|
+
} & any/* kotlinx.serialization.internal.SerializerFactory */;
|
|
298
316
|
}
|
|
299
317
|
function getLevel(_this_: com.debertz.logic.data.models.table.config.BotIntelligenceLevel): number;
|
|
300
318
|
}
|
|
@@ -370,7 +388,8 @@ export namespace com.debertz.logic.data.models.table.config {
|
|
|
370
388
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
371
389
|
static get Companion(): {
|
|
372
390
|
create(points: number): com.debertz.logic.data.models.table.config.PlayersMode;
|
|
373
|
-
|
|
391
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.debertz.logic.data.models.table.config.PlayersMode> */;
|
|
392
|
+
} & any/* kotlinx.serialization.internal.SerializerFactory */;
|
|
374
393
|
}
|
|
375
394
|
}
|
|
376
395
|
export namespace com.debertz.logic.data.models.table.config {
|
|
@@ -399,7 +418,8 @@ export namespace com.debertz.logic.data.models.table.config {
|
|
|
399
418
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
400
419
|
static get Companion(): {
|
|
401
420
|
create(points: number): com.debertz.logic.data.models.table.config.PointsMode;
|
|
402
|
-
|
|
421
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.debertz.logic.data.models.table.config.PointsMode> */;
|
|
422
|
+
} & any/* kotlinx.serialization.internal.SerializerFactory */;
|
|
403
423
|
}
|
|
404
424
|
}
|
|
405
425
|
export namespace com.debertz.logic.redux.actions {
|
|
@@ -408,7 +428,7 @@ export namespace com.debertz.logic.redux.actions {
|
|
|
408
428
|
get actionTag(): string;
|
|
409
429
|
notValidateWhenFinishing(): boolean;
|
|
410
430
|
notValidateWhenFinished(): boolean;
|
|
411
|
-
} & com.logic.domain.engine.definitions.Action & com.
|
|
431
|
+
} & com.logic.domain.engine.definitions.Action & com.logic.redux.actions.validation.NotValidateIfGameFinishing & com.logic.redux.actions.validation.NotValidateIfGameFinished;
|
|
412
432
|
}
|
|
413
433
|
export namespace com.debertz.logic.redux.actions.client.from {
|
|
414
434
|
abstract class FromClientAction implements com.logic.domain.engine.definitions.Action {
|
|
@@ -495,7 +515,7 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
495
515
|
readonly actionTag: string;
|
|
496
516
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
497
517
|
}
|
|
498
|
-
class SceneMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.debertz.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.actions.ReleaseBufferTriggerAction, com.
|
|
518
|
+
class SceneMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.debertz.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, com.debertz.logic.redux.actions.mechanic.NextPlayerTurnAction */ {
|
|
499
519
|
constructor(sceneId: string, actId?: Nullable<string>, scenePayload?: Nullable<com.debertz.logic.data.models.scenes.SceneData>, actPayload?: Nullable<com.debertz.logic.data.models.scenes.ActData>);
|
|
500
520
|
get sceneId(): string;
|
|
501
521
|
get actId(): Nullable<string>;
|
|
@@ -520,7 +540,7 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
520
540
|
readonly actionTag: string;
|
|
521
541
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
522
542
|
}
|
|
523
|
-
class PlayerConnectionChangedMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.
|
|
543
|
+
class PlayerConnectionChangedMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
524
544
|
constructor(playerId: string, state: com.logic.data.models.player.PlayerConnectionState, isNoneActivePlayers: boolean);
|
|
525
545
|
get playerId(): string;
|
|
526
546
|
get state(): com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -545,16 +565,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
545
565
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
546
566
|
}
|
|
547
567
|
}
|
|
548
|
-
export namespace com.debertz.logic.redux.middlewares.validation {
|
|
549
|
-
interface NotValidateIfGameFinishing {
|
|
550
|
-
notValidateWhenFinishing(): boolean;
|
|
551
|
-
readonly __doNotUseIt: __doNotImplementIt;
|
|
552
|
-
}
|
|
553
|
-
interface NotValidateIfGameFinished {
|
|
554
|
-
notValidateWhenFinished(): boolean;
|
|
555
|
-
readonly __doNotUseIt: __doNotImplementIt;
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
568
|
export const ERROR: string;
|
|
559
569
|
export const DEBUG: string;
|
|
560
570
|
export const WARN: string;
|
|
@@ -657,4 +667,4 @@ export interface GameClientEngineController {
|
|
|
657
667
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
658
668
|
}
|
|
659
669
|
export function createGameClientController(loggerCallback: (p0: string, p1: Nullable<string>, p2: string, p3: Nullable<Error>, p4: Nullable<com.logic.utils.logger.game.LoggerPayload>) => void): GameClientEngineController;
|
|
660
|
-
export as namespace
|
|
670
|
+
export as namespace Logic_Debertz_game_client;
|