game_client_logic_deb 1.7.58 → 1.7.67
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 +1217 -998
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +8477 -8191
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +17 -11
- package/Logic_Debertz-game_client.js +2713 -2909
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +3 -3
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +1160 -1149
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
var CoroutineImpl = kotlin_kotlin.$_$.f9;
|
|
98
98
|
var CoroutineScope = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.n;
|
|
99
99
|
var get_COROUTINE_SUSPENDED = kotlin_kotlin.$_$.r8;
|
|
100
|
-
var Job = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.o;
|
|
101
|
-
var Mutex = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.l;
|
|
102
100
|
var Dispatchers_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.e;
|
|
101
|
+
var SupervisorJob = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.o;
|
|
102
|
+
var Mutex = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.l;
|
|
103
103
|
var CoroutineScope_0 = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.m;
|
|
104
104
|
var launch = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.q;
|
|
105
105
|
var uuid4 = kotlin_com_benasher44_uuid.$_$.a;
|
|
@@ -113,7 +113,6 @@
|
|
|
113
113
|
var Provider = kotlin_org_kodein_di_kodein_di.$_$.c;
|
|
114
114
|
var Path = kotlin_org_jetbrains_kotlinx_kotlinx_io_core.$_$.b;
|
|
115
115
|
var get_SystemTemporaryDirectory = kotlin_org_jetbrains_kotlinx_kotlinx_io_core.$_$.d;
|
|
116
|
-
var mutableListOf = kotlin_kotlin.$_$.p7;
|
|
117
116
|
var Singleton = kotlin_org_kodein_di_kodein_di.$_$.d;
|
|
118
117
|
var get_SystemFileSystem = kotlin_org_jetbrains_kotlinx_kotlinx_io_core.$_$.c;
|
|
119
118
|
var Path_0 = kotlin_org_jetbrains_kotlinx_kotlinx_io_core.$_$.a;
|
|
@@ -140,8 +139,11 @@
|
|
|
140
139
|
var printStackTrace = kotlin_kotlin.$_$.se;
|
|
141
140
|
var isBlank = kotlin_kotlin.$_$.zb;
|
|
142
141
|
var stackTraceToString = kotlin_kotlin.$_$.te;
|
|
142
|
+
var mutableListOf = kotlin_kotlin.$_$.p7;
|
|
143
|
+
var copyToArray = kotlin_kotlin.$_$.j6;
|
|
143
144
|
var Companion_getInstance_0 = kotlin_org_jetbrains_kotlinx_kotlinx_datetime.$_$.c;
|
|
144
145
|
var toLocalDateTime = kotlin_org_jetbrains_kotlinx_kotlinx_datetime.$_$.e;
|
|
146
|
+
var charSequenceLength = kotlin_kotlin.$_$.p9;
|
|
145
147
|
//endregion
|
|
146
148
|
//region block: pre-declaration
|
|
147
149
|
setMetadataFor(GameEngineConfig, 'GameEngineConfig', objectMeta);
|
|
@@ -179,7 +181,7 @@
|
|
|
179
181
|
setMetadataFor(PlayerIdContract, 'PlayerIdContract', interfaceMeta);
|
|
180
182
|
setMetadataFor(GameUserInfo, 'GameUserInfo', classMeta, VOID, [PlayerIdContract]);
|
|
181
183
|
function get_amountOfCards() {
|
|
182
|
-
return this.
|
|
184
|
+
return this.c2m().n();
|
|
183
185
|
}
|
|
184
186
|
setMetadataFor(Player, 'Player', interfaceMeta, VOID, [PlayerIdContract]);
|
|
185
187
|
setMetadataFor(PlayerIndex, 'PlayerIndex', classMeta, VOID, [PlayerIdContract]);
|
|
@@ -226,20 +228,20 @@
|
|
|
226
228
|
setMetadataFor(Companion_20, 'Companion', objectMeta, VOID, [SerializerFactory]);
|
|
227
229
|
setMetadataFor(Suit, 'Suit', classMeta, Enum, VOID, VOID, VOID, {0: Companion_getInstance_22});
|
|
228
230
|
function launchUnconfinedWithLock$default(context, block, $super) {
|
|
229
|
-
context = context === VOID ? this.
|
|
230
|
-
return $super === VOID ? this.
|
|
231
|
+
context = context === VOID ? this.n2r() : context;
|
|
232
|
+
return $super === VOID ? this.o2r(context, block) : $super.o2r.call(this, context, block);
|
|
231
233
|
}
|
|
232
234
|
function launchDefault$default(context, block, $super) {
|
|
233
|
-
context = context === VOID ? this.
|
|
234
|
-
return $super === VOID ? this.
|
|
235
|
+
context = context === VOID ? this.n2r() : context;
|
|
236
|
+
return $super === VOID ? this.q2r(context, block) : $super.q2r.call(this, context, block);
|
|
235
237
|
}
|
|
236
238
|
function launchDefaultWithLock$default(context, block, $super) {
|
|
237
|
-
context = context === VOID ? this.
|
|
238
|
-
return $super === VOID ? this.
|
|
239
|
+
context = context === VOID ? this.n2r() : context;
|
|
240
|
+
return $super === VOID ? this.s2r(context, block) : $super.s2r.call(this, context, block);
|
|
239
241
|
}
|
|
240
242
|
function launchMain$default(context, block, $super) {
|
|
241
|
-
context = context === VOID ? this.
|
|
242
|
-
return $super === VOID ? this.
|
|
243
|
+
context = context === VOID ? this.n2r() : context;
|
|
244
|
+
return $super === VOID ? this.u2r(context, block) : $super.u2r.call(this, context, block);
|
|
243
245
|
}
|
|
244
246
|
setMetadataFor(AsyncProvider, 'AsyncProvider', interfaceMeta);
|
|
245
247
|
setMetadataFor(_no_name_provided__qut3iv, VOID, classMeta, AbstractCoroutineContextElement, [AbstractCoroutineContextElement, Element]);
|
|
@@ -269,7 +271,7 @@
|
|
|
269
271
|
return false;
|
|
270
272
|
}
|
|
271
273
|
function get_isAutoStartTimer() {
|
|
272
|
-
return !this.
|
|
274
|
+
return !this.s2u() ? !this.t2u() : false;
|
|
273
275
|
}
|
|
274
276
|
setMetadataFor(ExpectantAction, 'ExpectantAction', interfaceMeta, VOID, [BufferedAction]);
|
|
275
277
|
setMetadataFor(TimerAction, 'TimerAction', classMeta, VOID, [Action]);
|
|
@@ -316,19 +318,19 @@
|
|
|
316
318
|
function d(tag, message, payload, $super) {
|
|
317
319
|
tag = tag === VOID ? null : tag;
|
|
318
320
|
payload = payload === VOID ? null : payload;
|
|
319
|
-
return this.
|
|
321
|
+
return this.m2z(tag, message, payload);
|
|
320
322
|
}
|
|
321
323
|
function e(tag, message, exception, payload, $super) {
|
|
322
324
|
tag = tag === VOID ? null : tag;
|
|
323
325
|
message = message === VOID ? null : message;
|
|
324
326
|
exception = exception === VOID ? null : exception;
|
|
325
327
|
payload = payload === VOID ? null : payload;
|
|
326
|
-
return this.
|
|
328
|
+
return this.n2z(tag, message, exception, payload);
|
|
327
329
|
}
|
|
328
330
|
function w(tag, message, payload, $super) {
|
|
329
331
|
tag = tag === VOID ? null : tag;
|
|
330
332
|
payload = payload === VOID ? null : payload;
|
|
331
|
-
return this.
|
|
333
|
+
return this.o2z(tag, message, payload);
|
|
332
334
|
}
|
|
333
335
|
setMetadataFor(LoggerOutput, 'LoggerOutput', interfaceMeta);
|
|
334
336
|
setMetadataFor(GameLogger, 'GameLogger', interfaceMeta, VOID, [LoggerOutput]);
|
|
@@ -339,8 +341,16 @@
|
|
|
339
341
|
setMetadataFor(Companion_22, 'Companion', objectMeta, VOID, [SerializerFactory]);
|
|
340
342
|
setMetadataFor(LogType, 'LogType', classMeta, Enum, VOID, VOID, VOID, {0: Companion_getInstance_24});
|
|
341
343
|
function observe(types, $super) {
|
|
342
|
-
|
|
343
|
-
|
|
344
|
+
var tmp;
|
|
345
|
+
if (types === VOID) {
|
|
346
|
+
// Inline function 'kotlin.collections.toTypedArray' call
|
|
347
|
+
var this_0 = get_entries_0();
|
|
348
|
+
tmp = copyToArray(this_0);
|
|
349
|
+
} else {
|
|
350
|
+
tmp = types;
|
|
351
|
+
}
|
|
352
|
+
types = tmp;
|
|
353
|
+
return this.v2z(types);
|
|
344
354
|
}
|
|
345
355
|
setMetadataFor(ObservableLoggerOutput, 'ObservableLoggerOutput', interfaceMeta, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
346
356
|
setMetadataFor(Companion_23, 'Companion', objectMeta);
|
|
@@ -349,9 +359,9 @@
|
|
|
349
359
|
setMetadataFor(PlatformLogger, 'PlatformLogger', classMeta, VOID, VOID, PlatformLogger);
|
|
350
360
|
//endregion
|
|
351
361
|
function GameEngineConfig() {
|
|
352
|
-
this.version = '1.7.
|
|
362
|
+
this.version = '1.7.67';
|
|
353
363
|
}
|
|
354
|
-
protoOf(GameEngineConfig).
|
|
364
|
+
protoOf(GameEngineConfig).e2k = function () {
|
|
355
365
|
return this.version;
|
|
356
366
|
};
|
|
357
367
|
var GameEngineConfig_instance;
|
|
@@ -360,20 +370,13 @@
|
|
|
360
370
|
}
|
|
361
371
|
function Toggles() {
|
|
362
372
|
}
|
|
363
|
-
protoOf(Toggles).
|
|
373
|
+
protoOf(Toggles).f2k = function (version) {
|
|
364
374
|
return get_minorVersion(version) > 5;
|
|
365
375
|
};
|
|
366
|
-
protoOf(Toggles).
|
|
376
|
+
protoOf(Toggles).g2k = function () {
|
|
367
377
|
return false;
|
|
368
378
|
};
|
|
369
|
-
protoOf(Toggles).
|
|
370
|
-
return false;
|
|
371
|
-
};
|
|
372
|
-
protoOf(Toggles).f2k = function (version) {
|
|
373
|
-
var minorVersion = get_minorVersion(version);
|
|
374
|
-
return minorVersion > 6;
|
|
375
|
-
};
|
|
376
|
-
protoOf(Toggles).g2k = function (version) {
|
|
379
|
+
protoOf(Toggles).h2k = function (version) {
|
|
377
380
|
var minorVersion = get_minorVersion(version);
|
|
378
381
|
return minorVersion > 7;
|
|
379
382
|
};
|
|
@@ -391,10 +394,10 @@
|
|
|
391
394
|
$serializer_instance = this;
|
|
392
395
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_RETURNS', this, 1);
|
|
393
396
|
tmp0_serialDesc.ku('playerId', false);
|
|
394
|
-
this.
|
|
397
|
+
this.i2k_1 = tmp0_serialDesc;
|
|
395
398
|
}
|
|
396
399
|
protoOf($serializer).pj = function () {
|
|
397
|
-
return this.
|
|
400
|
+
return this.i2k_1;
|
|
398
401
|
};
|
|
399
402
|
protoOf($serializer).zu = function () {
|
|
400
403
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -403,7 +406,7 @@
|
|
|
403
406
|
return [StringSerializer_getInstance()];
|
|
404
407
|
};
|
|
405
408
|
protoOf($serializer).rj = function (decoder) {
|
|
406
|
-
var tmp0_desc = this.
|
|
409
|
+
var tmp0_desc = this.i2k_1;
|
|
407
410
|
var tmp1_flag = true;
|
|
408
411
|
var tmp2_index = 0;
|
|
409
412
|
var tmp3_bitMask0 = 0;
|
|
@@ -430,14 +433,14 @@
|
|
|
430
433
|
tmp5_input.ym(tmp0_desc);
|
|
431
434
|
return PlayerReturnsReason_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
432
435
|
};
|
|
433
|
-
protoOf($serializer).
|
|
434
|
-
var tmp0_desc = this.
|
|
436
|
+
protoOf($serializer).j2k = function (encoder, value) {
|
|
437
|
+
var tmp0_desc = this.i2k_1;
|
|
435
438
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
436
|
-
tmp1_output.mo(tmp0_desc, 0, value.
|
|
439
|
+
tmp1_output.mo(tmp0_desc, 0, value.k2k_1);
|
|
437
440
|
tmp1_output.ym(tmp0_desc);
|
|
438
441
|
};
|
|
439
442
|
protoOf($serializer).qj = function (encoder, value) {
|
|
440
|
-
return this.
|
|
443
|
+
return this.j2k(encoder, value instanceof PlayerReturnsReason ? value : THROW_CCE());
|
|
441
444
|
};
|
|
442
445
|
var $serializer_instance;
|
|
443
446
|
function $serializer_getInstance() {
|
|
@@ -447,10 +450,10 @@
|
|
|
447
450
|
}
|
|
448
451
|
function PlayerReturnsReason_init_$Init$(seen1, playerId, serializationConstructorMarker, $this) {
|
|
449
452
|
if (!(1 === (1 & seen1))) {
|
|
450
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance().
|
|
453
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance().i2k_1);
|
|
451
454
|
}
|
|
452
455
|
ContinueGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
453
|
-
$this.
|
|
456
|
+
$this.k2k_1 = playerId;
|
|
454
457
|
return $this;
|
|
455
458
|
}
|
|
456
459
|
function PlayerReturnsReason_init_$Create$(seen1, playerId, serializationConstructorMarker) {
|
|
@@ -458,13 +461,13 @@
|
|
|
458
461
|
}
|
|
459
462
|
function PlayerReturnsReason(playerId) {
|
|
460
463
|
ContinueGameReason.call(this);
|
|
461
|
-
this.
|
|
464
|
+
this.k2k_1 = playerId;
|
|
462
465
|
}
|
|
463
466
|
protoOf(PlayerReturnsReason).toString = function () {
|
|
464
|
-
return 'PlayerReturnsReason(playerId=' + this.
|
|
467
|
+
return 'PlayerReturnsReason(playerId=' + this.k2k_1 + ')';
|
|
465
468
|
};
|
|
466
469
|
protoOf(PlayerReturnsReason).hashCode = function () {
|
|
467
|
-
return getStringHashCode(this.
|
|
470
|
+
return getStringHashCode(this.k2k_1);
|
|
468
471
|
};
|
|
469
472
|
protoOf(PlayerReturnsReason).equals = function (other) {
|
|
470
473
|
if (this === other)
|
|
@@ -472,12 +475,12 @@
|
|
|
472
475
|
if (!(other instanceof PlayerReturnsReason))
|
|
473
476
|
return false;
|
|
474
477
|
var tmp0_other_with_cast = other instanceof PlayerReturnsReason ? other : THROW_CCE();
|
|
475
|
-
if (!(this.
|
|
478
|
+
if (!(this.k2k_1 === tmp0_other_with_cast.k2k_1))
|
|
476
479
|
return false;
|
|
477
480
|
return true;
|
|
478
481
|
};
|
|
479
482
|
function _get_$cachedSerializer__te6jhj($this) {
|
|
480
|
-
return $this.
|
|
483
|
+
return $this.l2k_1.o2();
|
|
481
484
|
}
|
|
482
485
|
function ContinueGameReason$Companion$_anonymous__g3m3ym() {
|
|
483
486
|
var tmp = getKClass(ContinueGameReason);
|
|
@@ -499,7 +502,7 @@
|
|
|
499
502
|
Companion_instance_0 = this;
|
|
500
503
|
var tmp = this;
|
|
501
504
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
502
|
-
tmp.
|
|
505
|
+
tmp.l2k_1 = lazy(tmp_0, ContinueGameReason$Companion$_anonymous__g3m3ym);
|
|
503
506
|
}
|
|
504
507
|
protoOf(Companion_0).t16 = function () {
|
|
505
508
|
return _get_$cachedSerializer__te6jhj(this);
|
|
@@ -529,16 +532,16 @@
|
|
|
529
532
|
this.logsDirectoryPath = logsDirectoryPath;
|
|
530
533
|
this.fileNameFormat = fileNameFormat;
|
|
531
534
|
}
|
|
532
|
-
protoOf(CoreConfig).
|
|
535
|
+
protoOf(CoreConfig).m2k = function () {
|
|
533
536
|
return this.fileLogsEnabled;
|
|
534
537
|
};
|
|
535
|
-
protoOf(CoreConfig).
|
|
538
|
+
protoOf(CoreConfig).n2k = function () {
|
|
536
539
|
return this.deleteFilesOnClear;
|
|
537
540
|
};
|
|
538
|
-
protoOf(CoreConfig).
|
|
541
|
+
protoOf(CoreConfig).o2k = function () {
|
|
539
542
|
return this.logsDirectoryPath;
|
|
540
543
|
};
|
|
541
|
-
protoOf(CoreConfig).
|
|
544
|
+
protoOf(CoreConfig).p2k = function () {
|
|
542
545
|
return this.fileNameFormat;
|
|
543
546
|
};
|
|
544
547
|
protoOf(CoreConfig).cd = function () {
|
|
@@ -550,10 +553,10 @@
|
|
|
550
553
|
protoOf(CoreConfig).qh = function () {
|
|
551
554
|
return this.logsDirectoryPath;
|
|
552
555
|
};
|
|
553
|
-
protoOf(CoreConfig).
|
|
556
|
+
protoOf(CoreConfig).q2k = function () {
|
|
554
557
|
return this.fileNameFormat;
|
|
555
558
|
};
|
|
556
|
-
protoOf(CoreConfig).
|
|
559
|
+
protoOf(CoreConfig).r2k = function (fileLogsEnabled, deleteFilesOnClear, logsDirectoryPath, fileNameFormat) {
|
|
557
560
|
return new CoreConfig(fileLogsEnabled, deleteFilesOnClear, logsDirectoryPath, fileNameFormat);
|
|
558
561
|
};
|
|
559
562
|
protoOf(CoreConfig).copy = function (fileLogsEnabled, deleteFilesOnClear, logsDirectoryPath, fileNameFormat, $super) {
|
|
@@ -561,7 +564,7 @@
|
|
|
561
564
|
deleteFilesOnClear = deleteFilesOnClear === VOID ? this.deleteFilesOnClear : deleteFilesOnClear;
|
|
562
565
|
logsDirectoryPath = logsDirectoryPath === VOID ? this.logsDirectoryPath : logsDirectoryPath;
|
|
563
566
|
fileNameFormat = fileNameFormat === VOID ? this.fileNameFormat : fileNameFormat;
|
|
564
|
-
return this.
|
|
567
|
+
return this.r2k(fileLogsEnabled, deleteFilesOnClear, logsDirectoryPath, fileNameFormat);
|
|
565
568
|
};
|
|
566
569
|
protoOf(CoreConfig).toString = function () {
|
|
567
570
|
return 'CoreConfig(fileLogsEnabled=' + this.fileLogsEnabled + ', deleteFilesOnClear=' + this.deleteFilesOnClear + ', logsDirectoryPath=' + this.logsDirectoryPath + ', fileNameFormat=' + this.fileNameFormat + ')';
|
|
@@ -590,7 +593,7 @@
|
|
|
590
593
|
return true;
|
|
591
594
|
};
|
|
592
595
|
function _get_$cachedSerializer__te6jhj_0($this) {
|
|
593
|
-
return $this.
|
|
596
|
+
return $this.s2k_1.o2();
|
|
594
597
|
}
|
|
595
598
|
function RestartGameReason$_anonymous__zfkhim() {
|
|
596
599
|
var tmp = RestartGameReason_getInstance();
|
|
@@ -604,7 +607,7 @@
|
|
|
604
607
|
RestartGameReason_instance = this;
|
|
605
608
|
var tmp = this;
|
|
606
609
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
607
|
-
tmp.
|
|
610
|
+
tmp.s2k_1 = lazy(tmp_0, RestartGameReason$_anonymous__zfkhim);
|
|
608
611
|
}
|
|
609
612
|
protoOf(RestartGameReason).toString = function () {
|
|
610
613
|
return 'RestartGameReason';
|
|
@@ -622,7 +625,7 @@
|
|
|
622
625
|
return RestartGameReason_instance;
|
|
623
626
|
}
|
|
624
627
|
function _get_$cachedSerializer__te6jhj_1($this) {
|
|
625
|
-
return $this.
|
|
628
|
+
return $this.t2k_1.o2();
|
|
626
629
|
}
|
|
627
630
|
function TerminationGameReason$Companion$_anonymous__6itbqj() {
|
|
628
631
|
var tmp = getKClass(TerminationGameReason);
|
|
@@ -660,7 +663,7 @@
|
|
|
660
663
|
Companion_instance_1 = this;
|
|
661
664
|
var tmp = this;
|
|
662
665
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
663
|
-
tmp.
|
|
666
|
+
tmp.t2k_1 = lazy(tmp_0, TerminationGameReason$Companion$_anonymous__6itbqj);
|
|
664
667
|
}
|
|
665
668
|
protoOf(Companion_1).t16 = function () {
|
|
666
669
|
return _get_$cachedSerializer__te6jhj_1(this);
|
|
@@ -694,10 +697,10 @@
|
|
|
694
697
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
695
698
|
tmp0_serialDesc.ku('playerId', false);
|
|
696
699
|
tmp0_serialDesc.ku('tag', false);
|
|
697
|
-
this.
|
|
700
|
+
this.u2k_1 = tmp0_serialDesc;
|
|
698
701
|
}
|
|
699
702
|
protoOf($serializer_0).pj = function () {
|
|
700
|
-
return this.
|
|
703
|
+
return this.u2k_1;
|
|
701
704
|
};
|
|
702
705
|
protoOf($serializer_0).zu = function () {
|
|
703
706
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -706,7 +709,7 @@
|
|
|
706
709
|
return [StringSerializer_getInstance(), get_nullable(StringSerializer_getInstance())];
|
|
707
710
|
};
|
|
708
711
|
protoOf($serializer_0).rj = function (decoder) {
|
|
709
|
-
var tmp0_desc = this.
|
|
712
|
+
var tmp0_desc = this.u2k_1;
|
|
710
713
|
var tmp1_flag = true;
|
|
711
714
|
var tmp2_index = 0;
|
|
712
715
|
var tmp3_bitMask0 = 0;
|
|
@@ -740,15 +743,15 @@
|
|
|
740
743
|
tmp6_input.ym(tmp0_desc);
|
|
741
744
|
return PlayerLostConnectionReason_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
742
745
|
};
|
|
743
|
-
protoOf($serializer_0).
|
|
744
|
-
var tmp0_desc = this.
|
|
746
|
+
protoOf($serializer_0).v2k = function (encoder, value) {
|
|
747
|
+
var tmp0_desc = this.u2k_1;
|
|
745
748
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
746
|
-
tmp1_output.mo(tmp0_desc, 0, value.
|
|
749
|
+
tmp1_output.mo(tmp0_desc, 0, value.w2k_1);
|
|
747
750
|
tmp1_output.qo(tmp0_desc, 1, StringSerializer_getInstance(), value.tag);
|
|
748
751
|
tmp1_output.ym(tmp0_desc);
|
|
749
752
|
};
|
|
750
753
|
protoOf($serializer_0).qj = function (encoder, value) {
|
|
751
|
-
return this.
|
|
754
|
+
return this.v2k(encoder, value instanceof PlayerLostConnectionReason ? value : THROW_CCE());
|
|
752
755
|
};
|
|
753
756
|
var $serializer_instance_0;
|
|
754
757
|
function $serializer_getInstance_0() {
|
|
@@ -758,10 +761,10 @@
|
|
|
758
761
|
}
|
|
759
762
|
function PlayerLostConnectionReason_init_$Init$(seen1, playerId, tag, serializationConstructorMarker, $this) {
|
|
760
763
|
if (!(3 === (3 & seen1))) {
|
|
761
|
-
throwMissingFieldException(seen1, 3, $serializer_getInstance_0().
|
|
764
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_0().u2k_1);
|
|
762
765
|
}
|
|
763
766
|
TerminationGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
764
|
-
$this.
|
|
767
|
+
$this.w2k_1 = playerId;
|
|
765
768
|
$this.tag = tag;
|
|
766
769
|
return $this;
|
|
767
770
|
}
|
|
@@ -770,37 +773,37 @@
|
|
|
770
773
|
}
|
|
771
774
|
function PlayerLostConnectionReason(playerId, tag) {
|
|
772
775
|
TerminationGameReason.call(this);
|
|
773
|
-
this.
|
|
776
|
+
this.w2k_1 = playerId;
|
|
774
777
|
this.tag = tag;
|
|
775
778
|
}
|
|
776
|
-
protoOf(PlayerLostConnectionReason).w2k = function () {
|
|
777
|
-
return this.v2k_1;
|
|
778
|
-
};
|
|
779
779
|
protoOf(PlayerLostConnectionReason).x2k = function () {
|
|
780
|
-
return this.
|
|
780
|
+
return this.w2k_1;
|
|
781
781
|
};
|
|
782
782
|
protoOf(PlayerLostConnectionReason).y2k = function () {
|
|
783
|
+
return this.tag;
|
|
784
|
+
};
|
|
785
|
+
protoOf(PlayerLostConnectionReason).z2k = function () {
|
|
783
786
|
return PlayerConnectionState_LOST_CONNECTION_getInstance();
|
|
784
787
|
};
|
|
785
788
|
protoOf(PlayerLostConnectionReason).cd = function () {
|
|
786
|
-
return this.
|
|
789
|
+
return this.w2k_1;
|
|
787
790
|
};
|
|
788
791
|
protoOf(PlayerLostConnectionReason).dd = function () {
|
|
789
792
|
return this.tag;
|
|
790
793
|
};
|
|
791
|
-
protoOf(PlayerLostConnectionReason).
|
|
794
|
+
protoOf(PlayerLostConnectionReason).a2l = function (playerId, tag) {
|
|
792
795
|
return new PlayerLostConnectionReason(playerId, tag);
|
|
793
796
|
};
|
|
794
797
|
protoOf(PlayerLostConnectionReason).copy = function (playerId, tag, $super) {
|
|
795
|
-
playerId = playerId === VOID ? this.
|
|
798
|
+
playerId = playerId === VOID ? this.w2k_1 : playerId;
|
|
796
799
|
tag = tag === VOID ? this.tag : tag;
|
|
797
|
-
return this.
|
|
800
|
+
return this.a2l(playerId, tag);
|
|
798
801
|
};
|
|
799
802
|
protoOf(PlayerLostConnectionReason).toString = function () {
|
|
800
|
-
return 'PlayerLostConnectionReason(playerId=' + this.
|
|
803
|
+
return 'PlayerLostConnectionReason(playerId=' + this.w2k_1 + ', tag=' + this.tag + ')';
|
|
801
804
|
};
|
|
802
805
|
protoOf(PlayerLostConnectionReason).hashCode = function () {
|
|
803
|
-
var result = getStringHashCode(this.
|
|
806
|
+
var result = getStringHashCode(this.w2k_1);
|
|
804
807
|
result = imul(result, 31) + (this.tag == null ? 0 : getStringHashCode(this.tag)) | 0;
|
|
805
808
|
return result;
|
|
806
809
|
};
|
|
@@ -810,7 +813,7 @@
|
|
|
810
813
|
if (!(other instanceof PlayerLostConnectionReason))
|
|
811
814
|
return false;
|
|
812
815
|
var tmp0_other_with_cast = other instanceof PlayerLostConnectionReason ? other : THROW_CCE();
|
|
813
|
-
if (!(this.
|
|
816
|
+
if (!(this.w2k_1 === tmp0_other_with_cast.w2k_1))
|
|
814
817
|
return false;
|
|
815
818
|
if (!(this.tag == tmp0_other_with_cast.tag))
|
|
816
819
|
return false;
|
|
@@ -830,10 +833,10 @@
|
|
|
830
833
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
831
834
|
tmp0_serialDesc.ku('playerId', false);
|
|
832
835
|
tmp0_serialDesc.ku('tag', false);
|
|
833
|
-
this.
|
|
836
|
+
this.b2l_1 = tmp0_serialDesc;
|
|
834
837
|
}
|
|
835
838
|
protoOf($serializer_1).pj = function () {
|
|
836
|
-
return this.
|
|
839
|
+
return this.b2l_1;
|
|
837
840
|
};
|
|
838
841
|
protoOf($serializer_1).zu = function () {
|
|
839
842
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -842,7 +845,7 @@
|
|
|
842
845
|
return [StringSerializer_getInstance(), get_nullable(StringSerializer_getInstance())];
|
|
843
846
|
};
|
|
844
847
|
protoOf($serializer_1).rj = function (decoder) {
|
|
845
|
-
var tmp0_desc = this.
|
|
848
|
+
var tmp0_desc = this.b2l_1;
|
|
846
849
|
var tmp1_flag = true;
|
|
847
850
|
var tmp2_index = 0;
|
|
848
851
|
var tmp3_bitMask0 = 0;
|
|
@@ -876,15 +879,15 @@
|
|
|
876
879
|
tmp6_input.ym(tmp0_desc);
|
|
877
880
|
return PlayerTimeoutReason_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
878
881
|
};
|
|
879
|
-
protoOf($serializer_1).
|
|
880
|
-
var tmp0_desc = this.
|
|
882
|
+
protoOf($serializer_1).c2l = function (encoder, value) {
|
|
883
|
+
var tmp0_desc = this.b2l_1;
|
|
881
884
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
882
|
-
tmp1_output.mo(tmp0_desc, 0, value.
|
|
885
|
+
tmp1_output.mo(tmp0_desc, 0, value.d2l_1);
|
|
883
886
|
tmp1_output.qo(tmp0_desc, 1, StringSerializer_getInstance(), value.tag);
|
|
884
887
|
tmp1_output.ym(tmp0_desc);
|
|
885
888
|
};
|
|
886
889
|
protoOf($serializer_1).qj = function (encoder, value) {
|
|
887
|
-
return this.
|
|
890
|
+
return this.c2l(encoder, value instanceof PlayerTimeoutReason ? value : THROW_CCE());
|
|
888
891
|
};
|
|
889
892
|
var $serializer_instance_1;
|
|
890
893
|
function $serializer_getInstance_1() {
|
|
@@ -894,10 +897,10 @@
|
|
|
894
897
|
}
|
|
895
898
|
function PlayerTimeoutReason_init_$Init$(seen1, playerId, tag, serializationConstructorMarker, $this) {
|
|
896
899
|
if (!(3 === (3 & seen1))) {
|
|
897
|
-
throwMissingFieldException(seen1, 3, $serializer_getInstance_1().
|
|
900
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_1().b2l_1);
|
|
898
901
|
}
|
|
899
902
|
TerminationGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
900
|
-
$this.
|
|
903
|
+
$this.d2l_1 = playerId;
|
|
901
904
|
$this.tag = tag;
|
|
902
905
|
return $this;
|
|
903
906
|
}
|
|
@@ -906,37 +909,37 @@
|
|
|
906
909
|
}
|
|
907
910
|
function PlayerTimeoutReason(playerId, tag) {
|
|
908
911
|
TerminationGameReason.call(this);
|
|
909
|
-
this.
|
|
912
|
+
this.d2l_1 = playerId;
|
|
910
913
|
this.tag = tag;
|
|
911
914
|
}
|
|
912
|
-
protoOf(PlayerTimeoutReason).w2k = function () {
|
|
913
|
-
return this.c2l_1;
|
|
914
|
-
};
|
|
915
915
|
protoOf(PlayerTimeoutReason).x2k = function () {
|
|
916
|
-
return this.
|
|
916
|
+
return this.d2l_1;
|
|
917
917
|
};
|
|
918
918
|
protoOf(PlayerTimeoutReason).y2k = function () {
|
|
919
|
+
return this.tag;
|
|
920
|
+
};
|
|
921
|
+
protoOf(PlayerTimeoutReason).z2k = function () {
|
|
919
922
|
return PlayerConnectionState_TIMEOUT_getInstance();
|
|
920
923
|
};
|
|
921
924
|
protoOf(PlayerTimeoutReason).cd = function () {
|
|
922
|
-
return this.
|
|
925
|
+
return this.d2l_1;
|
|
923
926
|
};
|
|
924
927
|
protoOf(PlayerTimeoutReason).dd = function () {
|
|
925
928
|
return this.tag;
|
|
926
929
|
};
|
|
927
|
-
protoOf(PlayerTimeoutReason).
|
|
930
|
+
protoOf(PlayerTimeoutReason).a2l = function (playerId, tag) {
|
|
928
931
|
return new PlayerTimeoutReason(playerId, tag);
|
|
929
932
|
};
|
|
930
933
|
protoOf(PlayerTimeoutReason).copy = function (playerId, tag, $super) {
|
|
931
|
-
playerId = playerId === VOID ? this.
|
|
934
|
+
playerId = playerId === VOID ? this.d2l_1 : playerId;
|
|
932
935
|
tag = tag === VOID ? this.tag : tag;
|
|
933
|
-
return this.
|
|
936
|
+
return this.a2l(playerId, tag);
|
|
934
937
|
};
|
|
935
938
|
protoOf(PlayerTimeoutReason).toString = function () {
|
|
936
|
-
return 'PlayerTimeoutReason(playerId=' + this.
|
|
939
|
+
return 'PlayerTimeoutReason(playerId=' + this.d2l_1 + ', tag=' + this.tag + ')';
|
|
937
940
|
};
|
|
938
941
|
protoOf(PlayerTimeoutReason).hashCode = function () {
|
|
939
|
-
var result = getStringHashCode(this.
|
|
942
|
+
var result = getStringHashCode(this.d2l_1);
|
|
940
943
|
result = imul(result, 31) + (this.tag == null ? 0 : getStringHashCode(this.tag)) | 0;
|
|
941
944
|
return result;
|
|
942
945
|
};
|
|
@@ -946,7 +949,7 @@
|
|
|
946
949
|
if (!(other instanceof PlayerTimeoutReason))
|
|
947
950
|
return false;
|
|
948
951
|
var tmp0_other_with_cast = other instanceof PlayerTimeoutReason ? other : THROW_CCE();
|
|
949
|
-
if (!(this.
|
|
952
|
+
if (!(this.d2l_1 === tmp0_other_with_cast.d2l_1))
|
|
950
953
|
return false;
|
|
951
954
|
if (!(this.tag == tmp0_other_with_cast.tag))
|
|
952
955
|
return false;
|
|
@@ -965,10 +968,10 @@
|
|
|
965
968
|
$serializer_instance_2 = this;
|
|
966
969
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
967
970
|
tmp0_serialDesc.ku('playerId', false);
|
|
968
|
-
this.
|
|
971
|
+
this.e2l_1 = tmp0_serialDesc;
|
|
969
972
|
}
|
|
970
973
|
protoOf($serializer_2).pj = function () {
|
|
971
|
-
return this.
|
|
974
|
+
return this.e2l_1;
|
|
972
975
|
};
|
|
973
976
|
protoOf($serializer_2).zu = function () {
|
|
974
977
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -977,7 +980,7 @@
|
|
|
977
980
|
return [StringSerializer_getInstance()];
|
|
978
981
|
};
|
|
979
982
|
protoOf($serializer_2).rj = function (decoder) {
|
|
980
|
-
var tmp0_desc = this.
|
|
983
|
+
var tmp0_desc = this.e2l_1;
|
|
981
984
|
var tmp1_flag = true;
|
|
982
985
|
var tmp2_index = 0;
|
|
983
986
|
var tmp3_bitMask0 = 0;
|
|
@@ -1004,14 +1007,14 @@
|
|
|
1004
1007
|
tmp5_input.ym(tmp0_desc);
|
|
1005
1008
|
return PlayerExitReason_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1006
1009
|
};
|
|
1007
|
-
protoOf($serializer_2).
|
|
1008
|
-
var tmp0_desc = this.
|
|
1010
|
+
protoOf($serializer_2).f2l = function (encoder, value) {
|
|
1011
|
+
var tmp0_desc = this.e2l_1;
|
|
1009
1012
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
1010
|
-
tmp1_output.mo(tmp0_desc, 0, value.
|
|
1013
|
+
tmp1_output.mo(tmp0_desc, 0, value.g2l_1);
|
|
1011
1014
|
tmp1_output.ym(tmp0_desc);
|
|
1012
1015
|
};
|
|
1013
1016
|
protoOf($serializer_2).qj = function (encoder, value) {
|
|
1014
|
-
return this.
|
|
1017
|
+
return this.f2l(encoder, value instanceof PlayerExitReason ? value : THROW_CCE());
|
|
1015
1018
|
};
|
|
1016
1019
|
var $serializer_instance_2;
|
|
1017
1020
|
function $serializer_getInstance_2() {
|
|
@@ -1021,10 +1024,10 @@
|
|
|
1021
1024
|
}
|
|
1022
1025
|
function PlayerExitReason_init_$Init$(seen1, playerId, serializationConstructorMarker, $this) {
|
|
1023
1026
|
if (!(1 === (1 & seen1))) {
|
|
1024
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_2().
|
|
1027
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_2().e2l_1);
|
|
1025
1028
|
}
|
|
1026
1029
|
TerminationGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
1027
|
-
$this.
|
|
1030
|
+
$this.g2l_1 = playerId;
|
|
1028
1031
|
return $this;
|
|
1029
1032
|
}
|
|
1030
1033
|
function PlayerExitReason_init_$Create$(seen1, playerId, serializationConstructorMarker) {
|
|
@@ -1032,29 +1035,29 @@
|
|
|
1032
1035
|
}
|
|
1033
1036
|
function PlayerExitReason(playerId) {
|
|
1034
1037
|
TerminationGameReason.call(this);
|
|
1035
|
-
this.
|
|
1038
|
+
this.g2l_1 = playerId;
|
|
1036
1039
|
}
|
|
1037
|
-
protoOf(PlayerExitReason).
|
|
1038
|
-
return this.
|
|
1040
|
+
protoOf(PlayerExitReason).x2k = function () {
|
|
1041
|
+
return this.g2l_1;
|
|
1039
1042
|
};
|
|
1040
|
-
protoOf(PlayerExitReason).
|
|
1043
|
+
protoOf(PlayerExitReason).z2k = function () {
|
|
1041
1044
|
return PlayerConnectionState_LEFT_getInstance();
|
|
1042
1045
|
};
|
|
1043
1046
|
protoOf(PlayerExitReason).cd = function () {
|
|
1044
|
-
return this.
|
|
1047
|
+
return this.g2l_1;
|
|
1045
1048
|
};
|
|
1046
|
-
protoOf(PlayerExitReason).
|
|
1049
|
+
protoOf(PlayerExitReason).h2l = function (playerId) {
|
|
1047
1050
|
return new PlayerExitReason(playerId);
|
|
1048
1051
|
};
|
|
1049
1052
|
protoOf(PlayerExitReason).copy = function (playerId, $super) {
|
|
1050
|
-
playerId = playerId === VOID ? this.
|
|
1051
|
-
return this.
|
|
1053
|
+
playerId = playerId === VOID ? this.g2l_1 : playerId;
|
|
1054
|
+
return this.h2l(playerId);
|
|
1052
1055
|
};
|
|
1053
1056
|
protoOf(PlayerExitReason).toString = function () {
|
|
1054
|
-
return 'PlayerExitReason(playerId=' + this.
|
|
1057
|
+
return 'PlayerExitReason(playerId=' + this.g2l_1 + ')';
|
|
1055
1058
|
};
|
|
1056
1059
|
protoOf(PlayerExitReason).hashCode = function () {
|
|
1057
|
-
return getStringHashCode(this.
|
|
1060
|
+
return getStringHashCode(this.g2l_1);
|
|
1058
1061
|
};
|
|
1059
1062
|
protoOf(PlayerExitReason).equals = function (other) {
|
|
1060
1063
|
if (this === other)
|
|
@@ -1062,12 +1065,12 @@
|
|
|
1062
1065
|
if (!(other instanceof PlayerExitReason))
|
|
1063
1066
|
return false;
|
|
1064
1067
|
var tmp0_other_with_cast = other instanceof PlayerExitReason ? other : THROW_CCE();
|
|
1065
|
-
if (!(this.
|
|
1068
|
+
if (!(this.g2l_1 === tmp0_other_with_cast.g2l_1))
|
|
1066
1069
|
return false;
|
|
1067
1070
|
return true;
|
|
1068
1071
|
};
|
|
1069
1072
|
function _get_$cachedSerializer__te6jhj_2($this) {
|
|
1070
|
-
return $this.
|
|
1073
|
+
return $this.i2l_1.o2();
|
|
1071
1074
|
}
|
|
1072
1075
|
function GameFinishedReason$Reason$Companion$_anonymous__q2gwr5() {
|
|
1073
1076
|
return createSimpleEnumSerializer('com.logic.data.models.GameFinishedReason.Reason', values());
|
|
@@ -1080,7 +1083,7 @@
|
|
|
1080
1083
|
Companion_instance_5 = this;
|
|
1081
1084
|
var tmp = this;
|
|
1082
1085
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1083
|
-
tmp.
|
|
1086
|
+
tmp.i2l_1 = lazy(tmp_0, GameFinishedReason$Reason$Companion$_anonymous__q2gwr5);
|
|
1084
1087
|
}
|
|
1085
1088
|
protoOf(Companion_5).t16 = function () {
|
|
1086
1089
|
return _get_$cachedSerializer__te6jhj_2(this);
|
|
@@ -1134,7 +1137,7 @@
|
|
|
1134
1137
|
// Inline function 'kotlin.arrayOf' call
|
|
1135
1138
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
1136
1139
|
// Inline function 'kotlin.js.asDynamic' call
|
|
1137
|
-
tmp.
|
|
1140
|
+
tmp.l2l_1 = [Companion_getInstance_7().t16()];
|
|
1138
1141
|
}
|
|
1139
1142
|
protoOf(Companion_6).t16 = function () {
|
|
1140
1143
|
return $serializer_getInstance_3();
|
|
@@ -1149,25 +1152,25 @@
|
|
|
1149
1152
|
$serializer_instance_3 = this;
|
|
1150
1153
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
1151
1154
|
tmp0_serialDesc.ku('reason', false);
|
|
1152
|
-
this.
|
|
1155
|
+
this.m2l_1 = tmp0_serialDesc;
|
|
1153
1156
|
}
|
|
1154
1157
|
protoOf($serializer_3).pj = function () {
|
|
1155
|
-
return this.
|
|
1158
|
+
return this.m2l_1;
|
|
1156
1159
|
};
|
|
1157
1160
|
protoOf($serializer_3).zu = function () {
|
|
1158
1161
|
// Inline function 'kotlin.arrayOf' call
|
|
1159
1162
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
1160
1163
|
// Inline function 'kotlin.js.asDynamic' call
|
|
1161
|
-
return [Companion_getInstance_8().
|
|
1164
|
+
return [Companion_getInstance_8().l2l_1[0]];
|
|
1162
1165
|
};
|
|
1163
1166
|
protoOf($serializer_3).rj = function (decoder) {
|
|
1164
|
-
var tmp0_desc = this.
|
|
1167
|
+
var tmp0_desc = this.m2l_1;
|
|
1165
1168
|
var tmp1_flag = true;
|
|
1166
1169
|
var tmp2_index = 0;
|
|
1167
1170
|
var tmp3_bitMask0 = 0;
|
|
1168
1171
|
var tmp4_local0 = null;
|
|
1169
1172
|
var tmp5_input = decoder.xm(tmp0_desc);
|
|
1170
|
-
var tmp6_cached = Companion_getInstance_8().
|
|
1173
|
+
var tmp6_cached = Companion_getInstance_8().l2l_1;
|
|
1171
1174
|
if (tmp5_input.nn()) {
|
|
1172
1175
|
tmp4_local0 = tmp5_input.jn(tmp0_desc, 0, tmp6_cached[0], tmp4_local0);
|
|
1173
1176
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -1189,15 +1192,15 @@
|
|
|
1189
1192
|
tmp5_input.ym(tmp0_desc);
|
|
1190
1193
|
return GameFinishedReason_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1191
1194
|
};
|
|
1192
|
-
protoOf($serializer_3).
|
|
1193
|
-
var tmp0_desc = this.
|
|
1195
|
+
protoOf($serializer_3).n2l = function (encoder, value) {
|
|
1196
|
+
var tmp0_desc = this.m2l_1;
|
|
1194
1197
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
1195
|
-
var tmp2_cached = Companion_getInstance_8().
|
|
1198
|
+
var tmp2_cached = Companion_getInstance_8().l2l_1;
|
|
1196
1199
|
tmp1_output.oo(tmp0_desc, 0, tmp2_cached[0], value.reason);
|
|
1197
1200
|
tmp1_output.ym(tmp0_desc);
|
|
1198
1201
|
};
|
|
1199
1202
|
protoOf($serializer_3).qj = function (encoder, value) {
|
|
1200
|
-
return this.
|
|
1203
|
+
return this.n2l(encoder, value instanceof GameFinishedReason ? value : THROW_CCE());
|
|
1201
1204
|
};
|
|
1202
1205
|
var $serializer_instance_3;
|
|
1203
1206
|
function $serializer_getInstance_3() {
|
|
@@ -1207,7 +1210,7 @@
|
|
|
1207
1210
|
}
|
|
1208
1211
|
function GameFinishedReason_init_$Init$(seen1, reason, serializationConstructorMarker, $this) {
|
|
1209
1212
|
if (!(1 === (1 & seen1))) {
|
|
1210
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_3().
|
|
1213
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_3().m2l_1);
|
|
1211
1214
|
}
|
|
1212
1215
|
TerminationGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
1213
1216
|
$this.reason = reason;
|
|
@@ -1237,18 +1240,18 @@
|
|
|
1237
1240
|
TerminationGameReason.call(this);
|
|
1238
1241
|
this.reason = reason;
|
|
1239
1242
|
}
|
|
1240
|
-
protoOf(GameFinishedReason).
|
|
1243
|
+
protoOf(GameFinishedReason).o2l = function () {
|
|
1241
1244
|
return this.reason;
|
|
1242
1245
|
};
|
|
1243
1246
|
protoOf(GameFinishedReason).cd = function () {
|
|
1244
1247
|
return this.reason;
|
|
1245
1248
|
};
|
|
1246
|
-
protoOf(GameFinishedReason).
|
|
1249
|
+
protoOf(GameFinishedReason).p2l = function (reason) {
|
|
1247
1250
|
return new GameFinishedReason(reason);
|
|
1248
1251
|
};
|
|
1249
1252
|
protoOf(GameFinishedReason).copy = function (reason, $super) {
|
|
1250
1253
|
reason = reason === VOID ? this.reason : reason;
|
|
1251
|
-
return this.
|
|
1254
|
+
return this.p2l(reason);
|
|
1252
1255
|
};
|
|
1253
1256
|
protoOf(GameFinishedReason).toString = function () {
|
|
1254
1257
|
return 'GameFinishedReason(reason=' + this.reason + ')';
|
|
@@ -1279,10 +1282,10 @@
|
|
|
1279
1282
|
$serializer_instance_4 = this;
|
|
1280
1283
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
1281
1284
|
tmp0_serialDesc.ku('reason', false);
|
|
1282
|
-
this.
|
|
1285
|
+
this.q2l_1 = tmp0_serialDesc;
|
|
1283
1286
|
}
|
|
1284
1287
|
protoOf($serializer_4).pj = function () {
|
|
1285
|
-
return this.
|
|
1288
|
+
return this.q2l_1;
|
|
1286
1289
|
};
|
|
1287
1290
|
protoOf($serializer_4).zu = function () {
|
|
1288
1291
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1291,7 +1294,7 @@
|
|
|
1291
1294
|
return [StringSerializer_getInstance()];
|
|
1292
1295
|
};
|
|
1293
1296
|
protoOf($serializer_4).rj = function (decoder) {
|
|
1294
|
-
var tmp0_desc = this.
|
|
1297
|
+
var tmp0_desc = this.q2l_1;
|
|
1295
1298
|
var tmp1_flag = true;
|
|
1296
1299
|
var tmp2_index = 0;
|
|
1297
1300
|
var tmp3_bitMask0 = 0;
|
|
@@ -1318,14 +1321,14 @@
|
|
|
1318
1321
|
tmp5_input.ym(tmp0_desc);
|
|
1319
1322
|
return GameErrorReason_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1320
1323
|
};
|
|
1321
|
-
protoOf($serializer_4).
|
|
1322
|
-
var tmp0_desc = this.
|
|
1324
|
+
protoOf($serializer_4).r2l = function (encoder, value) {
|
|
1325
|
+
var tmp0_desc = this.q2l_1;
|
|
1323
1326
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
1324
1327
|
tmp1_output.mo(tmp0_desc, 0, value.reason);
|
|
1325
1328
|
tmp1_output.ym(tmp0_desc);
|
|
1326
1329
|
};
|
|
1327
1330
|
protoOf($serializer_4).qj = function (encoder, value) {
|
|
1328
|
-
return this.
|
|
1331
|
+
return this.r2l(encoder, value instanceof GameErrorReason ? value : THROW_CCE());
|
|
1329
1332
|
};
|
|
1330
1333
|
var $serializer_instance_4;
|
|
1331
1334
|
function $serializer_getInstance_4() {
|
|
@@ -1335,7 +1338,7 @@
|
|
|
1335
1338
|
}
|
|
1336
1339
|
function GameErrorReason_init_$Init$(seen1, reason, serializationConstructorMarker, $this) {
|
|
1337
1340
|
if (!(1 === (1 & seen1))) {
|
|
1338
|
-
throwMissingFieldException(seen1, 1, $serializer_getInstance_4().
|
|
1341
|
+
throwMissingFieldException(seen1, 1, $serializer_getInstance_4().q2l_1);
|
|
1339
1342
|
}
|
|
1340
1343
|
TerminationGameReason_init_$Init$(seen1, serializationConstructorMarker, $this);
|
|
1341
1344
|
$this.reason = reason;
|
|
@@ -1348,18 +1351,18 @@
|
|
|
1348
1351
|
TerminationGameReason.call(this);
|
|
1349
1352
|
this.reason = reason;
|
|
1350
1353
|
}
|
|
1351
|
-
protoOf(GameErrorReason).
|
|
1354
|
+
protoOf(GameErrorReason).o2l = function () {
|
|
1352
1355
|
return this.reason;
|
|
1353
1356
|
};
|
|
1354
1357
|
protoOf(GameErrorReason).cd = function () {
|
|
1355
1358
|
return this.reason;
|
|
1356
1359
|
};
|
|
1357
|
-
protoOf(GameErrorReason).
|
|
1360
|
+
protoOf(GameErrorReason).h2l = function (reason) {
|
|
1358
1361
|
return new GameErrorReason(reason);
|
|
1359
1362
|
};
|
|
1360
1363
|
protoOf(GameErrorReason).copy = function (reason, $super) {
|
|
1361
1364
|
reason = reason === VOID ? this.reason : reason;
|
|
1362
|
-
return this.
|
|
1365
|
+
return this.h2l(reason);
|
|
1363
1366
|
};
|
|
1364
1367
|
protoOf(GameErrorReason).toString = function () {
|
|
1365
1368
|
return 'GameErrorReason(reason=' + this.reason + ')';
|
|
@@ -1378,7 +1381,7 @@
|
|
|
1378
1381
|
return true;
|
|
1379
1382
|
};
|
|
1380
1383
|
function _get_$cachedSerializer__te6jhj_3($this) {
|
|
1381
|
-
return $this.
|
|
1384
|
+
return $this.s2l_1.o2();
|
|
1382
1385
|
}
|
|
1383
1386
|
function WaitingForConnectionReason$_anonymous__v65n7d() {
|
|
1384
1387
|
var tmp = WaitingForConnectionReason_getInstance();
|
|
@@ -1393,7 +1396,7 @@
|
|
|
1393
1396
|
TerminationGameReason.call(this);
|
|
1394
1397
|
var tmp = this;
|
|
1395
1398
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1396
|
-
tmp.
|
|
1399
|
+
tmp.s2l_1 = lazy(tmp_0, WaitingForConnectionReason$_anonymous__v65n7d);
|
|
1397
1400
|
}
|
|
1398
1401
|
protoOf(WaitingForConnectionReason).toString = function () {
|
|
1399
1402
|
return 'WaitingForConnectionReason';
|
|
@@ -1411,7 +1414,7 @@
|
|
|
1411
1414
|
return WaitingForConnectionReason_instance;
|
|
1412
1415
|
}
|
|
1413
1416
|
function _get_$cachedSerializer__te6jhj_4($this) {
|
|
1414
|
-
return $this.
|
|
1417
|
+
return $this.t2l_1.o2();
|
|
1415
1418
|
}
|
|
1416
1419
|
function ProcessingReason$_anonymous__fvp7fk() {
|
|
1417
1420
|
var tmp = ProcessingReason_getInstance();
|
|
@@ -1426,7 +1429,7 @@
|
|
|
1426
1429
|
TerminationGameReason.call(this);
|
|
1427
1430
|
var tmp = this;
|
|
1428
1431
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1429
|
-
tmp.
|
|
1432
|
+
tmp.t2l_1 = lazy(tmp_0, ProcessingReason$_anonymous__fvp7fk);
|
|
1430
1433
|
}
|
|
1431
1434
|
protoOf(ProcessingReason).toString = function () {
|
|
1432
1435
|
return 'ProcessingReason';
|
|
@@ -1454,33 +1457,80 @@
|
|
|
1454
1457
|
isBot = isBot === VOID ? false : isBot;
|
|
1455
1458
|
initialLuckyFactor = initialLuckyFactor === VOID ? null : initialLuckyFactor;
|
|
1456
1459
|
payload = payload === VOID ? null : payload;
|
|
1457
|
-
this.
|
|
1460
|
+
this.u2l_1 = playerId;
|
|
1458
1461
|
this.name = name;
|
|
1459
1462
|
this.avatarUrl = avatarUrl;
|
|
1460
1463
|
this.isBot = isBot;
|
|
1461
1464
|
this.initialLuckyFactor = initialLuckyFactor;
|
|
1462
1465
|
this.payload = payload;
|
|
1463
1466
|
}
|
|
1464
|
-
protoOf(GameUserInfo).
|
|
1465
|
-
return this.
|
|
1467
|
+
protoOf(GameUserInfo).x2k = function () {
|
|
1468
|
+
return this.u2l_1;
|
|
1466
1469
|
};
|
|
1467
1470
|
protoOf(GameUserInfo).g9 = function () {
|
|
1468
1471
|
return this.name;
|
|
1469
1472
|
};
|
|
1470
|
-
protoOf(GameUserInfo).
|
|
1473
|
+
protoOf(GameUserInfo).v2l = function () {
|
|
1471
1474
|
return this.avatarUrl;
|
|
1472
1475
|
};
|
|
1473
|
-
protoOf(GameUserInfo).
|
|
1476
|
+
protoOf(GameUserInfo).w2l = function () {
|
|
1474
1477
|
return this.isBot;
|
|
1475
1478
|
};
|
|
1476
|
-
protoOf(GameUserInfo).
|
|
1479
|
+
protoOf(GameUserInfo).x2l = function () {
|
|
1477
1480
|
return this.initialLuckyFactor;
|
|
1478
1481
|
};
|
|
1479
|
-
protoOf(GameUserInfo).
|
|
1482
|
+
protoOf(GameUserInfo).y2l = function () {
|
|
1480
1483
|
return this.payload;
|
|
1481
1484
|
};
|
|
1485
|
+
protoOf(GameUserInfo).toString = function () {
|
|
1486
|
+
var tmp = 'GameUserInfo(' + ("playerId='" + this.u2l_1 + "', ") + ("name='" + this.name + "', ");
|
|
1487
|
+
// Inline function 'kotlin.takeIf' call
|
|
1488
|
+
var this_0 = 'avatarUrl=' + this.avatarUrl + ', ';
|
|
1489
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1490
|
+
var tmp_0;
|
|
1491
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1492
|
+
if (!(this.avatarUrl == null)) {
|
|
1493
|
+
tmp_0 = this_0;
|
|
1494
|
+
} else {
|
|
1495
|
+
tmp_0 = null;
|
|
1496
|
+
}
|
|
1497
|
+
var tmp_1 = tmp + tmp_0;
|
|
1498
|
+
// Inline function 'kotlin.takeIf' call
|
|
1499
|
+
var this_1 = 'isBot=' + this.isBot + ', ';
|
|
1500
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1501
|
+
var tmp_2;
|
|
1502
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1503
|
+
if (this.isBot) {
|
|
1504
|
+
tmp_2 = this_1;
|
|
1505
|
+
} else {
|
|
1506
|
+
tmp_2 = null;
|
|
1507
|
+
}
|
|
1508
|
+
var tmp_3 = tmp_1 + tmp_2;
|
|
1509
|
+
// Inline function 'kotlin.takeIf' call
|
|
1510
|
+
var this_2 = 'initialLuckyFactor=' + this.initialLuckyFactor + ', ';
|
|
1511
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1512
|
+
var tmp_4;
|
|
1513
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1514
|
+
if (!(this.initialLuckyFactor == null)) {
|
|
1515
|
+
tmp_4 = this_2;
|
|
1516
|
+
} else {
|
|
1517
|
+
tmp_4 = null;
|
|
1518
|
+
}
|
|
1519
|
+
var tmp_5 = tmp_3 + tmp_4;
|
|
1520
|
+
// Inline function 'kotlin.takeIf' call
|
|
1521
|
+
var this_3 = 'payload=' + toString(this.payload);
|
|
1522
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1523
|
+
var tmp_6;
|
|
1524
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1525
|
+
if (!(this.payload == null)) {
|
|
1526
|
+
tmp_6 = this_3;
|
|
1527
|
+
} else {
|
|
1528
|
+
tmp_6 = null;
|
|
1529
|
+
}
|
|
1530
|
+
return tmp_5 + tmp_6 + ')';
|
|
1531
|
+
};
|
|
1482
1532
|
protoOf(GameUserInfo).cd = function () {
|
|
1483
|
-
return this.
|
|
1533
|
+
return this.u2l_1;
|
|
1484
1534
|
};
|
|
1485
1535
|
protoOf(GameUserInfo).dd = function () {
|
|
1486
1536
|
return this.name;
|
|
@@ -1488,32 +1538,29 @@
|
|
|
1488
1538
|
protoOf(GameUserInfo).qh = function () {
|
|
1489
1539
|
return this.avatarUrl;
|
|
1490
1540
|
};
|
|
1491
|
-
protoOf(GameUserInfo).
|
|
1541
|
+
protoOf(GameUserInfo).q2k = function () {
|
|
1492
1542
|
return this.isBot;
|
|
1493
1543
|
};
|
|
1494
|
-
protoOf(GameUserInfo).
|
|
1544
|
+
protoOf(GameUserInfo).z2l = function () {
|
|
1495
1545
|
return this.initialLuckyFactor;
|
|
1496
1546
|
};
|
|
1497
|
-
protoOf(GameUserInfo).
|
|
1547
|
+
protoOf(GameUserInfo).a2m = function () {
|
|
1498
1548
|
return this.payload;
|
|
1499
1549
|
};
|
|
1500
|
-
protoOf(GameUserInfo).
|
|
1550
|
+
protoOf(GameUserInfo).b2m = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, payload) {
|
|
1501
1551
|
return new GameUserInfo(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload);
|
|
1502
1552
|
};
|
|
1503
1553
|
protoOf(GameUserInfo).copy = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, payload, $super) {
|
|
1504
|
-
playerId = playerId === VOID ? this.
|
|
1554
|
+
playerId = playerId === VOID ? this.u2l_1 : playerId;
|
|
1505
1555
|
name = name === VOID ? this.name : name;
|
|
1506
1556
|
avatarUrl = avatarUrl === VOID ? this.avatarUrl : avatarUrl;
|
|
1507
1557
|
isBot = isBot === VOID ? this.isBot : isBot;
|
|
1508
1558
|
initialLuckyFactor = initialLuckyFactor === VOID ? this.initialLuckyFactor : initialLuckyFactor;
|
|
1509
1559
|
payload = payload === VOID ? this.payload : payload;
|
|
1510
|
-
return this.
|
|
1511
|
-
};
|
|
1512
|
-
protoOf(GameUserInfo).toString = function () {
|
|
1513
|
-
return 'GameUserInfo(playerId=' + this.t2l_1 + ', name=' + this.name + ', avatarUrl=' + this.avatarUrl + ', isBot=' + this.isBot + ', initialLuckyFactor=' + this.initialLuckyFactor + ', payload=' + toString(this.payload) + ')';
|
|
1560
|
+
return this.b2m(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload);
|
|
1514
1561
|
};
|
|
1515
1562
|
protoOf(GameUserInfo).hashCode = function () {
|
|
1516
|
-
var result = getStringHashCode(this.
|
|
1563
|
+
var result = getStringHashCode(this.u2l_1);
|
|
1517
1564
|
result = imul(result, 31) + getStringHashCode(this.name) | 0;
|
|
1518
1565
|
result = imul(result, 31) + (this.avatarUrl == null ? 0 : getStringHashCode(this.avatarUrl)) | 0;
|
|
1519
1566
|
result = imul(result, 31) + getBooleanHashCode(this.isBot) | 0;
|
|
@@ -1527,7 +1574,7 @@
|
|
|
1527
1574
|
if (!(other instanceof GameUserInfo))
|
|
1528
1575
|
return false;
|
|
1529
1576
|
var tmp0_other_with_cast = other instanceof GameUserInfo ? other : THROW_CCE();
|
|
1530
|
-
if (!(this.
|
|
1577
|
+
if (!(this.u2l_1 === tmp0_other_with_cast.u2l_1))
|
|
1531
1578
|
return false;
|
|
1532
1579
|
if (!(this.name === tmp0_other_with_cast.name))
|
|
1533
1580
|
return false;
|
|
@@ -1607,18 +1654,18 @@
|
|
|
1607
1654
|
return destination;
|
|
1608
1655
|
}
|
|
1609
1656
|
function PlayerIndex(playerId, index) {
|
|
1610
|
-
this.
|
|
1611
|
-
this.
|
|
1657
|
+
this.e2m_1 = playerId;
|
|
1658
|
+
this.f2m_1 = index;
|
|
1612
1659
|
}
|
|
1613
|
-
protoOf(PlayerIndex).
|
|
1614
|
-
return this.
|
|
1660
|
+
protoOf(PlayerIndex).x2k = function () {
|
|
1661
|
+
return this.e2m_1;
|
|
1615
1662
|
};
|
|
1616
1663
|
protoOf(PlayerIndex).toString = function () {
|
|
1617
|
-
return 'PlayerIndex(playerId=' + this.
|
|
1664
|
+
return 'PlayerIndex(playerId=' + this.e2m_1 + ', index=' + this.f2m_1 + ')';
|
|
1618
1665
|
};
|
|
1619
1666
|
protoOf(PlayerIndex).hashCode = function () {
|
|
1620
|
-
var result = getStringHashCode(this.
|
|
1621
|
-
result = imul(result, 31) + this.
|
|
1667
|
+
var result = getStringHashCode(this.e2m_1);
|
|
1668
|
+
result = imul(result, 31) + this.f2m_1 | 0;
|
|
1622
1669
|
return result;
|
|
1623
1670
|
};
|
|
1624
1671
|
protoOf(PlayerIndex).equals = function (other) {
|
|
@@ -1627,10 +1674,10 @@
|
|
|
1627
1674
|
if (!(other instanceof PlayerIndex))
|
|
1628
1675
|
return false;
|
|
1629
1676
|
var tmp0_other_with_cast = other instanceof PlayerIndex ? other : THROW_CCE();
|
|
1630
|
-
if (!(this.d2m_1 === tmp0_other_with_cast.d2m_1))
|
|
1631
|
-
return false;
|
|
1632
1677
|
if (!(this.e2m_1 === tmp0_other_with_cast.e2m_1))
|
|
1633
1678
|
return false;
|
|
1679
|
+
if (!(this.f2m_1 === tmp0_other_with_cast.f2m_1))
|
|
1680
|
+
return false;
|
|
1634
1681
|
return true;
|
|
1635
1682
|
};
|
|
1636
1683
|
function filterPlayerTurn(_this__u8e3s4) {
|
|
@@ -1653,16 +1700,16 @@
|
|
|
1653
1700
|
return nextTo_0(_this__u8e3s4, get_byIdPlayerPredicate()(playerId));
|
|
1654
1701
|
}
|
|
1655
1702
|
function PlayerIdContractOrderComparator(players) {
|
|
1656
|
-
this.
|
|
1703
|
+
this.g2m_1 = players;
|
|
1657
1704
|
}
|
|
1658
|
-
protoOf(PlayerIdContractOrderComparator).
|
|
1659
|
-
var indexA = this.
|
|
1660
|
-
var indexB = this.
|
|
1705
|
+
protoOf(PlayerIdContractOrderComparator).h2m = function (a, b) {
|
|
1706
|
+
var indexA = this.g2m_1.y1(a.playerId);
|
|
1707
|
+
var indexB = this.g2m_1.y1(b.playerId);
|
|
1661
1708
|
return compareTo(indexA, indexB);
|
|
1662
1709
|
};
|
|
1663
1710
|
protoOf(PlayerIdContractOrderComparator).compare = function (a, b) {
|
|
1664
1711
|
var tmp = (!(a == null) ? isInterface(a, PlayerIdContract) : false) ? a : THROW_CCE();
|
|
1665
|
-
return this.
|
|
1712
|
+
return this.h2m(tmp, (!(b == null) ? isInterface(b, PlayerIdContract) : false) ? b : THROW_CCE());
|
|
1666
1713
|
};
|
|
1667
1714
|
function byIdPlayerPredicate$lambda(id) {
|
|
1668
1715
|
_init_properties_Player_kt__qi83pd();
|
|
@@ -1675,7 +1722,7 @@
|
|
|
1675
1722
|
}
|
|
1676
1723
|
function playerTurnPredicate$lambda(p1) {
|
|
1677
1724
|
_init_properties_Player_kt__qi83pd();
|
|
1678
|
-
return p1.i1r().
|
|
1725
|
+
return p1.i1r().p2m();
|
|
1679
1726
|
}
|
|
1680
1727
|
var properties_initialized_Player_kt_56shkt;
|
|
1681
1728
|
function _init_properties_Player_kt__qi83pd() {
|
|
@@ -1686,14 +1733,14 @@
|
|
|
1686
1733
|
}
|
|
1687
1734
|
}
|
|
1688
1735
|
function Companion_8() {
|
|
1689
|
-
this.
|
|
1736
|
+
this.q2m_1 = 75;
|
|
1690
1737
|
}
|
|
1691
|
-
protoOf(Companion_8).
|
|
1692
|
-
var tmp1_elvis_lhs = _this__u8e3s4 == null ? null : _this__u8e3s4.
|
|
1738
|
+
protoOf(Companion_8).r2m = function (_this__u8e3s4) {
|
|
1739
|
+
var tmp1_elvis_lhs = _this__u8e3s4 == null ? null : _this__u8e3s4.w2m(PlayerConnectionState_LIVE_getInstance(), System_instance.q1m(), Duration__plus_impl_yu9v8f(_this__u8e3s4.u2m_1, _this__u8e3s4.v2m()));
|
|
1693
1740
|
return tmp1_elvis_lhs == null ? new PlayerConnection(PlayerConnectionState_LIVE_getInstance(), System_instance.q1m()) : tmp1_elvis_lhs;
|
|
1694
1741
|
};
|
|
1695
|
-
protoOf(Companion_8).
|
|
1696
|
-
var tmp1_elvis_lhs = _this__u8e3s4 == null ? null : _this__u8e3s4.
|
|
1742
|
+
protoOf(Companion_8).x2m = function (_this__u8e3s4, state) {
|
|
1743
|
+
var tmp1_elvis_lhs = _this__u8e3s4 == null ? null : _this__u8e3s4.y2m(state, System_instance.q1m());
|
|
1697
1744
|
return tmp1_elvis_lhs == null ? new PlayerConnection(state, System_instance.q1m()) : tmp1_elvis_lhs;
|
|
1698
1745
|
};
|
|
1699
1746
|
var Companion_instance_8;
|
|
@@ -1703,54 +1750,54 @@
|
|
|
1703
1750
|
function PlayerConnection(state, connectionChangedTime, notLiveDurationRecord) {
|
|
1704
1751
|
connectionChangedTime = connectionChangedTime === VOID ? System_instance.q1m() : connectionChangedTime;
|
|
1705
1752
|
notLiveDurationRecord = notLiveDurationRecord === VOID ? Companion_getInstance().tg_1 : notLiveDurationRecord;
|
|
1706
|
-
this.
|
|
1707
|
-
this.
|
|
1708
|
-
this.
|
|
1753
|
+
this.s2m_1 = state;
|
|
1754
|
+
this.t2m_1 = connectionChangedTime;
|
|
1755
|
+
this.u2m_1 = notLiveDurationRecord;
|
|
1709
1756
|
}
|
|
1710
|
-
protoOf(PlayerConnection).
|
|
1711
|
-
return System_instance.q1m().v1n(this.
|
|
1757
|
+
protoOf(PlayerConnection).v2m = function () {
|
|
1758
|
+
return System_instance.q1m().v1n(this.t2m_1);
|
|
1712
1759
|
};
|
|
1713
|
-
protoOf(PlayerConnection).
|
|
1760
|
+
protoOf(PlayerConnection).z2m = function () {
|
|
1714
1761
|
var tmp;
|
|
1715
|
-
if (this.
|
|
1716
|
-
tmp = this.
|
|
1762
|
+
if (this.s2m_1.isLive) {
|
|
1763
|
+
tmp = this.u2m_1;
|
|
1717
1764
|
} else {
|
|
1718
|
-
tmp = Duration__plus_impl_yu9v8f(this.
|
|
1765
|
+
tmp = Duration__plus_impl_yu9v8f(this.u2m_1, this.v2m());
|
|
1719
1766
|
}
|
|
1720
1767
|
return tmp;
|
|
1721
1768
|
};
|
|
1722
|
-
protoOf(PlayerConnection).
|
|
1769
|
+
protoOf(PlayerConnection).a2n = function (gameDuration) {
|
|
1723
1770
|
// Inline function 'kotlin.Long.div' call
|
|
1724
1771
|
var percent = _Duration___get_inWholeMilliseconds__impl__msfiry(gameDuration).da() / 100.0;
|
|
1725
1772
|
// Inline function 'kotlin.math.round' call
|
|
1726
1773
|
// Inline function 'kotlin.Long.div' call
|
|
1727
|
-
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.
|
|
1774
|
+
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.z2m()).da() / percent;
|
|
1728
1775
|
var tmp$ret$2 = round(x);
|
|
1729
1776
|
return numberToInt(tmp$ret$2);
|
|
1730
1777
|
};
|
|
1731
|
-
protoOf(PlayerConnection).a2n = function (gameDuration) {
|
|
1732
|
-
return 100 - this.z2m(gameDuration) | 0;
|
|
1733
|
-
};
|
|
1734
1778
|
protoOf(PlayerConnection).b2n = function (gameDuration) {
|
|
1735
|
-
|
|
1779
|
+
return 100 - this.a2n(gameDuration) | 0;
|
|
1780
|
+
};
|
|
1781
|
+
protoOf(PlayerConnection).c2n = function (gameDuration) {
|
|
1782
|
+
var percentage = this.b2n(gameDuration);
|
|
1736
1783
|
return percentage >= 75;
|
|
1737
1784
|
};
|
|
1738
|
-
protoOf(PlayerConnection).
|
|
1785
|
+
protoOf(PlayerConnection).w2m = function (state, connectionChangedTime, notLiveDurationRecord) {
|
|
1739
1786
|
return new PlayerConnection(state, connectionChangedTime, notLiveDurationRecord);
|
|
1740
1787
|
};
|
|
1741
|
-
protoOf(PlayerConnection).
|
|
1742
|
-
state = state === VOID ? this.
|
|
1743
|
-
connectionChangedTime = connectionChangedTime === VOID ? this.
|
|
1744
|
-
notLiveDurationRecord = notLiveDurationRecord === VOID ? this.
|
|
1745
|
-
return $super === VOID ? this.
|
|
1788
|
+
protoOf(PlayerConnection).y2m = function (state, connectionChangedTime, notLiveDurationRecord, $super) {
|
|
1789
|
+
state = state === VOID ? this.s2m_1 : state;
|
|
1790
|
+
connectionChangedTime = connectionChangedTime === VOID ? this.t2m_1 : connectionChangedTime;
|
|
1791
|
+
notLiveDurationRecord = notLiveDurationRecord === VOID ? this.u2m_1 : notLiveDurationRecord;
|
|
1792
|
+
return $super === VOID ? this.w2m(state, connectionChangedTime, notLiveDurationRecord) : $super.w2m.call(this, state, connectionChangedTime, new Duration(notLiveDurationRecord));
|
|
1746
1793
|
};
|
|
1747
1794
|
protoOf(PlayerConnection).toString = function () {
|
|
1748
|
-
return 'PlayerConnection(state=' + this.
|
|
1795
|
+
return 'PlayerConnection(state=' + this.s2m_1 + ', connectionChangedTime=' + this.t2m_1 + ', notLiveDurationRecord=' + new Duration(this.u2m_1) + ')';
|
|
1749
1796
|
};
|
|
1750
1797
|
protoOf(PlayerConnection).hashCode = function () {
|
|
1751
|
-
var result = this.
|
|
1752
|
-
result = imul(result, 31) + this.
|
|
1753
|
-
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.
|
|
1798
|
+
var result = this.s2m_1.hashCode();
|
|
1799
|
+
result = imul(result, 31) + this.t2m_1.hashCode() | 0;
|
|
1800
|
+
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.u2m_1) | 0;
|
|
1754
1801
|
return result;
|
|
1755
1802
|
};
|
|
1756
1803
|
protoOf(PlayerConnection).equals = function (other) {
|
|
@@ -1759,16 +1806,16 @@
|
|
|
1759
1806
|
if (!(other instanceof PlayerConnection))
|
|
1760
1807
|
return false;
|
|
1761
1808
|
var tmp0_other_with_cast = other instanceof PlayerConnection ? other : THROW_CCE();
|
|
1762
|
-
if (!this.r2m_1.equals(tmp0_other_with_cast.r2m_1))
|
|
1763
|
-
return false;
|
|
1764
1809
|
if (!this.s2m_1.equals(tmp0_other_with_cast.s2m_1))
|
|
1765
1810
|
return false;
|
|
1766
|
-
if (!
|
|
1811
|
+
if (!this.t2m_1.equals(tmp0_other_with_cast.t2m_1))
|
|
1812
|
+
return false;
|
|
1813
|
+
if (!equals(this.u2m_1, tmp0_other_with_cast.u2m_1))
|
|
1767
1814
|
return false;
|
|
1768
1815
|
return true;
|
|
1769
1816
|
};
|
|
1770
1817
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
1771
|
-
return $this.
|
|
1818
|
+
return $this.d2n_1.o2();
|
|
1772
1819
|
}
|
|
1773
1820
|
function PlayerConnectionState$Companion$_anonymous__8wfaw3() {
|
|
1774
1821
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerConnectionState', values_0());
|
|
@@ -1783,7 +1830,7 @@
|
|
|
1783
1830
|
Companion_instance_9 = this;
|
|
1784
1831
|
var tmp = this;
|
|
1785
1832
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1786
|
-
tmp.
|
|
1833
|
+
tmp.d2n_1 = lazy(tmp_0, PlayerConnectionState$Companion$_anonymous__8wfaw3);
|
|
1787
1834
|
}
|
|
1788
1835
|
protoOf(Companion_9).t16 = function () {
|
|
1789
1836
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -1837,30 +1884,36 @@
|
|
|
1837
1884
|
function PlayerConnectionState(name, ordinal) {
|
|
1838
1885
|
Enum.call(this, name, ordinal);
|
|
1839
1886
|
}
|
|
1840
|
-
protoOf(PlayerConnectionState).
|
|
1887
|
+
protoOf(PlayerConnectionState).g2n = function () {
|
|
1841
1888
|
return this.equals(PlayerConnectionState_LIVE_getInstance());
|
|
1842
1889
|
};
|
|
1843
|
-
protoOf(PlayerConnectionState).
|
|
1890
|
+
protoOf(PlayerConnectionState).h2n = function () {
|
|
1844
1891
|
return this.equals(PlayerConnectionState_TIMEOUT_getInstance());
|
|
1845
1892
|
};
|
|
1846
|
-
protoOf(PlayerConnectionState).
|
|
1893
|
+
protoOf(PlayerConnectionState).i2n = function () {
|
|
1847
1894
|
return this.equals(PlayerConnectionState_LOST_CONNECTION_getInstance());
|
|
1848
1895
|
};
|
|
1849
|
-
protoOf(PlayerConnectionState).
|
|
1896
|
+
protoOf(PlayerConnectionState).j2n = function () {
|
|
1850
1897
|
return this.equals(PlayerConnectionState_LEFT_getInstance());
|
|
1851
1898
|
};
|
|
1852
|
-
protoOf(PlayerConnectionState).
|
|
1899
|
+
protoOf(PlayerConnectionState).k2n = function () {
|
|
1853
1900
|
return this.equals(PlayerConnectionState_DELETED_getInstance());
|
|
1854
1901
|
};
|
|
1855
|
-
protoOf(PlayerConnectionState).
|
|
1902
|
+
protoOf(PlayerConnectionState).l2n = function () {
|
|
1856
1903
|
return this.equals(PlayerConnectionState_DISCONNECTING_getInstance());
|
|
1857
1904
|
};
|
|
1858
|
-
protoOf(PlayerConnectionState).
|
|
1905
|
+
protoOf(PlayerConnectionState).m2n = function () {
|
|
1859
1906
|
return this.isDisconnected ? true : this.isDeleted;
|
|
1860
1907
|
};
|
|
1861
|
-
protoOf(PlayerConnectionState).
|
|
1908
|
+
protoOf(PlayerConnectionState).n2n = function () {
|
|
1862
1909
|
return (this.isTimeOut ? true : this.isLostConnection) ? true : this.isLeft;
|
|
1863
1910
|
};
|
|
1911
|
+
protoOf(PlayerConnectionState).o2n = function () {
|
|
1912
|
+
return (this.isTimeOut ? true : this.isLeft) ? true : this.isDeleted;
|
|
1913
|
+
};
|
|
1914
|
+
protoOf(PlayerConnectionState).p2n = function () {
|
|
1915
|
+
return this.isLostConnection;
|
|
1916
|
+
};
|
|
1864
1917
|
function PlayerConnectionState_LIVE_getInstance() {
|
|
1865
1918
|
PlayerConnectionState_initEntries();
|
|
1866
1919
|
return PlayerConnectionState_LIVE_instance;
|
|
@@ -1886,25 +1939,25 @@
|
|
|
1886
1939
|
return PlayerConnectionState_DELETED_instance;
|
|
1887
1940
|
}
|
|
1888
1941
|
function PlayerLuckyFactor(playerId, factor, wasLiveDuringGame, liveDurationPercentage) {
|
|
1889
|
-
this.
|
|
1942
|
+
this.q2n_1 = playerId;
|
|
1890
1943
|
this.factor = factor;
|
|
1891
1944
|
this.wasLiveDuringGame = wasLiveDuringGame;
|
|
1892
1945
|
this.liveDurationPercentage = liveDurationPercentage;
|
|
1893
1946
|
}
|
|
1894
|
-
protoOf(PlayerLuckyFactor).
|
|
1895
|
-
return this.
|
|
1947
|
+
protoOf(PlayerLuckyFactor).x2k = function () {
|
|
1948
|
+
return this.q2n_1;
|
|
1896
1949
|
};
|
|
1897
|
-
protoOf(PlayerLuckyFactor).
|
|
1950
|
+
protoOf(PlayerLuckyFactor).r2n = function () {
|
|
1898
1951
|
return this.factor;
|
|
1899
1952
|
};
|
|
1900
|
-
protoOf(PlayerLuckyFactor).
|
|
1953
|
+
protoOf(PlayerLuckyFactor).s2n = function () {
|
|
1901
1954
|
return this.wasLiveDuringGame;
|
|
1902
1955
|
};
|
|
1903
|
-
protoOf(PlayerLuckyFactor).
|
|
1956
|
+
protoOf(PlayerLuckyFactor).t2n = function () {
|
|
1904
1957
|
return this.liveDurationPercentage;
|
|
1905
1958
|
};
|
|
1906
1959
|
protoOf(PlayerLuckyFactor).cd = function () {
|
|
1907
|
-
return this.
|
|
1960
|
+
return this.q2n_1;
|
|
1908
1961
|
};
|
|
1909
1962
|
protoOf(PlayerLuckyFactor).dd = function () {
|
|
1910
1963
|
return this.factor;
|
|
@@ -1912,24 +1965,24 @@
|
|
|
1912
1965
|
protoOf(PlayerLuckyFactor).qh = function () {
|
|
1913
1966
|
return this.wasLiveDuringGame;
|
|
1914
1967
|
};
|
|
1915
|
-
protoOf(PlayerLuckyFactor).
|
|
1968
|
+
protoOf(PlayerLuckyFactor).q2k = function () {
|
|
1916
1969
|
return this.liveDurationPercentage;
|
|
1917
1970
|
};
|
|
1918
|
-
protoOf(PlayerLuckyFactor).
|
|
1971
|
+
protoOf(PlayerLuckyFactor).u2n = function (playerId, factor, wasLiveDuringGame, liveDurationPercentage) {
|
|
1919
1972
|
return new PlayerLuckyFactor(playerId, factor, wasLiveDuringGame, liveDurationPercentage);
|
|
1920
1973
|
};
|
|
1921
1974
|
protoOf(PlayerLuckyFactor).copy = function (playerId, factor, wasLiveDuringGame, liveDurationPercentage, $super) {
|
|
1922
|
-
playerId = playerId === VOID ? this.
|
|
1975
|
+
playerId = playerId === VOID ? this.q2n_1 : playerId;
|
|
1923
1976
|
factor = factor === VOID ? this.factor : factor;
|
|
1924
1977
|
wasLiveDuringGame = wasLiveDuringGame === VOID ? this.wasLiveDuringGame : wasLiveDuringGame;
|
|
1925
1978
|
liveDurationPercentage = liveDurationPercentage === VOID ? this.liveDurationPercentage : liveDurationPercentage;
|
|
1926
|
-
return this.
|
|
1979
|
+
return this.u2n(playerId, factor, wasLiveDuringGame, liveDurationPercentage);
|
|
1927
1980
|
};
|
|
1928
1981
|
protoOf(PlayerLuckyFactor).toString = function () {
|
|
1929
|
-
return 'PlayerLuckyFactor(playerId=' + this.
|
|
1982
|
+
return 'PlayerLuckyFactor(playerId=' + this.q2n_1 + ', factor=' + this.factor + ', wasLiveDuringGame=' + this.wasLiveDuringGame + ', liveDurationPercentage=' + this.liveDurationPercentage + ')';
|
|
1930
1983
|
};
|
|
1931
1984
|
protoOf(PlayerLuckyFactor).hashCode = function () {
|
|
1932
|
-
var result = getStringHashCode(this.
|
|
1985
|
+
var result = getStringHashCode(this.q2n_1);
|
|
1933
1986
|
result = imul(result, 31) + getNumberHashCode(this.factor) | 0;
|
|
1934
1987
|
result = imul(result, 31) + getBooleanHashCode(this.wasLiveDuringGame) | 0;
|
|
1935
1988
|
result = imul(result, 31) + (this.liveDurationPercentage == null ? 0 : this.liveDurationPercentage) | 0;
|
|
@@ -1941,7 +1994,7 @@
|
|
|
1941
1994
|
if (!(other instanceof PlayerLuckyFactor))
|
|
1942
1995
|
return false;
|
|
1943
1996
|
var tmp0_other_with_cast = other instanceof PlayerLuckyFactor ? other : THROW_CCE();
|
|
1944
|
-
if (!(this.
|
|
1997
|
+
if (!(this.q2n_1 === tmp0_other_with_cast.q2n_1))
|
|
1945
1998
|
return false;
|
|
1946
1999
|
if (!equals(this.factor, tmp0_other_with_cast.factor))
|
|
1947
2000
|
return false;
|
|
@@ -1952,7 +2005,7 @@
|
|
|
1952
2005
|
return true;
|
|
1953
2006
|
};
|
|
1954
2007
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
1955
|
-
return $this.
|
|
2008
|
+
return $this.v2n_1.o2();
|
|
1956
2009
|
}
|
|
1957
2010
|
function PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2() {
|
|
1958
2011
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerState.PlayerWaitingState', values_1());
|
|
@@ -1964,7 +2017,7 @@
|
|
|
1964
2017
|
Companion_instance_10 = this;
|
|
1965
2018
|
var tmp = this;
|
|
1966
2019
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1967
|
-
tmp.
|
|
2020
|
+
tmp.v2n_1 = lazy(tmp_0, PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2);
|
|
1968
2021
|
}
|
|
1969
2022
|
protoOf(Companion_10).t16 = function () {
|
|
1970
2023
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -1995,25 +2048,25 @@
|
|
|
1995
2048
|
function PlayerWaitingState(name, ordinal) {
|
|
1996
2049
|
Enum.call(this, name, ordinal);
|
|
1997
2050
|
}
|
|
1998
|
-
protoOf(PlayerWaitingState).
|
|
2051
|
+
protoOf(PlayerWaitingState).y2n = function () {
|
|
1999
2052
|
return this.equals(PlayerWaitingState_IN_PROGRESS_getInstance());
|
|
2000
2053
|
};
|
|
2001
|
-
protoOf(PlayerWaitingState).
|
|
2054
|
+
protoOf(PlayerWaitingState).z2n = function () {
|
|
2002
2055
|
return this.equals(PlayerWaitingState_IN_PROGRESS_ATTENTION_MODE_getInstance());
|
|
2003
2056
|
};
|
|
2004
2057
|
function Companion_11() {
|
|
2005
2058
|
}
|
|
2006
|
-
protoOf(Companion_11).
|
|
2059
|
+
protoOf(Companion_11).a2o = function (connection) {
|
|
2007
2060
|
var tmp0_state = PlayerWaitingState_IDLE_getInstance();
|
|
2008
2061
|
return new PlayerState(null, null, null, tmp0_state, false, null, connection);
|
|
2009
2062
|
};
|
|
2010
|
-
protoOf(Companion_11).
|
|
2011
|
-
return _this__u8e3s4.
|
|
2063
|
+
protoOf(Companion_11).b2o = function (_this__u8e3s4) {
|
|
2064
|
+
return _this__u8e3s4.c2o(null, null, VOID, PlayerWaitingState_IDLE_getInstance(), VOID, null);
|
|
2012
2065
|
};
|
|
2013
|
-
protoOf(Companion_11).
|
|
2066
|
+
protoOf(Companion_11).d2o = function (_this__u8e3s4, playerTurnTimeout, tag) {
|
|
2014
2067
|
var tmp0_startFromTime = System_instance.q1m();
|
|
2015
2068
|
var tmp1_state = PlayerWaitingState_IN_PROGRESS_getInstance();
|
|
2016
|
-
return _this__u8e3s4.
|
|
2069
|
+
return _this__u8e3s4.c2o(tmp0_startFromTime, playerTurnTimeout, VOID, tmp1_state, false, tag);
|
|
2017
2070
|
};
|
|
2018
2071
|
var Companion_instance_11;
|
|
2019
2072
|
function Companion_getInstance_13() {
|
|
@@ -2034,17 +2087,17 @@
|
|
|
2034
2087
|
function PlayerState(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) {
|
|
2035
2088
|
tag = tag === VOID ? null : tag;
|
|
2036
2089
|
connection = connection === VOID ? null : connection;
|
|
2037
|
-
this.
|
|
2038
|
-
this.
|
|
2039
|
-
this.
|
|
2040
|
-
this.
|
|
2041
|
-
this.
|
|
2042
|
-
this.
|
|
2043
|
-
this.
|
|
2044
|
-
}
|
|
2045
|
-
protoOf(PlayerState).
|
|
2090
|
+
this.i2m_1 = startFromTime;
|
|
2091
|
+
this.j2m_1 = playerTurnTimeout;
|
|
2092
|
+
this.k2m_1 = waitPlayerUntilTime;
|
|
2093
|
+
this.l2m_1 = state;
|
|
2094
|
+
this.m2m_1 = ready;
|
|
2095
|
+
this.n2m_1 = tag;
|
|
2096
|
+
this.o2m_1 = connection;
|
|
2097
|
+
}
|
|
2098
|
+
protoOf(PlayerState).e2o = function () {
|
|
2046
2099
|
// Inline function 'kotlin.requireNotNull' call
|
|
2047
|
-
var value = this.
|
|
2100
|
+
var value = this.o2m_1;
|
|
2048
2101
|
// Inline function 'kotlin.contracts.contract' call
|
|
2049
2102
|
var tmp$ret$1;
|
|
2050
2103
|
$l$block: {
|
|
@@ -2061,9 +2114,9 @@
|
|
|
2061
2114
|
}
|
|
2062
2115
|
return tmp$ret$1;
|
|
2063
2116
|
};
|
|
2064
|
-
protoOf(PlayerState).
|
|
2117
|
+
protoOf(PlayerState).f2o = function () {
|
|
2065
2118
|
// Inline function 'kotlin.requireNotNull' call
|
|
2066
|
-
var value = this.
|
|
2119
|
+
var value = this.n2m_1;
|
|
2067
2120
|
// Inline function 'kotlin.contracts.contract' call
|
|
2068
2121
|
var tmp$ret$1;
|
|
2069
2122
|
$l$block: {
|
|
@@ -2080,37 +2133,102 @@
|
|
|
2080
2133
|
}
|
|
2081
2134
|
return tmp$ret$1;
|
|
2082
2135
|
};
|
|
2083
|
-
protoOf(PlayerState).
|
|
2084
|
-
var tmp0_elvis_lhs = this.
|
|
2136
|
+
protoOf(PlayerState).g2o = function () {
|
|
2137
|
+
var tmp0_elvis_lhs = this.n2m_1;
|
|
2085
2138
|
return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
|
|
2086
2139
|
};
|
|
2087
|
-
protoOf(PlayerState).
|
|
2088
|
-
|
|
2140
|
+
protoOf(PlayerState).toString = function () {
|
|
2141
|
+
// Inline function 'kotlin.takeIf' call
|
|
2142
|
+
var this_0 = 'startFromTime=' + this.i2m_1 + ', ';
|
|
2143
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2144
|
+
var tmp;
|
|
2145
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2146
|
+
if (!(this.i2m_1 == null)) {
|
|
2147
|
+
tmp = this_0;
|
|
2148
|
+
} else {
|
|
2149
|
+
tmp = null;
|
|
2150
|
+
}
|
|
2151
|
+
var tmp_0 = 'PlayerState(' + tmp;
|
|
2152
|
+
// Inline function 'kotlin.takeIf' call
|
|
2153
|
+
var this_1 = 'playerTurnTimeout=' + this.j2m_1 + ', ';
|
|
2154
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2155
|
+
var tmp_1;
|
|
2156
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2157
|
+
if (!(this.j2m_1 == null)) {
|
|
2158
|
+
tmp_1 = this_1;
|
|
2159
|
+
} else {
|
|
2160
|
+
tmp_1 = null;
|
|
2161
|
+
}
|
|
2162
|
+
var tmp_2 = tmp_0 + tmp_1;
|
|
2163
|
+
// Inline function 'kotlin.takeIf' call
|
|
2164
|
+
var this_2 = 'waitPlayerUntilTime=' + this.k2m_1 + ', ';
|
|
2165
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2166
|
+
var tmp_3;
|
|
2167
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2168
|
+
if (!(this.k2m_1 == null)) {
|
|
2169
|
+
tmp_3 = this_2;
|
|
2170
|
+
} else {
|
|
2171
|
+
tmp_3 = null;
|
|
2172
|
+
}
|
|
2173
|
+
var tmp_4 = tmp_2 + tmp_3 + ('state=' + this.l2m_1 + ', ');
|
|
2174
|
+
// Inline function 'kotlin.takeIf' call
|
|
2175
|
+
var this_3 = 'ready=' + this.m2m_1 + ', ';
|
|
2176
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2177
|
+
var tmp_5;
|
|
2178
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2179
|
+
if (this.m2m_1) {
|
|
2180
|
+
tmp_5 = this_3;
|
|
2181
|
+
} else {
|
|
2182
|
+
tmp_5 = null;
|
|
2183
|
+
}
|
|
2184
|
+
var tmp_6 = tmp_4 + tmp_5;
|
|
2185
|
+
// Inline function 'kotlin.takeIf' call
|
|
2186
|
+
var this_4 = 'tag=' + this.n2m_1 + ', ';
|
|
2187
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2188
|
+
var tmp_7;
|
|
2189
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2190
|
+
if (!(this.n2m_1 == null)) {
|
|
2191
|
+
tmp_7 = this_4;
|
|
2192
|
+
} else {
|
|
2193
|
+
tmp_7 = null;
|
|
2194
|
+
}
|
|
2195
|
+
var tmp_8 = tmp_6 + tmp_7;
|
|
2196
|
+
// Inline function 'kotlin.takeIf' call
|
|
2197
|
+
var this_5 = 'connection=' + this.o2m_1;
|
|
2198
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
2199
|
+
var tmp_9;
|
|
2200
|
+
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
2201
|
+
if (!(this.o2m_1 == null)) {
|
|
2202
|
+
tmp_9 = this_5;
|
|
2203
|
+
} else {
|
|
2204
|
+
tmp_9 = null;
|
|
2205
|
+
}
|
|
2206
|
+
return tmp_8 + tmp_9 + ')';
|
|
2089
2207
|
};
|
|
2090
|
-
protoOf(PlayerState).
|
|
2091
|
-
return
|
|
2208
|
+
protoOf(PlayerState).p2m = function () {
|
|
2209
|
+
return this.l2m_1.y2n() ? true : this.l2m_1.z2n();
|
|
2092
2210
|
};
|
|
2093
|
-
protoOf(PlayerState).
|
|
2094
|
-
|
|
2095
|
-
playerTurnTimeout = playerTurnTimeout === VOID ? this.i2m_1 : playerTurnTimeout;
|
|
2096
|
-
waitPlayerUntilTime = waitPlayerUntilTime === VOID ? this.j2m_1 : waitPlayerUntilTime;
|
|
2097
|
-
state = state === VOID ? this.k2m_1 : state;
|
|
2098
|
-
ready = ready === VOID ? this.l2m_1 : ready;
|
|
2099
|
-
tag = tag === VOID ? this.m2m_1 : tag;
|
|
2100
|
-
connection = connection === VOID ? this.n2m_1 : connection;
|
|
2101
|
-
return $super === VOID ? this.e2o(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) : $super.e2o.call(this, startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection);
|
|
2211
|
+
protoOf(PlayerState).h2o = function (startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) {
|
|
2212
|
+
return new PlayerState(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection);
|
|
2102
2213
|
};
|
|
2103
|
-
protoOf(PlayerState).
|
|
2104
|
-
|
|
2214
|
+
protoOf(PlayerState).c2o = function (startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, $super) {
|
|
2215
|
+
startFromTime = startFromTime === VOID ? this.i2m_1 : startFromTime;
|
|
2216
|
+
playerTurnTimeout = playerTurnTimeout === VOID ? this.j2m_1 : playerTurnTimeout;
|
|
2217
|
+
waitPlayerUntilTime = waitPlayerUntilTime === VOID ? this.k2m_1 : waitPlayerUntilTime;
|
|
2218
|
+
state = state === VOID ? this.l2m_1 : state;
|
|
2219
|
+
ready = ready === VOID ? this.m2m_1 : ready;
|
|
2220
|
+
tag = tag === VOID ? this.n2m_1 : tag;
|
|
2221
|
+
connection = connection === VOID ? this.o2m_1 : connection;
|
|
2222
|
+
return $super === VOID ? this.h2o(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) : $super.h2o.call(this, startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection);
|
|
2105
2223
|
};
|
|
2106
2224
|
protoOf(PlayerState).hashCode = function () {
|
|
2107
|
-
var result = this.
|
|
2108
|
-
result = imul(result, 31) + (this.i2m_1 == null ? 0 : this.i2m_1.hashCode()) | 0;
|
|
2225
|
+
var result = this.i2m_1 == null ? 0 : this.i2m_1.hashCode();
|
|
2109
2226
|
result = imul(result, 31) + (this.j2m_1 == null ? 0 : this.j2m_1.hashCode()) | 0;
|
|
2110
|
-
result = imul(result, 31) + this.k2m_1.hashCode() | 0;
|
|
2111
|
-
result = imul(result, 31) +
|
|
2112
|
-
result = imul(result, 31) + (this.m2m_1
|
|
2113
|
-
result = imul(result, 31) + (this.n2m_1 == null ? 0 : this.n2m_1
|
|
2227
|
+
result = imul(result, 31) + (this.k2m_1 == null ? 0 : this.k2m_1.hashCode()) | 0;
|
|
2228
|
+
result = imul(result, 31) + this.l2m_1.hashCode() | 0;
|
|
2229
|
+
result = imul(result, 31) + getBooleanHashCode(this.m2m_1) | 0;
|
|
2230
|
+
result = imul(result, 31) + (this.n2m_1 == null ? 0 : getStringHashCode(this.n2m_1)) | 0;
|
|
2231
|
+
result = imul(result, 31) + (this.o2m_1 == null ? 0 : this.o2m_1.hashCode()) | 0;
|
|
2114
2232
|
return result;
|
|
2115
2233
|
};
|
|
2116
2234
|
protoOf(PlayerState).equals = function (other) {
|
|
@@ -2119,30 +2237,30 @@
|
|
|
2119
2237
|
if (!(other instanceof PlayerState))
|
|
2120
2238
|
return false;
|
|
2121
2239
|
var tmp0_other_with_cast = other instanceof PlayerState ? other : THROW_CCE();
|
|
2122
|
-
if (!equals(this.h2m_1, tmp0_other_with_cast.h2m_1))
|
|
2123
|
-
return false;
|
|
2124
2240
|
if (!equals(this.i2m_1, tmp0_other_with_cast.i2m_1))
|
|
2125
2241
|
return false;
|
|
2126
2242
|
if (!equals(this.j2m_1, tmp0_other_with_cast.j2m_1))
|
|
2127
2243
|
return false;
|
|
2128
|
-
if (!this.k2m_1
|
|
2244
|
+
if (!equals(this.k2m_1, tmp0_other_with_cast.k2m_1))
|
|
2245
|
+
return false;
|
|
2246
|
+
if (!this.l2m_1.equals(tmp0_other_with_cast.l2m_1))
|
|
2129
2247
|
return false;
|
|
2130
|
-
if (!(this.
|
|
2248
|
+
if (!(this.m2m_1 === tmp0_other_with_cast.m2m_1))
|
|
2131
2249
|
return false;
|
|
2132
|
-
if (!(this.
|
|
2250
|
+
if (!(this.n2m_1 == tmp0_other_with_cast.n2m_1))
|
|
2133
2251
|
return false;
|
|
2134
|
-
if (!equals(this.
|
|
2252
|
+
if (!equals(this.o2m_1, tmp0_other_with_cast.o2m_1))
|
|
2135
2253
|
return false;
|
|
2136
2254
|
return true;
|
|
2137
2255
|
};
|
|
2138
2256
|
function Team(playerIds) {
|
|
2139
|
-
this.
|
|
2257
|
+
this.i2o_1 = playerIds;
|
|
2140
2258
|
}
|
|
2141
2259
|
protoOf(Team).toString = function () {
|
|
2142
|
-
return 'Team(playerIds=' + this.
|
|
2260
|
+
return 'Team(playerIds=' + this.i2o_1 + ')';
|
|
2143
2261
|
};
|
|
2144
2262
|
protoOf(Team).hashCode = function () {
|
|
2145
|
-
return hashCode(this.
|
|
2263
|
+
return hashCode(this.i2o_1);
|
|
2146
2264
|
};
|
|
2147
2265
|
protoOf(Team).equals = function (other) {
|
|
2148
2266
|
if (this === other)
|
|
@@ -2150,7 +2268,7 @@
|
|
|
2150
2268
|
if (!(other instanceof Team))
|
|
2151
2269
|
return false;
|
|
2152
2270
|
var tmp0_other_with_cast = other instanceof Team ? other : THROW_CCE();
|
|
2153
|
-
if (!equals(this.
|
|
2271
|
+
if (!equals(this.i2o_1, tmp0_other_with_cast.i2o_1))
|
|
2154
2272
|
return false;
|
|
2155
2273
|
return true;
|
|
2156
2274
|
};
|
|
@@ -2159,6 +2277,9 @@
|
|
|
2159
2277
|
protoOf(Companion_12).kharkiv = function () {
|
|
2160
2278
|
return new Rules(true, true, true, false, false, true, true, true, false, false, false, true, 50, true, false, true, false);
|
|
2161
2279
|
};
|
|
2280
|
+
protoOf(Companion_12).saltivka = function () {
|
|
2281
|
+
return new Rules(true, true, true, false, false, true, true, false, false, false, false, true, 50, true, false, true, false);
|
|
2282
|
+
};
|
|
2162
2283
|
protoOf(Companion_12).klabor = function () {
|
|
2163
2284
|
return new Rules(true, false, true, false, true, true, false, true, false, false, true, true, 100, true, true, false, false);
|
|
2164
2285
|
};
|
|
@@ -2194,55 +2315,55 @@
|
|
|
2194
2315
|
this.checkOnlyTrumpDebertz = checkOnlyTrumpDebertz;
|
|
2195
2316
|
this.tenCardsInHand = tenCardsInHand;
|
|
2196
2317
|
}
|
|
2197
|
-
protoOf(Rules).
|
|
2318
|
+
protoOf(Rules).j2o = function () {
|
|
2198
2319
|
return this.needToPutHigherTrump;
|
|
2199
2320
|
};
|
|
2200
|
-
protoOf(Rules).
|
|
2321
|
+
protoOf(Rules).k2o = function () {
|
|
2201
2322
|
return this.distributePoints;
|
|
2202
2323
|
};
|
|
2203
|
-
protoOf(Rules).
|
|
2324
|
+
protoOf(Rules).l2o = function () {
|
|
2204
2325
|
return this.protectBella;
|
|
2205
2326
|
};
|
|
2206
|
-
protoOf(Rules).
|
|
2327
|
+
protoOf(Rules).m2o = function () {
|
|
2207
2328
|
return this.oneTryToProtectBella;
|
|
2208
2329
|
};
|
|
2209
|
-
protoOf(Rules).
|
|
2330
|
+
protoOf(Rules).n2o = function () {
|
|
2210
2331
|
return this.enableFourSevensCombination;
|
|
2211
2332
|
};
|
|
2212
|
-
protoOf(Rules).
|
|
2333
|
+
protoOf(Rules).o2o = function () {
|
|
2213
2334
|
return this.enableTrumpSevenCombination;
|
|
2214
2335
|
};
|
|
2215
|
-
protoOf(Rules).
|
|
2336
|
+
protoOf(Rules).p2o = function () {
|
|
2216
2337
|
return this.enableTrumpSevenCombinationAfterDistribution;
|
|
2217
2338
|
};
|
|
2218
|
-
protoOf(Rules).
|
|
2339
|
+
protoOf(Rules).q2o = function () {
|
|
2219
2340
|
return this.playerWhoChooseSuitGoFirst;
|
|
2220
2341
|
};
|
|
2221
|
-
protoOf(Rules).
|
|
2342
|
+
protoOf(Rules).r2o = function () {
|
|
2222
2343
|
return this.winnerShuffleCards;
|
|
2223
2344
|
};
|
|
2224
|
-
protoOf(Rules).
|
|
2345
|
+
protoOf(Rules).s2o = function () {
|
|
2225
2346
|
return this.playWithoutLiabilities;
|
|
2226
2347
|
};
|
|
2227
|
-
protoOf(Rules).
|
|
2348
|
+
protoOf(Rules).t2o = function () {
|
|
2228
2349
|
return this.trumpCardGoToPlayerWhoShuffleCards;
|
|
2229
2350
|
};
|
|
2230
|
-
protoOf(Rules).
|
|
2351
|
+
protoOf(Rules).u2o = function () {
|
|
2231
2352
|
return this.enableFineIfNoBribes;
|
|
2232
2353
|
};
|
|
2233
|
-
protoOf(Rules).
|
|
2354
|
+
protoOf(Rules).v2o = function () {
|
|
2234
2355
|
return this.fineIfNoBribes;
|
|
2235
2356
|
};
|
|
2236
|
-
protoOf(Rules).
|
|
2357
|
+
protoOf(Rules).w2o = function () {
|
|
2237
2358
|
return this.enableFineAfterThirdByte;
|
|
2238
2359
|
};
|
|
2239
|
-
protoOf(Rules).
|
|
2360
|
+
protoOf(Rules).x2o = function () {
|
|
2240
2361
|
return this.checkTrumpCombination;
|
|
2241
2362
|
};
|
|
2242
|
-
protoOf(Rules).
|
|
2363
|
+
protoOf(Rules).y2o = function () {
|
|
2243
2364
|
return this.checkOnlyTrumpDebertz;
|
|
2244
2365
|
};
|
|
2245
|
-
protoOf(Rules).
|
|
2366
|
+
protoOf(Rules).z2o = function () {
|
|
2246
2367
|
return this.tenCardsInHand;
|
|
2247
2368
|
};
|
|
2248
2369
|
protoOf(Rules).cd = function () {
|
|
@@ -2254,49 +2375,49 @@
|
|
|
2254
2375
|
protoOf(Rules).qh = function () {
|
|
2255
2376
|
return this.protectBella;
|
|
2256
2377
|
};
|
|
2257
|
-
protoOf(Rules).
|
|
2378
|
+
protoOf(Rules).q2k = function () {
|
|
2258
2379
|
return this.oneTryToProtectBella;
|
|
2259
2380
|
};
|
|
2260
|
-
protoOf(Rules).
|
|
2381
|
+
protoOf(Rules).z2l = function () {
|
|
2261
2382
|
return this.enableFourSevensCombination;
|
|
2262
2383
|
};
|
|
2263
|
-
protoOf(Rules).
|
|
2384
|
+
protoOf(Rules).a2m = function () {
|
|
2264
2385
|
return this.enableTrumpSevenCombination;
|
|
2265
2386
|
};
|
|
2266
|
-
protoOf(Rules).
|
|
2387
|
+
protoOf(Rules).a2p = function () {
|
|
2267
2388
|
return this.enableTrumpSevenCombinationAfterDistribution;
|
|
2268
2389
|
};
|
|
2269
|
-
protoOf(Rules).
|
|
2390
|
+
protoOf(Rules).b2p = function () {
|
|
2270
2391
|
return this.playerWhoChooseSuitGoFirst;
|
|
2271
2392
|
};
|
|
2272
|
-
protoOf(Rules).
|
|
2393
|
+
protoOf(Rules).c2p = function () {
|
|
2273
2394
|
return this.winnerShuffleCards;
|
|
2274
2395
|
};
|
|
2275
|
-
protoOf(Rules).
|
|
2396
|
+
protoOf(Rules).d2p = function () {
|
|
2276
2397
|
return this.playWithoutLiabilities;
|
|
2277
2398
|
};
|
|
2278
|
-
protoOf(Rules).
|
|
2399
|
+
protoOf(Rules).e2p = function () {
|
|
2279
2400
|
return this.trumpCardGoToPlayerWhoShuffleCards;
|
|
2280
2401
|
};
|
|
2281
|
-
protoOf(Rules).
|
|
2402
|
+
protoOf(Rules).f2p = function () {
|
|
2282
2403
|
return this.enableFineIfNoBribes;
|
|
2283
2404
|
};
|
|
2284
|
-
protoOf(Rules).
|
|
2405
|
+
protoOf(Rules).g2p = function () {
|
|
2285
2406
|
return this.fineIfNoBribes;
|
|
2286
2407
|
};
|
|
2287
|
-
protoOf(Rules).
|
|
2408
|
+
protoOf(Rules).h2p = function () {
|
|
2288
2409
|
return this.enableFineAfterThirdByte;
|
|
2289
2410
|
};
|
|
2290
|
-
protoOf(Rules).
|
|
2411
|
+
protoOf(Rules).i2p = function () {
|
|
2291
2412
|
return this.checkTrumpCombination;
|
|
2292
2413
|
};
|
|
2293
|
-
protoOf(Rules).
|
|
2414
|
+
protoOf(Rules).j2p = function () {
|
|
2294
2415
|
return this.checkOnlyTrumpDebertz;
|
|
2295
2416
|
};
|
|
2296
|
-
protoOf(Rules).
|
|
2417
|
+
protoOf(Rules).k2p = function () {
|
|
2297
2418
|
return this.tenCardsInHand;
|
|
2298
2419
|
};
|
|
2299
|
-
protoOf(Rules).
|
|
2420
|
+
protoOf(Rules).l2p = function (needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand) {
|
|
2300
2421
|
return new Rules(needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand);
|
|
2301
2422
|
};
|
|
2302
2423
|
protoOf(Rules).copy = function (needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand, $super) {
|
|
@@ -2317,7 +2438,7 @@
|
|
|
2317
2438
|
checkTrumpCombination = checkTrumpCombination === VOID ? this.checkTrumpCombination : checkTrumpCombination;
|
|
2318
2439
|
checkOnlyTrumpDebertz = checkOnlyTrumpDebertz === VOID ? this.checkOnlyTrumpDebertz : checkOnlyTrumpDebertz;
|
|
2319
2440
|
tenCardsInHand = tenCardsInHand === VOID ? this.tenCardsInHand : tenCardsInHand;
|
|
2320
|
-
return this.
|
|
2441
|
+
return this.l2p(needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand);
|
|
2321
2442
|
};
|
|
2322
2443
|
protoOf(Rules).toString = function () {
|
|
2323
2444
|
return 'Rules(needToPutHigherTrump=' + this.needToPutHigherTrump + ', distributePoints=' + this.distributePoints + ', protectBella=' + this.protectBella + ', oneTryToProtectBella=' + this.oneTryToProtectBella + ', enableFourSevensCombination=' + this.enableFourSevensCombination + ', enableTrumpSevenCombination=' + this.enableTrumpSevenCombination + ', enableTrumpSevenCombinationAfterDistribution=' + this.enableTrumpSevenCombinationAfterDistribution + ', playerWhoChooseSuitGoFirst=' + this.playerWhoChooseSuitGoFirst + ', winnerShuffleCards=' + this.winnerShuffleCards + ', playWithoutLiabilities=' + this.playWithoutLiabilities + ', trumpCardGoToPlayerWhoShuffleCards=' + this.trumpCardGoToPlayerWhoShuffleCards + ', enableFineIfNoBribes=' + this.enableFineIfNoBribes + ', fineIfNoBribes=' + this.fineIfNoBribes + ', enableFineAfterThirdByte=' + this.enableFineAfterThirdByte + ', checkTrumpCombination=' + this.checkTrumpCombination + ', checkOnlyTrumpDebertz=' + this.checkOnlyTrumpDebertz + ', tenCardsInHand=' + this.tenCardsInHand + ')';
|
|
@@ -2388,9 +2509,10 @@
|
|
|
2388
2509
|
var RulesSetType_klabor_instance;
|
|
2389
2510
|
var RulesSetType_debertzCommon_instance;
|
|
2390
2511
|
var RulesSetType_debertzKharkiv_instance;
|
|
2512
|
+
var RulesSetType_debertzSaltivka_instance;
|
|
2391
2513
|
var RulesSetType_custom_instance;
|
|
2392
2514
|
function values_2() {
|
|
2393
|
-
return [RulesSetType_belot_getInstance(), RulesSetType_klabor_getInstance(), RulesSetType_debertzCommon_getInstance(), RulesSetType_debertzKharkiv_getInstance(), RulesSetType_custom_getInstance()];
|
|
2515
|
+
return [RulesSetType_belot_getInstance(), RulesSetType_klabor_getInstance(), RulesSetType_debertzCommon_getInstance(), RulesSetType_debertzKharkiv_getInstance(), RulesSetType_debertzSaltivka_getInstance(), RulesSetType_custom_getInstance()];
|
|
2394
2516
|
}
|
|
2395
2517
|
function valueOf_1(value) {
|
|
2396
2518
|
switch (value) {
|
|
@@ -2402,6 +2524,8 @@
|
|
|
2402
2524
|
return RulesSetType_debertzCommon_getInstance();
|
|
2403
2525
|
case 'debertzKharkiv':
|
|
2404
2526
|
return RulesSetType_debertzKharkiv_getInstance();
|
|
2527
|
+
case 'debertzSaltivka':
|
|
2528
|
+
return RulesSetType_debertzSaltivka_getInstance();
|
|
2405
2529
|
case 'custom':
|
|
2406
2530
|
return RulesSetType_custom_getInstance();
|
|
2407
2531
|
default:
|
|
@@ -2419,7 +2543,8 @@
|
|
|
2419
2543
|
RulesSetType_klabor_instance = new RulesSetType('klabor', 1, 'klabor');
|
|
2420
2544
|
RulesSetType_debertzCommon_instance = new RulesSetType('debertzCommon', 2, 'debertzCommon');
|
|
2421
2545
|
RulesSetType_debertzKharkiv_instance = new RulesSetType('debertzKharkiv', 3, 'debertzKharkiv');
|
|
2422
|
-
|
|
2546
|
+
RulesSetType_debertzSaltivka_instance = new RulesSetType('debertzSaltivka', 4, 'debertzSaltivka');
|
|
2547
|
+
RulesSetType_custom_instance = new RulesSetType('custom', 5, 'custom');
|
|
2423
2548
|
}
|
|
2424
2549
|
function RulesSetType(name, ordinal, value) {
|
|
2425
2550
|
Enum.call(this, name, ordinal);
|
|
@@ -2444,6 +2569,9 @@
|
|
|
2444
2569
|
tmp = Companion_instance_12.kharkiv();
|
|
2445
2570
|
break;
|
|
2446
2571
|
case 4:
|
|
2572
|
+
tmp = Companion_instance_12.saltivka();
|
|
2573
|
+
break;
|
|
2574
|
+
case 5:
|
|
2447
2575
|
throw new MechanicException("RulesSetTyp.getRules: Can't support this rules");
|
|
2448
2576
|
default:
|
|
2449
2577
|
noWhenBranchMatchedException();
|
|
@@ -2451,7 +2579,7 @@
|
|
|
2451
2579
|
}
|
|
2452
2580
|
return tmp;
|
|
2453
2581
|
};
|
|
2454
|
-
protoOf(RulesSetType).
|
|
2582
|
+
protoOf(RulesSetType).o2p = function () {
|
|
2455
2583
|
return this.equals(RulesSetType_custom_getInstance());
|
|
2456
2584
|
};
|
|
2457
2585
|
function RulesSetType_belot_getInstance() {
|
|
@@ -2470,12 +2598,16 @@
|
|
|
2470
2598
|
RulesSetType_initEntries();
|
|
2471
2599
|
return RulesSetType_debertzKharkiv_instance;
|
|
2472
2600
|
}
|
|
2601
|
+
function RulesSetType_debertzSaltivka_getInstance() {
|
|
2602
|
+
RulesSetType_initEntries();
|
|
2603
|
+
return RulesSetType_debertzSaltivka_instance;
|
|
2604
|
+
}
|
|
2473
2605
|
function RulesSetType_custom_getInstance() {
|
|
2474
2606
|
RulesSetType_initEntries();
|
|
2475
2607
|
return RulesSetType_custom_instance;
|
|
2476
2608
|
}
|
|
2477
2609
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
2478
|
-
return $this.
|
|
2610
|
+
return $this.p2p_1.o2();
|
|
2479
2611
|
}
|
|
2480
2612
|
function BufferedActionDto$Companion$_anonymous__7htcgr() {
|
|
2481
2613
|
var tmp = getKClass(BufferedActionDto);
|
|
@@ -2489,7 +2621,7 @@
|
|
|
2489
2621
|
Companion_instance_13 = this;
|
|
2490
2622
|
var tmp = this;
|
|
2491
2623
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2492
|
-
tmp.
|
|
2624
|
+
tmp.p2p_1 = lazy(tmp_0, BufferedActionDto$Companion$_anonymous__7htcgr);
|
|
2493
2625
|
}
|
|
2494
2626
|
protoOf(Companion_13).t16 = function () {
|
|
2495
2627
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -2510,15 +2642,12 @@
|
|
|
2510
2642
|
Companion_getInstance_15();
|
|
2511
2643
|
}
|
|
2512
2644
|
function mapToDto(_this__u8e3s4) {
|
|
2513
|
-
return _this__u8e3s4.
|
|
2645
|
+
return _this__u8e3s4.r2p_1;
|
|
2514
2646
|
}
|
|
2515
2647
|
function mapFromDto(_this__u8e3s4) {
|
|
2516
2648
|
return new GameCard(_this__u8e3s4);
|
|
2517
2649
|
}
|
|
2518
2650
|
function mapToDto_0(_this__u8e3s4) {
|
|
2519
|
-
if (!Toggles_instance.d2k()) {
|
|
2520
|
-
return new RulesDto(_this__u8e3s4.needToPutHigherTrump, _this__u8e3s4.distributePoints, _this__u8e3s4.protectBella, VOID, _this__u8e3s4.enableFourSevensCombination, _this__u8e3s4.enableTrumpSevenCombination, _this__u8e3s4.enableTrumpSevenCombinationAfterDistribution, _this__u8e3s4.playerWhoChooseSuitGoFirst, _this__u8e3s4.winnerShuffleCards, _this__u8e3s4.playWithoutLiabilities, _this__u8e3s4.trumpCardGoToPlayerWhoShuffleCards, _this__u8e3s4.enableFineIfNoBribes, _this__u8e3s4.fineIfNoBribes, _this__u8e3s4.enableFineAfterThirdByte, _this__u8e3s4.checkTrumpCombination, _this__u8e3s4.checkOnlyTrumpDebertz, _this__u8e3s4.tenCardsInHand);
|
|
2521
|
-
}
|
|
2522
2651
|
// Inline function 'kotlin.takeIf' call
|
|
2523
2652
|
var this_0 = _this__u8e3s4.needToPutHigherTrump;
|
|
2524
2653
|
// Inline function 'kotlin.contracts.contract' call
|
|
@@ -2732,11 +2861,11 @@
|
|
|
2732
2861
|
tmp = null;
|
|
2733
2862
|
}
|
|
2734
2863
|
var tmp$ret$1 = tmp;
|
|
2735
|
-
return new GameUserInfoDto(_this__u8e3s4.
|
|
2864
|
+
return new GameUserInfoDto(_this__u8e3s4.u2l_1, _this__u8e3s4.name, _this__u8e3s4.avatarUrl, tmp$ret$1, _this__u8e3s4.initialLuckyFactor);
|
|
2736
2865
|
}
|
|
2737
2866
|
function mapFromDto_1(_this__u8e3s4) {
|
|
2738
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
2739
|
-
return new GameUserInfo(_this__u8e3s4.
|
|
2867
|
+
var tmp0_elvis_lhs = _this__u8e3s4.v2p_1;
|
|
2868
|
+
return new GameUserInfo(_this__u8e3s4.s2p_1, _this__u8e3s4.t2p_1, _this__u8e3s4.u2p_1, tmp0_elvis_lhs == null ? false : tmp0_elvis_lhs, _this__u8e3s4.w2p_1);
|
|
2740
2869
|
}
|
|
2741
2870
|
function Companion_14() {
|
|
2742
2871
|
}
|
|
@@ -2752,10 +2881,10 @@
|
|
|
2752
2881
|
tmp0_serialDesc.ku('avatarUrl', true);
|
|
2753
2882
|
tmp0_serialDesc.ku('isBot', true);
|
|
2754
2883
|
tmp0_serialDesc.ku('initialLuckyFactor', true);
|
|
2755
|
-
this.
|
|
2884
|
+
this.x2p_1 = tmp0_serialDesc;
|
|
2756
2885
|
}
|
|
2757
2886
|
protoOf($serializer_5).pj = function () {
|
|
2758
|
-
return this.
|
|
2887
|
+
return this.x2p_1;
|
|
2759
2888
|
};
|
|
2760
2889
|
protoOf($serializer_5).zu = function () {
|
|
2761
2890
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2764,7 +2893,7 @@
|
|
|
2764
2893
|
return [StringSerializer_getInstance(), StringSerializer_getInstance(), get_nullable(StringSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
|
|
2765
2894
|
};
|
|
2766
2895
|
protoOf($serializer_5).rj = function (decoder) {
|
|
2767
|
-
var tmp0_desc = this.
|
|
2896
|
+
var tmp0_desc = this.x2p_1;
|
|
2768
2897
|
var tmp1_flag = true;
|
|
2769
2898
|
var tmp2_index = 0;
|
|
2770
2899
|
var tmp3_bitMask0 = 0;
|
|
@@ -2819,24 +2948,24 @@
|
|
|
2819
2948
|
tmp9_input.ym(tmp0_desc);
|
|
2820
2949
|
return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
2821
2950
|
};
|
|
2822
|
-
protoOf($serializer_5).
|
|
2823
|
-
var tmp0_desc = this.
|
|
2951
|
+
protoOf($serializer_5).y2p = function (encoder, value) {
|
|
2952
|
+
var tmp0_desc = this.x2p_1;
|
|
2824
2953
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
2825
|
-
tmp1_output.mo(tmp0_desc, 0, value.
|
|
2826
|
-
tmp1_output.mo(tmp0_desc, 1, value.
|
|
2827
|
-
if (tmp1_output.uo(tmp0_desc, 2) ? true : !(value.
|
|
2828
|
-
tmp1_output.qo(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
2954
|
+
tmp1_output.mo(tmp0_desc, 0, value.s2p_1);
|
|
2955
|
+
tmp1_output.mo(tmp0_desc, 1, value.t2p_1);
|
|
2956
|
+
if (tmp1_output.uo(tmp0_desc, 2) ? true : !(value.u2p_1 == null)) {
|
|
2957
|
+
tmp1_output.qo(tmp0_desc, 2, StringSerializer_getInstance(), value.u2p_1);
|
|
2829
2958
|
}
|
|
2830
|
-
if (tmp1_output.uo(tmp0_desc, 3) ? true : !(value.
|
|
2831
|
-
tmp1_output.qo(tmp0_desc, 3, BooleanSerializer_getInstance(), value.
|
|
2959
|
+
if (tmp1_output.uo(tmp0_desc, 3) ? true : !(value.v2p_1 == null)) {
|
|
2960
|
+
tmp1_output.qo(tmp0_desc, 3, BooleanSerializer_getInstance(), value.v2p_1);
|
|
2832
2961
|
}
|
|
2833
|
-
if (tmp1_output.uo(tmp0_desc, 4) ? true : !(value.
|
|
2834
|
-
tmp1_output.qo(tmp0_desc, 4, FloatSerializer_getInstance(), value.
|
|
2962
|
+
if (tmp1_output.uo(tmp0_desc, 4) ? true : !(value.w2p_1 == null)) {
|
|
2963
|
+
tmp1_output.qo(tmp0_desc, 4, FloatSerializer_getInstance(), value.w2p_1);
|
|
2835
2964
|
}
|
|
2836
2965
|
tmp1_output.ym(tmp0_desc);
|
|
2837
2966
|
};
|
|
2838
2967
|
protoOf($serializer_5).qj = function (encoder, value) {
|
|
2839
|
-
return this.
|
|
2968
|
+
return this.y2p(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
2840
2969
|
};
|
|
2841
2970
|
var $serializer_instance_5;
|
|
2842
2971
|
function $serializer_getInstance_5() {
|
|
@@ -2846,22 +2975,22 @@
|
|
|
2846
2975
|
}
|
|
2847
2976
|
function GameUserInfoDto_init_$Init$(seen1, playerId, name, avatarUrl, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
2848
2977
|
if (!(3 === (3 & seen1))) {
|
|
2849
|
-
throwMissingFieldException(seen1, 3, $serializer_getInstance_5().
|
|
2978
|
+
throwMissingFieldException(seen1, 3, $serializer_getInstance_5().x2p_1);
|
|
2850
2979
|
}
|
|
2851
|
-
$this.
|
|
2852
|
-
$this.
|
|
2980
|
+
$this.s2p_1 = playerId;
|
|
2981
|
+
$this.t2p_1 = name;
|
|
2853
2982
|
if (0 === (seen1 & 4))
|
|
2854
|
-
$this.
|
|
2983
|
+
$this.u2p_1 = null;
|
|
2855
2984
|
else
|
|
2856
|
-
$this.
|
|
2985
|
+
$this.u2p_1 = avatarUrl;
|
|
2857
2986
|
if (0 === (seen1 & 8))
|
|
2858
|
-
$this.
|
|
2987
|
+
$this.v2p_1 = null;
|
|
2859
2988
|
else
|
|
2860
|
-
$this.
|
|
2989
|
+
$this.v2p_1 = isBot;
|
|
2861
2990
|
if (0 === (seen1 & 16))
|
|
2862
|
-
$this.
|
|
2991
|
+
$this.w2p_1 = null;
|
|
2863
2992
|
else
|
|
2864
|
-
$this.
|
|
2993
|
+
$this.w2p_1 = initialLuckyFactor;
|
|
2865
2994
|
return $this;
|
|
2866
2995
|
}
|
|
2867
2996
|
function GameUserInfoDto_init_$Create$(seen1, playerId, name, avatarUrl, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
@@ -2871,21 +3000,35 @@
|
|
|
2871
3000
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
2872
3001
|
isBot = isBot === VOID ? null : isBot;
|
|
2873
3002
|
initialLuckyFactor = initialLuckyFactor === VOID ? null : initialLuckyFactor;
|
|
2874
|
-
this.
|
|
2875
|
-
this.
|
|
2876
|
-
this.
|
|
2877
|
-
this.
|
|
2878
|
-
this.
|
|
2879
|
-
}
|
|
3003
|
+
this.s2p_1 = playerId;
|
|
3004
|
+
this.t2p_1 = name;
|
|
3005
|
+
this.u2p_1 = avatarUrl;
|
|
3006
|
+
this.v2p_1 = isBot;
|
|
3007
|
+
this.w2p_1 = initialLuckyFactor;
|
|
3008
|
+
}
|
|
3009
|
+
protoOf(GameUserInfoDto).z2p = function () {
|
|
3010
|
+
return this.a2q(VOID, VOID, VOID, null, null);
|
|
3011
|
+
};
|
|
3012
|
+
protoOf(GameUserInfoDto).b2q = function (playerId, name, avatarUrl, isBot, initialLuckyFactor) {
|
|
3013
|
+
return new GameUserInfoDto(playerId, name, avatarUrl, isBot, initialLuckyFactor);
|
|
3014
|
+
};
|
|
3015
|
+
protoOf(GameUserInfoDto).a2q = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, $super) {
|
|
3016
|
+
playerId = playerId === VOID ? this.s2p_1 : playerId;
|
|
3017
|
+
name = name === VOID ? this.t2p_1 : name;
|
|
3018
|
+
avatarUrl = avatarUrl === VOID ? this.u2p_1 : avatarUrl;
|
|
3019
|
+
isBot = isBot === VOID ? this.v2p_1 : isBot;
|
|
3020
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.w2p_1 : initialLuckyFactor;
|
|
3021
|
+
return $super === VOID ? this.b2q(playerId, name, avatarUrl, isBot, initialLuckyFactor) : $super.b2q.call(this, playerId, name, avatarUrl, isBot, initialLuckyFactor);
|
|
3022
|
+
};
|
|
2880
3023
|
protoOf(GameUserInfoDto).toString = function () {
|
|
2881
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
3024
|
+
return 'GameUserInfoDto(playerId=' + this.s2p_1 + ', name=' + this.t2p_1 + ', avatarUrl=' + this.u2p_1 + ', isBot=' + this.v2p_1 + ', initialLuckyFactor=' + this.w2p_1 + ')';
|
|
2882
3025
|
};
|
|
2883
3026
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
2884
|
-
var result = getStringHashCode(this.
|
|
2885
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
2886
|
-
result = imul(result, 31) + (this.
|
|
2887
|
-
result = imul(result, 31) + (this.
|
|
2888
|
-
result = imul(result, 31) + (this.
|
|
3027
|
+
var result = getStringHashCode(this.s2p_1);
|
|
3028
|
+
result = imul(result, 31) + getStringHashCode(this.t2p_1) | 0;
|
|
3029
|
+
result = imul(result, 31) + (this.u2p_1 == null ? 0 : getStringHashCode(this.u2p_1)) | 0;
|
|
3030
|
+
result = imul(result, 31) + (this.v2p_1 == null ? 0 : getBooleanHashCode(this.v2p_1)) | 0;
|
|
3031
|
+
result = imul(result, 31) + (this.w2p_1 == null ? 0 : getNumberHashCode(this.w2p_1)) | 0;
|
|
2889
3032
|
return result;
|
|
2890
3033
|
};
|
|
2891
3034
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -2894,15 +3037,15 @@
|
|
|
2894
3037
|
if (!(other instanceof GameUserInfoDto))
|
|
2895
3038
|
return false;
|
|
2896
3039
|
var tmp0_other_with_cast = other instanceof GameUserInfoDto ? other : THROW_CCE();
|
|
2897
|
-
if (!(this.
|
|
3040
|
+
if (!(this.s2p_1 === tmp0_other_with_cast.s2p_1))
|
|
2898
3041
|
return false;
|
|
2899
|
-
if (!(this.
|
|
3042
|
+
if (!(this.t2p_1 === tmp0_other_with_cast.t2p_1))
|
|
2900
3043
|
return false;
|
|
2901
|
-
if (!(this.
|
|
3044
|
+
if (!(this.u2p_1 == tmp0_other_with_cast.u2p_1))
|
|
2902
3045
|
return false;
|
|
2903
|
-
if (!(this.
|
|
3046
|
+
if (!(this.v2p_1 == tmp0_other_with_cast.v2p_1))
|
|
2904
3047
|
return false;
|
|
2905
|
-
if (!equals(this.
|
|
3048
|
+
if (!equals(this.w2p_1, tmp0_other_with_cast.w2p_1))
|
|
2906
3049
|
return false;
|
|
2907
3050
|
return true;
|
|
2908
3051
|
};
|
|
@@ -2912,7 +3055,7 @@
|
|
|
2912
3055
|
// Inline function 'kotlin.arrayOf' call
|
|
2913
3056
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2914
3057
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2915
|
-
tmp.
|
|
3058
|
+
tmp.c2q_1 = [Companion_getInstance_11().t16(), null, null];
|
|
2916
3059
|
}
|
|
2917
3060
|
var Companion_instance_15;
|
|
2918
3061
|
function Companion_getInstance_17() {
|
|
@@ -2926,19 +3069,19 @@
|
|
|
2926
3069
|
tmp0_serialDesc.ku('state', false);
|
|
2927
3070
|
tmp0_serialDesc.ku('connectionChangedTime', false);
|
|
2928
3071
|
tmp0_serialDesc.ku('notLiveDurationRecord', false);
|
|
2929
|
-
this.
|
|
3072
|
+
this.d2q_1 = tmp0_serialDesc;
|
|
2930
3073
|
}
|
|
2931
3074
|
protoOf($serializer_6).pj = function () {
|
|
2932
|
-
return this.
|
|
3075
|
+
return this.d2q_1;
|
|
2933
3076
|
};
|
|
2934
3077
|
protoOf($serializer_6).zu = function () {
|
|
2935
3078
|
// Inline function 'kotlin.arrayOf' call
|
|
2936
3079
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2937
3080
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2938
|
-
return [Companion_getInstance_17().
|
|
3081
|
+
return [Companion_getInstance_17().c2q_1[0], StringSerializer_getInstance(), StringSerializer_getInstance()];
|
|
2939
3082
|
};
|
|
2940
3083
|
protoOf($serializer_6).rj = function (decoder) {
|
|
2941
|
-
var tmp0_desc = this.
|
|
3084
|
+
var tmp0_desc = this.d2q_1;
|
|
2942
3085
|
var tmp1_flag = true;
|
|
2943
3086
|
var tmp2_index = 0;
|
|
2944
3087
|
var tmp3_bitMask0 = 0;
|
|
@@ -2946,7 +3089,7 @@
|
|
|
2946
3089
|
var tmp5_local1 = null;
|
|
2947
3090
|
var tmp6_local2 = null;
|
|
2948
3091
|
var tmp7_input = decoder.xm(tmp0_desc);
|
|
2949
|
-
var tmp8_cached = Companion_getInstance_17().
|
|
3092
|
+
var tmp8_cached = Companion_getInstance_17().c2q_1;
|
|
2950
3093
|
if (tmp7_input.nn()) {
|
|
2951
3094
|
tmp4_local0 = tmp7_input.jn(tmp0_desc, 0, tmp8_cached[0], tmp4_local0);
|
|
2952
3095
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -2980,17 +3123,17 @@
|
|
|
2980
3123
|
tmp7_input.ym(tmp0_desc);
|
|
2981
3124
|
return PlayerConnectionDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
2982
3125
|
};
|
|
2983
|
-
protoOf($serializer_6).
|
|
2984
|
-
var tmp0_desc = this.
|
|
3126
|
+
protoOf($serializer_6).e2q = function (encoder, value) {
|
|
3127
|
+
var tmp0_desc = this.d2q_1;
|
|
2985
3128
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
2986
|
-
var tmp2_cached = Companion_getInstance_17().
|
|
2987
|
-
tmp1_output.oo(tmp0_desc, 0, tmp2_cached[0], value.
|
|
2988
|
-
tmp1_output.mo(tmp0_desc, 1, value.
|
|
2989
|
-
tmp1_output.mo(tmp0_desc, 2, value.
|
|
3129
|
+
var tmp2_cached = Companion_getInstance_17().c2q_1;
|
|
3130
|
+
tmp1_output.oo(tmp0_desc, 0, tmp2_cached[0], value.f2q_1);
|
|
3131
|
+
tmp1_output.mo(tmp0_desc, 1, value.g2q_1);
|
|
3132
|
+
tmp1_output.mo(tmp0_desc, 2, value.h2q_1);
|
|
2990
3133
|
tmp1_output.ym(tmp0_desc);
|
|
2991
3134
|
};
|
|
2992
3135
|
protoOf($serializer_6).qj = function (encoder, value) {
|
|
2993
|
-
return this.
|
|
3136
|
+
return this.e2q(encoder, value instanceof PlayerConnectionDto ? value : THROW_CCE());
|
|
2994
3137
|
};
|
|
2995
3138
|
var $serializer_instance_6;
|
|
2996
3139
|
function $serializer_getInstance_6() {
|
|
@@ -3000,11 +3143,11 @@
|
|
|
3000
3143
|
}
|
|
3001
3144
|
function PlayerConnectionDto_init_$Init$(seen1, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker, $this) {
|
|
3002
3145
|
if (!(7 === (7 & seen1))) {
|
|
3003
|
-
throwMissingFieldException(seen1, 7, $serializer_getInstance_6().
|
|
3146
|
+
throwMissingFieldException(seen1, 7, $serializer_getInstance_6().d2q_1);
|
|
3004
3147
|
}
|
|
3005
|
-
$this.
|
|
3006
|
-
$this.
|
|
3007
|
-
$this.
|
|
3148
|
+
$this.f2q_1 = state;
|
|
3149
|
+
$this.g2q_1 = connectionChangedTime;
|
|
3150
|
+
$this.h2q_1 = notLiveDurationRecord;
|
|
3008
3151
|
return $this;
|
|
3009
3152
|
}
|
|
3010
3153
|
function PlayerConnectionDto_init_$Create$(seen1, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker) {
|
|
@@ -3013,12 +3156,12 @@
|
|
|
3013
3156
|
function PlayerConnectionDto() {
|
|
3014
3157
|
}
|
|
3015
3158
|
protoOf(PlayerConnectionDto).toString = function () {
|
|
3016
|
-
return 'PlayerConnectionDto(state=' + this.
|
|
3159
|
+
return 'PlayerConnectionDto(state=' + this.f2q_1 + ', connectionChangedTime=' + this.g2q_1 + ', notLiveDurationRecord=' + this.h2q_1 + ')';
|
|
3017
3160
|
};
|
|
3018
3161
|
protoOf(PlayerConnectionDto).hashCode = function () {
|
|
3019
|
-
var result = this.
|
|
3020
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
3021
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
3162
|
+
var result = this.f2q_1.hashCode();
|
|
3163
|
+
result = imul(result, 31) + getStringHashCode(this.g2q_1) | 0;
|
|
3164
|
+
result = imul(result, 31) + getStringHashCode(this.h2q_1) | 0;
|
|
3022
3165
|
return result;
|
|
3023
3166
|
};
|
|
3024
3167
|
protoOf(PlayerConnectionDto).equals = function (other) {
|
|
@@ -3027,11 +3170,11 @@
|
|
|
3027
3170
|
if (!(other instanceof PlayerConnectionDto))
|
|
3028
3171
|
return false;
|
|
3029
3172
|
var tmp0_other_with_cast = other instanceof PlayerConnectionDto ? other : THROW_CCE();
|
|
3030
|
-
if (!this.
|
|
3173
|
+
if (!this.f2q_1.equals(tmp0_other_with_cast.f2q_1))
|
|
3031
3174
|
return false;
|
|
3032
|
-
if (!(this.
|
|
3175
|
+
if (!(this.g2q_1 === tmp0_other_with_cast.g2q_1))
|
|
3033
3176
|
return false;
|
|
3034
|
-
if (!(this.
|
|
3177
|
+
if (!(this.h2q_1 === tmp0_other_with_cast.h2q_1))
|
|
3035
3178
|
return false;
|
|
3036
3179
|
return true;
|
|
3037
3180
|
};
|
|
@@ -3041,7 +3184,7 @@
|
|
|
3041
3184
|
// Inline function 'kotlin.arrayOf' call
|
|
3042
3185
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3043
3186
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3044
|
-
tmp.
|
|
3187
|
+
tmp.i2q_1 = [null, null, null, null, Companion_getInstance_12().t16(), null, null, null];
|
|
3045
3188
|
}
|
|
3046
3189
|
var Companion_instance_16;
|
|
3047
3190
|
function Companion_getInstance_18() {
|
|
@@ -3060,20 +3203,20 @@
|
|
|
3060
3203
|
tmp0_serialDesc.ku('ready', false);
|
|
3061
3204
|
tmp0_serialDesc.ku('tag', true);
|
|
3062
3205
|
tmp0_serialDesc.ku('connection', true);
|
|
3063
|
-
this.
|
|
3206
|
+
this.j2q_1 = tmp0_serialDesc;
|
|
3064
3207
|
}
|
|
3065
3208
|
protoOf($serializer_7).pj = function () {
|
|
3066
|
-
return this.
|
|
3209
|
+
return this.j2q_1;
|
|
3067
3210
|
};
|
|
3068
3211
|
protoOf($serializer_7).zu = function () {
|
|
3069
|
-
var tmp0_cached = Companion_getInstance_18().
|
|
3212
|
+
var tmp0_cached = Companion_getInstance_18().i2q_1;
|
|
3070
3213
|
// Inline function 'kotlin.arrayOf' call
|
|
3071
3214
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3072
3215
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3073
3216
|
return [get_nullable(LongSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), tmp0_cached[4], BooleanSerializer_getInstance(), get_nullable(StringSerializer_getInstance()), get_nullable($serializer_getInstance_6())];
|
|
3074
3217
|
};
|
|
3075
3218
|
protoOf($serializer_7).rj = function (decoder) {
|
|
3076
|
-
var tmp0_desc = this.
|
|
3219
|
+
var tmp0_desc = this.j2q_1;
|
|
3077
3220
|
var tmp1_flag = true;
|
|
3078
3221
|
var tmp2_index = 0;
|
|
3079
3222
|
var tmp3_bitMask0 = 0;
|
|
@@ -3086,7 +3229,7 @@
|
|
|
3086
3229
|
var tmp10_local6 = null;
|
|
3087
3230
|
var tmp11_local7 = null;
|
|
3088
3231
|
var tmp12_input = decoder.xm(tmp0_desc);
|
|
3089
|
-
var tmp13_cached = Companion_getInstance_18().
|
|
3232
|
+
var tmp13_cached = Companion_getInstance_18().i2q_1;
|
|
3090
3233
|
if (tmp12_input.nn()) {
|
|
3091
3234
|
tmp4_local0 = tmp12_input.ln(tmp0_desc, 0, LongSerializer_getInstance(), tmp4_local0);
|
|
3092
3235
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3150,34 +3293,34 @@
|
|
|
3150
3293
|
tmp12_input.ym(tmp0_desc);
|
|
3151
3294
|
return PlayerStateDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, null);
|
|
3152
3295
|
};
|
|
3153
|
-
protoOf($serializer_7).
|
|
3154
|
-
var tmp0_desc = this.
|
|
3296
|
+
protoOf($serializer_7).k2q = function (encoder, value) {
|
|
3297
|
+
var tmp0_desc = this.j2q_1;
|
|
3155
3298
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
3156
|
-
var tmp2_cached = Companion_getInstance_18().
|
|
3157
|
-
if (tmp1_output.uo(tmp0_desc, 0) ? true : !(value.
|
|
3158
|
-
tmp1_output.qo(tmp0_desc, 0, LongSerializer_getInstance(), value.
|
|
3299
|
+
var tmp2_cached = Companion_getInstance_18().i2q_1;
|
|
3300
|
+
if (tmp1_output.uo(tmp0_desc, 0) ? true : !(value.l2q_1 == null)) {
|
|
3301
|
+
tmp1_output.qo(tmp0_desc, 0, LongSerializer_getInstance(), value.l2q_1);
|
|
3159
3302
|
}
|
|
3160
|
-
if (tmp1_output.uo(tmp0_desc, 1) ? true : !(value.
|
|
3161
|
-
tmp1_output.qo(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
3303
|
+
if (tmp1_output.uo(tmp0_desc, 1) ? true : !(value.m2q_1 == null)) {
|
|
3304
|
+
tmp1_output.qo(tmp0_desc, 1, StringSerializer_getInstance(), value.m2q_1);
|
|
3162
3305
|
}
|
|
3163
|
-
if (tmp1_output.uo(tmp0_desc, 2) ? true : !(value.
|
|
3164
|
-
tmp1_output.qo(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
3306
|
+
if (tmp1_output.uo(tmp0_desc, 2) ? true : !(value.n2q_1 == null)) {
|
|
3307
|
+
tmp1_output.qo(tmp0_desc, 2, StringSerializer_getInstance(), value.n2q_1);
|
|
3165
3308
|
}
|
|
3166
|
-
if (tmp1_output.uo(tmp0_desc, 3) ? true : !(value.
|
|
3167
|
-
tmp1_output.qo(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
3309
|
+
if (tmp1_output.uo(tmp0_desc, 3) ? true : !(value.o2q_1 == null)) {
|
|
3310
|
+
tmp1_output.qo(tmp0_desc, 3, StringSerializer_getInstance(), value.o2q_1);
|
|
3168
3311
|
}
|
|
3169
|
-
tmp1_output.oo(tmp0_desc, 4, tmp2_cached[4], value.
|
|
3170
|
-
tmp1_output.eo(tmp0_desc, 5, value.
|
|
3171
|
-
if (tmp1_output.uo(tmp0_desc, 6) ? true : !(value.
|
|
3172
|
-
tmp1_output.qo(tmp0_desc, 6, StringSerializer_getInstance(), value.
|
|
3312
|
+
tmp1_output.oo(tmp0_desc, 4, tmp2_cached[4], value.p2q_1);
|
|
3313
|
+
tmp1_output.eo(tmp0_desc, 5, value.q2q_1);
|
|
3314
|
+
if (tmp1_output.uo(tmp0_desc, 6) ? true : !(value.r2q_1 == null)) {
|
|
3315
|
+
tmp1_output.qo(tmp0_desc, 6, StringSerializer_getInstance(), value.r2q_1);
|
|
3173
3316
|
}
|
|
3174
|
-
if (tmp1_output.uo(tmp0_desc, 7) ? true : !(value.
|
|
3175
|
-
tmp1_output.qo(tmp0_desc, 7, $serializer_getInstance_6(), value.
|
|
3317
|
+
if (tmp1_output.uo(tmp0_desc, 7) ? true : !(value.s2q_1 == null)) {
|
|
3318
|
+
tmp1_output.qo(tmp0_desc, 7, $serializer_getInstance_6(), value.s2q_1);
|
|
3176
3319
|
}
|
|
3177
3320
|
tmp1_output.ym(tmp0_desc);
|
|
3178
3321
|
};
|
|
3179
3322
|
protoOf($serializer_7).qj = function (encoder, value) {
|
|
3180
|
-
return this.
|
|
3323
|
+
return this.k2q(encoder, value instanceof PlayerStateDto ? value : THROW_CCE());
|
|
3181
3324
|
};
|
|
3182
3325
|
var $serializer_instance_7;
|
|
3183
3326
|
function $serializer_getInstance_7() {
|
|
@@ -3187,34 +3330,34 @@
|
|
|
3187
3330
|
}
|
|
3188
3331
|
function PlayerStateDto_init_$Init$(seen1, startFromTime, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker, $this) {
|
|
3189
3332
|
if (!(48 === (48 & seen1))) {
|
|
3190
|
-
throwMissingFieldException(seen1, 48, $serializer_getInstance_7().
|
|
3333
|
+
throwMissingFieldException(seen1, 48, $serializer_getInstance_7().j2q_1);
|
|
3191
3334
|
}
|
|
3192
3335
|
if (0 === (seen1 & 1))
|
|
3193
|
-
$this.
|
|
3336
|
+
$this.l2q_1 = null;
|
|
3194
3337
|
else
|
|
3195
|
-
$this.
|
|
3338
|
+
$this.l2q_1 = startFromTime;
|
|
3196
3339
|
if (0 === (seen1 & 2))
|
|
3197
|
-
$this.
|
|
3340
|
+
$this.m2q_1 = null;
|
|
3198
3341
|
else
|
|
3199
|
-
$this.
|
|
3342
|
+
$this.m2q_1 = startFrom;
|
|
3200
3343
|
if (0 === (seen1 & 4))
|
|
3201
|
-
$this.
|
|
3344
|
+
$this.n2q_1 = null;
|
|
3202
3345
|
else
|
|
3203
|
-
$this.
|
|
3346
|
+
$this.n2q_1 = playerTurnTimeout;
|
|
3204
3347
|
if (0 === (seen1 & 8))
|
|
3205
|
-
$this.
|
|
3348
|
+
$this.o2q_1 = null;
|
|
3206
3349
|
else
|
|
3207
|
-
$this.
|
|
3208
|
-
$this.
|
|
3209
|
-
$this.
|
|
3350
|
+
$this.o2q_1 = waitPlayerUntilTime;
|
|
3351
|
+
$this.p2q_1 = state;
|
|
3352
|
+
$this.q2q_1 = ready;
|
|
3210
3353
|
if (0 === (seen1 & 64))
|
|
3211
|
-
$this.
|
|
3354
|
+
$this.r2q_1 = null;
|
|
3212
3355
|
else
|
|
3213
|
-
$this.
|
|
3356
|
+
$this.r2q_1 = tag;
|
|
3214
3357
|
if (0 === (seen1 & 128))
|
|
3215
|
-
$this.
|
|
3358
|
+
$this.s2q_1 = null;
|
|
3216
3359
|
else
|
|
3217
|
-
$this.
|
|
3360
|
+
$this.s2q_1 = connection;
|
|
3218
3361
|
return $this;
|
|
3219
3362
|
}
|
|
3220
3363
|
function PlayerStateDto_init_$Create$(seen1, startFromTime, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker) {
|
|
@@ -3223,17 +3366,17 @@
|
|
|
3223
3366
|
function PlayerStateDto() {
|
|
3224
3367
|
}
|
|
3225
3368
|
protoOf(PlayerStateDto).toString = function () {
|
|
3226
|
-
return 'PlayerStateDto(startFromTime=' + toString(this.
|
|
3369
|
+
return 'PlayerStateDto(startFromTime=' + toString(this.l2q_1) + ', startFrom=' + this.m2q_1 + ', playerTurnTimeout=' + this.n2q_1 + ', waitPlayerUntilTime=' + this.o2q_1 + ', state=' + this.p2q_1 + ', ready=' + this.q2q_1 + ', tag=' + this.r2q_1 + ', connection=' + this.s2q_1 + ')';
|
|
3227
3370
|
};
|
|
3228
3371
|
protoOf(PlayerStateDto).hashCode = function () {
|
|
3229
|
-
var result = this.
|
|
3230
|
-
result = imul(result, 31) + (this.
|
|
3231
|
-
result = imul(result, 31) + (this.
|
|
3232
|
-
result = imul(result, 31) + (this.
|
|
3233
|
-
result = imul(result, 31) + this.
|
|
3234
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
3235
|
-
result = imul(result, 31) + (this.
|
|
3236
|
-
result = imul(result, 31) + (this.
|
|
3372
|
+
var result = this.l2q_1 == null ? 0 : this.l2q_1.hashCode();
|
|
3373
|
+
result = imul(result, 31) + (this.m2q_1 == null ? 0 : getStringHashCode(this.m2q_1)) | 0;
|
|
3374
|
+
result = imul(result, 31) + (this.n2q_1 == null ? 0 : getStringHashCode(this.n2q_1)) | 0;
|
|
3375
|
+
result = imul(result, 31) + (this.o2q_1 == null ? 0 : getStringHashCode(this.o2q_1)) | 0;
|
|
3376
|
+
result = imul(result, 31) + this.p2q_1.hashCode() | 0;
|
|
3377
|
+
result = imul(result, 31) + getBooleanHashCode(this.q2q_1) | 0;
|
|
3378
|
+
result = imul(result, 31) + (this.r2q_1 == null ? 0 : getStringHashCode(this.r2q_1)) | 0;
|
|
3379
|
+
result = imul(result, 31) + (this.s2q_1 == null ? 0 : this.s2q_1.hashCode()) | 0;
|
|
3237
3380
|
return result;
|
|
3238
3381
|
};
|
|
3239
3382
|
protoOf(PlayerStateDto).equals = function (other) {
|
|
@@ -3242,21 +3385,21 @@
|
|
|
3242
3385
|
if (!(other instanceof PlayerStateDto))
|
|
3243
3386
|
return false;
|
|
3244
3387
|
var tmp0_other_with_cast = other instanceof PlayerStateDto ? other : THROW_CCE();
|
|
3245
|
-
if (!equals(this.
|
|
3388
|
+
if (!equals(this.l2q_1, tmp0_other_with_cast.l2q_1))
|
|
3246
3389
|
return false;
|
|
3247
|
-
if (!(this.
|
|
3390
|
+
if (!(this.m2q_1 == tmp0_other_with_cast.m2q_1))
|
|
3248
3391
|
return false;
|
|
3249
|
-
if (!(this.
|
|
3392
|
+
if (!(this.n2q_1 == tmp0_other_with_cast.n2q_1))
|
|
3250
3393
|
return false;
|
|
3251
|
-
if (!(this.
|
|
3394
|
+
if (!(this.o2q_1 == tmp0_other_with_cast.o2q_1))
|
|
3252
3395
|
return false;
|
|
3253
|
-
if (!this.
|
|
3396
|
+
if (!this.p2q_1.equals(tmp0_other_with_cast.p2q_1))
|
|
3254
3397
|
return false;
|
|
3255
|
-
if (!(this.
|
|
3398
|
+
if (!(this.q2q_1 === tmp0_other_with_cast.q2q_1))
|
|
3256
3399
|
return false;
|
|
3257
|
-
if (!(this.
|
|
3400
|
+
if (!(this.r2q_1 == tmp0_other_with_cast.r2q_1))
|
|
3258
3401
|
return false;
|
|
3259
|
-
if (!equals(this.
|
|
3402
|
+
if (!equals(this.s2q_1, tmp0_other_with_cast.s2q_1))
|
|
3260
3403
|
return false;
|
|
3261
3404
|
return true;
|
|
3262
3405
|
};
|
|
@@ -3289,10 +3432,10 @@
|
|
|
3289
3432
|
tmp0_serialDesc.ku('checkTrumpCombination', true);
|
|
3290
3433
|
tmp0_serialDesc.ku('checkOnlyTrumpDebertz', true);
|
|
3291
3434
|
tmp0_serialDesc.ku('tenCardsInHand', true);
|
|
3292
|
-
this.
|
|
3435
|
+
this.t2q_1 = tmp0_serialDesc;
|
|
3293
3436
|
}
|
|
3294
3437
|
protoOf($serializer_8).pj = function () {
|
|
3295
|
-
return this.
|
|
3438
|
+
return this.t2q_1;
|
|
3296
3439
|
};
|
|
3297
3440
|
protoOf($serializer_8).zu = function () {
|
|
3298
3441
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -3301,7 +3444,7 @@
|
|
|
3301
3444
|
return [get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), IntSerializer_getInstance(), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance())];
|
|
3302
3445
|
};
|
|
3303
3446
|
protoOf($serializer_8).rj = function (decoder) {
|
|
3304
|
-
var tmp0_desc = this.
|
|
3447
|
+
var tmp0_desc = this.t2q_1;
|
|
3305
3448
|
var tmp1_flag = true;
|
|
3306
3449
|
var tmp2_index = 0;
|
|
3307
3450
|
var tmp3_bitMask0 = 0;
|
|
@@ -3440,8 +3583,8 @@
|
|
|
3440
3583
|
tmp21_input.ym(tmp0_desc);
|
|
3441
3584
|
return RulesDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, tmp16_local12, tmp17_local13, tmp18_local14, tmp19_local15, tmp20_local16, null);
|
|
3442
3585
|
};
|
|
3443
|
-
protoOf($serializer_8).
|
|
3444
|
-
var tmp0_desc = this.
|
|
3586
|
+
protoOf($serializer_8).u2q = function (encoder, value) {
|
|
3587
|
+
var tmp0_desc = this.t2q_1;
|
|
3445
3588
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
3446
3589
|
if (tmp1_output.uo(tmp0_desc, 0) ? true : !(value.needToPutHigherTrump == null)) {
|
|
3447
3590
|
tmp1_output.qo(tmp0_desc, 0, BooleanSerializer_getInstance(), value.needToPutHigherTrump);
|
|
@@ -3495,7 +3638,7 @@
|
|
|
3495
3638
|
tmp1_output.ym(tmp0_desc);
|
|
3496
3639
|
};
|
|
3497
3640
|
protoOf($serializer_8).qj = function (encoder, value) {
|
|
3498
|
-
return this.
|
|
3641
|
+
return this.u2q(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
3499
3642
|
};
|
|
3500
3643
|
var $serializer_instance_8;
|
|
3501
3644
|
function $serializer_getInstance_8() {
|
|
@@ -3505,7 +3648,7 @@
|
|
|
3505
3648
|
}
|
|
3506
3649
|
function RulesDto_init_$Init$(seen1, needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand, serializationConstructorMarker, $this) {
|
|
3507
3650
|
if (!(4096 === (4096 & seen1))) {
|
|
3508
|
-
throwMissingFieldException(seen1, 4096, $serializer_getInstance_8().
|
|
3651
|
+
throwMissingFieldException(seen1, 4096, $serializer_getInstance_8().t2q_1);
|
|
3509
3652
|
}
|
|
3510
3653
|
if (0 === (seen1 & 1))
|
|
3511
3654
|
$this.needToPutHigherTrump = null;
|
|
@@ -3612,55 +3755,55 @@
|
|
|
3612
3755
|
this.checkOnlyTrumpDebertz = checkOnlyTrumpDebertz;
|
|
3613
3756
|
this.tenCardsInHand = tenCardsInHand;
|
|
3614
3757
|
}
|
|
3615
|
-
protoOf(RulesDto).
|
|
3758
|
+
protoOf(RulesDto).j2o = function () {
|
|
3616
3759
|
return this.needToPutHigherTrump;
|
|
3617
3760
|
};
|
|
3618
|
-
protoOf(RulesDto).
|
|
3761
|
+
protoOf(RulesDto).k2o = function () {
|
|
3619
3762
|
return this.distributePoints;
|
|
3620
3763
|
};
|
|
3621
|
-
protoOf(RulesDto).
|
|
3764
|
+
protoOf(RulesDto).l2o = function () {
|
|
3622
3765
|
return this.protectBella;
|
|
3623
3766
|
};
|
|
3624
|
-
protoOf(RulesDto).
|
|
3767
|
+
protoOf(RulesDto).m2o = function () {
|
|
3625
3768
|
return this.oneTryToProtectBella;
|
|
3626
3769
|
};
|
|
3627
|
-
protoOf(RulesDto).
|
|
3770
|
+
protoOf(RulesDto).n2o = function () {
|
|
3628
3771
|
return this.enableFourSevensCombination;
|
|
3629
3772
|
};
|
|
3630
|
-
protoOf(RulesDto).
|
|
3773
|
+
protoOf(RulesDto).o2o = function () {
|
|
3631
3774
|
return this.enableTrumpSevenCombination;
|
|
3632
3775
|
};
|
|
3633
|
-
protoOf(RulesDto).
|
|
3776
|
+
protoOf(RulesDto).p2o = function () {
|
|
3634
3777
|
return this.enableTrumpSevenCombinationAfterDistribution;
|
|
3635
3778
|
};
|
|
3636
|
-
protoOf(RulesDto).
|
|
3779
|
+
protoOf(RulesDto).q2o = function () {
|
|
3637
3780
|
return this.playerWhoChooseSuitGoFirst;
|
|
3638
3781
|
};
|
|
3639
|
-
protoOf(RulesDto).
|
|
3782
|
+
protoOf(RulesDto).r2o = function () {
|
|
3640
3783
|
return this.winnerShuffleCards;
|
|
3641
3784
|
};
|
|
3642
|
-
protoOf(RulesDto).
|
|
3785
|
+
protoOf(RulesDto).s2o = function () {
|
|
3643
3786
|
return this.playWithoutLiabilities;
|
|
3644
3787
|
};
|
|
3645
|
-
protoOf(RulesDto).
|
|
3788
|
+
protoOf(RulesDto).t2o = function () {
|
|
3646
3789
|
return this.trumpCardGoToPlayerWhoShuffleCards;
|
|
3647
3790
|
};
|
|
3648
|
-
protoOf(RulesDto).
|
|
3791
|
+
protoOf(RulesDto).u2o = function () {
|
|
3649
3792
|
return this.enableFineIfNoBribes;
|
|
3650
3793
|
};
|
|
3651
|
-
protoOf(RulesDto).
|
|
3794
|
+
protoOf(RulesDto).v2o = function () {
|
|
3652
3795
|
return this.fineIfNoBribes;
|
|
3653
3796
|
};
|
|
3654
|
-
protoOf(RulesDto).
|
|
3797
|
+
protoOf(RulesDto).w2o = function () {
|
|
3655
3798
|
return this.enableFineAfterThirdByte;
|
|
3656
3799
|
};
|
|
3657
|
-
protoOf(RulesDto).
|
|
3800
|
+
protoOf(RulesDto).x2o = function () {
|
|
3658
3801
|
return this.checkTrumpCombination;
|
|
3659
3802
|
};
|
|
3660
|
-
protoOf(RulesDto).
|
|
3803
|
+
protoOf(RulesDto).y2o = function () {
|
|
3661
3804
|
return this.checkOnlyTrumpDebertz;
|
|
3662
3805
|
};
|
|
3663
|
-
protoOf(RulesDto).
|
|
3806
|
+
protoOf(RulesDto).z2o = function () {
|
|
3664
3807
|
return this.tenCardsInHand;
|
|
3665
3808
|
};
|
|
3666
3809
|
protoOf(RulesDto).cd = function () {
|
|
@@ -3672,49 +3815,49 @@
|
|
|
3672
3815
|
protoOf(RulesDto).qh = function () {
|
|
3673
3816
|
return this.protectBella;
|
|
3674
3817
|
};
|
|
3675
|
-
protoOf(RulesDto).
|
|
3818
|
+
protoOf(RulesDto).q2k = function () {
|
|
3676
3819
|
return this.oneTryToProtectBella;
|
|
3677
3820
|
};
|
|
3678
|
-
protoOf(RulesDto).
|
|
3821
|
+
protoOf(RulesDto).z2l = function () {
|
|
3679
3822
|
return this.enableFourSevensCombination;
|
|
3680
3823
|
};
|
|
3681
|
-
protoOf(RulesDto).
|
|
3824
|
+
protoOf(RulesDto).a2m = function () {
|
|
3682
3825
|
return this.enableTrumpSevenCombination;
|
|
3683
3826
|
};
|
|
3684
|
-
protoOf(RulesDto).
|
|
3827
|
+
protoOf(RulesDto).a2p = function () {
|
|
3685
3828
|
return this.enableTrumpSevenCombinationAfterDistribution;
|
|
3686
3829
|
};
|
|
3687
|
-
protoOf(RulesDto).
|
|
3830
|
+
protoOf(RulesDto).b2p = function () {
|
|
3688
3831
|
return this.playerWhoChooseSuitGoFirst;
|
|
3689
3832
|
};
|
|
3690
|
-
protoOf(RulesDto).
|
|
3833
|
+
protoOf(RulesDto).c2p = function () {
|
|
3691
3834
|
return this.winnerShuffleCards;
|
|
3692
3835
|
};
|
|
3693
|
-
protoOf(RulesDto).
|
|
3836
|
+
protoOf(RulesDto).d2p = function () {
|
|
3694
3837
|
return this.playWithoutLiabilities;
|
|
3695
3838
|
};
|
|
3696
|
-
protoOf(RulesDto).
|
|
3839
|
+
protoOf(RulesDto).e2p = function () {
|
|
3697
3840
|
return this.trumpCardGoToPlayerWhoShuffleCards;
|
|
3698
3841
|
};
|
|
3699
|
-
protoOf(RulesDto).
|
|
3842
|
+
protoOf(RulesDto).f2p = function () {
|
|
3700
3843
|
return this.enableFineIfNoBribes;
|
|
3701
3844
|
};
|
|
3702
|
-
protoOf(RulesDto).
|
|
3845
|
+
protoOf(RulesDto).g2p = function () {
|
|
3703
3846
|
return this.fineIfNoBribes;
|
|
3704
3847
|
};
|
|
3705
|
-
protoOf(RulesDto).
|
|
3848
|
+
protoOf(RulesDto).h2p = function () {
|
|
3706
3849
|
return this.enableFineAfterThirdByte;
|
|
3707
3850
|
};
|
|
3708
|
-
protoOf(RulesDto).
|
|
3851
|
+
protoOf(RulesDto).i2p = function () {
|
|
3709
3852
|
return this.checkTrumpCombination;
|
|
3710
3853
|
};
|
|
3711
|
-
protoOf(RulesDto).
|
|
3854
|
+
protoOf(RulesDto).j2p = function () {
|
|
3712
3855
|
return this.checkOnlyTrumpDebertz;
|
|
3713
3856
|
};
|
|
3714
|
-
protoOf(RulesDto).
|
|
3857
|
+
protoOf(RulesDto).k2p = function () {
|
|
3715
3858
|
return this.tenCardsInHand;
|
|
3716
3859
|
};
|
|
3717
|
-
protoOf(RulesDto).
|
|
3860
|
+
protoOf(RulesDto).v2q = function (needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand) {
|
|
3718
3861
|
return new RulesDto(needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand);
|
|
3719
3862
|
};
|
|
3720
3863
|
protoOf(RulesDto).copy = function (needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand, $super) {
|
|
@@ -3735,7 +3878,7 @@
|
|
|
3735
3878
|
checkTrumpCombination = checkTrumpCombination === VOID ? this.checkTrumpCombination : checkTrumpCombination;
|
|
3736
3879
|
checkOnlyTrumpDebertz = checkOnlyTrumpDebertz === VOID ? this.checkOnlyTrumpDebertz : checkOnlyTrumpDebertz;
|
|
3737
3880
|
tenCardsInHand = tenCardsInHand === VOID ? this.tenCardsInHand : tenCardsInHand;
|
|
3738
|
-
return this.
|
|
3881
|
+
return this.v2q(needToPutHigherTrump, distributePoints, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, checkTrumpCombination, checkOnlyTrumpDebertz, tenCardsInHand);
|
|
3739
3882
|
};
|
|
3740
3883
|
protoOf(RulesDto).toString = function () {
|
|
3741
3884
|
return 'RulesDto(needToPutHigherTrump=' + this.needToPutHigherTrump + ', distributePoints=' + this.distributePoints + ', protectBella=' + this.protectBella + ', oneTryToProtectBella=' + this.oneTryToProtectBella + ', enableFourSevensCombination=' + this.enableFourSevensCombination + ', enableTrumpSevenCombination=' + this.enableTrumpSevenCombination + ', enableTrumpSevenCombinationAfterDistribution=' + this.enableTrumpSevenCombinationAfterDistribution + ', playerWhoChooseSuitGoFirst=' + this.playerWhoChooseSuitGoFirst + ', winnerShuffleCards=' + this.winnerShuffleCards + ', playWithoutLiabilities=' + this.playWithoutLiabilities + ', trumpCardGoToPlayerWhoShuffleCards=' + this.trumpCardGoToPlayerWhoShuffleCards + ', enableFineIfNoBribes=' + this.enableFineIfNoBribes + ', fineIfNoBribes=' + this.fineIfNoBribes + ', enableFineAfterThirdByte=' + this.enableFineAfterThirdByte + ', checkTrumpCombination=' + this.checkTrumpCombination + ', checkOnlyTrumpDebertz=' + this.checkOnlyTrumpDebertz + ', tenCardsInHand=' + this.tenCardsInHand + ')';
|
|
@@ -3804,27 +3947,27 @@
|
|
|
3804
3947
|
};
|
|
3805
3948
|
function CardIndexComparator() {
|
|
3806
3949
|
}
|
|
3807
|
-
protoOf(CardIndexComparator).
|
|
3808
|
-
return a.
|
|
3950
|
+
protoOf(CardIndexComparator).w2q = function (a, b) {
|
|
3951
|
+
return a.r2p_1 - b.r2p_1 | 0;
|
|
3809
3952
|
};
|
|
3810
3953
|
protoOf(CardIndexComparator).compare = function (a, b) {
|
|
3811
3954
|
var tmp = a instanceof GameCard ? a : THROW_CCE();
|
|
3812
|
-
return this.
|
|
3955
|
+
return this.w2q(tmp, b instanceof GameCard ? b : THROW_CCE());
|
|
3813
3956
|
};
|
|
3814
3957
|
var CardIndexComparator_instance;
|
|
3815
3958
|
function CardIndexComparator_getInstance() {
|
|
3816
3959
|
return CardIndexComparator_instance;
|
|
3817
3960
|
}
|
|
3818
3961
|
function CardGrowthComparator(trump, firstCardSuit) {
|
|
3819
|
-
this.
|
|
3820
|
-
this.
|
|
3962
|
+
this.x2q_1 = trump;
|
|
3963
|
+
this.y2q_1 = firstCardSuit;
|
|
3821
3964
|
}
|
|
3822
|
-
protoOf(CardGrowthComparator).
|
|
3823
|
-
return getGrowth(b, this.
|
|
3965
|
+
protoOf(CardGrowthComparator).w2q = function (a, b) {
|
|
3966
|
+
return getGrowth(b, this.x2q_1, this.y2q_1) - getGrowth(a, this.x2q_1, this.y2q_1) | 0;
|
|
3824
3967
|
};
|
|
3825
3968
|
protoOf(CardGrowthComparator).compare = function (a, b) {
|
|
3826
3969
|
var tmp = a instanceof GameCard ? a : THROW_CCE();
|
|
3827
|
-
return this.
|
|
3970
|
+
return this.w2q(tmp, b instanceof GameCard ? b : THROW_CCE());
|
|
3828
3971
|
};
|
|
3829
3972
|
function filterByCardName(_this__u8e3s4, name) {
|
|
3830
3973
|
// Inline function 'kotlin.collections.filter' call
|
|
@@ -3856,25 +3999,25 @@
|
|
|
3856
3999
|
}
|
|
3857
4000
|
function CardNumberComparator() {
|
|
3858
4001
|
}
|
|
3859
|
-
protoOf(CardNumberComparator).
|
|
3860
|
-
return b.
|
|
4002
|
+
protoOf(CardNumberComparator).w2q = function (a, b) {
|
|
4003
|
+
return b.z2q() - a.z2q() | 0;
|
|
3861
4004
|
};
|
|
3862
4005
|
protoOf(CardNumberComparator).compare = function (a, b) {
|
|
3863
4006
|
var tmp = a instanceof GameCard ? a : THROW_CCE();
|
|
3864
|
-
return this.
|
|
4007
|
+
return this.w2q(tmp, b instanceof GameCard ? b : THROW_CCE());
|
|
3865
4008
|
};
|
|
3866
4009
|
var CardNumberComparator_instance;
|
|
3867
4010
|
function CardNumberComparator_getInstance() {
|
|
3868
4011
|
return CardNumberComparator_instance;
|
|
3869
4012
|
}
|
|
3870
4013
|
function getPoint(_this__u8e3s4, trump) {
|
|
3871
|
-
var isTrump = trump.equals(_this__u8e3s4.
|
|
4014
|
+
var isTrump = trump.equals(_this__u8e3s4.a2r());
|
|
3872
4015
|
return getPoint_0(_this__u8e3s4, isTrump);
|
|
3873
4016
|
}
|
|
3874
4017
|
function getGrowth(_this__u8e3s4, trump, firstCardSuit) {
|
|
3875
4018
|
var minPoint = 0;
|
|
3876
|
-
var isTrump = trump.equals(_this__u8e3s4.
|
|
3877
|
-
var isCurrentSuit = firstCardSuit.equals(_this__u8e3s4.
|
|
4019
|
+
var isTrump = trump.equals(_this__u8e3s4.a2r());
|
|
4020
|
+
var isCurrentSuit = firstCardSuit.equals(_this__u8e3s4.a2r());
|
|
3878
4021
|
var minGrowth;
|
|
3879
4022
|
var maxGrowth;
|
|
3880
4023
|
switch (_this__u8e3s4.g9().g8_1) {
|
|
@@ -3964,7 +4107,7 @@
|
|
|
3964
4107
|
return tmp;
|
|
3965
4108
|
}
|
|
3966
4109
|
function getValueInHand(_this__u8e3s4, trump, allCards) {
|
|
3967
|
-
var isTrump = trump.equals(_this__u8e3s4.
|
|
4110
|
+
var isTrump = trump.equals(_this__u8e3s4.a2r());
|
|
3968
4111
|
return getValueInHand_0(_this__u8e3s4, isTrump, allCards);
|
|
3969
4112
|
}
|
|
3970
4113
|
function getValueInHand_0(_this__u8e3s4, isTrump, allCards) {
|
|
@@ -4048,7 +4191,7 @@
|
|
|
4048
4191
|
var element = indexedObject[inductionVariable];
|
|
4049
4192
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4050
4193
|
// Inline function 'com.logic.data.models.table.cards.bySuitPredicate.<anonymous>.<anonymous>' call
|
|
4051
|
-
if (p1.
|
|
4194
|
+
if (p1.a2r().equals(element)) {
|
|
4052
4195
|
tmp$ret$1 = true;
|
|
4053
4196
|
break $l$block;
|
|
4054
4197
|
}
|
|
@@ -4145,10 +4288,10 @@
|
|
|
4145
4288
|
}
|
|
4146
4289
|
function Companion_18() {
|
|
4147
4290
|
}
|
|
4148
|
-
protoOf(Companion_18).
|
|
4291
|
+
protoOf(Companion_18).b2r = function (suit, cardNumber) {
|
|
4149
4292
|
return new GameCard(getNumber(Companion_instance_19, cardNumber, suit));
|
|
4150
4293
|
};
|
|
4151
|
-
protoOf(Companion_18).
|
|
4294
|
+
protoOf(Companion_18).c2r = function (position, playerIndex, previousStubCardWithMaxIndex, reverse) {
|
|
4152
4295
|
var tmp;
|
|
4153
4296
|
if (previousStubCardWithMaxIndex == null) {
|
|
4154
4297
|
tmp = null;
|
|
@@ -4157,7 +4300,7 @@
|
|
|
4157
4300
|
// Inline function 'kotlin.contracts.contract' call
|
|
4158
4301
|
var tmp_0;
|
|
4159
4302
|
// Inline function 'com.logic.data.models.table.cards.Companion.createUniqueStub.<anonymous>' call
|
|
4160
|
-
if (previousStubCardWithMaxIndex.
|
|
4303
|
+
if (previousStubCardWithMaxIndex.d2r()) {
|
|
4161
4304
|
tmp_0 = previousStubCardWithMaxIndex;
|
|
4162
4305
|
} else {
|
|
4163
4306
|
tmp_0 = null;
|
|
@@ -4165,8 +4308,8 @@
|
|
|
4165
4308
|
tmp = tmp_0;
|
|
4166
4309
|
}
|
|
4167
4310
|
var tmp1_safe_receiver = tmp;
|
|
4168
|
-
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
4169
|
-
var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : Companion_instance_19.
|
|
4311
|
+
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.r2p_1;
|
|
4312
|
+
var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : Companion_instance_19.i2r(tmp2_safe_receiver, playerIndex, reverse);
|
|
4170
4313
|
var tmp_1;
|
|
4171
4314
|
if (tmp3_safe_receiver == null) {
|
|
4172
4315
|
tmp_1 = null;
|
|
@@ -4187,10 +4330,10 @@
|
|
|
4187
4330
|
var index = tmp_2;
|
|
4188
4331
|
return new GameCard(index);
|
|
4189
4332
|
};
|
|
4190
|
-
protoOf(Companion_18).
|
|
4333
|
+
protoOf(Companion_18).j2r = function (position, playerIndex, previousStubCardWithMaxIndex, reverse, $super) {
|
|
4191
4334
|
previousStubCardWithMaxIndex = previousStubCardWithMaxIndex === VOID ? null : previousStubCardWithMaxIndex;
|
|
4192
4335
|
reverse = reverse === VOID ? false : reverse;
|
|
4193
|
-
return $super === VOID ? this.
|
|
4336
|
+
return $super === VOID ? this.c2r(position, playerIndex, previousStubCardWithMaxIndex, reverse) : $super.c2r.call(this, position, playerIndex, previousStubCardWithMaxIndex, reverse);
|
|
4194
4337
|
};
|
|
4195
4338
|
var Companion_instance_18;
|
|
4196
4339
|
function Companion_getInstance_20() {
|
|
@@ -4294,7 +4437,7 @@
|
|
|
4294
4437
|
return tmp;
|
|
4295
4438
|
}
|
|
4296
4439
|
function _get_isShirt__vd98rp($this) {
|
|
4297
|
-
return $this.
|
|
4440
|
+
return $this.r2p_1 === 52;
|
|
4298
4441
|
}
|
|
4299
4442
|
function CardName(name, ordinal) {
|
|
4300
4443
|
Enum.call(this, name, ordinal);
|
|
@@ -4303,12 +4446,12 @@
|
|
|
4303
4446
|
return getShorName(this);
|
|
4304
4447
|
};
|
|
4305
4448
|
function Companion_19() {
|
|
4306
|
-
this.
|
|
4307
|
-
this.
|
|
4308
|
-
this.
|
|
4309
|
-
this.
|
|
4449
|
+
this.e2r_1 = -1;
|
|
4450
|
+
this.f2r_1 = 13;
|
|
4451
|
+
this.g2r_1 = 52;
|
|
4452
|
+
this.h2r_1 = 53;
|
|
4310
4453
|
}
|
|
4311
|
-
protoOf(Companion_19).
|
|
4454
|
+
protoOf(Companion_19).i2r = function (_this__u8e3s4, playerIndex, reverse) {
|
|
4312
4455
|
var tmp;
|
|
4313
4456
|
if (reverse) {
|
|
4314
4457
|
tmp = _this__u8e3s4 + (53 + imul(playerIndex, 14) | 0) | 0;
|
|
@@ -4378,56 +4521,56 @@
|
|
|
4378
4521
|
return CardName_STUB_instance;
|
|
4379
4522
|
}
|
|
4380
4523
|
function GameCard(index) {
|
|
4381
|
-
this.
|
|
4524
|
+
this.r2p_1 = index;
|
|
4382
4525
|
}
|
|
4383
|
-
protoOf(GameCard).
|
|
4526
|
+
protoOf(GameCard).a2r = function () {
|
|
4384
4527
|
var tmp;
|
|
4385
|
-
var containsArg = this.
|
|
4528
|
+
var containsArg = this.r2p_1;
|
|
4386
4529
|
if (0 <= containsArg ? containsArg <= 13 : false) {
|
|
4387
4530
|
tmp = Suit_DIAMOND_getInstance();
|
|
4388
4531
|
} else {
|
|
4389
|
-
if (this.
|
|
4532
|
+
if (this.r2p_1 <= 26) {
|
|
4390
4533
|
tmp = Suit_SPADE_getInstance();
|
|
4391
4534
|
} else {
|
|
4392
|
-
if (this.
|
|
4535
|
+
if (this.r2p_1 <= 39) {
|
|
4393
4536
|
tmp = Suit_HEART_getInstance();
|
|
4394
4537
|
} else {
|
|
4395
|
-
if (this.
|
|
4538
|
+
if (this.r2p_1 <= 52) {
|
|
4396
4539
|
tmp = Suit_CLUB_getInstance();
|
|
4397
4540
|
} else {
|
|
4398
|
-
throw IllegalStateException_init_$Create$('Invalid suitCard in Card.getValue() ' + this.
|
|
4541
|
+
throw IllegalStateException_init_$Create$('Invalid suitCard in Card.getValue() ' + this.r2p_1);
|
|
4399
4542
|
}
|
|
4400
4543
|
}
|
|
4401
4544
|
}
|
|
4402
4545
|
}
|
|
4403
4546
|
return tmp;
|
|
4404
4547
|
};
|
|
4405
|
-
protoOf(GameCard).
|
|
4548
|
+
protoOf(GameCard).z2q = function () {
|
|
4406
4549
|
var tmp;
|
|
4407
|
-
if (this.
|
|
4550
|
+
if (this.d2r()) {
|
|
4408
4551
|
tmp = -1;
|
|
4409
4552
|
} else {
|
|
4410
|
-
tmp = this.
|
|
4553
|
+
tmp = this.r2p_1 - imul(13, getIndex(this.a2r())) | 0;
|
|
4411
4554
|
}
|
|
4412
4555
|
return tmp;
|
|
4413
4556
|
};
|
|
4414
4557
|
protoOf(GameCard).g9 = function () {
|
|
4415
|
-
return this.
|
|
4558
|
+
return this.d2r() ? CardName_STUB_getInstance() : getName(Companion_instance_19, this.z2q());
|
|
4416
4559
|
};
|
|
4417
|
-
protoOf(GameCard).
|
|
4418
|
-
return this.
|
|
4560
|
+
protoOf(GameCard).d2r = function () {
|
|
4561
|
+
return this.r2p_1 >= 53;
|
|
4419
4562
|
};
|
|
4420
4563
|
protoOf(GameCard).toString = function () {
|
|
4421
4564
|
if (_get_isShirt__vd98rp(this)) {
|
|
4422
4565
|
return 'GameCard(SHIRT)';
|
|
4423
4566
|
}
|
|
4424
|
-
if (this.
|
|
4425
|
-
return 'GameCard(STUB, ' + this.
|
|
4567
|
+
if (this.d2r()) {
|
|
4568
|
+
return 'GameCard(STUB, ' + this.r2p_1 + ')';
|
|
4426
4569
|
}
|
|
4427
|
-
return 'GameCard(' + this.
|
|
4570
|
+
return 'GameCard(' + this.a2r() + this.g9() + ', ' + this.r2p_1 + ')';
|
|
4428
4571
|
};
|
|
4429
4572
|
protoOf(GameCard).hashCode = function () {
|
|
4430
|
-
return this.
|
|
4573
|
+
return this.r2p_1;
|
|
4431
4574
|
};
|
|
4432
4575
|
protoOf(GameCard).equals = function (other) {
|
|
4433
4576
|
if (this === other)
|
|
@@ -4435,20 +4578,20 @@
|
|
|
4435
4578
|
if (!(other instanceof GameCard))
|
|
4436
4579
|
return false;
|
|
4437
4580
|
var tmp0_other_with_cast = other instanceof GameCard ? other : THROW_CCE();
|
|
4438
|
-
if (!(this.
|
|
4581
|
+
if (!(this.r2p_1 === tmp0_other_with_cast.r2p_1))
|
|
4439
4582
|
return false;
|
|
4440
4583
|
return true;
|
|
4441
4584
|
};
|
|
4442
4585
|
function ProcessingCard(gameCard, payload) {
|
|
4443
|
-
this.
|
|
4444
|
-
this.
|
|
4586
|
+
this.k2r_1 = gameCard;
|
|
4587
|
+
this.l2r_1 = payload;
|
|
4445
4588
|
}
|
|
4446
4589
|
protoOf(ProcessingCard).toString = function () {
|
|
4447
|
-
return 'ProcessingCard(gameCard=' + this.
|
|
4590
|
+
return 'ProcessingCard(gameCard=' + this.k2r_1 + ', payload=' + this.l2r_1 + ')';
|
|
4448
4591
|
};
|
|
4449
4592
|
protoOf(ProcessingCard).hashCode = function () {
|
|
4450
|
-
var result = this.
|
|
4451
|
-
result = imul(result, 31) + (this.
|
|
4593
|
+
var result = this.k2r_1.hashCode();
|
|
4594
|
+
result = imul(result, 31) + (this.l2r_1 == null ? 0 : hashCode(this.l2r_1)) | 0;
|
|
4452
4595
|
return result;
|
|
4453
4596
|
};
|
|
4454
4597
|
protoOf(ProcessingCard).equals = function (other) {
|
|
@@ -4457,14 +4600,14 @@
|
|
|
4457
4600
|
if (!(other instanceof ProcessingCard))
|
|
4458
4601
|
return false;
|
|
4459
4602
|
var tmp0_other_with_cast = other instanceof ProcessingCard ? other : THROW_CCE();
|
|
4460
|
-
if (!this.
|
|
4603
|
+
if (!this.k2r_1.equals(tmp0_other_with_cast.k2r_1))
|
|
4461
4604
|
return false;
|
|
4462
|
-
if (!equals(this.
|
|
4605
|
+
if (!equals(this.l2r_1, tmp0_other_with_cast.l2r_1))
|
|
4463
4606
|
return false;
|
|
4464
4607
|
return true;
|
|
4465
4608
|
};
|
|
4466
4609
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
4467
|
-
return $this.
|
|
4610
|
+
return $this.m2r_1.o2();
|
|
4468
4611
|
}
|
|
4469
4612
|
function Suit$Companion$_anonymous__cbm2iq() {
|
|
4470
4613
|
return createSimpleEnumSerializer('com.logic.data.models.table.cards.Suit', values_3());
|
|
@@ -4498,7 +4641,7 @@
|
|
|
4498
4641
|
Companion_instance_20 = this;
|
|
4499
4642
|
var tmp = this;
|
|
4500
4643
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
4501
|
-
tmp.
|
|
4644
|
+
tmp.m2r_1 = lazy(tmp_0, Suit$Companion$_anonymous__cbm2iq);
|
|
4502
4645
|
}
|
|
4503
4646
|
protoOf(Companion_20).t16 = function () {
|
|
4504
4647
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -4578,27 +4721,30 @@
|
|
|
4578
4721
|
}
|
|
4579
4722
|
function AsyncProvider() {
|
|
4580
4723
|
}
|
|
4581
|
-
function
|
|
4582
|
-
this.
|
|
4724
|
+
function onError($this, message, error) {
|
|
4725
|
+
$this.w2r_1.e('AsyncErrorHandler', message + ': ' + error, error);
|
|
4726
|
+
}
|
|
4727
|
+
function _no_name_provided__qut3iv(this$0) {
|
|
4728
|
+
this.f2s_1 = this$0;
|
|
4583
4729
|
AbstractCoroutineContextElement.call(this, Key_instance);
|
|
4584
4730
|
}
|
|
4585
4731
|
protoOf(_no_name_provided__qut3iv).i1v = function (context, exception) {
|
|
4586
|
-
this.
|
|
4732
|
+
onError(this.f2s_1, 'CoroutineContext', exception);
|
|
4587
4733
|
return Unit_instance;
|
|
4588
4734
|
};
|
|
4589
4735
|
function AsyncProviderImpl$launchUnconfinedWithLock$slambda(this$0, $block, resultContinuation) {
|
|
4590
|
-
this.
|
|
4591
|
-
this.
|
|
4736
|
+
this.o2s_1 = this$0;
|
|
4737
|
+
this.p2s_1 = $block;
|
|
4592
4738
|
CoroutineImpl.call(this, resultContinuation);
|
|
4593
4739
|
}
|
|
4594
|
-
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).
|
|
4595
|
-
var tmp = this.
|
|
4740
|
+
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).d2b = function ($this$launch, $completion) {
|
|
4741
|
+
var tmp = this.e2b($this$launch, $completion);
|
|
4596
4742
|
tmp.na_1 = Unit_instance;
|
|
4597
4743
|
tmp.oa_1 = null;
|
|
4598
4744
|
return tmp.ya();
|
|
4599
4745
|
};
|
|
4600
4746
|
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).lb = function (p1, $completion) {
|
|
4601
|
-
return this.
|
|
4747
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
4602
4748
|
};
|
|
4603
4749
|
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).ya = function () {
|
|
4604
4750
|
var suspendResult = this.na_1;
|
|
@@ -4612,11 +4758,11 @@
|
|
|
4612
4758
|
continue $sm;
|
|
4613
4759
|
case 1:
|
|
4614
4760
|
var tmp_0 = this;
|
|
4615
|
-
tmp_0.
|
|
4761
|
+
tmp_0.s2s_1 = this.o2s_1.z2r_1;
|
|
4616
4762
|
var tmp_1 = this;
|
|
4617
|
-
tmp_1.
|
|
4763
|
+
tmp_1.t2s_1 = null;
|
|
4618
4764
|
this.la_1 = 2;
|
|
4619
|
-
suspendResult = this.
|
|
4765
|
+
suspendResult = this.s2s_1.a2i(this.t2s_1, this);
|
|
4620
4766
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4621
4767
|
return suspendResult;
|
|
4622
4768
|
}
|
|
@@ -4631,14 +4777,14 @@
|
|
|
4631
4777
|
case 4:
|
|
4632
4778
|
this.ma_1 = 9;
|
|
4633
4779
|
this.la_1 = 5;
|
|
4634
|
-
suspendResult = this.
|
|
4780
|
+
suspendResult = this.p2s_1(this.q2s_1, this);
|
|
4635
4781
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4636
4782
|
return suspendResult;
|
|
4637
4783
|
}
|
|
4638
4784
|
|
|
4639
4785
|
continue $sm;
|
|
4640
4786
|
case 5:
|
|
4641
|
-
this.
|
|
4787
|
+
this.u2s_1 = suspendResult;
|
|
4642
4788
|
this.ma_1 = 10;
|
|
4643
4789
|
this.la_1 = 6;
|
|
4644
4790
|
var tmp_2 = this;
|
|
@@ -4646,13 +4792,13 @@
|
|
|
4646
4792
|
case 6:
|
|
4647
4793
|
this.ma_1 = 10;
|
|
4648
4794
|
var tmp_3 = this;
|
|
4649
|
-
this.
|
|
4650
|
-
tmp_3.
|
|
4795
|
+
this.s2s_1.l2h(this.t2s_1);
|
|
4796
|
+
tmp_3.r2s_1 = Unit_instance;
|
|
4651
4797
|
this.la_1 = 8;
|
|
4652
4798
|
continue $sm;
|
|
4653
4799
|
case 7:
|
|
4654
4800
|
this.ma_1 = 10;
|
|
4655
|
-
this.
|
|
4801
|
+
this.s2s_1.l2h(this.t2s_1);
|
|
4656
4802
|
if (false) {
|
|
4657
4803
|
this.la_1 = 1;
|
|
4658
4804
|
continue $sm;
|
|
@@ -4665,7 +4811,7 @@
|
|
|
4665
4811
|
case 9:
|
|
4666
4812
|
this.ma_1 = 10;
|
|
4667
4813
|
var t = this.oa_1;
|
|
4668
|
-
this.
|
|
4814
|
+
this.s2s_1.l2h(this.t2s_1);
|
|
4669
4815
|
throw t;
|
|
4670
4816
|
case 10:
|
|
4671
4817
|
throw this.oa_1;
|
|
@@ -4681,32 +4827,32 @@
|
|
|
4681
4827
|
}
|
|
4682
4828
|
while (true);
|
|
4683
4829
|
};
|
|
4684
|
-
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).
|
|
4685
|
-
var i = new AsyncProviderImpl$launchUnconfinedWithLock$slambda(this.
|
|
4686
|
-
i.
|
|
4830
|
+
protoOf(AsyncProviderImpl$launchUnconfinedWithLock$slambda).e2b = function ($this$launch, completion) {
|
|
4831
|
+
var i = new AsyncProviderImpl$launchUnconfinedWithLock$slambda(this.o2s_1, this.p2s_1, completion);
|
|
4832
|
+
i.q2s_1 = $this$launch;
|
|
4687
4833
|
return i;
|
|
4688
4834
|
};
|
|
4689
4835
|
function AsyncProviderImpl$launchUnconfinedWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
4690
4836
|
var i = new AsyncProviderImpl$launchUnconfinedWithLock$slambda(this$0, $block, resultContinuation);
|
|
4691
4837
|
var l = function ($this$launch, $completion) {
|
|
4692
|
-
return i.
|
|
4838
|
+
return i.d2b($this$launch, $completion);
|
|
4693
4839
|
};
|
|
4694
4840
|
l.$arity = 1;
|
|
4695
4841
|
return l;
|
|
4696
4842
|
}
|
|
4697
4843
|
function AsyncProviderImpl$launchDefaultWithLock$slambda(this$0, $block, resultContinuation) {
|
|
4698
|
-
this.
|
|
4699
|
-
this.
|
|
4844
|
+
this.d2t_1 = this$0;
|
|
4845
|
+
this.e2t_1 = $block;
|
|
4700
4846
|
CoroutineImpl.call(this, resultContinuation);
|
|
4701
4847
|
}
|
|
4702
|
-
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).
|
|
4703
|
-
var tmp = this.
|
|
4848
|
+
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).d2b = function ($this$launch, $completion) {
|
|
4849
|
+
var tmp = this.e2b($this$launch, $completion);
|
|
4704
4850
|
tmp.na_1 = Unit_instance;
|
|
4705
4851
|
tmp.oa_1 = null;
|
|
4706
4852
|
return tmp.ya();
|
|
4707
4853
|
};
|
|
4708
4854
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).lb = function (p1, $completion) {
|
|
4709
|
-
return this.
|
|
4855
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
4710
4856
|
};
|
|
4711
4857
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).ya = function () {
|
|
4712
4858
|
var suspendResult = this.na_1;
|
|
@@ -4720,11 +4866,11 @@
|
|
|
4720
4866
|
continue $sm;
|
|
4721
4867
|
case 1:
|
|
4722
4868
|
var tmp_0 = this;
|
|
4723
|
-
tmp_0.
|
|
4869
|
+
tmp_0.h2t_1 = this.d2t_1.y2r_1;
|
|
4724
4870
|
var tmp_1 = this;
|
|
4725
|
-
tmp_1.
|
|
4871
|
+
tmp_1.i2t_1 = null;
|
|
4726
4872
|
this.la_1 = 2;
|
|
4727
|
-
suspendResult = this.
|
|
4873
|
+
suspendResult = this.h2t_1.a2i(this.i2t_1, this);
|
|
4728
4874
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4729
4875
|
return suspendResult;
|
|
4730
4876
|
}
|
|
@@ -4739,14 +4885,14 @@
|
|
|
4739
4885
|
case 4:
|
|
4740
4886
|
this.ma_1 = 9;
|
|
4741
4887
|
this.la_1 = 5;
|
|
4742
|
-
suspendResult = this.
|
|
4888
|
+
suspendResult = this.e2t_1(this.f2t_1, this);
|
|
4743
4889
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4744
4890
|
return suspendResult;
|
|
4745
4891
|
}
|
|
4746
4892
|
|
|
4747
4893
|
continue $sm;
|
|
4748
4894
|
case 5:
|
|
4749
|
-
this.
|
|
4895
|
+
this.j2t_1 = suspendResult;
|
|
4750
4896
|
this.ma_1 = 10;
|
|
4751
4897
|
this.la_1 = 6;
|
|
4752
4898
|
var tmp_2 = this;
|
|
@@ -4754,13 +4900,13 @@
|
|
|
4754
4900
|
case 6:
|
|
4755
4901
|
this.ma_1 = 10;
|
|
4756
4902
|
var tmp_3 = this;
|
|
4757
|
-
this.
|
|
4758
|
-
tmp_3.
|
|
4903
|
+
this.h2t_1.l2h(this.i2t_1);
|
|
4904
|
+
tmp_3.g2t_1 = Unit_instance;
|
|
4759
4905
|
this.la_1 = 8;
|
|
4760
4906
|
continue $sm;
|
|
4761
4907
|
case 7:
|
|
4762
4908
|
this.ma_1 = 10;
|
|
4763
|
-
this.
|
|
4909
|
+
this.h2t_1.l2h(this.i2t_1);
|
|
4764
4910
|
if (false) {
|
|
4765
4911
|
this.la_1 = 1;
|
|
4766
4912
|
continue $sm;
|
|
@@ -4773,7 +4919,7 @@
|
|
|
4773
4919
|
case 9:
|
|
4774
4920
|
this.ma_1 = 10;
|
|
4775
4921
|
var t = this.oa_1;
|
|
4776
|
-
this.
|
|
4922
|
+
this.h2t_1.l2h(this.i2t_1);
|
|
4777
4923
|
throw t;
|
|
4778
4924
|
case 10:
|
|
4779
4925
|
throw this.oa_1;
|
|
@@ -4789,55 +4935,59 @@
|
|
|
4789
4935
|
}
|
|
4790
4936
|
while (true);
|
|
4791
4937
|
};
|
|
4792
|
-
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).
|
|
4793
|
-
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.
|
|
4794
|
-
i.
|
|
4938
|
+
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).e2b = function ($this$launch, completion) {
|
|
4939
|
+
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.d2t_1, this.e2t_1, completion);
|
|
4940
|
+
i.f2t_1 = $this$launch;
|
|
4795
4941
|
return i;
|
|
4796
4942
|
};
|
|
4797
4943
|
function AsyncProviderImpl$launchDefaultWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
4798
4944
|
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this$0, $block, resultContinuation);
|
|
4799
4945
|
var l = function ($this$launch, $completion) {
|
|
4800
|
-
return i.
|
|
4946
|
+
return i.d2b($this$launch, $completion);
|
|
4801
4947
|
};
|
|
4802
4948
|
l.$arity = 1;
|
|
4803
4949
|
return l;
|
|
4804
4950
|
}
|
|
4805
|
-
function AsyncProviderImpl(logger) {
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4951
|
+
function AsyncProviderImpl(logger, mainDispatcher, defaultDispatcher, unconfinedDispatcher) {
|
|
4952
|
+
mainDispatcher = mainDispatcher === VOID ? Dispatchers_getInstance().c1z() : mainDispatcher;
|
|
4953
|
+
defaultDispatcher = defaultDispatcher === VOID ? Dispatchers_getInstance().y1y_1 : defaultDispatcher;
|
|
4954
|
+
unconfinedDispatcher = unconfinedDispatcher === VOID ? Dispatchers_getInstance().z1y_1 : unconfinedDispatcher;
|
|
4955
|
+
this.w2r_1 = logger;
|
|
4956
|
+
this.x2r_1 = SupervisorJob();
|
|
4957
|
+
this.y2r_1 = Mutex();
|
|
4958
|
+
this.z2r_1 = Mutex();
|
|
4809
4959
|
var tmp = this;
|
|
4810
4960
|
// Inline function 'kotlinx.coroutines.CoroutineExceptionHandler' call
|
|
4811
|
-
tmp.
|
|
4812
|
-
this.
|
|
4813
|
-
this.
|
|
4814
|
-
this.
|
|
4961
|
+
tmp.a2s_1 = new _no_name_provided__qut3iv(this);
|
|
4962
|
+
this.b2s_1 = CoroutineScope_0(mainDispatcher.me(this.x2r_1));
|
|
4963
|
+
this.c2s_1 = CoroutineScope_0(defaultDispatcher.me(this.x2r_1));
|
|
4964
|
+
this.d2s_1 = CoroutineScope_0(unconfinedDispatcher.me(this.x2r_1));
|
|
4815
4965
|
}
|
|
4816
|
-
protoOf(AsyncProviderImpl).
|
|
4817
|
-
return this.
|
|
4966
|
+
protoOf(AsyncProviderImpl).n2r = function () {
|
|
4967
|
+
return this.a2s_1;
|
|
4818
4968
|
};
|
|
4819
|
-
protoOf(AsyncProviderImpl).
|
|
4820
|
-
return launch(this.
|
|
4969
|
+
protoOf(AsyncProviderImpl).u2r = function (context, block) {
|
|
4970
|
+
return launch(this.b2s_1, context, VOID, block);
|
|
4821
4971
|
};
|
|
4822
|
-
protoOf(AsyncProviderImpl).
|
|
4823
|
-
return launch(this.
|
|
4972
|
+
protoOf(AsyncProviderImpl).q2r = function (context, block) {
|
|
4973
|
+
return launch(this.c2s_1, context, VOID, block);
|
|
4824
4974
|
};
|
|
4825
|
-
protoOf(AsyncProviderImpl).
|
|
4826
|
-
return launch(this.
|
|
4975
|
+
protoOf(AsyncProviderImpl).o2r = function (context, block) {
|
|
4976
|
+
return launch(this.d2s_1, context, VOID, AsyncProviderImpl$launchUnconfinedWithLock$slambda_0(this, block, null));
|
|
4827
4977
|
};
|
|
4828
|
-
protoOf(AsyncProviderImpl).
|
|
4829
|
-
return launch(this.
|
|
4978
|
+
protoOf(AsyncProviderImpl).s2r = function (context, block) {
|
|
4979
|
+
return launch(this.c2s_1, context, VOID, AsyncProviderImpl$launchDefaultWithLock$slambda_0(this, block, null));
|
|
4830
4980
|
};
|
|
4831
4981
|
protoOf(AsyncProviderImpl).z1s = function () {
|
|
4832
|
-
if (!this.
|
|
4833
|
-
this.
|
|
4982
|
+
if (!this.x2r_1.k1r()) {
|
|
4983
|
+
this.x2r_1.x1r();
|
|
4834
4984
|
}
|
|
4835
4985
|
};
|
|
4836
4986
|
function IdsProvider() {
|
|
4837
4987
|
}
|
|
4838
4988
|
function UUIDIdsProvider() {
|
|
4839
4989
|
}
|
|
4840
|
-
protoOf(UUIDIdsProvider).
|
|
4990
|
+
protoOf(UUIDIdsProvider).k2t = function () {
|
|
4841
4991
|
return uuid4().toString();
|
|
4842
4992
|
};
|
|
4843
4993
|
var UUIDIdsProvider_instance;
|
|
@@ -4847,45 +4997,45 @@
|
|
|
4847
4997
|
function JobsProvider() {
|
|
4848
4998
|
}
|
|
4849
4999
|
function JobsProviderImpl(logger) {
|
|
4850
|
-
this.
|
|
5000
|
+
this.q2t_1 = logger;
|
|
4851
5001
|
var tmp = this;
|
|
4852
5002
|
// Inline function 'kotlin.collections.hashMapOf' call
|
|
4853
|
-
tmp.
|
|
5003
|
+
tmp.r2t_1 = HashMap_init_$Create$();
|
|
4854
5004
|
}
|
|
4855
|
-
protoOf(JobsProviderImpl).
|
|
4856
|
-
if (this.
|
|
4857
|
-
this.
|
|
5005
|
+
protoOf(JobsProviderImpl).l2t = function (timerTag, job) {
|
|
5006
|
+
if (this.p2t(timerTag)) {
|
|
5007
|
+
this.q2t_1.w(VOID, 'Timer already exists for that tag: ' + timerTag);
|
|
4858
5008
|
}
|
|
4859
5009
|
// Inline function 'kotlin.collections.set' call
|
|
4860
|
-
this.
|
|
5010
|
+
this.r2t_1.k2(timerTag, job);
|
|
4861
5011
|
};
|
|
4862
|
-
protoOf(JobsProviderImpl).
|
|
4863
|
-
return this.
|
|
5012
|
+
protoOf(JobsProviderImpl).p2t = function (timerTag) {
|
|
5013
|
+
return this.r2t_1.r2(timerTag);
|
|
4864
5014
|
};
|
|
4865
|
-
protoOf(JobsProviderImpl).
|
|
4866
|
-
if (!this.
|
|
4867
|
-
this.
|
|
5015
|
+
protoOf(JobsProviderImpl).n2t = function (timerTag) {
|
|
5016
|
+
if (!this.p2t(timerTag)) {
|
|
5017
|
+
this.q2t_1.w(VOID, "Can't find timer for that tag: " + timerTag);
|
|
4868
5018
|
}
|
|
4869
|
-
this.
|
|
5019
|
+
this.r2t_1.l2(timerTag);
|
|
4870
5020
|
};
|
|
4871
|
-
protoOf(JobsProviderImpl).
|
|
5021
|
+
protoOf(JobsProviderImpl).o2t = function (timers) {
|
|
4872
5022
|
// Inline function 'kotlin.collections.forEach' call
|
|
4873
5023
|
var tmp0_iterator = timers.v();
|
|
4874
5024
|
while (tmp0_iterator.w()) {
|
|
4875
5025
|
var element = tmp0_iterator.y();
|
|
4876
5026
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJobs.<anonymous>' call
|
|
4877
|
-
var timer = this.
|
|
5027
|
+
var timer = this.r2t_1.t2(element);
|
|
4878
5028
|
if (timer == null)
|
|
4879
5029
|
null;
|
|
4880
5030
|
else {
|
|
4881
5031
|
timer.x1r();
|
|
4882
5032
|
}
|
|
4883
5033
|
}
|
|
4884
|
-
this.
|
|
5034
|
+
this.r2t_1.j2().a1(toSet(timers));
|
|
4885
5035
|
};
|
|
4886
|
-
protoOf(JobsProviderImpl).
|
|
4887
|
-
var timer = this.
|
|
4888
|
-
this.
|
|
5036
|
+
protoOf(JobsProviderImpl).m2t = function (timerTag) {
|
|
5037
|
+
var timer = this.r2t_1.t2(timerTag);
|
|
5038
|
+
this.r2t_1.l2(timerTag);
|
|
4889
5039
|
if (timer == null)
|
|
4890
5040
|
null;
|
|
4891
5041
|
else {
|
|
@@ -4907,13 +5057,13 @@
|
|
|
4907
5057
|
_init_properties_DI_kt__lm8vuj();
|
|
4908
5058
|
return Module_init_$Create$('Engine Logger Module', VOID, VOID, combinedLoggerModule$lambda(combinedLogger));
|
|
4909
5059
|
}
|
|
4910
|
-
function coreModule(config, asyncProvider, jobsProvider,
|
|
5060
|
+
function coreModule(config, asyncProvider, jobsProvider, idsProvider) {
|
|
4911
5061
|
config = config === VOID ? new CoreConfig() : config;
|
|
4912
5062
|
asyncProvider = asyncProvider === VOID ? null : asyncProvider;
|
|
4913
5063
|
jobsProvider = jobsProvider === VOID ? null : jobsProvider;
|
|
4914
|
-
|
|
5064
|
+
idsProvider = idsProvider === VOID ? null : idsProvider;
|
|
4915
5065
|
_init_properties_DI_kt__lm8vuj();
|
|
4916
|
-
return Module_init_$Create$('Core Module', VOID, VOID, coreModule$lambda(config, asyncProvider, jobsProvider,
|
|
5066
|
+
return Module_init_$Create$('Core Module', VOID, VOID, coreModule$lambda(config, asyncProvider, jobsProvider, idsProvider));
|
|
4917
5067
|
}
|
|
4918
5068
|
function coreLoggerModule$lambda($this$$receiver) {
|
|
4919
5069
|
_init_properties_DI_kt__lm8vuj();
|
|
@@ -4989,7 +5139,7 @@
|
|
|
4989
5139
|
function combinedLoggerModule$lambda$lambda($combinedLogger) {
|
|
4990
5140
|
return function ($this$singleton) {
|
|
4991
5141
|
var tmp0_elvis_lhs = $combinedLogger;
|
|
4992
|
-
return tmp0_elvis_lhs == null ?
|
|
5142
|
+
return tmp0_elvis_lhs == null ? Companion_instance_21.s2t() : tmp0_elvis_lhs;
|
|
4993
5143
|
};
|
|
4994
5144
|
}
|
|
4995
5145
|
function combinedLoggerModule$lambda$lambda_0($this$singleton) {
|
|
@@ -5077,13 +5227,13 @@
|
|
|
5077
5227
|
return tmp;
|
|
5078
5228
|
};
|
|
5079
5229
|
}
|
|
5080
|
-
function coreModule$lambda$lambda_2($
|
|
5230
|
+
function coreModule$lambda$lambda_2($idsProvider) {
|
|
5081
5231
|
return function ($this$singleton) {
|
|
5082
|
-
var tmp0_elvis_lhs = $
|
|
5232
|
+
var tmp0_elvis_lhs = $idsProvider;
|
|
5083
5233
|
return tmp0_elvis_lhs == null ? UUIDIdsProvider_instance : tmp0_elvis_lhs;
|
|
5084
5234
|
};
|
|
5085
5235
|
}
|
|
5086
|
-
function coreModule$lambda($config, $asyncProvider, $jobsProvider, $
|
|
5236
|
+
function coreModule$lambda($config, $asyncProvider, $jobsProvider, $idsProvider) {
|
|
5087
5237
|
return function ($this$$receiver) {
|
|
5088
5238
|
// Inline function 'org.kodein.di.bind' call
|
|
5089
5239
|
// Inline function 'org.kodein.type.generic' call
|
|
@@ -5136,12 +5286,12 @@
|
|
|
5136
5286
|
var tmp$ret$12 = isInterface(tmp_17, TypeToken) ? tmp_17 : THROW_CCE();
|
|
5137
5287
|
var tmp_18 = $this$$receiver.u1g(tmp$ret$12, null, null);
|
|
5138
5288
|
// Inline function 'org.kodein.di.singleton' call
|
|
5139
|
-
var creator_2 = coreModule$lambda$lambda_2($
|
|
5289
|
+
var creator_2 = coreModule$lambda$lambda_2($idsProvider);
|
|
5140
5290
|
var tmp_19 = $this$$receiver.z1g();
|
|
5141
5291
|
var tmp_20 = $this$$receiver.x1g();
|
|
5142
5292
|
var tmp_21 = $this$$receiver.y1g();
|
|
5143
5293
|
// Inline function 'org.kodein.type.generic' call
|
|
5144
|
-
var tmp_22 = typeToken(createKType(getKClass(
|
|
5294
|
+
var tmp_22 = typeToken(createKType(getKClass(IdsProvider), arrayOf([]), false));
|
|
5145
5295
|
var tmp$ret$14 = isInterface(tmp_22, TypeToken) ? tmp_22 : THROW_CCE();
|
|
5146
5296
|
var tmp$ret$15 = new Singleton(tmp_19, tmp_20, tmp_21, tmp$ret$14, null, true, creator_2);
|
|
5147
5297
|
tmp_18.r1k(tmp$ret$15);
|
|
@@ -5163,27 +5313,27 @@
|
|
|
5163
5313
|
function FileSystemImpl(directory, fileSystem) {
|
|
5164
5314
|
directory = directory === VOID ? get_SystemTemporaryDirectory() : directory;
|
|
5165
5315
|
fileSystem = fileSystem === VOID ? get_SystemFileSystem() : fileSystem;
|
|
5166
|
-
this.
|
|
5167
|
-
this.
|
|
5316
|
+
this.v2t_1 = directory;
|
|
5317
|
+
this.w2t_1 = fileSystem;
|
|
5168
5318
|
}
|
|
5169
|
-
protoOf(FileSystemImpl).
|
|
5170
|
-
var exists = this.
|
|
5319
|
+
protoOf(FileSystemImpl).t2t = function (filePath, append, $completion) {
|
|
5320
|
+
var exists = this.w2t_1.k1p(this.v2t_1);
|
|
5171
5321
|
if (!exists) {
|
|
5172
|
-
this.
|
|
5322
|
+
this.w2t_1.o1p(this.v2t_1);
|
|
5173
5323
|
}
|
|
5174
|
-
return buffered(this.
|
|
5324
|
+
return buffered(this.w2t_1.p1p(Path_0(this.v2t_1, [filePath]), append));
|
|
5175
5325
|
};
|
|
5176
|
-
protoOf(FileSystemImpl).
|
|
5177
|
-
this.
|
|
5326
|
+
protoOf(FileSystemImpl).u2t = function ($completion) {
|
|
5327
|
+
this.w2t_1.m1p(this.v2t_1);
|
|
5178
5328
|
return Unit_instance;
|
|
5179
5329
|
};
|
|
5180
5330
|
function LoggerFactoryImpl(coreConfig, fileSystem) {
|
|
5181
|
-
this.
|
|
5182
|
-
this.
|
|
5331
|
+
this.x2t_1 = coreConfig;
|
|
5332
|
+
this.y2t_1 = fileSystem;
|
|
5183
5333
|
}
|
|
5184
|
-
protoOf(LoggerFactoryImpl).
|
|
5185
|
-
var fileName = replace(this.
|
|
5186
|
-
return new LogsStorageControllerImpl(fileName, this.
|
|
5334
|
+
protoOf(LoggerFactoryImpl).z2t = function (key) {
|
|
5335
|
+
var fileName = replace(this.x2t_1.fileNameFormat, '%S', key);
|
|
5336
|
+
return new LogsStorageControllerImpl(fileName, this.y2t_1);
|
|
5187
5337
|
};
|
|
5188
5338
|
function LoggerFactory() {
|
|
5189
5339
|
}
|
|
@@ -5195,8 +5345,8 @@
|
|
|
5195
5345
|
}
|
|
5196
5346
|
function $appendToFileCOROUTINE$0(_this__u8e3s4, message, resultContinuation) {
|
|
5197
5347
|
CoroutineImpl.call(this, resultContinuation);
|
|
5198
|
-
this.
|
|
5199
|
-
this.
|
|
5348
|
+
this.i2u_1 = _this__u8e3s4;
|
|
5349
|
+
this.j2u_1 = message;
|
|
5200
5350
|
}
|
|
5201
5351
|
protoOf($appendToFileCOROUTINE$0).ya = function () {
|
|
5202
5352
|
var suspendResult = this.na_1;
|
|
@@ -5208,7 +5358,7 @@
|
|
|
5208
5358
|
this.ma_1 = 3;
|
|
5209
5359
|
this.ma_1 = 2;
|
|
5210
5360
|
this.la_1 = 1;
|
|
5211
|
-
suspendResult = this.
|
|
5361
|
+
suspendResult = this.i2u_1.l2u_1.t2t(this.i2u_1.k2u_1, true, this);
|
|
5212
5362
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5213
5363
|
return suspendResult;
|
|
5214
5364
|
}
|
|
@@ -5219,7 +5369,7 @@
|
|
|
5219
5369
|
var sink = buffered(ARGUMENT);
|
|
5220
5370
|
l$ret$1: do {
|
|
5221
5371
|
try {
|
|
5222
|
-
writeString(sink, this.
|
|
5372
|
+
writeString(sink, this.j2u_1 + '\n');
|
|
5223
5373
|
break l$ret$1;
|
|
5224
5374
|
} catch ($p) {
|
|
5225
5375
|
var t = $p;
|
|
@@ -5237,7 +5387,7 @@
|
|
|
5237
5387
|
var tmp_0 = this.oa_1;
|
|
5238
5388
|
if (tmp_0 instanceof Exception) {
|
|
5239
5389
|
var e = this.oa_1;
|
|
5240
|
-
Logger_getInstance().
|
|
5390
|
+
Logger_getInstance().p2u(VOID, 'Error writing to log file: ' + e.message, e);
|
|
5241
5391
|
this.la_1 = 4;
|
|
5242
5392
|
continue $sm;
|
|
5243
5393
|
} else {
|
|
@@ -5262,10 +5412,10 @@
|
|
|
5262
5412
|
while (true);
|
|
5263
5413
|
};
|
|
5264
5414
|
function LogsStorageControllerImpl(fileName, fileSystem) {
|
|
5265
|
-
this.
|
|
5266
|
-
this.
|
|
5415
|
+
this.k2u_1 = fileName;
|
|
5416
|
+
this.l2u_1 = fileSystem;
|
|
5267
5417
|
}
|
|
5268
|
-
protoOf(LogsStorageControllerImpl).
|
|
5418
|
+
protoOf(LogsStorageControllerImpl).q2u = function (log, $completion) {
|
|
5269
5419
|
return appendToFile(this, log, $completion);
|
|
5270
5420
|
};
|
|
5271
5421
|
function BufferedAction() {
|
|
@@ -5280,22 +5430,22 @@
|
|
|
5280
5430
|
initialDelay = initialDelay === VOID ? new Long(0, 0) : initialDelay;
|
|
5281
5431
|
type = type === VOID ? TimerType_DELAY_getInstance() : type;
|
|
5282
5432
|
TimerAction.call(this);
|
|
5283
|
-
this.
|
|
5284
|
-
this.
|
|
5285
|
-
this.
|
|
5286
|
-
this.
|
|
5433
|
+
this.v2u_1 = timerTag;
|
|
5434
|
+
this.w2u_1 = delayMillis;
|
|
5435
|
+
this.x2u_1 = initialDelay;
|
|
5436
|
+
this.y2u_1 = type;
|
|
5287
5437
|
}
|
|
5288
|
-
protoOf(StartTimerAction).
|
|
5289
|
-
return this.
|
|
5438
|
+
protoOf(StartTimerAction).z2u = function () {
|
|
5439
|
+
return this.v2u_1;
|
|
5290
5440
|
};
|
|
5291
5441
|
protoOf(StartTimerAction).toString = function () {
|
|
5292
|
-
return 'StartTimerAction(timerTag=' + this.
|
|
5442
|
+
return 'StartTimerAction(timerTag=' + this.v2u_1 + ', delayMillis=' + this.w2u_1.toString() + ', initialDelay=' + this.x2u_1.toString() + ', type=' + this.y2u_1 + ')';
|
|
5293
5443
|
};
|
|
5294
5444
|
protoOf(StartTimerAction).hashCode = function () {
|
|
5295
|
-
var result = hashCode(this.
|
|
5296
|
-
result = imul(result, 31) + this.
|
|
5297
|
-
result = imul(result, 31) + this.
|
|
5298
|
-
result = imul(result, 31) + this.
|
|
5445
|
+
var result = hashCode(this.v2u_1);
|
|
5446
|
+
result = imul(result, 31) + this.w2u_1.hashCode() | 0;
|
|
5447
|
+
result = imul(result, 31) + this.x2u_1.hashCode() | 0;
|
|
5448
|
+
result = imul(result, 31) + this.y2u_1.hashCode() | 0;
|
|
5299
5449
|
return result;
|
|
5300
5450
|
};
|
|
5301
5451
|
protoOf(StartTimerAction).equals = function (other) {
|
|
@@ -5304,13 +5454,13 @@
|
|
|
5304
5454
|
if (!(other instanceof StartTimerAction))
|
|
5305
5455
|
return false;
|
|
5306
5456
|
var tmp0_other_with_cast = other instanceof StartTimerAction ? other : THROW_CCE();
|
|
5307
|
-
if (!equals(this.
|
|
5457
|
+
if (!equals(this.v2u_1, tmp0_other_with_cast.v2u_1))
|
|
5308
5458
|
return false;
|
|
5309
|
-
if (!this.
|
|
5459
|
+
if (!this.w2u_1.equals(tmp0_other_with_cast.w2u_1))
|
|
5310
5460
|
return false;
|
|
5311
|
-
if (!this.
|
|
5461
|
+
if (!this.x2u_1.equals(tmp0_other_with_cast.x2u_1))
|
|
5312
5462
|
return false;
|
|
5313
|
-
if (!this.
|
|
5463
|
+
if (!this.y2u_1.equals(tmp0_other_with_cast.y2u_1))
|
|
5314
5464
|
return false;
|
|
5315
5465
|
return true;
|
|
5316
5466
|
};
|
|
@@ -5329,21 +5479,21 @@
|
|
|
5329
5479
|
}
|
|
5330
5480
|
function TimerTickAction(timerTag, type) {
|
|
5331
5481
|
TimerAction.call(this);
|
|
5332
|
-
this.
|
|
5333
|
-
this.
|
|
5482
|
+
this.a2v_1 = timerTag;
|
|
5483
|
+
this.b2v_1 = type;
|
|
5334
5484
|
}
|
|
5335
|
-
protoOf(TimerTickAction).
|
|
5336
|
-
return this.
|
|
5485
|
+
protoOf(TimerTickAction).z2u = function () {
|
|
5486
|
+
return this.a2v_1;
|
|
5337
5487
|
};
|
|
5338
5488
|
protoOf(TimerTickAction).notValidateWhenFinished = function () {
|
|
5339
|
-
return this.
|
|
5489
|
+
return this.a2v_1.notValidateWhenFinished();
|
|
5340
5490
|
};
|
|
5341
5491
|
protoOf(TimerTickAction).toString = function () {
|
|
5342
|
-
return 'TimerTickAction(timerTag=' + this.
|
|
5492
|
+
return 'TimerTickAction(timerTag=' + this.a2v_1 + ', type=' + this.b2v_1 + ')';
|
|
5343
5493
|
};
|
|
5344
5494
|
protoOf(TimerTickAction).hashCode = function () {
|
|
5345
|
-
var result = hashCode(this.
|
|
5346
|
-
result = imul(result, 31) + this.
|
|
5495
|
+
var result = hashCode(this.a2v_1);
|
|
5496
|
+
result = imul(result, 31) + this.b2v_1.hashCode() | 0;
|
|
5347
5497
|
return result;
|
|
5348
5498
|
};
|
|
5349
5499
|
protoOf(TimerTickAction).equals = function (other) {
|
|
@@ -5352,24 +5502,24 @@
|
|
|
5352
5502
|
if (!(other instanceof TimerTickAction))
|
|
5353
5503
|
return false;
|
|
5354
5504
|
var tmp0_other_with_cast = other instanceof TimerTickAction ? other : THROW_CCE();
|
|
5355
|
-
if (!equals(this.
|
|
5505
|
+
if (!equals(this.a2v_1, tmp0_other_with_cast.a2v_1))
|
|
5356
5506
|
return false;
|
|
5357
|
-
if (!this.
|
|
5507
|
+
if (!this.b2v_1.equals(tmp0_other_with_cast.b2v_1))
|
|
5358
5508
|
return false;
|
|
5359
5509
|
return true;
|
|
5360
5510
|
};
|
|
5361
5511
|
function StopTimerAction(timerTag) {
|
|
5362
5512
|
TimerAction.call(this);
|
|
5363
|
-
this.
|
|
5513
|
+
this.c2v_1 = timerTag;
|
|
5364
5514
|
}
|
|
5365
|
-
protoOf(StopTimerAction).
|
|
5366
|
-
return this.
|
|
5515
|
+
protoOf(StopTimerAction).z2u = function () {
|
|
5516
|
+
return this.c2v_1;
|
|
5367
5517
|
};
|
|
5368
5518
|
protoOf(StopTimerAction).toString = function () {
|
|
5369
|
-
return 'StopTimerAction(timerTag=' + this.
|
|
5519
|
+
return 'StopTimerAction(timerTag=' + this.c2v_1 + ')';
|
|
5370
5520
|
};
|
|
5371
5521
|
protoOf(StopTimerAction).hashCode = function () {
|
|
5372
|
-
return hashCode(this.
|
|
5522
|
+
return hashCode(this.c2v_1);
|
|
5373
5523
|
};
|
|
5374
5524
|
protoOf(StopTimerAction).equals = function (other) {
|
|
5375
5525
|
if (this === other)
|
|
@@ -5377,7 +5527,7 @@
|
|
|
5377
5527
|
if (!(other instanceof StopTimerAction))
|
|
5378
5528
|
return false;
|
|
5379
5529
|
var tmp0_other_with_cast = other instanceof StopTimerAction ? other : THROW_CCE();
|
|
5380
|
-
if (!equals(this.
|
|
5530
|
+
if (!equals(this.c2v_1, tmp0_other_with_cast.c2v_1))
|
|
5381
5531
|
return false;
|
|
5382
5532
|
return true;
|
|
5383
5533
|
};
|
|
@@ -5395,12 +5545,47 @@
|
|
|
5395
5545
|
}
|
|
5396
5546
|
function NotValidateIfGameFinishing() {
|
|
5397
5547
|
}
|
|
5548
|
+
function applyCatcher(logger) {
|
|
5549
|
+
return applyCatcher$lambda(logger);
|
|
5550
|
+
}
|
|
5551
|
+
function applyCatcher$lambda$lambda$lambda($origDispatch, $logger) {
|
|
5552
|
+
return function (action) {
|
|
5553
|
+
var tmp;
|
|
5554
|
+
try {
|
|
5555
|
+
tmp = $origDispatch(action);
|
|
5556
|
+
} catch ($p) {
|
|
5557
|
+
var tmp_0;
|
|
5558
|
+
if ($p instanceof Exception) {
|
|
5559
|
+
var error = $p;
|
|
5560
|
+
$logger.e('StoreEnhancer', 'applyCatcher error: ' + error, error, action);
|
|
5561
|
+
tmp_0 = Unit_instance;
|
|
5562
|
+
} else {
|
|
5563
|
+
throw $p;
|
|
5564
|
+
}
|
|
5565
|
+
tmp = tmp_0;
|
|
5566
|
+
}
|
|
5567
|
+
return Unit_instance;
|
|
5568
|
+
};
|
|
5569
|
+
}
|
|
5570
|
+
function applyCatcher$lambda$lambda($storeCreator, $logger) {
|
|
5571
|
+
return function (reducer, initialState, en) {
|
|
5572
|
+
var store = $storeCreator(reducer, initialState, en);
|
|
5573
|
+
var origDispatch = store.dispatch;
|
|
5574
|
+
store.dispatch = applyCatcher$lambda$lambda$lambda(origDispatch, $logger);
|
|
5575
|
+
return store;
|
|
5576
|
+
};
|
|
5577
|
+
}
|
|
5578
|
+
function applyCatcher$lambda($logger) {
|
|
5579
|
+
return function (storeCreator) {
|
|
5580
|
+
return applyCatcher$lambda$lambda(storeCreator, $logger);
|
|
5581
|
+
};
|
|
5582
|
+
}
|
|
5398
5583
|
function applyMiddleware(middlewares) {
|
|
5399
5584
|
return applyMiddleware$lambda(middlewares);
|
|
5400
5585
|
}
|
|
5401
5586
|
function applyMiddleware$lambda$lambda$lambda$lambda($middleware, $store, $dispatcher) {
|
|
5402
5587
|
return function (action) {
|
|
5403
|
-
$middleware.
|
|
5588
|
+
$middleware.d2v($store, $dispatcher, action);
|
|
5404
5589
|
return Unit_instance;
|
|
5405
5590
|
};
|
|
5406
5591
|
}
|
|
@@ -5416,7 +5601,7 @@
|
|
|
5416
5601
|
var element = this_0[inductionVariable];
|
|
5417
5602
|
inductionVariable = inductionVariable + 1 | 0;
|
|
5418
5603
|
// Inline function 'com.logic.redux.enhancers.applyMiddleware.<anonymous>.<anonymous>.<anonymous>.<anonymous>' call
|
|
5419
|
-
if (element.
|
|
5604
|
+
if (element.e2v(action)) {
|
|
5420
5605
|
destination.s(element);
|
|
5421
5606
|
}
|
|
5422
5607
|
}
|
|
@@ -5454,18 +5639,18 @@
|
|
|
5454
5639
|
return applyThread$lambda(asyncProvider);
|
|
5455
5640
|
}
|
|
5456
5641
|
function applyThread$lambda$lambda$lambda$slambda($origDispatch, $action, resultContinuation) {
|
|
5457
|
-
this.
|
|
5458
|
-
this.
|
|
5642
|
+
this.n2v_1 = $origDispatch;
|
|
5643
|
+
this.o2v_1 = $action;
|
|
5459
5644
|
CoroutineImpl.call(this, resultContinuation);
|
|
5460
5645
|
}
|
|
5461
|
-
protoOf(applyThread$lambda$lambda$lambda$slambda).
|
|
5462
|
-
var tmp = this.
|
|
5646
|
+
protoOf(applyThread$lambda$lambda$lambda$slambda).d2b = function ($this$launchUnconfinedWithLock, $completion) {
|
|
5647
|
+
var tmp = this.e2b($this$launchUnconfinedWithLock, $completion);
|
|
5463
5648
|
tmp.na_1 = Unit_instance;
|
|
5464
5649
|
tmp.oa_1 = null;
|
|
5465
5650
|
return tmp.ya();
|
|
5466
5651
|
};
|
|
5467
5652
|
protoOf(applyThread$lambda$lambda$lambda$slambda).lb = function (p1, $completion) {
|
|
5468
|
-
return this.
|
|
5653
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
5469
5654
|
};
|
|
5470
5655
|
protoOf(applyThread$lambda$lambda$lambda$slambda).ya = function () {
|
|
5471
5656
|
var suspendResult = this.na_1;
|
|
@@ -5474,7 +5659,7 @@
|
|
|
5474
5659
|
var tmp = this.la_1;
|
|
5475
5660
|
if (tmp === 0) {
|
|
5476
5661
|
this.ma_1 = 1;
|
|
5477
|
-
this.
|
|
5662
|
+
this.n2v_1(this.o2v_1);
|
|
5478
5663
|
return Unit_instance;
|
|
5479
5664
|
} else if (tmp === 1) {
|
|
5480
5665
|
throw this.oa_1;
|
|
@@ -5485,22 +5670,22 @@
|
|
|
5485
5670
|
}
|
|
5486
5671
|
while (true);
|
|
5487
5672
|
};
|
|
5488
|
-
protoOf(applyThread$lambda$lambda$lambda$slambda).
|
|
5489
|
-
var i = new applyThread$lambda$lambda$lambda$slambda(this.
|
|
5490
|
-
i.
|
|
5673
|
+
protoOf(applyThread$lambda$lambda$lambda$slambda).e2b = function ($this$launchUnconfinedWithLock, completion) {
|
|
5674
|
+
var i = new applyThread$lambda$lambda$lambda$slambda(this.n2v_1, this.o2v_1, completion);
|
|
5675
|
+
i.p2v_1 = $this$launchUnconfinedWithLock;
|
|
5491
5676
|
return i;
|
|
5492
5677
|
};
|
|
5493
5678
|
function applyThread$lambda$lambda$lambda$slambda_0($origDispatch, $action, resultContinuation) {
|
|
5494
5679
|
var i = new applyThread$lambda$lambda$lambda$slambda($origDispatch, $action, resultContinuation);
|
|
5495
5680
|
var l = function ($this$launchUnconfinedWithLock, $completion) {
|
|
5496
|
-
return i.
|
|
5681
|
+
return i.d2b($this$launchUnconfinedWithLock, $completion);
|
|
5497
5682
|
};
|
|
5498
5683
|
l.$arity = 1;
|
|
5499
5684
|
return l;
|
|
5500
5685
|
}
|
|
5501
5686
|
function applyThread$lambda$lambda$lambda($asyncProvider, $origDispatch) {
|
|
5502
5687
|
return function (action) {
|
|
5503
|
-
$asyncProvider.
|
|
5688
|
+
$asyncProvider.p2r(VOID, applyThread$lambda$lambda$lambda$slambda_0($origDispatch, action, null));
|
|
5504
5689
|
return Unit_instance;
|
|
5505
5690
|
};
|
|
5506
5691
|
}
|
|
@@ -5522,19 +5707,19 @@
|
|
|
5522
5707
|
return new _no_name_provided__qut3iv_0(asyncProvider, jobsProvider);
|
|
5523
5708
|
}
|
|
5524
5709
|
function timerMiddleware$o$handle$slambda$slambda($jobsProvider, $action, $store, resultContinuation) {
|
|
5525
|
-
this.
|
|
5526
|
-
this.
|
|
5527
|
-
this.
|
|
5710
|
+
this.y2v_1 = $jobsProvider;
|
|
5711
|
+
this.z2v_1 = $action;
|
|
5712
|
+
this.a2w_1 = $store;
|
|
5528
5713
|
CoroutineImpl.call(this, resultContinuation);
|
|
5529
5714
|
}
|
|
5530
|
-
protoOf(timerMiddleware$o$handle$slambda$slambda).
|
|
5531
|
-
var tmp = this.
|
|
5715
|
+
protoOf(timerMiddleware$o$handle$slambda$slambda).d2b = function ($this$launchMain, $completion) {
|
|
5716
|
+
var tmp = this.e2b($this$launchMain, $completion);
|
|
5532
5717
|
tmp.na_1 = Unit_instance;
|
|
5533
5718
|
tmp.oa_1 = null;
|
|
5534
5719
|
return tmp.ya();
|
|
5535
5720
|
};
|
|
5536
5721
|
protoOf(timerMiddleware$o$handle$slambda$slambda).lb = function (p1, $completion) {
|
|
5537
|
-
return this.
|
|
5722
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
5538
5723
|
};
|
|
5539
5724
|
protoOf(timerMiddleware$o$handle$slambda$slambda).ya = function () {
|
|
5540
5725
|
var suspendResult = this.na_1;
|
|
@@ -5543,8 +5728,8 @@
|
|
|
5543
5728
|
var tmp = this.la_1;
|
|
5544
5729
|
if (tmp === 0) {
|
|
5545
5730
|
this.ma_1 = 1;
|
|
5546
|
-
if (this.
|
|
5547
|
-
this.
|
|
5731
|
+
if (this.y2v_1.p2t(this.z2v_1.z2u())) {
|
|
5732
|
+
this.a2w_1.dispatch(new TimerTickAction(this.z2v_1.z2u(), TimerType_DELAY_getInstance()));
|
|
5548
5733
|
}
|
|
5549
5734
|
return Unit_instance;
|
|
5550
5735
|
} else if (tmp === 1) {
|
|
@@ -5556,33 +5741,33 @@
|
|
|
5556
5741
|
}
|
|
5557
5742
|
while (true);
|
|
5558
5743
|
};
|
|
5559
|
-
protoOf(timerMiddleware$o$handle$slambda$slambda).
|
|
5560
|
-
var i = new timerMiddleware$o$handle$slambda$slambda(this.
|
|
5561
|
-
i.
|
|
5744
|
+
protoOf(timerMiddleware$o$handle$slambda$slambda).e2b = function ($this$launchMain, completion) {
|
|
5745
|
+
var i = new timerMiddleware$o$handle$slambda$slambda(this.y2v_1, this.z2v_1, this.a2w_1, completion);
|
|
5746
|
+
i.b2w_1 = $this$launchMain;
|
|
5562
5747
|
return i;
|
|
5563
5748
|
};
|
|
5564
5749
|
function timerMiddleware$o$handle$slambda$slambda_0($jobsProvider, $action, $store, resultContinuation) {
|
|
5565
5750
|
var i = new timerMiddleware$o$handle$slambda$slambda($jobsProvider, $action, $store, resultContinuation);
|
|
5566
5751
|
var l = function ($this$launchMain, $completion) {
|
|
5567
|
-
return i.
|
|
5752
|
+
return i.d2b($this$launchMain, $completion);
|
|
5568
5753
|
};
|
|
5569
5754
|
l.$arity = 1;
|
|
5570
5755
|
return l;
|
|
5571
5756
|
}
|
|
5572
5757
|
function timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $action, $store, resultContinuation) {
|
|
5573
|
-
this.
|
|
5574
|
-
this.
|
|
5575
|
-
this.
|
|
5758
|
+
this.k2w_1 = $jobsProvider;
|
|
5759
|
+
this.l2w_1 = $action;
|
|
5760
|
+
this.m2w_1 = $store;
|
|
5576
5761
|
CoroutineImpl.call(this, resultContinuation);
|
|
5577
5762
|
}
|
|
5578
|
-
protoOf(timerMiddleware$o$handle$slambda$slambda_1).
|
|
5579
|
-
var tmp = this.
|
|
5763
|
+
protoOf(timerMiddleware$o$handle$slambda$slambda_1).d2b = function ($this$launchMain, $completion) {
|
|
5764
|
+
var tmp = this.e2b($this$launchMain, $completion);
|
|
5580
5765
|
tmp.na_1 = Unit_instance;
|
|
5581
5766
|
tmp.oa_1 = null;
|
|
5582
5767
|
return tmp.ya();
|
|
5583
5768
|
};
|
|
5584
5769
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).lb = function (p1, $completion) {
|
|
5585
|
-
return this.
|
|
5770
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
5586
5771
|
};
|
|
5587
5772
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).ya = function () {
|
|
5588
5773
|
var suspendResult = this.na_1;
|
|
@@ -5591,8 +5776,8 @@
|
|
|
5591
5776
|
var tmp = this.la_1;
|
|
5592
5777
|
if (tmp === 0) {
|
|
5593
5778
|
this.ma_1 = 1;
|
|
5594
|
-
if (this.
|
|
5595
|
-
this.
|
|
5779
|
+
if (this.k2w_1.p2t(this.l2w_1.z2u())) {
|
|
5780
|
+
this.m2w_1.dispatch(new TimerTickAction(this.l2w_1.z2u(), TimerType_INTERVAL_getInstance()));
|
|
5596
5781
|
}
|
|
5597
5782
|
return Unit_instance;
|
|
5598
5783
|
} else if (tmp === 1) {
|
|
@@ -5604,34 +5789,34 @@
|
|
|
5604
5789
|
}
|
|
5605
5790
|
while (true);
|
|
5606
5791
|
};
|
|
5607
|
-
protoOf(timerMiddleware$o$handle$slambda$slambda_1).
|
|
5608
|
-
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.
|
|
5609
|
-
i.
|
|
5792
|
+
protoOf(timerMiddleware$o$handle$slambda$slambda_1).e2b = function ($this$launchMain, completion) {
|
|
5793
|
+
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.k2w_1, this.l2w_1, this.m2w_1, completion);
|
|
5794
|
+
i.n2w_1 = $this$launchMain;
|
|
5610
5795
|
return i;
|
|
5611
5796
|
};
|
|
5612
5797
|
function timerMiddleware$o$handle$slambda$slambda_2($jobsProvider, $action, $store, resultContinuation) {
|
|
5613
5798
|
var i = new timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $action, $store, resultContinuation);
|
|
5614
5799
|
var l = function ($this$launchMain, $completion) {
|
|
5615
|
-
return i.
|
|
5800
|
+
return i.d2b($this$launchMain, $completion);
|
|
5616
5801
|
};
|
|
5617
5802
|
l.$arity = 1;
|
|
5618
5803
|
return l;
|
|
5619
5804
|
}
|
|
5620
5805
|
function timerMiddleware$o$handle$slambda($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
5621
|
-
this.
|
|
5622
|
-
this.
|
|
5623
|
-
this.
|
|
5624
|
-
this.
|
|
5806
|
+
this.w2w_1 = $action;
|
|
5807
|
+
this.x2w_1 = $asyncProvider;
|
|
5808
|
+
this.y2w_1 = $jobsProvider;
|
|
5809
|
+
this.z2w_1 = $store;
|
|
5625
5810
|
CoroutineImpl.call(this, resultContinuation);
|
|
5626
5811
|
}
|
|
5627
|
-
protoOf(timerMiddleware$o$handle$slambda).
|
|
5628
|
-
var tmp = this.
|
|
5812
|
+
protoOf(timerMiddleware$o$handle$slambda).d2b = function ($this$launchDefault, $completion) {
|
|
5813
|
+
var tmp = this.e2b($this$launchDefault, $completion);
|
|
5629
5814
|
tmp.na_1 = Unit_instance;
|
|
5630
5815
|
tmp.oa_1 = null;
|
|
5631
5816
|
return tmp.ya();
|
|
5632
5817
|
};
|
|
5633
5818
|
protoOf(timerMiddleware$o$handle$slambda).lb = function (p1, $completion) {
|
|
5634
|
-
return this.
|
|
5819
|
+
return this.d2b((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
5635
5820
|
};
|
|
5636
5821
|
protoOf(timerMiddleware$o$handle$slambda).ya = function () {
|
|
5637
5822
|
var suspendResult = this.na_1;
|
|
@@ -5641,9 +5826,9 @@
|
|
|
5641
5826
|
switch (tmp) {
|
|
5642
5827
|
case 0:
|
|
5643
5828
|
this.ma_1 = 10;
|
|
5644
|
-
if (!this.
|
|
5829
|
+
if (!this.w2w_1.x2u_1.equals(new Long(0, 0)) ? this.w2w_1.y2u_1.equals(TimerType_INTERVAL_getInstance()) : false) {
|
|
5645
5830
|
this.la_1 = 1;
|
|
5646
|
-
suspendResult = delay(this.
|
|
5831
|
+
suspendResult = delay(this.w2w_1.x2u_1, this);
|
|
5647
5832
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5648
5833
|
return suspendResult;
|
|
5649
5834
|
}
|
|
@@ -5657,20 +5842,20 @@
|
|
|
5657
5842
|
this.la_1 = 2;
|
|
5658
5843
|
continue $sm;
|
|
5659
5844
|
case 2:
|
|
5660
|
-
this.
|
|
5661
|
-
this.
|
|
5662
|
-
if (this.
|
|
5845
|
+
this.b2x_1 = this.w2w_1.y2u_1;
|
|
5846
|
+
this.c2x_1 = this.b2x_1.g8_1;
|
|
5847
|
+
if (this.c2x_1 === 0) {
|
|
5663
5848
|
this.la_1 = 8;
|
|
5664
|
-
suspendResult = delay(this.
|
|
5849
|
+
suspendResult = delay(this.w2w_1.w2u_1, this);
|
|
5665
5850
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5666
5851
|
return suspendResult;
|
|
5667
5852
|
}
|
|
5668
5853
|
continue $sm;
|
|
5669
5854
|
} else {
|
|
5670
|
-
if (this.
|
|
5671
|
-
if (!this.
|
|
5855
|
+
if (this.c2x_1 === 1) {
|
|
5856
|
+
if (!this.w2w_1.x2u_1.equals(new Long(0, 0))) {
|
|
5672
5857
|
this.la_1 = 3;
|
|
5673
|
-
suspendResult = delay(this.
|
|
5858
|
+
suspendResult = delay(this.w2w_1.x2u_1, this);
|
|
5674
5859
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5675
5860
|
return suspendResult;
|
|
5676
5861
|
}
|
|
@@ -5692,14 +5877,14 @@
|
|
|
5692
5877
|
this.la_1 = 5;
|
|
5693
5878
|
continue $sm;
|
|
5694
5879
|
case 5:
|
|
5695
|
-
if (!get_isActive(this.
|
|
5880
|
+
if (!get_isActive(this.a2x_1)) {
|
|
5696
5881
|
this.la_1 = 7;
|
|
5697
5882
|
continue $sm;
|
|
5698
5883
|
}
|
|
5699
5884
|
|
|
5700
|
-
this.
|
|
5885
|
+
this.x2w_1.v2r(VOID, timerMiddleware$o$handle$slambda$slambda_2(this.y2w_1, this.w2w_1, this.z2w_1, null));
|
|
5701
5886
|
this.la_1 = 6;
|
|
5702
|
-
suspendResult = delay(this.
|
|
5887
|
+
suspendResult = delay(this.w2w_1.x2u_1, this);
|
|
5703
5888
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5704
5889
|
return suspendResult;
|
|
5705
5890
|
}
|
|
@@ -5712,7 +5897,7 @@
|
|
|
5712
5897
|
this.la_1 = 9;
|
|
5713
5898
|
continue $sm;
|
|
5714
5899
|
case 8:
|
|
5715
|
-
this.
|
|
5900
|
+
this.x2w_1.v2r(VOID, timerMiddleware$o$handle$slambda$slambda_0(this.y2w_1, this.w2w_1, this.z2w_1, null));
|
|
5716
5901
|
this.la_1 = 9;
|
|
5717
5902
|
continue $sm;
|
|
5718
5903
|
case 9:
|
|
@@ -5731,47 +5916,47 @@
|
|
|
5731
5916
|
}
|
|
5732
5917
|
while (true);
|
|
5733
5918
|
};
|
|
5734
|
-
protoOf(timerMiddleware$o$handle$slambda).
|
|
5735
|
-
var i = new timerMiddleware$o$handle$slambda(this.
|
|
5736
|
-
i.
|
|
5919
|
+
protoOf(timerMiddleware$o$handle$slambda).e2b = function ($this$launchDefault, completion) {
|
|
5920
|
+
var i = new timerMiddleware$o$handle$slambda(this.w2w_1, this.x2w_1, this.y2w_1, this.z2w_1, completion);
|
|
5921
|
+
i.a2x_1 = $this$launchDefault;
|
|
5737
5922
|
return i;
|
|
5738
5923
|
};
|
|
5739
5924
|
function timerMiddleware$o$handle$slambda_0($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
5740
5925
|
var i = new timerMiddleware$o$handle$slambda($action, $asyncProvider, $jobsProvider, $store, resultContinuation);
|
|
5741
5926
|
var l = function ($this$launchDefault, $completion) {
|
|
5742
|
-
return i.
|
|
5927
|
+
return i.d2b($this$launchDefault, $completion);
|
|
5743
5928
|
};
|
|
5744
5929
|
l.$arity = 1;
|
|
5745
5930
|
return l;
|
|
5746
5931
|
}
|
|
5747
5932
|
function _no_name_provided__qut3iv_0($asyncProvider, $jobsProvider) {
|
|
5748
|
-
this.
|
|
5749
|
-
this.
|
|
5933
|
+
this.d2x_1 = $asyncProvider;
|
|
5934
|
+
this.e2x_1 = $jobsProvider;
|
|
5750
5935
|
}
|
|
5751
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5936
|
+
protoOf(_no_name_provided__qut3iv_0).e2v = function (action) {
|
|
5752
5937
|
return action instanceof TimerAction;
|
|
5753
5938
|
};
|
|
5754
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5939
|
+
protoOf(_no_name_provided__qut3iv_0).f2x = function (store, next, action) {
|
|
5755
5940
|
// Inline function 'com.logic.redux.middlewares.timers.timerMiddleware.<anonymous>' call
|
|
5756
5941
|
var action_0 = action instanceof TimerAction ? action : THROW_CCE();
|
|
5757
5942
|
if (action_0 instanceof StartTimerAction) {
|
|
5758
|
-
var job = this.
|
|
5759
|
-
this.
|
|
5943
|
+
var job = this.d2x_1.r2r(VOID, timerMiddleware$o$handle$slambda_0(action_0, this.d2x_1, this.e2x_1, store, null));
|
|
5944
|
+
this.e2x_1.l2t(action_0.z2u(), job);
|
|
5760
5945
|
} else {
|
|
5761
5946
|
if (action_0 instanceof StopTimerAction) {
|
|
5762
|
-
this.
|
|
5947
|
+
this.e2x_1.m2t(action_0.z2u());
|
|
5763
5948
|
} else {
|
|
5764
5949
|
if (action_0 instanceof TimerTickAction) {
|
|
5765
|
-
if (action_0.
|
|
5766
|
-
this.
|
|
5950
|
+
if (action_0.b2v_1.equals(TimerType_DELAY_getInstance())) {
|
|
5951
|
+
this.e2x_1.n2t(action_0.z2u());
|
|
5767
5952
|
}
|
|
5768
5953
|
}
|
|
5769
5954
|
}
|
|
5770
5955
|
}
|
|
5771
5956
|
next(action_0);
|
|
5772
5957
|
};
|
|
5773
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5774
|
-
return this.
|
|
5958
|
+
protoOf(_no_name_provided__qut3iv_0).d2v = function (store, next, action) {
|
|
5959
|
+
return this.f2x(store, next, action);
|
|
5775
5960
|
};
|
|
5776
5961
|
function compose(functions) {
|
|
5777
5962
|
return compose$lambda(functions);
|
|
@@ -5807,7 +5992,7 @@
|
|
|
5807
5992
|
}
|
|
5808
5993
|
function createStore$dispatch(currentState, currentReducer, $logger, stateTrigger, action) {
|
|
5809
5994
|
try {
|
|
5810
|
-
currentState._v = currentReducer._v.
|
|
5995
|
+
currentState._v = currentReducer._v.g2x(currentState._v, action);
|
|
5811
5996
|
} catch ($p) {
|
|
5812
5997
|
if ($p instanceof Exception) {
|
|
5813
5998
|
var exception = $p;
|
|
@@ -5816,7 +6001,7 @@
|
|
|
5816
6001
|
throw $p;
|
|
5817
6002
|
}
|
|
5818
6003
|
}
|
|
5819
|
-
stateTrigger.
|
|
6004
|
+
stateTrigger.z27(Unit_instance);
|
|
5820
6005
|
}
|
|
5821
6006
|
function createStore$replaceReducer(currentReducer, currentState, $logger, stateTrigger, nextReducer) {
|
|
5822
6007
|
currentReducer._v = nextReducer;
|
|
@@ -5828,18 +6013,18 @@
|
|
|
5828
6013
|
};
|
|
5829
6014
|
}
|
|
5830
6015
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug($$this$unsafeFlow, this$0, resultContinuation) {
|
|
5831
|
-
this.
|
|
5832
|
-
this.
|
|
6016
|
+
this.p2x_1 = $$this$unsafeFlow;
|
|
6017
|
+
this.q2x_1 = this$0;
|
|
5833
6018
|
CoroutineImpl.call(this, resultContinuation);
|
|
5834
6019
|
}
|
|
5835
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
5836
|
-
var tmp = this.
|
|
6020
|
+
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).u2x = function (value, $completion) {
|
|
6021
|
+
var tmp = this.v2x(value, $completion);
|
|
5837
6022
|
tmp.na_1 = Unit_instance;
|
|
5838
6023
|
tmp.oa_1 = null;
|
|
5839
6024
|
return tmp.ya();
|
|
5840
6025
|
};
|
|
5841
6026
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).lb = function (p1, $completion) {
|
|
5842
|
-
return this.
|
|
6027
|
+
return this.u2x(p1 instanceof Unit ? p1 : THROW_CCE(), $completion);
|
|
5843
6028
|
};
|
|
5844
6029
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).ya = function () {
|
|
5845
6030
|
var suspendResult = this.na_1;
|
|
@@ -5850,12 +6035,12 @@
|
|
|
5850
6035
|
case 0:
|
|
5851
6036
|
this.ma_1 = 2;
|
|
5852
6037
|
var tmp_0 = this;
|
|
5853
|
-
tmp_0.
|
|
6038
|
+
tmp_0.s2x_1 = this.p2x_1;
|
|
5854
6039
|
var tmp_1 = this;
|
|
5855
|
-
tmp_1.
|
|
6040
|
+
tmp_1.t2x_1 = this.r2x_1;
|
|
5856
6041
|
this.la_1 = 1;
|
|
5857
|
-
this.
|
|
5858
|
-
suspendResult = this.
|
|
6042
|
+
this.t2x_1;
|
|
6043
|
+
suspendResult = this.s2x_1.g26(this.q2x_1.state, this);
|
|
5859
6044
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5860
6045
|
return suspendResult;
|
|
5861
6046
|
}
|
|
@@ -5877,23 +6062,23 @@
|
|
|
5877
6062
|
}
|
|
5878
6063
|
while (true);
|
|
5879
6064
|
};
|
|
5880
|
-
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).
|
|
5881
|
-
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.
|
|
5882
|
-
i.
|
|
6065
|
+
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).v2x = function (value, completion) {
|
|
6066
|
+
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.p2x_1, this.q2x_1, completion);
|
|
6067
|
+
i.r2x_1 = value;
|
|
5883
6068
|
return i;
|
|
5884
6069
|
};
|
|
5885
6070
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug_0($$this$unsafeFlow, this$0, resultContinuation) {
|
|
5886
6071
|
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug($$this$unsafeFlow, this$0, resultContinuation);
|
|
5887
6072
|
var l = function (value, $completion) {
|
|
5888
|
-
return i.
|
|
6073
|
+
return i.u2x(value, $completion);
|
|
5889
6074
|
};
|
|
5890
6075
|
l.$arity = 1;
|
|
5891
6076
|
return l;
|
|
5892
6077
|
}
|
|
5893
6078
|
function $collectCOROUTINE$1(_this__u8e3s4, collector, resultContinuation) {
|
|
5894
6079
|
CoroutineImpl.call(this, resultContinuation);
|
|
5895
|
-
this.
|
|
5896
|
-
this.
|
|
6080
|
+
this.e2y_1 = _this__u8e3s4;
|
|
6081
|
+
this.f2y_1 = collector;
|
|
5897
6082
|
}
|
|
5898
6083
|
protoOf($collectCOROUTINE$1).ya = function () {
|
|
5899
6084
|
var suspendResult = this.na_1;
|
|
@@ -5904,10 +6089,10 @@
|
|
|
5904
6089
|
case 0:
|
|
5905
6090
|
this.ma_1 = 2;
|
|
5906
6091
|
var tmp_0 = this;
|
|
5907
|
-
tmp_0.
|
|
6092
|
+
tmp_0.g2y_1 = this.f2y_1;
|
|
5908
6093
|
this.la_1 = 1;
|
|
5909
|
-
var tmp_1 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.
|
|
5910
|
-
suspendResult = this.
|
|
6094
|
+
var tmp_1 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.g2y_1, this.e2y_1.i2y_1, null);
|
|
6095
|
+
suspendResult = this.e2y_1.h2y_1.q25(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_1), this);
|
|
5911
6096
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5912
6097
|
return suspendResult;
|
|
5913
6098
|
}
|
|
@@ -5930,10 +6115,10 @@
|
|
|
5930
6115
|
while (true);
|
|
5931
6116
|
};
|
|
5932
6117
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
5933
|
-
this.
|
|
6118
|
+
this.j2y_1 = function_0;
|
|
5934
6119
|
}
|
|
5935
|
-
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).
|
|
5936
|
-
return this.
|
|
6120
|
+
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).g26 = function (value, $completion) {
|
|
6121
|
+
return this.j2y_1(value, $completion);
|
|
5937
6122
|
};
|
|
5938
6123
|
function createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
5939
6124
|
return function (action) {
|
|
@@ -5948,46 +6133,46 @@
|
|
|
5948
6133
|
};
|
|
5949
6134
|
}
|
|
5950
6135
|
function _no_name_provided__qut3iv_1($this, this$0) {
|
|
5951
|
-
this.
|
|
5952
|
-
this.
|
|
6136
|
+
this.h2y_1 = $this;
|
|
6137
|
+
this.i2y_1 = this$0;
|
|
5953
6138
|
}
|
|
5954
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
6139
|
+
protoOf(_no_name_provided__qut3iv_1).k2y = function (collector, $completion) {
|
|
5955
6140
|
var tmp = new $collectCOROUTINE$1(this, collector, $completion);
|
|
5956
6141
|
tmp.na_1 = Unit_instance;
|
|
5957
6142
|
tmp.oa_1 = null;
|
|
5958
6143
|
return tmp.ya();
|
|
5959
6144
|
};
|
|
5960
|
-
protoOf(_no_name_provided__qut3iv_1).
|
|
5961
|
-
return this.
|
|
6145
|
+
protoOf(_no_name_provided__qut3iv_1).q25 = function (collector, $completion) {
|
|
6146
|
+
return this.k2y(collector, $completion);
|
|
5962
6147
|
};
|
|
5963
6148
|
function createStore$2($currentState, $currentReducer, $logger, $stateTrigger) {
|
|
5964
|
-
this.
|
|
5965
|
-
this.
|
|
5966
|
-
this.
|
|
6149
|
+
this.o2y_1 = $currentState;
|
|
6150
|
+
this.p2y_1 = $stateTrigger;
|
|
6151
|
+
this.l2y_1 = this;
|
|
5967
6152
|
var tmp = this;
|
|
5968
|
-
tmp.
|
|
6153
|
+
tmp.m2y_1 = createStore$o$dispatch$lambda($currentState, $currentReducer, $logger, $stateTrigger);
|
|
5969
6154
|
var tmp_0 = this;
|
|
5970
|
-
tmp_0.
|
|
6155
|
+
tmp_0.n2y_1 = createStore$o$replaceReducer$lambda($currentReducer, $currentState, $logger, $stateTrigger);
|
|
5971
6156
|
}
|
|
5972
|
-
protoOf(createStore$2).
|
|
5973
|
-
return this.
|
|
6157
|
+
protoOf(createStore$2).q2y = function () {
|
|
6158
|
+
return this.l2y_1;
|
|
5974
6159
|
};
|
|
5975
6160
|
protoOf(createStore$2).i1r = function () {
|
|
5976
|
-
return createStore$getState(this.
|
|
6161
|
+
return createStore$getState(this.o2y_1);
|
|
5977
6162
|
};
|
|
5978
|
-
protoOf(createStore$2).
|
|
5979
|
-
this.
|
|
6163
|
+
protoOf(createStore$2).r2y = function (_set____db54di) {
|
|
6164
|
+
this.m2y_1 = _set____db54di;
|
|
5980
6165
|
};
|
|
5981
|
-
protoOf(createStore$2).
|
|
5982
|
-
return this.
|
|
6166
|
+
protoOf(createStore$2).s2y = function () {
|
|
6167
|
+
return this.m2y_1;
|
|
5983
6168
|
};
|
|
5984
|
-
protoOf(createStore$2).
|
|
5985
|
-
return this.
|
|
6169
|
+
protoOf(createStore$2).t2y = function () {
|
|
6170
|
+
return this.n2y_1;
|
|
5986
6171
|
};
|
|
5987
|
-
protoOf(createStore$2).
|
|
6172
|
+
protoOf(createStore$2).u2y = function () {
|
|
5988
6173
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
5989
6174
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
5990
|
-
var this_0 = this.
|
|
6175
|
+
var this_0 = this.p2y_1;
|
|
5991
6176
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
5992
6177
|
return new _no_name_provided__qut3iv_1(this_0, this);
|
|
5993
6178
|
};
|
|
@@ -6065,10 +6250,10 @@
|
|
|
6065
6250
|
return new middleware$1(dispatch);
|
|
6066
6251
|
}
|
|
6067
6252
|
function middleware$1($dispatch) {
|
|
6068
|
-
this.
|
|
6253
|
+
this.v2y_1 = $dispatch;
|
|
6069
6254
|
}
|
|
6070
|
-
protoOf(middleware$1).
|
|
6071
|
-
this.
|
|
6255
|
+
protoOf(middleware$1).d2v = function (store, next, action) {
|
|
6256
|
+
this.v2y_1(store, next, action);
|
|
6072
6257
|
};
|
|
6073
6258
|
function Reducer() {
|
|
6074
6259
|
}
|
|
@@ -6076,13 +6261,13 @@
|
|
|
6076
6261
|
return new combineReducers$1(reducers);
|
|
6077
6262
|
}
|
|
6078
6263
|
function combineReducers$1($reducers) {
|
|
6079
|
-
this.
|
|
6264
|
+
this.w2y_1 = $reducers;
|
|
6080
6265
|
}
|
|
6081
|
-
protoOf(combineReducers$1).
|
|
6266
|
+
protoOf(combineReducers$1).x2y = function (state, action) {
|
|
6082
6267
|
// Inline function 'kotlin.collections.fold' call
|
|
6083
6268
|
// Inline function 'kotlin.collections.filter' call
|
|
6084
6269
|
// Inline function 'kotlin.collections.filterTo' call
|
|
6085
|
-
var this_0 = this.
|
|
6270
|
+
var this_0 = this.w2y_1;
|
|
6086
6271
|
var destination = ArrayList_init_$Create$();
|
|
6087
6272
|
var inductionVariable = 0;
|
|
6088
6273
|
var last = this_0.length;
|
|
@@ -6090,7 +6275,7 @@
|
|
|
6090
6275
|
var element = this_0[inductionVariable];
|
|
6091
6276
|
inductionVariable = inductionVariable + 1 | 0;
|
|
6092
6277
|
// Inline function 'com.logic.redux.store.definitions.<no name provided>.reduce.<anonymous>' call
|
|
6093
|
-
if (element.
|
|
6278
|
+
if (element.e2v(action)) {
|
|
6094
6279
|
destination.s(element);
|
|
6095
6280
|
}
|
|
6096
6281
|
}
|
|
@@ -6100,12 +6285,12 @@
|
|
|
6100
6285
|
var element_0 = tmp0_iterator.y();
|
|
6101
6286
|
// Inline function 'com.logic.redux.store.definitions.<no name provided>.reduce.<anonymous>' call
|
|
6102
6287
|
var s = accumulator;
|
|
6103
|
-
accumulator = element_0.
|
|
6288
|
+
accumulator = element_0.g2x(s, action);
|
|
6104
6289
|
}
|
|
6105
6290
|
return accumulator;
|
|
6106
6291
|
};
|
|
6107
|
-
protoOf(combineReducers$1).
|
|
6108
|
-
return this.
|
|
6292
|
+
protoOf(combineReducers$1).g2x = function (state, action) {
|
|
6293
|
+
return this.x2y((state == null ? true : !(state == null)) ? state : THROW_CCE(), action);
|
|
6109
6294
|
};
|
|
6110
6295
|
function Store() {
|
|
6111
6296
|
}
|
|
@@ -6252,23 +6437,23 @@
|
|
|
6252
6437
|
Category_NONE_instance = new Category('NONE', 1, true);
|
|
6253
6438
|
}
|
|
6254
6439
|
function generateTag($this, tag) {
|
|
6255
|
-
return (!($this.
|
|
6440
|
+
return (!($this.o2u_1 == null) ? !(tag == null) : false) ? '' + $this.o2u_1 + ':' + tag : tag;
|
|
6256
6441
|
}
|
|
6257
6442
|
function Category(name, ordinal, isEnabled) {
|
|
6258
6443
|
Enum.call(this, name, ordinal);
|
|
6259
|
-
this.
|
|
6444
|
+
this.a2z_1 = isEnabled;
|
|
6260
6445
|
}
|
|
6261
6446
|
function Logger$loggerSource$1() {
|
|
6262
|
-
this.
|
|
6447
|
+
this.b2z_1 = new PlatformLogger();
|
|
6263
6448
|
}
|
|
6264
|
-
protoOf(Logger$loggerSource$1).
|
|
6265
|
-
this.
|
|
6449
|
+
protoOf(Logger$loggerSource$1).c2z = function (tag, msg) {
|
|
6450
|
+
this.b2z_1.c2z(tag, msg);
|
|
6266
6451
|
};
|
|
6267
|
-
protoOf(Logger$loggerSource$1).
|
|
6268
|
-
this.
|
|
6452
|
+
protoOf(Logger$loggerSource$1).d2z = function (tag, msg, exception) {
|
|
6453
|
+
this.b2z_1.d2z(tag, msg, exception);
|
|
6269
6454
|
};
|
|
6270
|
-
protoOf(Logger$loggerSource$1).
|
|
6271
|
-
this.
|
|
6455
|
+
protoOf(Logger$loggerSource$1).e2z = function (tag, msg) {
|
|
6456
|
+
this.b2z_1.e2z(tag, msg);
|
|
6272
6457
|
};
|
|
6273
6458
|
function Category_NONE_getInstance() {
|
|
6274
6459
|
Category_initEntries();
|
|
@@ -6277,56 +6462,56 @@
|
|
|
6277
6462
|
function Logger() {
|
|
6278
6463
|
Logger_instance = this;
|
|
6279
6464
|
var tmp = this;
|
|
6280
|
-
tmp.
|
|
6281
|
-
this.
|
|
6282
|
-
this.
|
|
6465
|
+
tmp.m2u_1 = new Logger$loggerSource$1();
|
|
6466
|
+
this.n2u_1 = true;
|
|
6467
|
+
this.o2u_1 = null;
|
|
6283
6468
|
}
|
|
6284
|
-
protoOf(Logger).
|
|
6285
|
-
this.
|
|
6469
|
+
protoOf(Logger).f2z = function (tag, message) {
|
|
6470
|
+
this.g2z(tag, message, Category_NONE_getInstance());
|
|
6286
6471
|
};
|
|
6287
|
-
protoOf(Logger).
|
|
6288
|
-
if (this.
|
|
6289
|
-
this.
|
|
6472
|
+
protoOf(Logger).h2z = function (tag, message, category) {
|
|
6473
|
+
if (this.n2u_1 ? category.a2z_1 : false) {
|
|
6474
|
+
this.m2u_1.e2z(generateTag(this, tag), message);
|
|
6290
6475
|
}
|
|
6291
6476
|
};
|
|
6292
|
-
protoOf(Logger).
|
|
6477
|
+
protoOf(Logger).i2z = function (tag, message, category, $super) {
|
|
6293
6478
|
tag = tag === VOID ? null : tag;
|
|
6294
6479
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
6295
6480
|
var tmp;
|
|
6296
6481
|
if ($super === VOID) {
|
|
6297
|
-
this.
|
|
6482
|
+
this.h2z(tag, message, category);
|
|
6298
6483
|
tmp = Unit_instance;
|
|
6299
6484
|
} else {
|
|
6300
|
-
tmp = $super.
|
|
6485
|
+
tmp = $super.h2z.call(this, tag, message, category);
|
|
6301
6486
|
}
|
|
6302
6487
|
return tmp;
|
|
6303
6488
|
};
|
|
6304
|
-
protoOf(Logger).
|
|
6305
|
-
if (this.
|
|
6306
|
-
this.
|
|
6489
|
+
protoOf(Logger).g2z = function (tag, message, category) {
|
|
6490
|
+
if (this.n2u_1 ? category.a2z_1 : false) {
|
|
6491
|
+
this.m2u_1.c2z(generateTag(this, tag), message);
|
|
6307
6492
|
}
|
|
6308
6493
|
};
|
|
6309
|
-
protoOf(Logger).
|
|
6310
|
-
if (this.
|
|
6494
|
+
protoOf(Logger).j2z = function (tag, message, exception, category) {
|
|
6495
|
+
if (this.n2u_1 ? category.a2z_1 : false) {
|
|
6311
6496
|
if (exception == null)
|
|
6312
6497
|
null;
|
|
6313
6498
|
else {
|
|
6314
6499
|
printStackTrace(exception);
|
|
6315
6500
|
}
|
|
6316
|
-
this.
|
|
6501
|
+
this.m2u_1.d2z(generateTag(this, tag), generateMsg(message, exception), exception);
|
|
6317
6502
|
}
|
|
6318
6503
|
};
|
|
6319
|
-
protoOf(Logger).
|
|
6504
|
+
protoOf(Logger).p2u = function (tag, message, exception, category, $super) {
|
|
6320
6505
|
tag = tag === VOID ? null : tag;
|
|
6321
6506
|
message = message === VOID ? null : message;
|
|
6322
6507
|
exception = exception === VOID ? null : exception;
|
|
6323
6508
|
category = category === VOID ? Category_NONE_getInstance() : category;
|
|
6324
6509
|
var tmp;
|
|
6325
6510
|
if ($super === VOID) {
|
|
6326
|
-
this.
|
|
6511
|
+
this.j2z(tag, message, exception, category);
|
|
6327
6512
|
tmp = Unit_instance;
|
|
6328
6513
|
} else {
|
|
6329
|
-
tmp = $super.
|
|
6514
|
+
tmp = $super.j2z.call(this, tag, message, exception, category);
|
|
6330
6515
|
}
|
|
6331
6516
|
return tmp;
|
|
6332
6517
|
};
|
|
@@ -6359,40 +6544,45 @@
|
|
|
6359
6544
|
}
|
|
6360
6545
|
function Companion_21() {
|
|
6361
6546
|
}
|
|
6362
|
-
protoOf(Companion_21).
|
|
6547
|
+
protoOf(Companion_21).s2t = function () {
|
|
6363
6548
|
return new CombinedGameLogger(mutableListOf([new PlatformGameLogger()]));
|
|
6364
6549
|
};
|
|
6550
|
+
protoOf(Companion_21).ss = function () {
|
|
6551
|
+
// Inline function 'kotlin.collections.mutableListOf' call
|
|
6552
|
+
var tmp$ret$0 = ArrayList_init_$Create$();
|
|
6553
|
+
return new CombinedGameLogger(tmp$ret$0);
|
|
6554
|
+
};
|
|
6365
6555
|
var Companion_instance_21;
|
|
6366
6556
|
function Companion_getInstance_23() {
|
|
6367
6557
|
return Companion_instance_21;
|
|
6368
6558
|
}
|
|
6369
6559
|
function CombinedGameLogger(logOutputs) {
|
|
6370
|
-
this.
|
|
6560
|
+
this.k2z_1 = logOutputs;
|
|
6371
6561
|
}
|
|
6372
|
-
protoOf(CombinedGameLogger).
|
|
6373
|
-
this.
|
|
6562
|
+
protoOf(CombinedGameLogger).l2z = function (output) {
|
|
6563
|
+
this.k2z_1.s(output);
|
|
6374
6564
|
};
|
|
6375
|
-
protoOf(CombinedGameLogger).
|
|
6565
|
+
protoOf(CombinedGameLogger).m2z = function (tag, message, payload) {
|
|
6376
6566
|
// Inline function 'kotlin.collections.forEach' call
|
|
6377
|
-
var tmp0_iterator = this.
|
|
6567
|
+
var tmp0_iterator = this.k2z_1.v();
|
|
6378
6568
|
while (tmp0_iterator.w()) {
|
|
6379
6569
|
var element = tmp0_iterator.y();
|
|
6380
6570
|
// Inline function 'com.logic.utils.logger.game.CombinedGameLogger.d.<anonymous>' call
|
|
6381
6571
|
element.d(tag, message, payload);
|
|
6382
6572
|
}
|
|
6383
6573
|
};
|
|
6384
|
-
protoOf(CombinedGameLogger).
|
|
6574
|
+
protoOf(CombinedGameLogger).n2z = function (tag, message, exception, payload) {
|
|
6385
6575
|
// Inline function 'kotlin.collections.forEach' call
|
|
6386
|
-
var tmp0_iterator = this.
|
|
6576
|
+
var tmp0_iterator = this.k2z_1.v();
|
|
6387
6577
|
while (tmp0_iterator.w()) {
|
|
6388
6578
|
var element = tmp0_iterator.y();
|
|
6389
6579
|
// Inline function 'com.logic.utils.logger.game.CombinedGameLogger.e.<anonymous>' call
|
|
6390
6580
|
element.e(tag, message, exception, payload);
|
|
6391
6581
|
}
|
|
6392
6582
|
};
|
|
6393
|
-
protoOf(CombinedGameLogger).
|
|
6583
|
+
protoOf(CombinedGameLogger).o2z = function (tag, message, payload) {
|
|
6394
6584
|
// Inline function 'kotlin.collections.forEach' call
|
|
6395
|
-
var tmp0_iterator = this.
|
|
6585
|
+
var tmp0_iterator = this.k2z_1.v();
|
|
6396
6586
|
while (tmp0_iterator.w()) {
|
|
6397
6587
|
var element = tmp0_iterator.y();
|
|
6398
6588
|
// Inline function 'com.logic.utils.logger.game.CombinedGameLogger.w.<anonymous>' call
|
|
@@ -6405,31 +6595,31 @@
|
|
|
6405
6595
|
}
|
|
6406
6596
|
function PlatformGameLogger(enabled) {
|
|
6407
6597
|
enabled = enabled === VOID ? true : enabled;
|
|
6408
|
-
this.
|
|
6598
|
+
this.p2z_1 = enabled;
|
|
6409
6599
|
}
|
|
6410
|
-
protoOf(PlatformGameLogger).
|
|
6411
|
-
this.
|
|
6600
|
+
protoOf(PlatformGameLogger).q2z = function (_set____db54di) {
|
|
6601
|
+
this.p2z_1 = _set____db54di;
|
|
6412
6602
|
};
|
|
6413
|
-
protoOf(PlatformGameLogger).
|
|
6414
|
-
return this.
|
|
6603
|
+
protoOf(PlatformGameLogger).r2z = function () {
|
|
6604
|
+
return this.p2z_1;
|
|
6415
6605
|
};
|
|
6416
|
-
protoOf(PlatformGameLogger).
|
|
6417
|
-
if (!this.
|
|
6606
|
+
protoOf(PlatformGameLogger).m2z = function (tag, message, payload) {
|
|
6607
|
+
if (!this.p2z_1)
|
|
6418
6608
|
return Unit_instance;
|
|
6419
|
-
Logger_getInstance().
|
|
6609
|
+
Logger_getInstance().f2z(tag, message);
|
|
6420
6610
|
};
|
|
6421
|
-
protoOf(PlatformGameLogger).
|
|
6422
|
-
if (!this.
|
|
6611
|
+
protoOf(PlatformGameLogger).n2z = function (tag, message, exception, payload) {
|
|
6612
|
+
if (!this.p2z_1)
|
|
6423
6613
|
return Unit_instance;
|
|
6424
|
-
Logger_getInstance().
|
|
6614
|
+
Logger_getInstance().p2u(tag, message, exception);
|
|
6425
6615
|
};
|
|
6426
|
-
protoOf(PlatformGameLogger).
|
|
6427
|
-
if (!this.
|
|
6616
|
+
protoOf(PlatformGameLogger).o2z = function (tag, message, payload) {
|
|
6617
|
+
if (!this.p2z_1)
|
|
6428
6618
|
return Unit_instance;
|
|
6429
|
-
Logger_getInstance().
|
|
6619
|
+
Logger_getInstance().i2z(tag, message);
|
|
6430
6620
|
};
|
|
6431
6621
|
function _get_$cachedSerializer__te6jhj_9($this) {
|
|
6432
|
-
return $this.
|
|
6622
|
+
return $this.s2z_1.o2();
|
|
6433
6623
|
}
|
|
6434
6624
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
6435
6625
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_4());
|
|
@@ -6441,7 +6631,7 @@
|
|
|
6441
6631
|
Companion_instance_22 = this;
|
|
6442
6632
|
var tmp = this;
|
|
6443
6633
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
6444
|
-
tmp.
|
|
6634
|
+
tmp.s2z_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
6445
6635
|
}
|
|
6446
6636
|
protoOf(Companion_22).t16 = function () {
|
|
6447
6637
|
return _get_$cachedSerializer__te6jhj_9(this);
|
|
@@ -6516,7 +6706,7 @@
|
|
|
6516
6706
|
// Inline function 'kotlin.arrayOf' call
|
|
6517
6707
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6518
6708
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6519
|
-
tmp.
|
|
6709
|
+
tmp.w2z_1 = [Companion_getInstance_24().t16(), null, null, null];
|
|
6520
6710
|
}
|
|
6521
6711
|
protoOf(Companion_23).t16 = function () {
|
|
6522
6712
|
return $serializer_getInstance_9();
|
|
@@ -6534,19 +6724,19 @@
|
|
|
6534
6724
|
tmp0_serialDesc.ku('tag', false);
|
|
6535
6725
|
tmp0_serialDesc.ku('message', false);
|
|
6536
6726
|
tmp0_serialDesc.ku('stackTrace', false);
|
|
6537
|
-
this.
|
|
6727
|
+
this.x2z_1 = tmp0_serialDesc;
|
|
6538
6728
|
}
|
|
6539
6729
|
protoOf($serializer_9).pj = function () {
|
|
6540
|
-
return this.
|
|
6730
|
+
return this.x2z_1;
|
|
6541
6731
|
};
|
|
6542
6732
|
protoOf($serializer_9).zu = function () {
|
|
6543
6733
|
// Inline function 'kotlin.arrayOf' call
|
|
6544
6734
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6545
6735
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6546
|
-
return [Companion_getInstance_25().
|
|
6736
|
+
return [Companion_getInstance_25().w2z_1[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
6547
6737
|
};
|
|
6548
6738
|
protoOf($serializer_9).rj = function (decoder) {
|
|
6549
|
-
var tmp0_desc = this.
|
|
6739
|
+
var tmp0_desc = this.x2z_1;
|
|
6550
6740
|
var tmp1_flag = true;
|
|
6551
6741
|
var tmp2_index = 0;
|
|
6552
6742
|
var tmp3_bitMask0 = 0;
|
|
@@ -6555,7 +6745,7 @@
|
|
|
6555
6745
|
var tmp6_local2 = null;
|
|
6556
6746
|
var tmp7_local3 = null;
|
|
6557
6747
|
var tmp8_input = decoder.xm(tmp0_desc);
|
|
6558
|
-
var tmp9_cached = Companion_getInstance_25().
|
|
6748
|
+
var tmp9_cached = Companion_getInstance_25().w2z_1;
|
|
6559
6749
|
if (tmp8_input.nn()) {
|
|
6560
6750
|
tmp4_local0 = tmp8_input.jn(tmp0_desc, 0, tmp9_cached[0], tmp4_local0);
|
|
6561
6751
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -6595,10 +6785,10 @@
|
|
|
6595
6785
|
tmp8_input.ym(tmp0_desc);
|
|
6596
6786
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, null);
|
|
6597
6787
|
};
|
|
6598
|
-
protoOf($serializer_9).
|
|
6599
|
-
var tmp0_desc = this.
|
|
6788
|
+
protoOf($serializer_9).y2z = function (encoder, value) {
|
|
6789
|
+
var tmp0_desc = this.x2z_1;
|
|
6600
6790
|
var tmp1_output = encoder.xm(tmp0_desc);
|
|
6601
|
-
var tmp2_cached = Companion_getInstance_25().
|
|
6791
|
+
var tmp2_cached = Companion_getInstance_25().w2z_1;
|
|
6602
6792
|
tmp1_output.oo(tmp0_desc, 0, tmp2_cached[0], value.type);
|
|
6603
6793
|
tmp1_output.qo(tmp0_desc, 1, StringSerializer_getInstance(), value.tag);
|
|
6604
6794
|
tmp1_output.qo(tmp0_desc, 2, StringSerializer_getInstance(), value.message);
|
|
@@ -6606,7 +6796,7 @@
|
|
|
6606
6796
|
tmp1_output.ym(tmp0_desc);
|
|
6607
6797
|
};
|
|
6608
6798
|
protoOf($serializer_9).qj = function (encoder, value) {
|
|
6609
|
-
return this.
|
|
6799
|
+
return this.y2z(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
6610
6800
|
};
|
|
6611
6801
|
var $serializer_instance_9;
|
|
6612
6802
|
function $serializer_getInstance_9() {
|
|
@@ -6616,7 +6806,7 @@
|
|
|
6616
6806
|
}
|
|
6617
6807
|
function LoggerOutputDataDto_init_$Init$(seen1, type, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
6618
6808
|
if (!(15 === (15 & seen1))) {
|
|
6619
|
-
throwMissingFieldException(seen1, 15, $serializer_getInstance_9().
|
|
6809
|
+
throwMissingFieldException(seen1, 15, $serializer_getInstance_9().x2z_1);
|
|
6620
6810
|
}
|
|
6621
6811
|
$this.type = type;
|
|
6622
6812
|
$this.tag = tag;
|
|
@@ -6637,18 +6827,46 @@
|
|
|
6637
6827
|
protoOf(LoggerOutputDataDto).k1h = function () {
|
|
6638
6828
|
return this.type;
|
|
6639
6829
|
};
|
|
6640
|
-
protoOf(LoggerOutputDataDto).
|
|
6830
|
+
protoOf(LoggerOutputDataDto).y2k = function () {
|
|
6641
6831
|
return this.tag;
|
|
6642
6832
|
};
|
|
6643
6833
|
protoOf(LoggerOutputDataDto).q5 = function () {
|
|
6644
6834
|
return this.message;
|
|
6645
6835
|
};
|
|
6646
|
-
protoOf(LoggerOutputDataDto).
|
|
6836
|
+
protoOf(LoggerOutputDataDto).z2z = function () {
|
|
6647
6837
|
return this.stackTrace;
|
|
6648
6838
|
};
|
|
6649
6839
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
6650
6840
|
var time = toLocalDateTime(System_instance.q1m(), Companion_getInstance_0().z1n());
|
|
6651
|
-
|
|
6841
|
+
var tmp = '' + time + ' ' + ('' + this.type + ' ') + ('' + this.tag + ' ');
|
|
6842
|
+
// Inline function 'kotlin.takeUnless' call
|
|
6843
|
+
var this_0 = '' + this.message + ' ';
|
|
6844
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
6845
|
+
var tmp_0;
|
|
6846
|
+
// Inline function 'com.logic.utils.logger.outputs.LoggerOutputDataDto.toMessageLog.<anonymous>' call
|
|
6847
|
+
// Inline function 'kotlin.text.isNullOrEmpty' call
|
|
6848
|
+
var this_1 = this.message;
|
|
6849
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
6850
|
+
if (!(this_1 == null ? true : charSequenceLength(this_1) === 0)) {
|
|
6851
|
+
tmp_0 = this_0;
|
|
6852
|
+
} else {
|
|
6853
|
+
tmp_0 = null;
|
|
6854
|
+
}
|
|
6855
|
+
var tmp_1 = tmp + tmp_0;
|
|
6856
|
+
// Inline function 'kotlin.takeUnless' call
|
|
6857
|
+
var this_2 = '' + this.stackTrace;
|
|
6858
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
6859
|
+
var tmp_2;
|
|
6860
|
+
// Inline function 'com.logic.utils.logger.outputs.LoggerOutputDataDto.toMessageLog.<anonymous>' call
|
|
6861
|
+
// Inline function 'kotlin.text.isNullOrEmpty' call
|
|
6862
|
+
var this_3 = this.stackTrace;
|
|
6863
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
6864
|
+
if (!(this_3 == null ? true : charSequenceLength(this_3) === 0)) {
|
|
6865
|
+
tmp_2 = this_2;
|
|
6866
|
+
} else {
|
|
6867
|
+
tmp_2 = null;
|
|
6868
|
+
}
|
|
6869
|
+
return tmp_1 + tmp_2;
|
|
6652
6870
|
};
|
|
6653
6871
|
protoOf(LoggerOutputDataDto).cd = function () {
|
|
6654
6872
|
return this.type;
|
|
@@ -6659,10 +6877,10 @@
|
|
|
6659
6877
|
protoOf(LoggerOutputDataDto).qh = function () {
|
|
6660
6878
|
return this.message;
|
|
6661
6879
|
};
|
|
6662
|
-
protoOf(LoggerOutputDataDto).
|
|
6880
|
+
protoOf(LoggerOutputDataDto).q2k = function () {
|
|
6663
6881
|
return this.stackTrace;
|
|
6664
6882
|
};
|
|
6665
|
-
protoOf(LoggerOutputDataDto).
|
|
6883
|
+
protoOf(LoggerOutputDataDto).a30 = function (type, tag, message, stackTrace) {
|
|
6666
6884
|
return new LoggerOutputDataDto(type, tag, message, stackTrace);
|
|
6667
6885
|
};
|
|
6668
6886
|
protoOf(LoggerOutputDataDto).copy = function (type, tag, message, stackTrace, $super) {
|
|
@@ -6670,7 +6888,7 @@
|
|
|
6670
6888
|
tag = tag === VOID ? this.tag : tag;
|
|
6671
6889
|
message = message === VOID ? this.message : message;
|
|
6672
6890
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
6673
|
-
return this.
|
|
6891
|
+
return this.a30(type, tag, message, stackTrace);
|
|
6674
6892
|
};
|
|
6675
6893
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
6676
6894
|
return 'LoggerOutputDataDto(type=' + this.type + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -6700,17 +6918,17 @@
|
|
|
6700
6918
|
};
|
|
6701
6919
|
function PlatformLogger() {
|
|
6702
6920
|
}
|
|
6703
|
-
protoOf(PlatformLogger).
|
|
6921
|
+
protoOf(PlatformLogger).c2z = function (tag, msg) {
|
|
6704
6922
|
console.log(getLogTag(tag) + ': ' + msg);
|
|
6705
6923
|
};
|
|
6706
|
-
protoOf(PlatformLogger).
|
|
6924
|
+
protoOf(PlatformLogger).d2z = function (tag, msg, exception) {
|
|
6707
6925
|
if (!(exception == null)) {
|
|
6708
6926
|
console.error(getLogTag(tag) + ': ' + msg + ', exception: ' + exception);
|
|
6709
6927
|
} else {
|
|
6710
6928
|
console.error(getLogTag(tag) + ': ' + msg);
|
|
6711
6929
|
}
|
|
6712
6930
|
};
|
|
6713
|
-
protoOf(PlatformLogger).
|
|
6931
|
+
protoOf(PlatformLogger).e2z = function (tag, msg) {
|
|
6714
6932
|
console.warn(getLogTag(tag) + ': ' + msg);
|
|
6715
6933
|
};
|
|
6716
6934
|
//region block: post-declaration
|
|
@@ -6723,83 +6941,85 @@
|
|
|
6723
6941
|
protoOf($serializer_3).av = typeParametersSerializers;
|
|
6724
6942
|
protoOf($serializer_4).av = typeParametersSerializers;
|
|
6725
6943
|
defineProp(protoOf(GameUserInfo), 'playerId', function () {
|
|
6726
|
-
return this.
|
|
6944
|
+
return this.x2k();
|
|
6727
6945
|
});
|
|
6728
6946
|
defineProp(protoOf(PlayerIndex), 'playerId', function () {
|
|
6729
|
-
return this.
|
|
6947
|
+
return this.x2k();
|
|
6730
6948
|
});
|
|
6731
|
-
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).
|
|
6732
|
-
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).
|
|
6733
|
-
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).
|
|
6734
|
-
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).
|
|
6735
|
-
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).
|
|
6736
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).
|
|
6737
|
-
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).
|
|
6738
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).
|
|
6949
|
+
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).g2n);
|
|
6950
|
+
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).h2n);
|
|
6951
|
+
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).i2n);
|
|
6952
|
+
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).j2n);
|
|
6953
|
+
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).k2n);
|
|
6954
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).l2n);
|
|
6955
|
+
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).m2n);
|
|
6956
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).n2n);
|
|
6957
|
+
defineProp(protoOf(PlayerConnectionState), 'isClientDisconnectReason', protoOf(PlayerConnectionState).o2n);
|
|
6958
|
+
defineProp(protoOf(PlayerConnectionState), 'isServerDisconnectReason', protoOf(PlayerConnectionState).p2n);
|
|
6739
6959
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).g9);
|
|
6740
6960
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).h9);
|
|
6741
6961
|
defineProp(protoOf(PlayerLuckyFactor), 'playerId', function () {
|
|
6742
|
-
return this.
|
|
6962
|
+
return this.x2k();
|
|
6743
6963
|
});
|
|
6744
|
-
defineProp(protoOf(RulesSetType), 'isCustom', protoOf(RulesSetType).
|
|
6964
|
+
defineProp(protoOf(RulesSetType), 'isCustom', protoOf(RulesSetType).o2p);
|
|
6745
6965
|
defineProp(protoOf(RulesSetType), 'name', protoOf(RulesSetType).g9);
|
|
6746
6966
|
defineProp(protoOf(RulesSetType), 'ordinal', protoOf(RulesSetType).h9);
|
|
6747
|
-
protoOf(BufferedActionDto).
|
|
6967
|
+
protoOf(BufferedActionDto).q2p = get_actionTag;
|
|
6748
6968
|
defineProp(protoOf(BufferedActionDto), 'actionTag', function () {
|
|
6749
|
-
return this.
|
|
6969
|
+
return this.q2p();
|
|
6750
6970
|
});
|
|
6751
6971
|
protoOf($serializer_5).av = typeParametersSerializers;
|
|
6752
6972
|
protoOf($serializer_6).av = typeParametersSerializers;
|
|
6753
6973
|
protoOf($serializer_7).av = typeParametersSerializers;
|
|
6754
6974
|
protoOf($serializer_8).av = typeParametersSerializers;
|
|
6755
|
-
protoOf(AsyncProviderImpl).
|
|
6756
|
-
protoOf(AsyncProviderImpl).
|
|
6757
|
-
protoOf(AsyncProviderImpl).
|
|
6758
|
-
protoOf(AsyncProviderImpl).
|
|
6759
|
-
protoOf(TimerAction).
|
|
6975
|
+
protoOf(AsyncProviderImpl).v2r = launchMain$default;
|
|
6976
|
+
protoOf(AsyncProviderImpl).r2r = launchDefault$default;
|
|
6977
|
+
protoOf(AsyncProviderImpl).p2r = launchUnconfinedWithLock$default;
|
|
6978
|
+
protoOf(AsyncProviderImpl).t2r = launchDefaultWithLock$default;
|
|
6979
|
+
protoOf(TimerAction).q2p = get_actionTag;
|
|
6760
6980
|
defineProp(protoOf(TimerAction), 'actionTag', function () {
|
|
6761
|
-
return this.
|
|
6981
|
+
return this.q2p();
|
|
6762
6982
|
});
|
|
6763
6983
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
6764
|
-
return this.
|
|
6984
|
+
return this.q2p();
|
|
6765
6985
|
});
|
|
6766
6986
|
defineProp(protoOf(TimerTickAction), 'actionTag', function () {
|
|
6767
|
-
return this.
|
|
6987
|
+
return this.q2p();
|
|
6768
6988
|
});
|
|
6769
6989
|
protoOf(StopTimerAction).notValidateWhenFinishing = notValidateWhenFinishing;
|
|
6770
6990
|
protoOf(StopTimerAction).notValidateWhenFinished = notValidateWhenFinished;
|
|
6771
6991
|
defineProp(protoOf(StopTimerAction), 'actionTag', function () {
|
|
6772
|
-
return this.
|
|
6992
|
+
return this.q2p();
|
|
6773
6993
|
});
|
|
6774
6994
|
defineProp(protoOf(createStore$2), 'store', function () {
|
|
6775
|
-
return this.
|
|
6995
|
+
return this.q2y();
|
|
6776
6996
|
});
|
|
6777
6997
|
defineProp(protoOf(createStore$2), 'state', function () {
|
|
6778
6998
|
return this.i1r();
|
|
6779
6999
|
});
|
|
6780
7000
|
defineProp(protoOf(createStore$2), 'dispatch', function () {
|
|
6781
|
-
return this.
|
|
7001
|
+
return this.s2y();
|
|
6782
7002
|
}, function (value) {
|
|
6783
|
-
this.
|
|
7003
|
+
this.r2y(value);
|
|
6784
7004
|
});
|
|
6785
7005
|
defineProp(protoOf(createStore$2), 'replaceReducer', function () {
|
|
6786
|
-
return this.
|
|
7006
|
+
return this.t2y();
|
|
6787
7007
|
});
|
|
6788
7008
|
defineProp(protoOf(createStore$2), 'observe', function () {
|
|
6789
|
-
return this.
|
|
7009
|
+
return this.u2y();
|
|
6790
7010
|
});
|
|
6791
|
-
protoOf(ActionTypes).
|
|
7011
|
+
protoOf(ActionTypes).q2p = get_actionTag;
|
|
6792
7012
|
defineProp(protoOf(ActionTypes), 'actionTag', function () {
|
|
6793
|
-
return this.
|
|
7013
|
+
return this.q2p();
|
|
6794
7014
|
});
|
|
6795
7015
|
defineProp(protoOf(INIT), 'actionTag', function () {
|
|
6796
|
-
return this.
|
|
7016
|
+
return this.q2p();
|
|
6797
7017
|
});
|
|
6798
7018
|
defineProp(protoOf(REPLACE), 'actionTag', function () {
|
|
6799
|
-
return this.
|
|
7019
|
+
return this.q2p();
|
|
6800
7020
|
});
|
|
6801
|
-
protoOf(middleware$1).
|
|
6802
|
-
protoOf(combineReducers$1).
|
|
7021
|
+
protoOf(middleware$1).e2v = canHandle;
|
|
7022
|
+
protoOf(combineReducers$1).e2v = canHandle_0;
|
|
6803
7023
|
protoOf(CombinedGameLogger).d = d;
|
|
6804
7024
|
protoOf(CombinedGameLogger).e = e;
|
|
6805
7025
|
protoOf(CombinedGameLogger).w = w;
|
|
@@ -6807,9 +7027,9 @@
|
|
|
6807
7027
|
protoOf(PlatformGameLogger).e = e;
|
|
6808
7028
|
protoOf(PlatformGameLogger).w = w;
|
|
6809
7029
|
defineProp(protoOf(PlatformGameLogger), 'enabled', function () {
|
|
6810
|
-
return this.
|
|
7030
|
+
return this.r2z();
|
|
6811
7031
|
}, function (value) {
|
|
6812
|
-
this.
|
|
7032
|
+
this.q2z(value);
|
|
6813
7033
|
});
|
|
6814
7034
|
defineProp(protoOf(LogType), 'name', protoOf(LogType).g9);
|
|
6815
7035
|
defineProp(protoOf(LogType), 'ordinal', protoOf(LogType).h9);
|
|
@@ -6924,6 +7144,7 @@
|
|
|
6924
7144
|
defineProp($com$logic$data$models$rules.RulesSetType, 'klabor', RulesSetType_klabor_getInstance);
|
|
6925
7145
|
defineProp($com$logic$data$models$rules.RulesSetType, 'debertzCommon', RulesSetType_debertzCommon_getInstance);
|
|
6926
7146
|
defineProp($com$logic$data$models$rules.RulesSetType, 'debertzKharkiv', RulesSetType_debertzKharkiv_getInstance);
|
|
7147
|
+
defineProp($com$logic$data$models$rules.RulesSetType, 'debertzSaltivka', RulesSetType_debertzSaltivka_getInstance);
|
|
6927
7148
|
defineProp($com$logic$data$models$rules.RulesSetType, 'custom', RulesSetType_custom_getInstance);
|
|
6928
7149
|
var $com = _.com || (_.com = {});
|
|
6929
7150
|
var $com$logic = $com.logic || ($com.logic = {});
|
|
@@ -7064,76 +7285,74 @@
|
|
|
7064
7285
|
_.$_$.j2 = StopTimerAction;
|
|
7065
7286
|
_.$_$.k2 = TimerAction;
|
|
7066
7287
|
_.$_$.l2 = TimerTickAction;
|
|
7067
|
-
_.$_$.m2 =
|
|
7068
|
-
_.$_$.n2 =
|
|
7069
|
-
_.$_$.o2 =
|
|
7070
|
-
_.$_$.p2 =
|
|
7071
|
-
_.$_$.q2 =
|
|
7072
|
-
_.$_$.r2 =
|
|
7073
|
-
_.$_$.s2 =
|
|
7074
|
-
_.$_$.t2 =
|
|
7075
|
-
_.$_$.u2 =
|
|
7076
|
-
_.$_$.v2 =
|
|
7077
|
-
_.$_$.w2 =
|
|
7078
|
-
_.$_$.x2 =
|
|
7079
|
-
_.$_$.y2 =
|
|
7080
|
-
_.$_$.z2 =
|
|
7081
|
-
_.$_$.a3 =
|
|
7082
|
-
_.$_$.b3 =
|
|
7083
|
-
_.$_$.c3 =
|
|
7084
|
-
_.$_$.d3 =
|
|
7085
|
-
_.$_$.e3 =
|
|
7086
|
-
_.$_$.f3 =
|
|
7087
|
-
_.$_$.g3 =
|
|
7088
|
-
_.$_$.h3 =
|
|
7089
|
-
_.$_$.i3 =
|
|
7090
|
-
_.$_$.j3 =
|
|
7091
|
-
_.$_$.k3 =
|
|
7092
|
-
_.$_$.l3 =
|
|
7093
|
-
_.$_$.m3 =
|
|
7288
|
+
_.$_$.m2 = applyCatcher;
|
|
7289
|
+
_.$_$.n2 = applyMiddleware;
|
|
7290
|
+
_.$_$.o2 = applyThread;
|
|
7291
|
+
_.$_$.p2 = timerMiddleware;
|
|
7292
|
+
_.$_$.q2 = get_actionTag;
|
|
7293
|
+
_.$_$.r2 = Action;
|
|
7294
|
+
_.$_$.s2 = Middleware;
|
|
7295
|
+
_.$_$.t2 = Reducer;
|
|
7296
|
+
_.$_$.u2 = combineReducers;
|
|
7297
|
+
_.$_$.v2 = middleware;
|
|
7298
|
+
_.$_$.w2 = parseActionName;
|
|
7299
|
+
_.$_$.x2 = compose;
|
|
7300
|
+
_.$_$.y2 = createStore;
|
|
7301
|
+
_.$_$.z2 = GameLogger;
|
|
7302
|
+
_.$_$.a3 = LoggerPayload;
|
|
7303
|
+
_.$_$.b3 = get_entries_0;
|
|
7304
|
+
_.$_$.c3 = LoggerEnabledTrigger;
|
|
7305
|
+
_.$_$.d3 = LoggerOutputDataDto;
|
|
7306
|
+
_.$_$.e3 = LoggerOutput;
|
|
7307
|
+
_.$_$.f3 = generateMsg;
|
|
7308
|
+
_.$_$.g3 = enumToString;
|
|
7309
|
+
_.$_$.h3 = getDataClassName;
|
|
7310
|
+
_.$_$.i3 = nextTo;
|
|
7311
|
+
_.$_$.j3 = toDomainEnumSafe;
|
|
7312
|
+
_.$_$.k3 = updateItem;
|
|
7313
|
+
_.$_$.l3 = updateLastItem;
|
|
7314
|
+
_.$_$.m3 = updated;
|
|
7094
7315
|
_.$_$.n3 = PlayerConnectionState_LEFT_getInstance;
|
|
7095
7316
|
_.$_$.o3 = PlayerConnectionState_LIVE_getInstance;
|
|
7096
|
-
_.$_$.p3 =
|
|
7097
|
-
_.$_$.q3 =
|
|
7098
|
-
_.$_$.r3 =
|
|
7099
|
-
_.$_$.s3 =
|
|
7100
|
-
_.$_$.t3 =
|
|
7101
|
-
_.$_$.u3 =
|
|
7102
|
-
_.$_$.v3 =
|
|
7103
|
-
_.$_$.w3 =
|
|
7104
|
-
_.$_$.x3 =
|
|
7105
|
-
_.$_$.y3 =
|
|
7106
|
-
_.$_$.z3 =
|
|
7107
|
-
_.$_$.a4 =
|
|
7108
|
-
_.$_$.b4 =
|
|
7109
|
-
_.$_$.c4 =
|
|
7110
|
-
_.$_$.d4 =
|
|
7111
|
-
_.$_$.e4 =
|
|
7112
|
-
_.$_$.f4 =
|
|
7113
|
-
_.$_$.g4 =
|
|
7114
|
-
_.$_$.h4 =
|
|
7115
|
-
_.$_$.i4 =
|
|
7116
|
-
_.$_$.j4 =
|
|
7117
|
-
_.$_$.k4 =
|
|
7118
|
-
_.$_$.l4 =
|
|
7119
|
-
_.$_$.m4 =
|
|
7120
|
-
_.$_$.n4 =
|
|
7121
|
-
_.$_$.o4 =
|
|
7122
|
-
_.$_$.p4 =
|
|
7123
|
-
_.$_$.q4 = $
|
|
7124
|
-
_.$_$.r4 =
|
|
7125
|
-
_.$_$.s4 =
|
|
7126
|
-
_.$_$.t4 =
|
|
7127
|
-
_.$_$.u4 =
|
|
7128
|
-
_.$_$.v4 =
|
|
7129
|
-
_.$_$.w4 =
|
|
7130
|
-
_.$_$.x4 =
|
|
7131
|
-
_.$_$.y4 =
|
|
7132
|
-
_.$_$.z4 =
|
|
7133
|
-
_.$_$.a5 =
|
|
7134
|
-
_.$_$.b5 =
|
|
7135
|
-
_.$_$.c5 = Logger_getInstance;
|
|
7136
|
-
_.$_$.d5 = Toggles_instance;
|
|
7317
|
+
_.$_$.p3 = RulesSetType_belot_getInstance;
|
|
7318
|
+
_.$_$.q3 = RulesSetType_custom_getInstance;
|
|
7319
|
+
_.$_$.r3 = RulesSetType_debertzCommon_getInstance;
|
|
7320
|
+
_.$_$.s3 = RulesSetType_debertzKharkiv_getInstance;
|
|
7321
|
+
_.$_$.t3 = RulesSetType_klabor_getInstance;
|
|
7322
|
+
_.$_$.u3 = CardName_ACE_getInstance;
|
|
7323
|
+
_.$_$.v3 = CardName_DAME_getInstance;
|
|
7324
|
+
_.$_$.w3 = CardName_EIGHT_getInstance;
|
|
7325
|
+
_.$_$.x3 = CardName_JACK_getInstance;
|
|
7326
|
+
_.$_$.y3 = CardName_KING_getInstance;
|
|
7327
|
+
_.$_$.z3 = CardName_NINE_getInstance;
|
|
7328
|
+
_.$_$.a4 = CardName_SEVEN_getInstance;
|
|
7329
|
+
_.$_$.b4 = CardName_TEN_getInstance;
|
|
7330
|
+
_.$_$.c4 = TimerType_DELAY_getInstance;
|
|
7331
|
+
_.$_$.d4 = LogType_DEBUG_getInstance;
|
|
7332
|
+
_.$_$.e4 = LogType_ERROR_getInstance;
|
|
7333
|
+
_.$_$.f4 = LogType_WARN_getInstance;
|
|
7334
|
+
_.$_$.g4 = d;
|
|
7335
|
+
_.$_$.h4 = e;
|
|
7336
|
+
_.$_$.i4 = w;
|
|
7337
|
+
_.$_$.j4 = BufferedActionDto_init_$Init$;
|
|
7338
|
+
_.$_$.k4 = Companion_instance_8;
|
|
7339
|
+
_.$_$.l4 = Companion_getInstance_11;
|
|
7340
|
+
_.$_$.m4 = Companion_instance_11;
|
|
7341
|
+
_.$_$.n4 = Companion_getInstance_12;
|
|
7342
|
+
_.$_$.o4 = $serializer_getInstance_5;
|
|
7343
|
+
_.$_$.p4 = $serializer_getInstance_7;
|
|
7344
|
+
_.$_$.q4 = $serializer_getInstance_8;
|
|
7345
|
+
_.$_$.r4 = CardIndexComparator_instance;
|
|
7346
|
+
_.$_$.s4 = CardNumberComparator_instance;
|
|
7347
|
+
_.$_$.t4 = Companion_instance_18;
|
|
7348
|
+
_.$_$.u4 = Companion_getInstance_22;
|
|
7349
|
+
_.$_$.v4 = Companion_getInstance_2;
|
|
7350
|
+
_.$_$.w4 = ProcessingReason_getInstance;
|
|
7351
|
+
_.$_$.x4 = RestartGameReason_getInstance;
|
|
7352
|
+
_.$_$.y4 = Companion_getInstance_3;
|
|
7353
|
+
_.$_$.z4 = Companion_instance_21;
|
|
7354
|
+
_.$_$.a5 = Logger_getInstance;
|
|
7355
|
+
_.$_$.b5 = Toggles_instance;
|
|
7137
7356
|
//endregion
|
|
7138
7357
|
return _;
|
|
7139
7358
|
}));
|