game_client_logic_deb 1.8.411 → 1.8.413
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-ai_module.js +309 -309
- package/Logic_Debertz-core.js +663 -639
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +12913 -12486
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +47 -0
- package/Logic_Debertz-game_client.js +2606 -2606
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -277,16 +277,16 @@
|
|
|
277
277
|
initMetadataForClass(CardGrowthComparator, 'CardGrowthComparator', VOID, VOID, [Comparator]);
|
|
278
278
|
initMetadataForClass(ProcessingCard, 'ProcessingCard');
|
|
279
279
|
function launchDefault$default(context, block, $super) {
|
|
280
|
-
context = context === VOID ? this.
|
|
281
|
-
return $super === VOID ? this.
|
|
280
|
+
context = context === VOID ? this.n6a() : context;
|
|
281
|
+
return $super === VOID ? this.o6a(context, block) : $super.o6a.call(this, context, block);
|
|
282
282
|
}
|
|
283
283
|
function launchDefaultWithLock$default(context, block, $super) {
|
|
284
|
-
context = context === VOID ? this.
|
|
285
|
-
return $super === VOID ? this.
|
|
284
|
+
context = context === VOID ? this.n6a() : context;
|
|
285
|
+
return $super === VOID ? this.q6a(context, block) : $super.q6a.call(this, context, block);
|
|
286
286
|
}
|
|
287
287
|
function launchMain$default(context, block, $super) {
|
|
288
|
-
context = context === VOID ? this.
|
|
289
|
-
return $super === VOID ? this.
|
|
288
|
+
context = context === VOID ? this.n6a() : context;
|
|
289
|
+
return $super === VOID ? this.s6a(context, block) : $super.s6a.call(this, context, block);
|
|
290
290
|
}
|
|
291
291
|
initMetadataForInterface(AsyncProvider, 'AsyncProvider');
|
|
292
292
|
initMetadataForCompanion(Companion_20);
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
return false;
|
|
326
326
|
}
|
|
327
327
|
function get_isAutoStartTimer() {
|
|
328
|
-
return !this.
|
|
328
|
+
return !this.j6d() && !this.k6d();
|
|
329
329
|
}
|
|
330
330
|
initMetadataForInterface(InterceptableAction, 'InterceptableAction', VOID, VOID, [BufferedAction]);
|
|
331
331
|
initMetadataForClass(TimerAction, 'TimerAction', VOID, VOID, [Action]);
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
tmp = types;
|
|
378
378
|
}
|
|
379
379
|
types = tmp;
|
|
380
|
-
return $super === VOID ? this.
|
|
380
|
+
return $super === VOID ? this.e6h(types) : $super.e6h.call(this, types);
|
|
381
381
|
}
|
|
382
382
|
initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
383
383
|
initMetadataForCompanion(Companion_22);
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
388
388
|
//endregion
|
|
389
389
|
function GameEngineConfig() {
|
|
390
|
-
this.version = '1.8.
|
|
390
|
+
this.version = '1.8.413';
|
|
391
391
|
}
|
|
392
392
|
protoOf(GameEngineConfig).w3u = function () {
|
|
393
393
|
return this.version;
|
|
@@ -2156,31 +2156,47 @@
|
|
|
2156
2156
|
return true;
|
|
2157
2157
|
};
|
|
2158
2158
|
function Team(playerIds) {
|
|
2159
|
-
this.
|
|
2159
|
+
this.playerIds = playerIds;
|
|
2160
2160
|
}
|
|
2161
|
+
protoOf(Team).h67 = function () {
|
|
2162
|
+
return this.playerIds;
|
|
2163
|
+
};
|
|
2164
|
+
protoOf(Team).containsPlayer = function (playerId) {
|
|
2165
|
+
return this.playerIds.u1(playerId);
|
|
2166
|
+
};
|
|
2161
2167
|
protoOf(Team).i67 = function () {
|
|
2162
|
-
return this.
|
|
2168
|
+
return this.playerIds.p(0);
|
|
2163
2169
|
};
|
|
2164
2170
|
protoOf(Team).w5j = function () {
|
|
2165
|
-
return this.
|
|
2171
|
+
return this.playerIds.p(1);
|
|
2172
|
+
};
|
|
2173
|
+
protoOf(Team).oe = function () {
|
|
2174
|
+
return this.playerIds;
|
|
2175
|
+
};
|
|
2176
|
+
protoOf(Team).j67 = function (playerIds) {
|
|
2177
|
+
return new Team(playerIds);
|
|
2178
|
+
};
|
|
2179
|
+
protoOf(Team).copy = function (playerIds, $super) {
|
|
2180
|
+
playerIds = playerIds === VOID ? this.playerIds : playerIds;
|
|
2181
|
+
return $super === VOID ? this.j67(playerIds) : $super.j67.call(this, playerIds);
|
|
2166
2182
|
};
|
|
2167
2183
|
protoOf(Team).toString = function () {
|
|
2168
|
-
return 'Team(playerIds=' + toString_0(this.
|
|
2184
|
+
return 'Team(playerIds=' + toString_0(this.playerIds) + ')';
|
|
2169
2185
|
};
|
|
2170
2186
|
protoOf(Team).hashCode = function () {
|
|
2171
|
-
return hashCode(this.
|
|
2187
|
+
return hashCode(this.playerIds);
|
|
2172
2188
|
};
|
|
2173
2189
|
protoOf(Team).equals = function (other) {
|
|
2174
2190
|
if (this === other)
|
|
2175
2191
|
return true;
|
|
2176
2192
|
if (!(other instanceof Team))
|
|
2177
2193
|
return false;
|
|
2178
|
-
if (!equals(this.
|
|
2194
|
+
if (!equals(this.playerIds, other.playerIds))
|
|
2179
2195
|
return false;
|
|
2180
2196
|
return true;
|
|
2181
2197
|
};
|
|
2182
2198
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
2183
|
-
return $this.
|
|
2199
|
+
return $this.k67_1.x();
|
|
2184
2200
|
}
|
|
2185
2201
|
function TerminationGameReasonDto$Companion$_anonymous__30ivuy() {
|
|
2186
2202
|
var tmp = getKClass(TerminationGameReasonDto);
|
|
@@ -2218,7 +2234,7 @@
|
|
|
2218
2234
|
Companion_instance_12 = this;
|
|
2219
2235
|
var tmp = this;
|
|
2220
2236
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2221
|
-
tmp.
|
|
2237
|
+
tmp.k67_1 = lazy(tmp_0, TerminationGameReasonDto$Companion$_anonymous__30ivuy);
|
|
2222
2238
|
}
|
|
2223
2239
|
protoOf(Companion_10).a1c = function () {
|
|
2224
2240
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -2239,7 +2255,7 @@
|
|
|
2239
2255
|
Companion_getInstance_13();
|
|
2240
2256
|
}
|
|
2241
2257
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
2242
|
-
return $this.
|
|
2258
|
+
return $this.l67_1.x();
|
|
2243
2259
|
}
|
|
2244
2260
|
function ProcessingReasonDto$_anonymous__78na4x() {
|
|
2245
2261
|
var tmp = ProcessingReasonDto_getInstance();
|
|
@@ -2254,7 +2270,7 @@
|
|
|
2254
2270
|
TerminationGameReasonDto.call(this);
|
|
2255
2271
|
var tmp = this;
|
|
2256
2272
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2257
|
-
tmp.
|
|
2273
|
+
tmp.l67_1 = lazy(tmp_0, ProcessingReasonDto$_anonymous__78na4x);
|
|
2258
2274
|
}
|
|
2259
2275
|
protoOf(ProcessingReasonDto).a1c = function () {
|
|
2260
2276
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -2291,19 +2307,19 @@
|
|
|
2291
2307
|
$serializer_instance_1 = this;
|
|
2292
2308
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
2293
2309
|
tmp0_serialDesc.gz('reason', false);
|
|
2294
|
-
this.
|
|
2310
|
+
this.m67_1 = tmp0_serialDesc;
|
|
2295
2311
|
}
|
|
2296
|
-
protoOf($serializer_1).
|
|
2297
|
-
var tmp0_desc = this.
|
|
2312
|
+
protoOf($serializer_1).n67 = function (encoder, value) {
|
|
2313
|
+
var tmp0_desc = this.m67_1;
|
|
2298
2314
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
2299
2315
|
tmp1_output.dt(tmp0_desc, 0, value.reason);
|
|
2300
2316
|
tmp1_output.pr(tmp0_desc);
|
|
2301
2317
|
};
|
|
2302
2318
|
protoOf($serializer_1).co = function (encoder, value) {
|
|
2303
|
-
return this.
|
|
2319
|
+
return this.n67(encoder, value instanceof GameErrorReasonDto ? value : THROW_CCE());
|
|
2304
2320
|
};
|
|
2305
2321
|
protoOf($serializer_1).do = function (decoder) {
|
|
2306
|
-
var tmp0_desc = this.
|
|
2322
|
+
var tmp0_desc = this.m67_1;
|
|
2307
2323
|
var tmp1_flag = true;
|
|
2308
2324
|
var tmp2_index = 0;
|
|
2309
2325
|
var tmp3_bitMask0 = 0;
|
|
@@ -2331,7 +2347,7 @@
|
|
|
2331
2347
|
return GameErrorReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2332
2348
|
};
|
|
2333
2349
|
protoOf($serializer_1).bo = function () {
|
|
2334
|
-
return this.
|
|
2350
|
+
return this.m67_1;
|
|
2335
2351
|
};
|
|
2336
2352
|
protoOf($serializer_1).vz = function () {
|
|
2337
2353
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2347,7 +2363,7 @@
|
|
|
2347
2363
|
}
|
|
2348
2364
|
function GameErrorReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2349
2365
|
if (!(1 === (1 & seen0))) {
|
|
2350
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().
|
|
2366
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().m67_1);
|
|
2351
2367
|
}
|
|
2352
2368
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2353
2369
|
$this.reason = reason;
|
|
@@ -2388,19 +2404,19 @@
|
|
|
2388
2404
|
$serializer_instance_2 = this;
|
|
2389
2405
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
2390
2406
|
tmp0_serialDesc.gz('reason', false);
|
|
2391
|
-
this.
|
|
2407
|
+
this.o67_1 = tmp0_serialDesc;
|
|
2392
2408
|
}
|
|
2393
|
-
protoOf($serializer_2).
|
|
2394
|
-
var tmp0_desc = this.
|
|
2409
|
+
protoOf($serializer_2).p67 = function (encoder, value) {
|
|
2410
|
+
var tmp0_desc = this.o67_1;
|
|
2395
2411
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
2396
|
-
tmp1_output.dt(tmp0_desc, 0, value.
|
|
2412
|
+
tmp1_output.dt(tmp0_desc, 0, value.q67_1);
|
|
2397
2413
|
tmp1_output.pr(tmp0_desc);
|
|
2398
2414
|
};
|
|
2399
2415
|
protoOf($serializer_2).co = function (encoder, value) {
|
|
2400
|
-
return this.
|
|
2416
|
+
return this.p67(encoder, value instanceof GameFinishedReasonDto ? value : THROW_CCE());
|
|
2401
2417
|
};
|
|
2402
2418
|
protoOf($serializer_2).do = function (decoder) {
|
|
2403
|
-
var tmp0_desc = this.
|
|
2419
|
+
var tmp0_desc = this.o67_1;
|
|
2404
2420
|
var tmp1_flag = true;
|
|
2405
2421
|
var tmp2_index = 0;
|
|
2406
2422
|
var tmp3_bitMask0 = 0;
|
|
@@ -2428,7 +2444,7 @@
|
|
|
2428
2444
|
return GameFinishedReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2429
2445
|
};
|
|
2430
2446
|
protoOf($serializer_2).bo = function () {
|
|
2431
|
-
return this.
|
|
2447
|
+
return this.o67_1;
|
|
2432
2448
|
};
|
|
2433
2449
|
protoOf($serializer_2).vz = function () {
|
|
2434
2450
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2444,10 +2460,10 @@
|
|
|
2444
2460
|
}
|
|
2445
2461
|
function GameFinishedReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2446
2462
|
if (!(1 === (1 & seen0))) {
|
|
2447
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().
|
|
2463
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().o67_1);
|
|
2448
2464
|
}
|
|
2449
2465
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2450
|
-
$this.
|
|
2466
|
+
$this.q67_1 = reason;
|
|
2451
2467
|
return $this;
|
|
2452
2468
|
}
|
|
2453
2469
|
function GameFinishedReasonDto_init_$Create$(seen0, reason, serializationConstructorMarker) {
|
|
@@ -2455,20 +2471,20 @@
|
|
|
2455
2471
|
}
|
|
2456
2472
|
function GameFinishedReasonDto(reason) {
|
|
2457
2473
|
TerminationGameReasonDto.call(this);
|
|
2458
|
-
this.
|
|
2474
|
+
this.q67_1 = reason;
|
|
2459
2475
|
}
|
|
2460
2476
|
protoOf(GameFinishedReasonDto).toString = function () {
|
|
2461
|
-
return 'GameFinishedReasonDto(reason=' + this.
|
|
2477
|
+
return 'GameFinishedReasonDto(reason=' + this.q67_1 + ')';
|
|
2462
2478
|
};
|
|
2463
2479
|
protoOf(GameFinishedReasonDto).hashCode = function () {
|
|
2464
|
-
return getStringHashCode(this.
|
|
2480
|
+
return getStringHashCode(this.q67_1);
|
|
2465
2481
|
};
|
|
2466
2482
|
protoOf(GameFinishedReasonDto).equals = function (other) {
|
|
2467
2483
|
if (this === other)
|
|
2468
2484
|
return true;
|
|
2469
2485
|
if (!(other instanceof GameFinishedReasonDto))
|
|
2470
2486
|
return false;
|
|
2471
|
-
if (!(this.
|
|
2487
|
+
if (!(this.q67_1 === other.q67_1))
|
|
2472
2488
|
return false;
|
|
2473
2489
|
return true;
|
|
2474
2490
|
};
|
|
@@ -2482,19 +2498,19 @@
|
|
|
2482
2498
|
$serializer_instance_3 = this;
|
|
2483
2499
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
2484
2500
|
tmp0_serialDesc.gz('playerId', false);
|
|
2485
|
-
this.
|
|
2501
|
+
this.r67_1 = tmp0_serialDesc;
|
|
2486
2502
|
}
|
|
2487
|
-
protoOf($serializer_3).
|
|
2488
|
-
var tmp0_desc = this.
|
|
2503
|
+
protoOf($serializer_3).s67 = function (encoder, value) {
|
|
2504
|
+
var tmp0_desc = this.r67_1;
|
|
2489
2505
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
2490
|
-
tmp1_output.dt(tmp0_desc, 0, value.
|
|
2506
|
+
tmp1_output.dt(tmp0_desc, 0, value.t67_1);
|
|
2491
2507
|
tmp1_output.pr(tmp0_desc);
|
|
2492
2508
|
};
|
|
2493
2509
|
protoOf($serializer_3).co = function (encoder, value) {
|
|
2494
|
-
return this.
|
|
2510
|
+
return this.s67(encoder, value instanceof PlayerExitReasonDto ? value : THROW_CCE());
|
|
2495
2511
|
};
|
|
2496
2512
|
protoOf($serializer_3).do = function (decoder) {
|
|
2497
|
-
var tmp0_desc = this.
|
|
2513
|
+
var tmp0_desc = this.r67_1;
|
|
2498
2514
|
var tmp1_flag = true;
|
|
2499
2515
|
var tmp2_index = 0;
|
|
2500
2516
|
var tmp3_bitMask0 = 0;
|
|
@@ -2522,7 +2538,7 @@
|
|
|
2522
2538
|
return PlayerExitReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2523
2539
|
};
|
|
2524
2540
|
protoOf($serializer_3).bo = function () {
|
|
2525
|
-
return this.
|
|
2541
|
+
return this.r67_1;
|
|
2526
2542
|
};
|
|
2527
2543
|
protoOf($serializer_3).vz = function () {
|
|
2528
2544
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2538,10 +2554,10 @@
|
|
|
2538
2554
|
}
|
|
2539
2555
|
function PlayerExitReasonDto_init_$Init$(seen0, playerId, serializationConstructorMarker, $this) {
|
|
2540
2556
|
if (!(1 === (1 & seen0))) {
|
|
2541
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().
|
|
2557
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().r67_1);
|
|
2542
2558
|
}
|
|
2543
2559
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2544
|
-
$this.
|
|
2560
|
+
$this.t67_1 = playerId;
|
|
2545
2561
|
return $this;
|
|
2546
2562
|
}
|
|
2547
2563
|
function PlayerExitReasonDto_init_$Create$(seen0, playerId, serializationConstructorMarker) {
|
|
@@ -2549,20 +2565,20 @@
|
|
|
2549
2565
|
}
|
|
2550
2566
|
function PlayerExitReasonDto(playerId) {
|
|
2551
2567
|
TerminationGameReasonDto.call(this);
|
|
2552
|
-
this.
|
|
2568
|
+
this.t67_1 = playerId;
|
|
2553
2569
|
}
|
|
2554
2570
|
protoOf(PlayerExitReasonDto).toString = function () {
|
|
2555
|
-
return 'PlayerExitReasonDto(playerId=' + this.
|
|
2571
|
+
return 'PlayerExitReasonDto(playerId=' + this.t67_1 + ')';
|
|
2556
2572
|
};
|
|
2557
2573
|
protoOf(PlayerExitReasonDto).hashCode = function () {
|
|
2558
|
-
return getStringHashCode(this.
|
|
2574
|
+
return getStringHashCode(this.t67_1);
|
|
2559
2575
|
};
|
|
2560
2576
|
protoOf(PlayerExitReasonDto).equals = function (other) {
|
|
2561
2577
|
if (this === other)
|
|
2562
2578
|
return true;
|
|
2563
2579
|
if (!(other instanceof PlayerExitReasonDto))
|
|
2564
2580
|
return false;
|
|
2565
|
-
if (!(this.
|
|
2581
|
+
if (!(this.t67_1 === other.t67_1))
|
|
2566
2582
|
return false;
|
|
2567
2583
|
return true;
|
|
2568
2584
|
};
|
|
@@ -2577,20 +2593,20 @@
|
|
|
2577
2593
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
2578
2594
|
tmp0_serialDesc.gz('playerId', false);
|
|
2579
2595
|
tmp0_serialDesc.gz('tag', false);
|
|
2580
|
-
this.
|
|
2596
|
+
this.u67_1 = tmp0_serialDesc;
|
|
2581
2597
|
}
|
|
2582
|
-
protoOf($serializer_4).
|
|
2583
|
-
var tmp0_desc = this.
|
|
2598
|
+
protoOf($serializer_4).v67 = function (encoder, value) {
|
|
2599
|
+
var tmp0_desc = this.u67_1;
|
|
2584
2600
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
2585
|
-
tmp1_output.dt(tmp0_desc, 0, value.
|
|
2586
|
-
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2601
|
+
tmp1_output.dt(tmp0_desc, 0, value.w67_1);
|
|
2602
|
+
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.x67_1);
|
|
2587
2603
|
tmp1_output.pr(tmp0_desc);
|
|
2588
2604
|
};
|
|
2589
2605
|
protoOf($serializer_4).co = function (encoder, value) {
|
|
2590
|
-
return this.
|
|
2606
|
+
return this.v67(encoder, value instanceof PlayerLostConnectionReasonDto ? value : THROW_CCE());
|
|
2591
2607
|
};
|
|
2592
2608
|
protoOf($serializer_4).do = function (decoder) {
|
|
2593
|
-
var tmp0_desc = this.
|
|
2609
|
+
var tmp0_desc = this.u67_1;
|
|
2594
2610
|
var tmp1_flag = true;
|
|
2595
2611
|
var tmp2_index = 0;
|
|
2596
2612
|
var tmp3_bitMask0 = 0;
|
|
@@ -2625,7 +2641,7 @@
|
|
|
2625
2641
|
return PlayerLostConnectionReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2626
2642
|
};
|
|
2627
2643
|
protoOf($serializer_4).bo = function () {
|
|
2628
|
-
return this.
|
|
2644
|
+
return this.u67_1;
|
|
2629
2645
|
};
|
|
2630
2646
|
protoOf($serializer_4).vz = function () {
|
|
2631
2647
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2641,11 +2657,11 @@
|
|
|
2641
2657
|
}
|
|
2642
2658
|
function PlayerLostConnectionReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2643
2659
|
if (!(3 === (3 & seen0))) {
|
|
2644
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().
|
|
2660
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().u67_1);
|
|
2645
2661
|
}
|
|
2646
2662
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2647
|
-
$this.
|
|
2648
|
-
$this.
|
|
2663
|
+
$this.w67_1 = playerId;
|
|
2664
|
+
$this.x67_1 = tag;
|
|
2649
2665
|
return $this;
|
|
2650
2666
|
}
|
|
2651
2667
|
function PlayerLostConnectionReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2653,15 +2669,15 @@
|
|
|
2653
2669
|
}
|
|
2654
2670
|
function PlayerLostConnectionReasonDto(playerId, tag) {
|
|
2655
2671
|
TerminationGameReasonDto.call(this);
|
|
2656
|
-
this.
|
|
2657
|
-
this.
|
|
2672
|
+
this.w67_1 = playerId;
|
|
2673
|
+
this.x67_1 = tag;
|
|
2658
2674
|
}
|
|
2659
2675
|
protoOf(PlayerLostConnectionReasonDto).toString = function () {
|
|
2660
|
-
return 'PlayerLostConnectionReasonDto(playerId=' + this.
|
|
2676
|
+
return 'PlayerLostConnectionReasonDto(playerId=' + this.w67_1 + ', tag=' + this.x67_1 + ')';
|
|
2661
2677
|
};
|
|
2662
2678
|
protoOf(PlayerLostConnectionReasonDto).hashCode = function () {
|
|
2663
|
-
var result = getStringHashCode(this.
|
|
2664
|
-
result = imul(result, 31) + (this.
|
|
2679
|
+
var result = getStringHashCode(this.w67_1);
|
|
2680
|
+
result = imul(result, 31) + (this.x67_1 == null ? 0 : getStringHashCode(this.x67_1)) | 0;
|
|
2665
2681
|
return result;
|
|
2666
2682
|
};
|
|
2667
2683
|
protoOf(PlayerLostConnectionReasonDto).equals = function (other) {
|
|
@@ -2669,9 +2685,9 @@
|
|
|
2669
2685
|
return true;
|
|
2670
2686
|
if (!(other instanceof PlayerLostConnectionReasonDto))
|
|
2671
2687
|
return false;
|
|
2672
|
-
if (!(this.
|
|
2688
|
+
if (!(this.w67_1 === other.w67_1))
|
|
2673
2689
|
return false;
|
|
2674
|
-
if (!(this.
|
|
2690
|
+
if (!(this.x67_1 == other.x67_1))
|
|
2675
2691
|
return false;
|
|
2676
2692
|
return true;
|
|
2677
2693
|
};
|
|
@@ -2686,20 +2702,20 @@
|
|
|
2686
2702
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
2687
2703
|
tmp0_serialDesc.gz('playerId', false);
|
|
2688
2704
|
tmp0_serialDesc.gz('tag', false);
|
|
2689
|
-
this.
|
|
2705
|
+
this.y67_1 = tmp0_serialDesc;
|
|
2690
2706
|
}
|
|
2691
|
-
protoOf($serializer_5).
|
|
2692
|
-
var tmp0_desc = this.
|
|
2707
|
+
protoOf($serializer_5).z67 = function (encoder, value) {
|
|
2708
|
+
var tmp0_desc = this.y67_1;
|
|
2693
2709
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
2694
|
-
tmp1_output.dt(tmp0_desc, 0, value.
|
|
2695
|
-
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2710
|
+
tmp1_output.dt(tmp0_desc, 0, value.a68_1);
|
|
2711
|
+
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.b68_1);
|
|
2696
2712
|
tmp1_output.pr(tmp0_desc);
|
|
2697
2713
|
};
|
|
2698
2714
|
protoOf($serializer_5).co = function (encoder, value) {
|
|
2699
|
-
return this.
|
|
2715
|
+
return this.z67(encoder, value instanceof PlayerTimeoutReasonDto ? value : THROW_CCE());
|
|
2700
2716
|
};
|
|
2701
2717
|
protoOf($serializer_5).do = function (decoder) {
|
|
2702
|
-
var tmp0_desc = this.
|
|
2718
|
+
var tmp0_desc = this.y67_1;
|
|
2703
2719
|
var tmp1_flag = true;
|
|
2704
2720
|
var tmp2_index = 0;
|
|
2705
2721
|
var tmp3_bitMask0 = 0;
|
|
@@ -2734,7 +2750,7 @@
|
|
|
2734
2750
|
return PlayerTimeoutReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2735
2751
|
};
|
|
2736
2752
|
protoOf($serializer_5).bo = function () {
|
|
2737
|
-
return this.
|
|
2753
|
+
return this.y67_1;
|
|
2738
2754
|
};
|
|
2739
2755
|
protoOf($serializer_5).vz = function () {
|
|
2740
2756
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2750,11 +2766,11 @@
|
|
|
2750
2766
|
}
|
|
2751
2767
|
function PlayerTimeoutReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2752
2768
|
if (!(3 === (3 & seen0))) {
|
|
2753
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().
|
|
2769
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().y67_1);
|
|
2754
2770
|
}
|
|
2755
2771
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2756
|
-
$this.
|
|
2757
|
-
$this.
|
|
2772
|
+
$this.a68_1 = playerId;
|
|
2773
|
+
$this.b68_1 = tag;
|
|
2758
2774
|
return $this;
|
|
2759
2775
|
}
|
|
2760
2776
|
function PlayerTimeoutReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2762,15 +2778,15 @@
|
|
|
2762
2778
|
}
|
|
2763
2779
|
function PlayerTimeoutReasonDto(playerId, tag) {
|
|
2764
2780
|
TerminationGameReasonDto.call(this);
|
|
2765
|
-
this.
|
|
2766
|
-
this.
|
|
2781
|
+
this.a68_1 = playerId;
|
|
2782
|
+
this.b68_1 = tag;
|
|
2767
2783
|
}
|
|
2768
2784
|
protoOf(PlayerTimeoutReasonDto).toString = function () {
|
|
2769
|
-
return 'PlayerTimeoutReasonDto(playerId=' + this.
|
|
2785
|
+
return 'PlayerTimeoutReasonDto(playerId=' + this.a68_1 + ', tag=' + this.b68_1 + ')';
|
|
2770
2786
|
};
|
|
2771
2787
|
protoOf(PlayerTimeoutReasonDto).hashCode = function () {
|
|
2772
|
-
var result = getStringHashCode(this.
|
|
2773
|
-
result = imul(result, 31) + (this.
|
|
2788
|
+
var result = getStringHashCode(this.a68_1);
|
|
2789
|
+
result = imul(result, 31) + (this.b68_1 == null ? 0 : getStringHashCode(this.b68_1)) | 0;
|
|
2774
2790
|
return result;
|
|
2775
2791
|
};
|
|
2776
2792
|
protoOf(PlayerTimeoutReasonDto).equals = function (other) {
|
|
@@ -2778,14 +2794,14 @@
|
|
|
2778
2794
|
return true;
|
|
2779
2795
|
if (!(other instanceof PlayerTimeoutReasonDto))
|
|
2780
2796
|
return false;
|
|
2781
|
-
if (!(this.
|
|
2797
|
+
if (!(this.a68_1 === other.a68_1))
|
|
2782
2798
|
return false;
|
|
2783
|
-
if (!(this.
|
|
2799
|
+
if (!(this.b68_1 == other.b68_1))
|
|
2784
2800
|
return false;
|
|
2785
2801
|
return true;
|
|
2786
2802
|
};
|
|
2787
2803
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
2788
|
-
return $this.
|
|
2804
|
+
return $this.c68_1.x();
|
|
2789
2805
|
}
|
|
2790
2806
|
function WaitingForConnectionReasonDto$_anonymous__hgbgp6() {
|
|
2791
2807
|
var tmp = WaitingForConnectionReasonDto_getInstance();
|
|
@@ -2800,7 +2816,7 @@
|
|
|
2800
2816
|
TerminationGameReasonDto.call(this);
|
|
2801
2817
|
var tmp = this;
|
|
2802
2818
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2803
|
-
tmp.
|
|
2819
|
+
tmp.c68_1 = lazy(tmp_0, WaitingForConnectionReasonDto$_anonymous__hgbgp6);
|
|
2804
2820
|
}
|
|
2805
2821
|
protoOf(WaitingForConnectionReasonDto).a1c = function () {
|
|
2806
2822
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -2946,20 +2962,20 @@
|
|
|
2946
2962
|
}
|
|
2947
2963
|
function mapFromDto_2(_this__u8e3s4) {
|
|
2948
2964
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2949
|
-
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.
|
|
2965
|
+
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.q67_1, get_gameFinishedReasonMapping());
|
|
2950
2966
|
return new GameFinishedReason(tmp0_elvis_lhs == null ? Reason_GAME_NOT_EXISTS_getInstance() : tmp0_elvis_lhs);
|
|
2951
2967
|
}
|
|
2952
2968
|
function mapFromDto_3(_this__u8e3s4) {
|
|
2953
2969
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2954
|
-
return new PlayerExitReason(_this__u8e3s4.
|
|
2970
|
+
return new PlayerExitReason(_this__u8e3s4.t67_1);
|
|
2955
2971
|
}
|
|
2956
2972
|
function mapFromDto_4(_this__u8e3s4) {
|
|
2957
2973
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2958
|
-
return new PlayerLostConnectionReason(_this__u8e3s4.
|
|
2974
|
+
return new PlayerLostConnectionReason(_this__u8e3s4.w67_1, _this__u8e3s4.x67_1);
|
|
2959
2975
|
}
|
|
2960
2976
|
function mapFromDto_5(_this__u8e3s4) {
|
|
2961
2977
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2962
|
-
return new PlayerTimeoutReason(_this__u8e3s4.
|
|
2978
|
+
return new PlayerTimeoutReason(_this__u8e3s4.a68_1, _this__u8e3s4.b68_1);
|
|
2963
2979
|
}
|
|
2964
2980
|
function mapFromDto_6(_this__u8e3s4) {
|
|
2965
2981
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
@@ -3020,17 +3036,17 @@
|
|
|
3020
3036
|
return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp8_rating, tmp6_isBot, tmp7_initialLuckyFactor);
|
|
3021
3037
|
}
|
|
3022
3038
|
function mapFromDto_8(_this__u8e3s4) {
|
|
3023
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
3024
|
-
var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.
|
|
3025
|
-
var tmp1_elvis_lhs = _this__u8e3s4.
|
|
3026
|
-
var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.
|
|
3027
|
-
var tmp2_elvis_lhs = _this__u8e3s4.
|
|
3028
|
-
var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.
|
|
3029
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
3030
|
-
return new GameUserInfo(tmp, tmp_0, tmp_1, tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs, _this__u8e3s4.
|
|
3039
|
+
var tmp0_elvis_lhs = _this__u8e3s4.d68_1;
|
|
3040
|
+
var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.e68_1) : tmp0_elvis_lhs;
|
|
3041
|
+
var tmp1_elvis_lhs = _this__u8e3s4.f68_1;
|
|
3042
|
+
var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.g68_1) : tmp1_elvis_lhs;
|
|
3043
|
+
var tmp2_elvis_lhs = _this__u8e3s4.h68_1;
|
|
3044
|
+
var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.i68_1 : tmp2_elvis_lhs;
|
|
3045
|
+
var tmp3_elvis_lhs = _this__u8e3s4.k68_1;
|
|
3046
|
+
return new GameUserInfo(tmp, tmp_0, tmp_1, tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs, _this__u8e3s4.l68_1, _this__u8e3s4.j68_1);
|
|
3031
3047
|
}
|
|
3032
3048
|
function mapFromDto_9(_this__u8e3s4) {
|
|
3033
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
3049
|
+
var tmp0_safe_receiver = _this__u8e3s4.m68_1;
|
|
3034
3050
|
var tmp;
|
|
3035
3051
|
if (tmp0_safe_receiver == null) {
|
|
3036
3052
|
tmp = null;
|
|
@@ -3039,7 +3055,7 @@
|
|
|
3039
3055
|
tmp = Companion_getInstance_0().mk(tmp0_safe_receiver);
|
|
3040
3056
|
}
|
|
3041
3057
|
var tmp5_startFromTime = tmp;
|
|
3042
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
3058
|
+
var tmp1_safe_receiver = _this__u8e3s4.o68_1;
|
|
3043
3059
|
var tmp_0;
|
|
3044
3060
|
if (tmp1_safe_receiver == null) {
|
|
3045
3061
|
tmp_0 = null;
|
|
@@ -3048,7 +3064,7 @@
|
|
|
3048
3064
|
tmp_0 = Companion_getInstance_0().mk(tmp1_safe_receiver);
|
|
3049
3065
|
}
|
|
3050
3066
|
var tmp6_waitPlayerUntilTime = tmp_0;
|
|
3051
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
3067
|
+
var tmp2_safe_receiver = _this__u8e3s4.n68_1;
|
|
3052
3068
|
var tmp_1;
|
|
3053
3069
|
if (tmp2_safe_receiver == null) {
|
|
3054
3070
|
tmp_1 = null;
|
|
@@ -3057,11 +3073,11 @@
|
|
|
3057
3073
|
tmp_1 = Companion_getInstance_0().mk(tmp2_safe_receiver);
|
|
3058
3074
|
}
|
|
3059
3075
|
var tmp7_playerTurnTimeout = tmp_1;
|
|
3060
|
-
var tmp8_state = _this__u8e3s4.
|
|
3061
|
-
var tmp9_tag = _this__u8e3s4.
|
|
3062
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
3076
|
+
var tmp8_state = _this__u8e3s4.p68_1;
|
|
3077
|
+
var tmp9_tag = _this__u8e3s4.r68_1;
|
|
3078
|
+
var tmp3_elvis_lhs = _this__u8e3s4.q68_1;
|
|
3063
3079
|
var tmp10_ready = tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs;
|
|
3064
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
3080
|
+
var tmp4_safe_receiver = _this__u8e3s4.s68_1;
|
|
3065
3081
|
var tmp11_connection = tmp4_safe_receiver == null ? null : mapFromDto_10(tmp4_safe_receiver);
|
|
3066
3082
|
return new PlayerState(tmp5_startFromTime, tmp7_playerTurnTimeout, tmp6_waitPlayerUntilTime, tmp8_state, tmp10_ready, tmp9_tag, tmp11_connection);
|
|
3067
3083
|
}
|
|
@@ -3080,7 +3096,7 @@
|
|
|
3080
3096
|
return new PlayerStateDto(tmp4_startFrom, tmp6_playerTurnTimeout, tmp5_waitPlayerUntilTime, tmp7_state, tmp9_ready, tmp8_tag, tmp10_connection);
|
|
3081
3097
|
}
|
|
3082
3098
|
function mapFromDto_10(_this__u8e3s4) {
|
|
3083
|
-
return new PlayerConnection(_this__u8e3s4.
|
|
3099
|
+
return new PlayerConnection(_this__u8e3s4.t68_1, Companion_getInstance_0().mk(_this__u8e3s4.u68_1), Companion_getInstance().gk(_this__u8e3s4.v68_1));
|
|
3084
3100
|
}
|
|
3085
3101
|
function mapToDto_10(_this__u8e3s4) {
|
|
3086
3102
|
return new PlayerConnectionDto(_this__u8e3s4.u65_1, _this__u8e3s4.v65_1.toString(), Duration__toIsoString_impl_9h6wsm(_this__u8e3s4.w65_1));
|
|
@@ -3103,39 +3119,39 @@
|
|
|
3103
3119
|
tmp0_serialDesc.gz('rating', false);
|
|
3104
3120
|
tmp0_serialDesc.gz('is_bot', false);
|
|
3105
3121
|
tmp0_serialDesc.gz('lucky_factor', false);
|
|
3106
|
-
this.
|
|
3122
|
+
this.w68_1 = tmp0_serialDesc;
|
|
3107
3123
|
}
|
|
3108
|
-
protoOf($serializer_6).
|
|
3109
|
-
var tmp0_desc = this.
|
|
3124
|
+
protoOf($serializer_6).x68 = function (encoder, value) {
|
|
3125
|
+
var tmp0_desc = this.w68_1;
|
|
3110
3126
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
3111
|
-
if (tmp1_output.lt(tmp0_desc, 0) ? true : !(value.
|
|
3112
|
-
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
3127
|
+
if (tmp1_output.lt(tmp0_desc, 0) ? true : !(value.d68_1 == null)) {
|
|
3128
|
+
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.d68_1);
|
|
3113
3129
|
}
|
|
3114
|
-
if (tmp1_output.lt(tmp0_desc, 1) ? true : !(value.
|
|
3115
|
-
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
3130
|
+
if (tmp1_output.lt(tmp0_desc, 1) ? true : !(value.e68_1 == null)) {
|
|
3131
|
+
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.e68_1);
|
|
3116
3132
|
}
|
|
3117
|
-
if (tmp1_output.lt(tmp0_desc, 2) ? true : !(value.
|
|
3118
|
-
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
3133
|
+
if (tmp1_output.lt(tmp0_desc, 2) ? true : !(value.f68_1 == null)) {
|
|
3134
|
+
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.f68_1);
|
|
3119
3135
|
}
|
|
3120
|
-
if (tmp1_output.lt(tmp0_desc, 3) ? true : !(value.
|
|
3121
|
-
tmp1_output.ht(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
3136
|
+
if (tmp1_output.lt(tmp0_desc, 3) ? true : !(value.g68_1 == null)) {
|
|
3137
|
+
tmp1_output.ht(tmp0_desc, 3, StringSerializer_getInstance(), value.g68_1);
|
|
3122
3138
|
}
|
|
3123
|
-
if (tmp1_output.lt(tmp0_desc, 4) ? true : !(value.
|
|
3124
|
-
tmp1_output.ht(tmp0_desc, 4, StringSerializer_getInstance(), value.
|
|
3139
|
+
if (tmp1_output.lt(tmp0_desc, 4) ? true : !(value.h68_1 == null)) {
|
|
3140
|
+
tmp1_output.ht(tmp0_desc, 4, StringSerializer_getInstance(), value.h68_1);
|
|
3125
3141
|
}
|
|
3126
|
-
if (tmp1_output.lt(tmp0_desc, 5) ? true : !(value.
|
|
3127
|
-
tmp1_output.ht(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
3142
|
+
if (tmp1_output.lt(tmp0_desc, 5) ? true : !(value.i68_1 == null)) {
|
|
3143
|
+
tmp1_output.ht(tmp0_desc, 5, StringSerializer_getInstance(), value.i68_1);
|
|
3128
3144
|
}
|
|
3129
|
-
tmp1_output.ht(tmp0_desc, 6, DoubleSerializer_getInstance(), value.
|
|
3130
|
-
tmp1_output.ht(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
3131
|
-
tmp1_output.ht(tmp0_desc, 8, FloatSerializer_getInstance(), value.
|
|
3145
|
+
tmp1_output.ht(tmp0_desc, 6, DoubleSerializer_getInstance(), value.j68_1);
|
|
3146
|
+
tmp1_output.ht(tmp0_desc, 7, BooleanSerializer_getInstance(), value.k68_1);
|
|
3147
|
+
tmp1_output.ht(tmp0_desc, 8, FloatSerializer_getInstance(), value.l68_1);
|
|
3132
3148
|
tmp1_output.pr(tmp0_desc);
|
|
3133
3149
|
};
|
|
3134
3150
|
protoOf($serializer_6).co = function (encoder, value) {
|
|
3135
|
-
return this.
|
|
3151
|
+
return this.x68(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
3136
3152
|
};
|
|
3137
3153
|
protoOf($serializer_6).do = function (decoder) {
|
|
3138
|
-
var tmp0_desc = this.
|
|
3154
|
+
var tmp0_desc = this.w68_1;
|
|
3139
3155
|
var tmp1_flag = true;
|
|
3140
3156
|
var tmp2_index = 0;
|
|
3141
3157
|
var tmp3_bitMask0 = 0;
|
|
@@ -3219,7 +3235,7 @@
|
|
|
3219
3235
|
return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, null);
|
|
3220
3236
|
};
|
|
3221
3237
|
protoOf($serializer_6).bo = function () {
|
|
3222
|
-
return this.
|
|
3238
|
+
return this.w68_1;
|
|
3223
3239
|
};
|
|
3224
3240
|
protoOf($serializer_6).vz = function () {
|
|
3225
3241
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -3235,35 +3251,35 @@
|
|
|
3235
3251
|
}
|
|
3236
3252
|
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
3237
3253
|
if (!(448 === (448 & seen0))) {
|
|
3238
|
-
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().
|
|
3254
|
+
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().w68_1);
|
|
3239
3255
|
}
|
|
3240
3256
|
if (0 === (seen0 & 1))
|
|
3241
|
-
$this.
|
|
3257
|
+
$this.d68_1 = null;
|
|
3242
3258
|
else
|
|
3243
|
-
$this.
|
|
3259
|
+
$this.d68_1 = playerId;
|
|
3244
3260
|
if (0 === (seen0 & 2))
|
|
3245
|
-
$this.
|
|
3261
|
+
$this.e68_1 = null;
|
|
3246
3262
|
else
|
|
3247
|
-
$this.
|
|
3263
|
+
$this.e68_1 = uid;
|
|
3248
3264
|
if (0 === (seen0 & 4))
|
|
3249
|
-
$this.
|
|
3265
|
+
$this.f68_1 = null;
|
|
3250
3266
|
else
|
|
3251
|
-
$this.
|
|
3267
|
+
$this.f68_1 = name;
|
|
3252
3268
|
if (0 === (seen0 & 8))
|
|
3253
|
-
$this.
|
|
3269
|
+
$this.g68_1 = null;
|
|
3254
3270
|
else
|
|
3255
|
-
$this.
|
|
3271
|
+
$this.g68_1 = nickname;
|
|
3256
3272
|
if (0 === (seen0 & 16))
|
|
3257
|
-
$this.
|
|
3273
|
+
$this.h68_1 = null;
|
|
3258
3274
|
else
|
|
3259
|
-
$this.
|
|
3275
|
+
$this.h68_1 = avatarUrl;
|
|
3260
3276
|
if (0 === (seen0 & 32))
|
|
3261
|
-
$this.
|
|
3277
|
+
$this.i68_1 = null;
|
|
3262
3278
|
else
|
|
3263
|
-
$this.
|
|
3264
|
-
$this.
|
|
3265
|
-
$this.
|
|
3266
|
-
$this.
|
|
3279
|
+
$this.i68_1 = photo;
|
|
3280
|
+
$this.j68_1 = rating;
|
|
3281
|
+
$this.k68_1 = isBot;
|
|
3282
|
+
$this.l68_1 = initialLuckyFactor;
|
|
3267
3283
|
return $this;
|
|
3268
3284
|
}
|
|
3269
3285
|
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
@@ -3276,47 +3292,47 @@
|
|
|
3276
3292
|
nickname = nickname === VOID ? null : nickname;
|
|
3277
3293
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
3278
3294
|
photo = photo === VOID ? null : photo;
|
|
3279
|
-
this.
|
|
3280
|
-
this.
|
|
3281
|
-
this.
|
|
3282
|
-
this.
|
|
3283
|
-
this.
|
|
3284
|
-
this.
|
|
3285
|
-
this.
|
|
3286
|
-
this.
|
|
3287
|
-
this.
|
|
3288
|
-
}
|
|
3289
|
-
protoOf(GameUserInfoDto).
|
|
3290
|
-
return this.
|
|
3291
|
-
};
|
|
3292
|
-
protoOf(GameUserInfoDto).
|
|
3295
|
+
this.d68_1 = playerId;
|
|
3296
|
+
this.e68_1 = uid;
|
|
3297
|
+
this.f68_1 = name;
|
|
3298
|
+
this.g68_1 = nickname;
|
|
3299
|
+
this.h68_1 = avatarUrl;
|
|
3300
|
+
this.i68_1 = photo;
|
|
3301
|
+
this.j68_1 = rating;
|
|
3302
|
+
this.k68_1 = isBot;
|
|
3303
|
+
this.l68_1 = initialLuckyFactor;
|
|
3304
|
+
}
|
|
3305
|
+
protoOf(GameUserInfoDto).y68 = function () {
|
|
3306
|
+
return this.z68(VOID, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
3307
|
+
};
|
|
3308
|
+
protoOf(GameUserInfoDto).a69 = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
3293
3309
|
return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
3294
3310
|
};
|
|
3295
|
-
protoOf(GameUserInfoDto).
|
|
3296
|
-
playerId = playerId === VOID ? this.
|
|
3297
|
-
uid = uid === VOID ? this.
|
|
3298
|
-
name = name === VOID ? this.
|
|
3299
|
-
nickname = nickname === VOID ? this.
|
|
3300
|
-
avatarUrl = avatarUrl === VOID ? this.
|
|
3301
|
-
photo = photo === VOID ? this.
|
|
3302
|
-
rating = rating === VOID ? this.
|
|
3303
|
-
isBot = isBot === VOID ? this.
|
|
3304
|
-
initialLuckyFactor = initialLuckyFactor === VOID ? this.
|
|
3305
|
-
return $super === VOID ? this.
|
|
3311
|
+
protoOf(GameUserInfoDto).z68 = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, $super) {
|
|
3312
|
+
playerId = playerId === VOID ? this.d68_1 : playerId;
|
|
3313
|
+
uid = uid === VOID ? this.e68_1 : uid;
|
|
3314
|
+
name = name === VOID ? this.f68_1 : name;
|
|
3315
|
+
nickname = nickname === VOID ? this.g68_1 : nickname;
|
|
3316
|
+
avatarUrl = avatarUrl === VOID ? this.h68_1 : avatarUrl;
|
|
3317
|
+
photo = photo === VOID ? this.i68_1 : photo;
|
|
3318
|
+
rating = rating === VOID ? this.j68_1 : rating;
|
|
3319
|
+
isBot = isBot === VOID ? this.k68_1 : isBot;
|
|
3320
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.l68_1 : initialLuckyFactor;
|
|
3321
|
+
return $super === VOID ? this.a69(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) : $super.a69.call(this, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
3306
3322
|
};
|
|
3307
3323
|
protoOf(GameUserInfoDto).toString = function () {
|
|
3308
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
3324
|
+
return 'GameUserInfoDto(playerId=' + this.d68_1 + ', uid=' + this.e68_1 + ', name=' + this.f68_1 + ', nickname=' + this.g68_1 + ', avatarUrl=' + this.h68_1 + ', photo=' + this.i68_1 + ', rating=' + this.j68_1 + ', isBot=' + this.k68_1 + ', initialLuckyFactor=' + this.l68_1 + ')';
|
|
3309
3325
|
};
|
|
3310
3326
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
3311
|
-
var result = this.
|
|
3312
|
-
result = imul(result, 31) + (this.d68_1 == null ? 0 : getStringHashCode(this.d68_1)) | 0;
|
|
3327
|
+
var result = this.d68_1 == null ? 0 : getStringHashCode(this.d68_1);
|
|
3313
3328
|
result = imul(result, 31) + (this.e68_1 == null ? 0 : getStringHashCode(this.e68_1)) | 0;
|
|
3314
3329
|
result = imul(result, 31) + (this.f68_1 == null ? 0 : getStringHashCode(this.f68_1)) | 0;
|
|
3315
3330
|
result = imul(result, 31) + (this.g68_1 == null ? 0 : getStringHashCode(this.g68_1)) | 0;
|
|
3316
3331
|
result = imul(result, 31) + (this.h68_1 == null ? 0 : getStringHashCode(this.h68_1)) | 0;
|
|
3317
|
-
result = imul(result, 31) + (this.i68_1 == null ? 0 :
|
|
3318
|
-
result = imul(result, 31) + (this.j68_1 == null ? 0 :
|
|
3319
|
-
result = imul(result, 31) + (this.k68_1 == null ? 0 :
|
|
3332
|
+
result = imul(result, 31) + (this.i68_1 == null ? 0 : getStringHashCode(this.i68_1)) | 0;
|
|
3333
|
+
result = imul(result, 31) + (this.j68_1 == null ? 0 : getNumberHashCode(this.j68_1)) | 0;
|
|
3334
|
+
result = imul(result, 31) + (this.k68_1 == null ? 0 : getBooleanHashCode(this.k68_1)) | 0;
|
|
3335
|
+
result = imul(result, 31) + (this.l68_1 == null ? 0 : getNumberHashCode(this.l68_1)) | 0;
|
|
3320
3336
|
return result;
|
|
3321
3337
|
};
|
|
3322
3338
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -3324,8 +3340,6 @@
|
|
|
3324
3340
|
return true;
|
|
3325
3341
|
if (!(other instanceof GameUserInfoDto))
|
|
3326
3342
|
return false;
|
|
3327
|
-
if (!(this.c68_1 == other.c68_1))
|
|
3328
|
-
return false;
|
|
3329
3343
|
if (!(this.d68_1 == other.d68_1))
|
|
3330
3344
|
return false;
|
|
3331
3345
|
if (!(this.e68_1 == other.e68_1))
|
|
@@ -3336,11 +3350,13 @@
|
|
|
3336
3350
|
return false;
|
|
3337
3351
|
if (!(this.h68_1 == other.h68_1))
|
|
3338
3352
|
return false;
|
|
3339
|
-
if (!
|
|
3353
|
+
if (!(this.i68_1 == other.i68_1))
|
|
3354
|
+
return false;
|
|
3355
|
+
if (!equals(this.j68_1, other.j68_1))
|
|
3340
3356
|
return false;
|
|
3341
|
-
if (!(this.
|
|
3357
|
+
if (!(this.k68_1 == other.k68_1))
|
|
3342
3358
|
return false;
|
|
3343
|
-
if (!equals(this.
|
|
3359
|
+
if (!equals(this.l68_1, other.l68_1))
|
|
3344
3360
|
return false;
|
|
3345
3361
|
return true;
|
|
3346
3362
|
};
|
|
@@ -3354,7 +3370,7 @@
|
|
|
3354
3370
|
// Inline function 'kotlin.arrayOf' call
|
|
3355
3371
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3356
3372
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3357
|
-
tmp.
|
|
3373
|
+
tmp.b69_1 = [lazy(tmp_0, PlayerConnectionDto$Companion$$childSerializers$_anonymous__jevhp2), null, null];
|
|
3358
3374
|
}
|
|
3359
3375
|
var Companion_instance_19;
|
|
3360
3376
|
function Companion_getInstance_20() {
|
|
@@ -3368,22 +3384,22 @@
|
|
|
3368
3384
|
tmp0_serialDesc.gz('state', false);
|
|
3369
3385
|
tmp0_serialDesc.gz('connectionChangedTime', false);
|
|
3370
3386
|
tmp0_serialDesc.gz('notLiveDurationRecord', false);
|
|
3371
|
-
this.
|
|
3387
|
+
this.c69_1 = tmp0_serialDesc;
|
|
3372
3388
|
}
|
|
3373
|
-
protoOf($serializer_7).
|
|
3374
|
-
var tmp0_desc = this.
|
|
3389
|
+
protoOf($serializer_7).d69 = function (encoder, value) {
|
|
3390
|
+
var tmp0_desc = this.c69_1;
|
|
3375
3391
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
3376
|
-
var tmp2_cached = Companion_getInstance_20().
|
|
3377
|
-
tmp1_output.ft(tmp0_desc, 0, tmp2_cached[0].x(), value.
|
|
3378
|
-
tmp1_output.dt(tmp0_desc, 1, value.
|
|
3379
|
-
tmp1_output.dt(tmp0_desc, 2, value.
|
|
3392
|
+
var tmp2_cached = Companion_getInstance_20().b69_1;
|
|
3393
|
+
tmp1_output.ft(tmp0_desc, 0, tmp2_cached[0].x(), value.t68_1);
|
|
3394
|
+
tmp1_output.dt(tmp0_desc, 1, value.u68_1);
|
|
3395
|
+
tmp1_output.dt(tmp0_desc, 2, value.v68_1);
|
|
3380
3396
|
tmp1_output.pr(tmp0_desc);
|
|
3381
3397
|
};
|
|
3382
3398
|
protoOf($serializer_7).co = function (encoder, value) {
|
|
3383
|
-
return this.
|
|
3399
|
+
return this.d69(encoder, value instanceof PlayerConnectionDto ? value : THROW_CCE());
|
|
3384
3400
|
};
|
|
3385
3401
|
protoOf($serializer_7).do = function (decoder) {
|
|
3386
|
-
var tmp0_desc = this.
|
|
3402
|
+
var tmp0_desc = this.c69_1;
|
|
3387
3403
|
var tmp1_flag = true;
|
|
3388
3404
|
var tmp2_index = 0;
|
|
3389
3405
|
var tmp3_bitMask0 = 0;
|
|
@@ -3391,7 +3407,7 @@
|
|
|
3391
3407
|
var tmp5_local1 = null;
|
|
3392
3408
|
var tmp6_local2 = null;
|
|
3393
3409
|
var tmp7_input = decoder.or(tmp0_desc);
|
|
3394
|
-
var tmp8_cached = Companion_getInstance_20().
|
|
3410
|
+
var tmp8_cached = Companion_getInstance_20().b69_1;
|
|
3395
3411
|
if (tmp7_input.es()) {
|
|
3396
3412
|
tmp4_local0 = tmp7_input.as(tmp0_desc, 0, tmp8_cached[0].x(), tmp4_local0);
|
|
3397
3413
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3426,13 +3442,13 @@
|
|
|
3426
3442
|
return PlayerConnectionDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
3427
3443
|
};
|
|
3428
3444
|
protoOf($serializer_7).bo = function () {
|
|
3429
|
-
return this.
|
|
3445
|
+
return this.c69_1;
|
|
3430
3446
|
};
|
|
3431
3447
|
protoOf($serializer_7).vz = function () {
|
|
3432
3448
|
// Inline function 'kotlin.arrayOf' call
|
|
3433
3449
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3434
3450
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3435
|
-
return [Companion_getInstance_20().
|
|
3451
|
+
return [Companion_getInstance_20().b69_1[0].x(), StringSerializer_getInstance(), StringSerializer_getInstance()];
|
|
3436
3452
|
};
|
|
3437
3453
|
var $serializer_instance_7;
|
|
3438
3454
|
function $serializer_getInstance_7() {
|
|
@@ -3442,11 +3458,11 @@
|
|
|
3442
3458
|
}
|
|
3443
3459
|
function PlayerConnectionDto_init_$Init$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker, $this) {
|
|
3444
3460
|
if (!(7 === (7 & seen0))) {
|
|
3445
|
-
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().
|
|
3461
|
+
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().c69_1);
|
|
3446
3462
|
}
|
|
3447
|
-
$this.
|
|
3448
|
-
$this.
|
|
3449
|
-
$this.
|
|
3463
|
+
$this.t68_1 = state;
|
|
3464
|
+
$this.u68_1 = connectionChangedTime;
|
|
3465
|
+
$this.v68_1 = notLiveDurationRecord;
|
|
3450
3466
|
return $this;
|
|
3451
3467
|
}
|
|
3452
3468
|
function PlayerConnectionDto_init_$Create$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker) {
|
|
@@ -3454,17 +3470,17 @@
|
|
|
3454
3470
|
}
|
|
3455
3471
|
function PlayerConnectionDto(state, connectionChangedTime, notLiveDurationRecord) {
|
|
3456
3472
|
Companion_getInstance_20();
|
|
3457
|
-
this.
|
|
3458
|
-
this.
|
|
3459
|
-
this.
|
|
3473
|
+
this.t68_1 = state;
|
|
3474
|
+
this.u68_1 = connectionChangedTime;
|
|
3475
|
+
this.v68_1 = notLiveDurationRecord;
|
|
3460
3476
|
}
|
|
3461
3477
|
protoOf(PlayerConnectionDto).toString = function () {
|
|
3462
|
-
return 'PlayerConnectionDto(state=' + this.
|
|
3478
|
+
return 'PlayerConnectionDto(state=' + this.t68_1.toString() + ', connectionChangedTime=' + this.u68_1 + ', notLiveDurationRecord=' + this.v68_1 + ')';
|
|
3463
3479
|
};
|
|
3464
3480
|
protoOf(PlayerConnectionDto).hashCode = function () {
|
|
3465
|
-
var result = this.
|
|
3466
|
-
result = imul(result, 31) + getStringHashCode(this.t68_1) | 0;
|
|
3481
|
+
var result = this.t68_1.hashCode();
|
|
3467
3482
|
result = imul(result, 31) + getStringHashCode(this.u68_1) | 0;
|
|
3483
|
+
result = imul(result, 31) + getStringHashCode(this.v68_1) | 0;
|
|
3468
3484
|
return result;
|
|
3469
3485
|
};
|
|
3470
3486
|
protoOf(PlayerConnectionDto).equals = function (other) {
|
|
@@ -3472,12 +3488,12 @@
|
|
|
3472
3488
|
return true;
|
|
3473
3489
|
if (!(other instanceof PlayerConnectionDto))
|
|
3474
3490
|
return false;
|
|
3475
|
-
if (!this.
|
|
3476
|
-
return false;
|
|
3477
|
-
if (!(this.t68_1 === other.t68_1))
|
|
3491
|
+
if (!this.t68_1.equals(other.t68_1))
|
|
3478
3492
|
return false;
|
|
3479
3493
|
if (!(this.u68_1 === other.u68_1))
|
|
3480
3494
|
return false;
|
|
3495
|
+
if (!(this.v68_1 === other.v68_1))
|
|
3496
|
+
return false;
|
|
3481
3497
|
return true;
|
|
3482
3498
|
};
|
|
3483
3499
|
function PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl() {
|
|
@@ -3490,7 +3506,7 @@
|
|
|
3490
3506
|
// Inline function 'kotlin.arrayOf' call
|
|
3491
3507
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3492
3508
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3493
|
-
tmp.
|
|
3509
|
+
tmp.e69_1 = [null, null, null, lazy(tmp_0, PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl), null, null, null];
|
|
3494
3510
|
}
|
|
3495
3511
|
var Companion_instance_20;
|
|
3496
3512
|
function Companion_getInstance_21() {
|
|
@@ -3508,38 +3524,38 @@
|
|
|
3508
3524
|
tmp0_serialDesc.gz('ready', true);
|
|
3509
3525
|
tmp0_serialDesc.gz('tag', true);
|
|
3510
3526
|
tmp0_serialDesc.gz('connection', true);
|
|
3511
|
-
this.
|
|
3527
|
+
this.f69_1 = tmp0_serialDesc;
|
|
3512
3528
|
}
|
|
3513
|
-
protoOf($serializer_8).
|
|
3514
|
-
var tmp0_desc = this.
|
|
3529
|
+
protoOf($serializer_8).g69 = function (encoder, value) {
|
|
3530
|
+
var tmp0_desc = this.f69_1;
|
|
3515
3531
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
3516
|
-
var tmp2_cached = Companion_getInstance_21().
|
|
3517
|
-
if (tmp1_output.lt(tmp0_desc, 0) ? true : !(value.
|
|
3518
|
-
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
3532
|
+
var tmp2_cached = Companion_getInstance_21().e69_1;
|
|
3533
|
+
if (tmp1_output.lt(tmp0_desc, 0) ? true : !(value.m68_1 == null)) {
|
|
3534
|
+
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.m68_1);
|
|
3519
3535
|
}
|
|
3520
|
-
if (tmp1_output.lt(tmp0_desc, 1) ? true : !(value.
|
|
3521
|
-
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
3536
|
+
if (tmp1_output.lt(tmp0_desc, 1) ? true : !(value.n68_1 == null)) {
|
|
3537
|
+
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.n68_1);
|
|
3522
3538
|
}
|
|
3523
|
-
if (tmp1_output.lt(tmp0_desc, 2) ? true : !(value.
|
|
3524
|
-
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
3539
|
+
if (tmp1_output.lt(tmp0_desc, 2) ? true : !(value.o68_1 == null)) {
|
|
3540
|
+
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.o68_1);
|
|
3525
3541
|
}
|
|
3526
|
-
tmp1_output.ft(tmp0_desc, 3, tmp2_cached[3].x(), value.
|
|
3527
|
-
if (tmp1_output.lt(tmp0_desc, 4) ? true : !(value.
|
|
3528
|
-
tmp1_output.ht(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
3542
|
+
tmp1_output.ft(tmp0_desc, 3, tmp2_cached[3].x(), value.p68_1);
|
|
3543
|
+
if (tmp1_output.lt(tmp0_desc, 4) ? true : !(value.q68_1 == null)) {
|
|
3544
|
+
tmp1_output.ht(tmp0_desc, 4, BooleanSerializer_getInstance(), value.q68_1);
|
|
3529
3545
|
}
|
|
3530
|
-
if (tmp1_output.lt(tmp0_desc, 5) ? true : !(value.
|
|
3531
|
-
tmp1_output.ht(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
3546
|
+
if (tmp1_output.lt(tmp0_desc, 5) ? true : !(value.r68_1 == null)) {
|
|
3547
|
+
tmp1_output.ht(tmp0_desc, 5, StringSerializer_getInstance(), value.r68_1);
|
|
3532
3548
|
}
|
|
3533
|
-
if (tmp1_output.lt(tmp0_desc, 6) ? true : !(value.
|
|
3534
|
-
tmp1_output.ht(tmp0_desc, 6, $serializer_getInstance_7(), value.
|
|
3549
|
+
if (tmp1_output.lt(tmp0_desc, 6) ? true : !(value.s68_1 == null)) {
|
|
3550
|
+
tmp1_output.ht(tmp0_desc, 6, $serializer_getInstance_7(), value.s68_1);
|
|
3535
3551
|
}
|
|
3536
3552
|
tmp1_output.pr(tmp0_desc);
|
|
3537
3553
|
};
|
|
3538
3554
|
protoOf($serializer_8).co = function (encoder, value) {
|
|
3539
|
-
return this.
|
|
3555
|
+
return this.g69(encoder, value instanceof PlayerStateDto ? value : THROW_CCE());
|
|
3540
3556
|
};
|
|
3541
3557
|
protoOf($serializer_8).do = function (decoder) {
|
|
3542
|
-
var tmp0_desc = this.
|
|
3558
|
+
var tmp0_desc = this.f69_1;
|
|
3543
3559
|
var tmp1_flag = true;
|
|
3544
3560
|
var tmp2_index = 0;
|
|
3545
3561
|
var tmp3_bitMask0 = 0;
|
|
@@ -3551,7 +3567,7 @@
|
|
|
3551
3567
|
var tmp9_local5 = null;
|
|
3552
3568
|
var tmp10_local6 = null;
|
|
3553
3569
|
var tmp11_input = decoder.or(tmp0_desc);
|
|
3554
|
-
var tmp12_cached = Companion_getInstance_21().
|
|
3570
|
+
var tmp12_cached = Companion_getInstance_21().e69_1;
|
|
3555
3571
|
if (tmp11_input.es()) {
|
|
3556
3572
|
tmp4_local0 = tmp11_input.cs(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3557
3573
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3610,10 +3626,10 @@
|
|
|
3610
3626
|
return PlayerStateDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, null);
|
|
3611
3627
|
};
|
|
3612
3628
|
protoOf($serializer_8).bo = function () {
|
|
3613
|
-
return this.
|
|
3629
|
+
return this.f69_1;
|
|
3614
3630
|
};
|
|
3615
3631
|
protoOf($serializer_8).vz = function () {
|
|
3616
|
-
var tmp0_cached = Companion_getInstance_21().
|
|
3632
|
+
var tmp0_cached = Companion_getInstance_21().e69_1;
|
|
3617
3633
|
// Inline function 'kotlin.arrayOf' call
|
|
3618
3634
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3619
3635
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3627,33 +3643,33 @@
|
|
|
3627
3643
|
}
|
|
3628
3644
|
function PlayerStateDto_init_$Init$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker, $this) {
|
|
3629
3645
|
if (!(8 === (8 & seen0))) {
|
|
3630
|
-
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().
|
|
3646
|
+
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().f69_1);
|
|
3631
3647
|
}
|
|
3632
3648
|
if (0 === (seen0 & 1))
|
|
3633
|
-
$this.
|
|
3649
|
+
$this.m68_1 = null;
|
|
3634
3650
|
else
|
|
3635
|
-
$this.
|
|
3651
|
+
$this.m68_1 = startFrom;
|
|
3636
3652
|
if (0 === (seen0 & 2))
|
|
3637
|
-
$this.
|
|
3653
|
+
$this.n68_1 = null;
|
|
3638
3654
|
else
|
|
3639
|
-
$this.
|
|
3655
|
+
$this.n68_1 = playerTurnTimeout;
|
|
3640
3656
|
if (0 === (seen0 & 4))
|
|
3641
|
-
$this.
|
|
3657
|
+
$this.o68_1 = null;
|
|
3642
3658
|
else
|
|
3643
|
-
$this.
|
|
3644
|
-
$this.
|
|
3659
|
+
$this.o68_1 = waitPlayerUntilTime;
|
|
3660
|
+
$this.p68_1 = state;
|
|
3645
3661
|
if (0 === (seen0 & 16))
|
|
3646
|
-
$this.
|
|
3662
|
+
$this.q68_1 = null;
|
|
3647
3663
|
else
|
|
3648
|
-
$this.
|
|
3664
|
+
$this.q68_1 = ready;
|
|
3649
3665
|
if (0 === (seen0 & 32))
|
|
3650
|
-
$this.
|
|
3666
|
+
$this.r68_1 = null;
|
|
3651
3667
|
else
|
|
3652
|
-
$this.
|
|
3668
|
+
$this.r68_1 = tag;
|
|
3653
3669
|
if (0 === (seen0 & 64))
|
|
3654
|
-
$this.
|
|
3670
|
+
$this.s68_1 = null;
|
|
3655
3671
|
else
|
|
3656
|
-
$this.
|
|
3672
|
+
$this.s68_1 = connection;
|
|
3657
3673
|
return $this;
|
|
3658
3674
|
}
|
|
3659
3675
|
function PlayerStateDto_init_$Create$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker) {
|
|
@@ -3667,25 +3683,25 @@
|
|
|
3667
3683
|
ready = ready === VOID ? null : ready;
|
|
3668
3684
|
tag = tag === VOID ? null : tag;
|
|
3669
3685
|
connection = connection === VOID ? null : connection;
|
|
3670
|
-
this.
|
|
3671
|
-
this.
|
|
3672
|
-
this.
|
|
3673
|
-
this.
|
|
3674
|
-
this.
|
|
3675
|
-
this.
|
|
3676
|
-
this.
|
|
3686
|
+
this.m68_1 = startFrom;
|
|
3687
|
+
this.n68_1 = playerTurnTimeout;
|
|
3688
|
+
this.o68_1 = waitPlayerUntilTime;
|
|
3689
|
+
this.p68_1 = state;
|
|
3690
|
+
this.q68_1 = ready;
|
|
3691
|
+
this.r68_1 = tag;
|
|
3692
|
+
this.s68_1 = connection;
|
|
3677
3693
|
}
|
|
3678
3694
|
protoOf(PlayerStateDto).toString = function () {
|
|
3679
|
-
return 'PlayerStateDto(startFrom=' + this.
|
|
3695
|
+
return 'PlayerStateDto(startFrom=' + this.m68_1 + ', playerTurnTimeout=' + this.n68_1 + ', waitPlayerUntilTime=' + this.o68_1 + ', state=' + this.p68_1.toString() + ', ready=' + this.q68_1 + ', tag=' + this.r68_1 + ', connection=' + toString(this.s68_1) + ')';
|
|
3680
3696
|
};
|
|
3681
3697
|
protoOf(PlayerStateDto).hashCode = function () {
|
|
3682
|
-
var result = this.
|
|
3683
|
-
result = imul(result, 31) + (this.m68_1 == null ? 0 : getStringHashCode(this.m68_1)) | 0;
|
|
3698
|
+
var result = this.m68_1 == null ? 0 : getStringHashCode(this.m68_1);
|
|
3684
3699
|
result = imul(result, 31) + (this.n68_1 == null ? 0 : getStringHashCode(this.n68_1)) | 0;
|
|
3685
|
-
result = imul(result, 31) + this.o68_1.
|
|
3686
|
-
result = imul(result, 31) +
|
|
3687
|
-
result = imul(result, 31) + (this.q68_1 == null ? 0 :
|
|
3688
|
-
result = imul(result, 31) + (this.r68_1 == null ? 0 : this.r68_1
|
|
3700
|
+
result = imul(result, 31) + (this.o68_1 == null ? 0 : getStringHashCode(this.o68_1)) | 0;
|
|
3701
|
+
result = imul(result, 31) + this.p68_1.hashCode() | 0;
|
|
3702
|
+
result = imul(result, 31) + (this.q68_1 == null ? 0 : getBooleanHashCode(this.q68_1)) | 0;
|
|
3703
|
+
result = imul(result, 31) + (this.r68_1 == null ? 0 : getStringHashCode(this.r68_1)) | 0;
|
|
3704
|
+
result = imul(result, 31) + (this.s68_1 == null ? 0 : this.s68_1.hashCode()) | 0;
|
|
3689
3705
|
return result;
|
|
3690
3706
|
};
|
|
3691
3707
|
protoOf(PlayerStateDto).equals = function (other) {
|
|
@@ -3693,19 +3709,19 @@
|
|
|
3693
3709
|
return true;
|
|
3694
3710
|
if (!(other instanceof PlayerStateDto))
|
|
3695
3711
|
return false;
|
|
3696
|
-
if (!(this.l68_1 == other.l68_1))
|
|
3697
|
-
return false;
|
|
3698
3712
|
if (!(this.m68_1 == other.m68_1))
|
|
3699
3713
|
return false;
|
|
3700
3714
|
if (!(this.n68_1 == other.n68_1))
|
|
3701
3715
|
return false;
|
|
3702
|
-
if (!this.o68_1
|
|
3716
|
+
if (!(this.o68_1 == other.o68_1))
|
|
3703
3717
|
return false;
|
|
3704
|
-
if (!
|
|
3718
|
+
if (!this.p68_1.equals(other.p68_1))
|
|
3705
3719
|
return false;
|
|
3706
3720
|
if (!(this.q68_1 == other.q68_1))
|
|
3707
3721
|
return false;
|
|
3708
|
-
if (!
|
|
3722
|
+
if (!(this.r68_1 == other.r68_1))
|
|
3723
|
+
return false;
|
|
3724
|
+
if (!equals(this.s68_1, other.s68_1))
|
|
3709
3725
|
return false;
|
|
3710
3726
|
return true;
|
|
3711
3727
|
};
|
|
@@ -3729,7 +3745,7 @@
|
|
|
3729
3745
|
// Inline function 'kotlin.arrayOf' call
|
|
3730
3746
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3731
3747
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3732
|
-
tmp.
|
|
3748
|
+
tmp.h69_1 = [null, null, null, null, null, null, null, null, tmp_1, tmp_3, null, null, null, lazy(tmp_4, RulesDto$Companion$$childSerializers$_anonymous__7e0mv6_1), null, null, null, null, null, null, null, null, null, null, null, null];
|
|
3733
3749
|
}
|
|
3734
3750
|
var Companion_instance_21;
|
|
3735
3751
|
function Companion_getInstance_22() {
|
|
@@ -3766,45 +3782,45 @@
|
|
|
3766
3782
|
tmp0_serialDesc.gz('fineIfNoBribes', false);
|
|
3767
3783
|
tmp0_serialDesc.gz('enableFineAfterThirdByte', false);
|
|
3768
3784
|
tmp0_serialDesc.gz('fineAfterThirdFailedContract', false);
|
|
3769
|
-
this.
|
|
3785
|
+
this.i69_1 = tmp0_serialDesc;
|
|
3770
3786
|
}
|
|
3771
|
-
protoOf($serializer_9).
|
|
3772
|
-
var tmp0_desc = this.
|
|
3787
|
+
protoOf($serializer_9).j69 = function (encoder, value) {
|
|
3788
|
+
var tmp0_desc = this.i69_1;
|
|
3773
3789
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
3774
|
-
var tmp2_cached = Companion_getInstance_22().
|
|
3775
|
-
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
3776
|
-
tmp1_output.ht(tmp0_desc, 1, BooleanSerializer_getInstance(), value.
|
|
3777
|
-
tmp1_output.ht(tmp0_desc, 2, BooleanSerializer_getInstance(), value.
|
|
3778
|
-
tmp1_output.ht(tmp0_desc, 3, BooleanSerializer_getInstance(), value.
|
|
3779
|
-
tmp1_output.ht(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
3780
|
-
tmp1_output.ht(tmp0_desc, 5, IntSerializer_getInstance(), value.
|
|
3781
|
-
tmp1_output.ht(tmp0_desc, 6, IntSerializer_getInstance(), value.
|
|
3782
|
-
tmp1_output.ht(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
3783
|
-
tmp1_output.ht(tmp0_desc, 8, tmp2_cached[8].x(), value.
|
|
3784
|
-
tmp1_output.ht(tmp0_desc, 9, tmp2_cached[9].x(), value.
|
|
3785
|
-
tmp1_output.ht(tmp0_desc, 10, BooleanSerializer_getInstance(), value.
|
|
3786
|
-
tmp1_output.ht(tmp0_desc, 11, StringSerializer_getInstance(), value.
|
|
3787
|
-
tmp1_output.ht(tmp0_desc, 12, StringSerializer_getInstance(), value.
|
|
3788
|
-
tmp1_output.ht(tmp0_desc, 13, tmp2_cached[13].x(), value.
|
|
3789
|
-
tmp1_output.ht(tmp0_desc, 14, BooleanSerializer_getInstance(), value.
|
|
3790
|
-
tmp1_output.ht(tmp0_desc, 15, BooleanSerializer_getInstance(), value.
|
|
3791
|
-
tmp1_output.ht(tmp0_desc, 16, BooleanSerializer_getInstance(), value.
|
|
3792
|
-
tmp1_output.ht(tmp0_desc, 17, BooleanSerializer_getInstance(), value.
|
|
3793
|
-
tmp1_output.ht(tmp0_desc, 18, BooleanSerializer_getInstance(), value.
|
|
3794
|
-
tmp1_output.ht(tmp0_desc, 19, BooleanSerializer_getInstance(), value.
|
|
3795
|
-
tmp1_output.ht(tmp0_desc, 20, BooleanSerializer_getInstance(), value.
|
|
3796
|
-
tmp1_output.dt(tmp0_desc, 21, value.
|
|
3797
|
-
tmp1_output.ht(tmp0_desc, 22, BooleanSerializer_getInstance(), value.
|
|
3798
|
-
tmp1_output.ht(tmp0_desc, 23, IntSerializer_getInstance(), value.
|
|
3799
|
-
tmp1_output.ht(tmp0_desc, 24, BooleanSerializer_getInstance(), value.
|
|
3800
|
-
tmp1_output.ht(tmp0_desc, 25, IntSerializer_getInstance(), value.
|
|
3790
|
+
var tmp2_cached = Companion_getInstance_22().h69_1;
|
|
3791
|
+
tmp1_output.ht(tmp0_desc, 0, StringSerializer_getInstance(), value.k69_1);
|
|
3792
|
+
tmp1_output.ht(tmp0_desc, 1, BooleanSerializer_getInstance(), value.l69_1);
|
|
3793
|
+
tmp1_output.ht(tmp0_desc, 2, BooleanSerializer_getInstance(), value.m69_1);
|
|
3794
|
+
tmp1_output.ht(tmp0_desc, 3, BooleanSerializer_getInstance(), value.n69_1);
|
|
3795
|
+
tmp1_output.ht(tmp0_desc, 4, BooleanSerializer_getInstance(), value.o69_1);
|
|
3796
|
+
tmp1_output.ht(tmp0_desc, 5, IntSerializer_getInstance(), value.p69_1);
|
|
3797
|
+
tmp1_output.ht(tmp0_desc, 6, IntSerializer_getInstance(), value.q69_1);
|
|
3798
|
+
tmp1_output.ht(tmp0_desc, 7, BooleanSerializer_getInstance(), value.r69_1);
|
|
3799
|
+
tmp1_output.ht(tmp0_desc, 8, tmp2_cached[8].x(), value.s69_1);
|
|
3800
|
+
tmp1_output.ht(tmp0_desc, 9, tmp2_cached[9].x(), value.t69_1);
|
|
3801
|
+
tmp1_output.ht(tmp0_desc, 10, BooleanSerializer_getInstance(), value.u69_1);
|
|
3802
|
+
tmp1_output.ht(tmp0_desc, 11, StringSerializer_getInstance(), value.v69_1);
|
|
3803
|
+
tmp1_output.ht(tmp0_desc, 12, StringSerializer_getInstance(), value.w69_1);
|
|
3804
|
+
tmp1_output.ht(tmp0_desc, 13, tmp2_cached[13].x(), value.x69_1);
|
|
3805
|
+
tmp1_output.ht(tmp0_desc, 14, BooleanSerializer_getInstance(), value.y69_1);
|
|
3806
|
+
tmp1_output.ht(tmp0_desc, 15, BooleanSerializer_getInstance(), value.z69_1);
|
|
3807
|
+
tmp1_output.ht(tmp0_desc, 16, BooleanSerializer_getInstance(), value.a6a_1);
|
|
3808
|
+
tmp1_output.ht(tmp0_desc, 17, BooleanSerializer_getInstance(), value.b6a_1);
|
|
3809
|
+
tmp1_output.ht(tmp0_desc, 18, BooleanSerializer_getInstance(), value.c6a_1);
|
|
3810
|
+
tmp1_output.ht(tmp0_desc, 19, BooleanSerializer_getInstance(), value.d6a_1);
|
|
3811
|
+
tmp1_output.ht(tmp0_desc, 20, BooleanSerializer_getInstance(), value.e6a_1);
|
|
3812
|
+
tmp1_output.dt(tmp0_desc, 21, value.f6a_1);
|
|
3813
|
+
tmp1_output.ht(tmp0_desc, 22, BooleanSerializer_getInstance(), value.g6a_1);
|
|
3814
|
+
tmp1_output.ht(tmp0_desc, 23, IntSerializer_getInstance(), value.h6a_1);
|
|
3815
|
+
tmp1_output.ht(tmp0_desc, 24, BooleanSerializer_getInstance(), value.i6a_1);
|
|
3816
|
+
tmp1_output.ht(tmp0_desc, 25, IntSerializer_getInstance(), value.j6a_1);
|
|
3801
3817
|
tmp1_output.pr(tmp0_desc);
|
|
3802
3818
|
};
|
|
3803
3819
|
protoOf($serializer_9).co = function (encoder, value) {
|
|
3804
|
-
return this.
|
|
3820
|
+
return this.j69(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
3805
3821
|
};
|
|
3806
3822
|
protoOf($serializer_9).do = function (decoder) {
|
|
3807
|
-
var tmp0_desc = this.
|
|
3823
|
+
var tmp0_desc = this.i69_1;
|
|
3808
3824
|
var tmp1_flag = true;
|
|
3809
3825
|
var tmp2_index = 0;
|
|
3810
3826
|
var tmp3_bitMask0 = 0;
|
|
@@ -3835,7 +3851,7 @@
|
|
|
3835
3851
|
var tmp28_local24 = null;
|
|
3836
3852
|
var tmp29_local25 = null;
|
|
3837
3853
|
var tmp30_input = decoder.or(tmp0_desc);
|
|
3838
|
-
var tmp31_cached = Companion_getInstance_22().
|
|
3854
|
+
var tmp31_cached = Companion_getInstance_22().h69_1;
|
|
3839
3855
|
if (tmp30_input.es()) {
|
|
3840
3856
|
tmp4_local0 = tmp30_input.cs(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3841
3857
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -4008,10 +4024,10 @@
|
|
|
4008
4024
|
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, tmp21_local17, tmp22_local18, tmp23_local19, tmp24_local20, tmp25_local21, tmp26_local22, tmp27_local23, tmp28_local24, tmp29_local25, null);
|
|
4009
4025
|
};
|
|
4010
4026
|
protoOf($serializer_9).bo = function () {
|
|
4011
|
-
return this.
|
|
4027
|
+
return this.i69_1;
|
|
4012
4028
|
};
|
|
4013
4029
|
protoOf($serializer_9).vz = function () {
|
|
4014
|
-
var tmp0_cached = Companion_getInstance_22().
|
|
4030
|
+
var tmp0_cached = Companion_getInstance_22().h69_1;
|
|
4015
4031
|
// Inline function 'kotlin.arrayOf' call
|
|
4016
4032
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
4017
4033
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -4025,34 +4041,34 @@
|
|
|
4025
4041
|
}
|
|
4026
4042
|
function RulesDto_init_$Init$(seen0, name, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, needToPutHigherTrump, trumpCardStepMode, trumpCardStepPartnerMode, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker, $this) {
|
|
4027
4043
|
if (!(67108863 === (67108863 & seen0))) {
|
|
4028
|
-
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().
|
|
4044
|
+
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().i69_1);
|
|
4029
4045
|
}
|
|
4030
|
-
$this.
|
|
4031
|
-
$this.
|
|
4032
|
-
$this.
|
|
4033
|
-
$this.
|
|
4034
|
-
$this.
|
|
4035
|
-
$this.
|
|
4036
|
-
$this.
|
|
4037
|
-
$this.
|
|
4038
|
-
$this.
|
|
4039
|
-
$this.
|
|
4040
|
-
$this.
|
|
4041
|
-
$this.
|
|
4042
|
-
$this.
|
|
4043
|
-
$this.
|
|
4044
|
-
$this.
|
|
4045
|
-
$this.
|
|
4046
|
-
$this.
|
|
4047
|
-
$this.
|
|
4048
|
-
$this.
|
|
4049
|
-
$this.
|
|
4050
|
-
$this.
|
|
4051
|
-
$this.
|
|
4052
|
-
$this.
|
|
4053
|
-
$this.
|
|
4054
|
-
$this.
|
|
4055
|
-
$this.
|
|
4046
|
+
$this.k69_1 = name;
|
|
4047
|
+
$this.l69_1 = playerWhoChooseSuitGoFirst;
|
|
4048
|
+
$this.m69_1 = winnerShuffleCards;
|
|
4049
|
+
$this.n69_1 = playWithoutLiabilities;
|
|
4050
|
+
$this.o69_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
4051
|
+
$this.p69_1 = dealerInitialCardsCount;
|
|
4052
|
+
$this.q69_1 = dealerFinalCardsCount;
|
|
4053
|
+
$this.r69_1 = dealerCounterClockwise;
|
|
4054
|
+
$this.s69_1 = contractTypes;
|
|
4055
|
+
$this.t69_1 = bidTypes;
|
|
4056
|
+
$this.u69_1 = needToPutHigherTrump;
|
|
4057
|
+
$this.v69_1 = trumpCardStepMode;
|
|
4058
|
+
$this.w69_1 = trumpCardStepPartnerMode;
|
|
4059
|
+
$this.x69_1 = combinationsWithFirstCard;
|
|
4060
|
+
$this.y69_1 = protectBella;
|
|
4061
|
+
$this.z69_1 = oneTryToProtectBella;
|
|
4062
|
+
$this.a6a_1 = enableFourSevensCombination;
|
|
4063
|
+
$this.b6a_1 = enableTrumpSevenCombination;
|
|
4064
|
+
$this.c6a_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
4065
|
+
$this.d6a_1 = checkTrumpCombination;
|
|
4066
|
+
$this.e6a_1 = checkOnlyTrumpDebertz;
|
|
4067
|
+
$this.f6a_1 = pointsDistributeMode;
|
|
4068
|
+
$this.g6a_1 = enableFineIfNoBribes;
|
|
4069
|
+
$this.h6a_1 = fineIfNoBribes;
|
|
4070
|
+
$this.i6a_1 = enableFineAfterThirdByte;
|
|
4071
|
+
$this.j6a_1 = fineAfterThirdFailedContract;
|
|
4056
4072
|
return $this;
|
|
4057
4073
|
}
|
|
4058
4074
|
function RulesDto_init_$Create$(seen0, name, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, needToPutHigherTrump, trumpCardStepMode, trumpCardStepPartnerMode, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker) {
|
|
@@ -4060,63 +4076,63 @@
|
|
|
4060
4076
|
}
|
|
4061
4077
|
function RulesDto(name, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, needToPutHigherTrump, trumpCardStepMode, trumpCardStepPartnerMode, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract) {
|
|
4062
4078
|
Companion_getInstance_22();
|
|
4063
|
-
this.
|
|
4064
|
-
this.
|
|
4065
|
-
this.
|
|
4066
|
-
this.
|
|
4067
|
-
this.
|
|
4068
|
-
this.
|
|
4069
|
-
this.
|
|
4070
|
-
this.
|
|
4071
|
-
this.
|
|
4072
|
-
this.
|
|
4073
|
-
this.
|
|
4074
|
-
this.
|
|
4075
|
-
this.
|
|
4076
|
-
this.
|
|
4077
|
-
this.
|
|
4078
|
-
this.
|
|
4079
|
-
this.
|
|
4080
|
-
this.
|
|
4081
|
-
this.
|
|
4082
|
-
this.
|
|
4083
|
-
this.
|
|
4084
|
-
this.
|
|
4085
|
-
this.
|
|
4086
|
-
this.
|
|
4087
|
-
this.
|
|
4088
|
-
this.
|
|
4079
|
+
this.k69_1 = name;
|
|
4080
|
+
this.l69_1 = playerWhoChooseSuitGoFirst;
|
|
4081
|
+
this.m69_1 = winnerShuffleCards;
|
|
4082
|
+
this.n69_1 = playWithoutLiabilities;
|
|
4083
|
+
this.o69_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
4084
|
+
this.p69_1 = dealerInitialCardsCount;
|
|
4085
|
+
this.q69_1 = dealerFinalCardsCount;
|
|
4086
|
+
this.r69_1 = dealerCounterClockwise;
|
|
4087
|
+
this.s69_1 = contractTypes;
|
|
4088
|
+
this.t69_1 = bidTypes;
|
|
4089
|
+
this.u69_1 = needToPutHigherTrump;
|
|
4090
|
+
this.v69_1 = trumpCardStepMode;
|
|
4091
|
+
this.w69_1 = trumpCardStepPartnerMode;
|
|
4092
|
+
this.x69_1 = combinationsWithFirstCard;
|
|
4093
|
+
this.y69_1 = protectBella;
|
|
4094
|
+
this.z69_1 = oneTryToProtectBella;
|
|
4095
|
+
this.a6a_1 = enableFourSevensCombination;
|
|
4096
|
+
this.b6a_1 = enableTrumpSevenCombination;
|
|
4097
|
+
this.c6a_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
4098
|
+
this.d6a_1 = checkTrumpCombination;
|
|
4099
|
+
this.e6a_1 = checkOnlyTrumpDebertz;
|
|
4100
|
+
this.f6a_1 = pointsDistributeMode;
|
|
4101
|
+
this.g6a_1 = enableFineIfNoBribes;
|
|
4102
|
+
this.h6a_1 = fineIfNoBribes;
|
|
4103
|
+
this.i6a_1 = enableFineAfterThirdByte;
|
|
4104
|
+
this.j6a_1 = fineAfterThirdFailedContract;
|
|
4089
4105
|
}
|
|
4090
4106
|
protoOf(RulesDto).toString = function () {
|
|
4091
|
-
return 'RulesDto(name=' + this.
|
|
4107
|
+
return 'RulesDto(name=' + this.k69_1 + ', playerWhoChooseSuitGoFirst=' + this.l69_1 + ', winnerShuffleCards=' + this.m69_1 + ', playWithoutLiabilities=' + this.n69_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.o69_1 + ', dealerInitialCardsCount=' + this.p69_1 + ', dealerFinalCardsCount=' + this.q69_1 + ', dealerCounterClockwise=' + this.r69_1 + ', contractTypes=' + toString(this.s69_1) + ', bidTypes=' + toString(this.t69_1) + ', needToPutHigherTrump=' + this.u69_1 + ', trumpCardStepMode=' + this.v69_1 + ', trumpCardStepPartnerMode=' + this.w69_1 + ', combinationsWithFirstCard=' + toString(this.x69_1) + ', protectBella=' + this.y69_1 + ', oneTryToProtectBella=' + this.z69_1 + ', enableFourSevensCombination=' + this.a6a_1 + ', enableTrumpSevenCombination=' + this.b6a_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.c6a_1 + ', checkTrumpCombination=' + this.d6a_1 + ', checkOnlyTrumpDebertz=' + this.e6a_1 + ', pointsDistributeMode=' + this.f6a_1 + ', enableFineIfNoBribes=' + this.g6a_1 + ', fineIfNoBribes=' + this.h6a_1 + ', enableFineAfterThirdByte=' + this.i6a_1 + ', fineAfterThirdFailedContract=' + this.j6a_1 + ')';
|
|
4092
4108
|
};
|
|
4093
4109
|
protoOf(RulesDto).hashCode = function () {
|
|
4094
|
-
var result = this.
|
|
4095
|
-
result = imul(result, 31) + (this.k69_1 == null ? 0 : getBooleanHashCode(this.k69_1)) | 0;
|
|
4110
|
+
var result = this.k69_1 == null ? 0 : getStringHashCode(this.k69_1);
|
|
4096
4111
|
result = imul(result, 31) + (this.l69_1 == null ? 0 : getBooleanHashCode(this.l69_1)) | 0;
|
|
4097
4112
|
result = imul(result, 31) + (this.m69_1 == null ? 0 : getBooleanHashCode(this.m69_1)) | 0;
|
|
4098
4113
|
result = imul(result, 31) + (this.n69_1 == null ? 0 : getBooleanHashCode(this.n69_1)) | 0;
|
|
4099
|
-
result = imul(result, 31) + (this.o69_1 == null ? 0 : this.o69_1) | 0;
|
|
4114
|
+
result = imul(result, 31) + (this.o69_1 == null ? 0 : getBooleanHashCode(this.o69_1)) | 0;
|
|
4100
4115
|
result = imul(result, 31) + (this.p69_1 == null ? 0 : this.p69_1) | 0;
|
|
4101
|
-
result = imul(result, 31) + (this.q69_1 == null ? 0 :
|
|
4102
|
-
result = imul(result, 31) + (this.r69_1 == null ? 0 :
|
|
4116
|
+
result = imul(result, 31) + (this.q69_1 == null ? 0 : this.q69_1) | 0;
|
|
4117
|
+
result = imul(result, 31) + (this.r69_1 == null ? 0 : getBooleanHashCode(this.r69_1)) | 0;
|
|
4103
4118
|
result = imul(result, 31) + (this.s69_1 == null ? 0 : hashCode(this.s69_1)) | 0;
|
|
4104
|
-
result = imul(result, 31) + (this.t69_1 == null ? 0 :
|
|
4105
|
-
result = imul(result, 31) + (this.u69_1 == null ? 0 :
|
|
4119
|
+
result = imul(result, 31) + (this.t69_1 == null ? 0 : hashCode(this.t69_1)) | 0;
|
|
4120
|
+
result = imul(result, 31) + (this.u69_1 == null ? 0 : getBooleanHashCode(this.u69_1)) | 0;
|
|
4106
4121
|
result = imul(result, 31) + (this.v69_1 == null ? 0 : getStringHashCode(this.v69_1)) | 0;
|
|
4107
|
-
result = imul(result, 31) + (this.w69_1 == null ? 0 :
|
|
4108
|
-
result = imul(result, 31) + (this.x69_1 == null ? 0 :
|
|
4122
|
+
result = imul(result, 31) + (this.w69_1 == null ? 0 : getStringHashCode(this.w69_1)) | 0;
|
|
4123
|
+
result = imul(result, 31) + (this.x69_1 == null ? 0 : hashCode(this.x69_1)) | 0;
|
|
4109
4124
|
result = imul(result, 31) + (this.y69_1 == null ? 0 : getBooleanHashCode(this.y69_1)) | 0;
|
|
4110
4125
|
result = imul(result, 31) + (this.z69_1 == null ? 0 : getBooleanHashCode(this.z69_1)) | 0;
|
|
4111
4126
|
result = imul(result, 31) + (this.a6a_1 == null ? 0 : getBooleanHashCode(this.a6a_1)) | 0;
|
|
4112
4127
|
result = imul(result, 31) + (this.b6a_1 == null ? 0 : getBooleanHashCode(this.b6a_1)) | 0;
|
|
4113
4128
|
result = imul(result, 31) + (this.c6a_1 == null ? 0 : getBooleanHashCode(this.c6a_1)) | 0;
|
|
4114
4129
|
result = imul(result, 31) + (this.d6a_1 == null ? 0 : getBooleanHashCode(this.d6a_1)) | 0;
|
|
4115
|
-
result = imul(result, 31) +
|
|
4116
|
-
result = imul(result, 31) + (this.f6a_1
|
|
4117
|
-
result = imul(result, 31) + (this.g6a_1 == null ? 0 : this.g6a_1) | 0;
|
|
4118
|
-
result = imul(result, 31) + (this.h6a_1 == null ? 0 :
|
|
4119
|
-
result = imul(result, 31) + (this.i6a_1 == null ? 0 : this.i6a_1) | 0;
|
|
4130
|
+
result = imul(result, 31) + (this.e6a_1 == null ? 0 : getBooleanHashCode(this.e6a_1)) | 0;
|
|
4131
|
+
result = imul(result, 31) + getStringHashCode(this.f6a_1) | 0;
|
|
4132
|
+
result = imul(result, 31) + (this.g6a_1 == null ? 0 : getBooleanHashCode(this.g6a_1)) | 0;
|
|
4133
|
+
result = imul(result, 31) + (this.h6a_1 == null ? 0 : this.h6a_1) | 0;
|
|
4134
|
+
result = imul(result, 31) + (this.i6a_1 == null ? 0 : getBooleanHashCode(this.i6a_1)) | 0;
|
|
4135
|
+
result = imul(result, 31) + (this.j6a_1 == null ? 0 : this.j6a_1) | 0;
|
|
4120
4136
|
return result;
|
|
4121
4137
|
};
|
|
4122
4138
|
protoOf(RulesDto).equals = function (other) {
|
|
@@ -4124,8 +4140,6 @@
|
|
|
4124
4140
|
return true;
|
|
4125
4141
|
if (!(other instanceof RulesDto))
|
|
4126
4142
|
return false;
|
|
4127
|
-
if (!(this.j69_1 == other.j69_1))
|
|
4128
|
-
return false;
|
|
4129
4143
|
if (!(this.k69_1 == other.k69_1))
|
|
4130
4144
|
return false;
|
|
4131
4145
|
if (!(this.l69_1 == other.l69_1))
|
|
@@ -4140,19 +4154,19 @@
|
|
|
4140
4154
|
return false;
|
|
4141
4155
|
if (!(this.q69_1 == other.q69_1))
|
|
4142
4156
|
return false;
|
|
4143
|
-
if (!
|
|
4157
|
+
if (!(this.r69_1 == other.r69_1))
|
|
4144
4158
|
return false;
|
|
4145
4159
|
if (!equals(this.s69_1, other.s69_1))
|
|
4146
4160
|
return false;
|
|
4147
|
-
if (!(this.t69_1
|
|
4161
|
+
if (!equals(this.t69_1, other.t69_1))
|
|
4148
4162
|
return false;
|
|
4149
4163
|
if (!(this.u69_1 == other.u69_1))
|
|
4150
4164
|
return false;
|
|
4151
4165
|
if (!(this.v69_1 == other.v69_1))
|
|
4152
4166
|
return false;
|
|
4153
|
-
if (!
|
|
4167
|
+
if (!(this.w69_1 == other.w69_1))
|
|
4154
4168
|
return false;
|
|
4155
|
-
if (!(this.x69_1
|
|
4169
|
+
if (!equals(this.x69_1, other.x69_1))
|
|
4156
4170
|
return false;
|
|
4157
4171
|
if (!(this.y69_1 == other.y69_1))
|
|
4158
4172
|
return false;
|
|
@@ -4166,9 +4180,9 @@
|
|
|
4166
4180
|
return false;
|
|
4167
4181
|
if (!(this.d6a_1 == other.d6a_1))
|
|
4168
4182
|
return false;
|
|
4169
|
-
if (!(this.e6a_1
|
|
4183
|
+
if (!(this.e6a_1 == other.e6a_1))
|
|
4170
4184
|
return false;
|
|
4171
|
-
if (!(this.f6a_1
|
|
4185
|
+
if (!(this.f6a_1 === other.f6a_1))
|
|
4172
4186
|
return false;
|
|
4173
4187
|
if (!(this.g6a_1 == other.g6a_1))
|
|
4174
4188
|
return false;
|
|
@@ -4176,14 +4190,16 @@
|
|
|
4176
4190
|
return false;
|
|
4177
4191
|
if (!(this.i6a_1 == other.i6a_1))
|
|
4178
4192
|
return false;
|
|
4193
|
+
if (!(this.j6a_1 == other.j6a_1))
|
|
4194
|
+
return false;
|
|
4179
4195
|
return true;
|
|
4180
4196
|
};
|
|
4181
4197
|
function CardGrowthComparator(trump, firstCardSuit) {
|
|
4182
|
-
this.
|
|
4183
|
-
this.
|
|
4198
|
+
this.k6a_1 = trump;
|
|
4199
|
+
this.l6a_1 = firstCardSuit;
|
|
4184
4200
|
}
|
|
4185
4201
|
protoOf(CardGrowthComparator).w5b = function (a, b) {
|
|
4186
|
-
return getGrowth(b, this.
|
|
4202
|
+
return getGrowth(b, this.k6a_1, this.l6a_1) - getGrowth(a, this.k6a_1, this.l6a_1) | 0;
|
|
4187
4203
|
};
|
|
4188
4204
|
protoOf(CardGrowthComparator).compare = function (a, b) {
|
|
4189
4205
|
var tmp = a instanceof GameCard ? a : THROW_CCE();
|
|
@@ -4331,46 +4347,46 @@
|
|
|
4331
4347
|
return tmp;
|
|
4332
4348
|
}
|
|
4333
4349
|
function ProcessingCard(card) {
|
|
4334
|
-
this.
|
|
4350
|
+
this.m6a_1 = card;
|
|
4335
4351
|
}
|
|
4336
4352
|
protoOf(ProcessingCard).toString = function () {
|
|
4337
|
-
return 'ProcessingCard(card=' + this.
|
|
4353
|
+
return 'ProcessingCard(card=' + this.m6a_1.toString() + ')';
|
|
4338
4354
|
};
|
|
4339
4355
|
protoOf(ProcessingCard).hashCode = function () {
|
|
4340
|
-
return this.
|
|
4356
|
+
return this.m6a_1.hashCode();
|
|
4341
4357
|
};
|
|
4342
4358
|
protoOf(ProcessingCard).equals = function (other) {
|
|
4343
4359
|
if (this === other)
|
|
4344
4360
|
return true;
|
|
4345
4361
|
if (!(other instanceof ProcessingCard))
|
|
4346
4362
|
return false;
|
|
4347
|
-
if (!this.
|
|
4363
|
+
if (!this.m6a_1.equals(other.m6a_1))
|
|
4348
4364
|
return false;
|
|
4349
4365
|
return true;
|
|
4350
4366
|
};
|
|
4351
4367
|
function AsyncProvider() {
|
|
4352
4368
|
}
|
|
4353
4369
|
function onError($this, message, error) {
|
|
4354
|
-
$this.
|
|
4370
|
+
$this.u6a_1.e('AsyncErrorHandler', message + ': ' + error.toString(), error);
|
|
4355
4371
|
}
|
|
4356
4372
|
function Companion_20() {
|
|
4357
|
-
this.
|
|
4373
|
+
this.c6b_1 = 'AsyncProvider';
|
|
4358
4374
|
}
|
|
4359
4375
|
var Companion_instance_22;
|
|
4360
4376
|
function Companion_getInstance_23() {
|
|
4361
4377
|
return Companion_instance_22;
|
|
4362
4378
|
}
|
|
4363
4379
|
function AsyncProviderImpl$errorHandler$$inlined$CoroutineExceptionHandler$1(this$0) {
|
|
4364
|
-
this.
|
|
4380
|
+
this.e6b_1 = this$0;
|
|
4365
4381
|
AbstractCoroutineContextElement.call(this, Key_instance);
|
|
4366
4382
|
}
|
|
4367
4383
|
protoOf(AsyncProviderImpl$errorHandler$$inlined$CoroutineExceptionHandler$1).q1x = function (context, exception) {
|
|
4368
|
-
onError(this.
|
|
4384
|
+
onError(this.e6b_1, 'CoroutineContext', exception);
|
|
4369
4385
|
return Unit_instance;
|
|
4370
4386
|
};
|
|
4371
4387
|
function AsyncProviderImpl$launchDefaultWithLock$slambda(this$0, $block, resultContinuation) {
|
|
4372
|
-
this.
|
|
4373
|
-
this.
|
|
4388
|
+
this.n6b_1 = this$0;
|
|
4389
|
+
this.o6b_1 = $block;
|
|
4374
4390
|
CoroutineImpl.call(this, resultContinuation);
|
|
4375
4391
|
}
|
|
4376
4392
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).j2d = function ($this$launch, $completion) {
|
|
@@ -4390,43 +4406,43 @@
|
|
|
4390
4406
|
switch (tmp) {
|
|
4391
4407
|
case 0:
|
|
4392
4408
|
this.t8_1 = 6;
|
|
4393
|
-
this.
|
|
4409
|
+
this.r6b_1 = this.n6b_1.w6a_1;
|
|
4394
4410
|
var tmp_0 = this;
|
|
4395
|
-
tmp_0.
|
|
4411
|
+
tmp_0.q6b_1 = null;
|
|
4396
4412
|
this.s8_1 = 1;
|
|
4397
|
-
suspendResult = this.
|
|
4413
|
+
suspendResult = this.r6b_1.z2k(this.q6b_1, this);
|
|
4398
4414
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4399
4415
|
return suspendResult;
|
|
4400
4416
|
}
|
|
4401
4417
|
|
|
4402
4418
|
continue $sm;
|
|
4403
4419
|
case 1:
|
|
4404
|
-
this.
|
|
4420
|
+
this.s6b_1 = Unit_instance;
|
|
4405
4421
|
this.s8_1 = 2;
|
|
4406
4422
|
continue $sm;
|
|
4407
4423
|
case 2:
|
|
4408
4424
|
this.t8_1 = 5;
|
|
4409
4425
|
this.s8_1 = 3;
|
|
4410
|
-
suspendResult = this.
|
|
4426
|
+
suspendResult = this.o6b_1(this.p6b_1, this);
|
|
4411
4427
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4412
4428
|
return suspendResult;
|
|
4413
4429
|
}
|
|
4414
4430
|
|
|
4415
4431
|
continue $sm;
|
|
4416
4432
|
case 3:
|
|
4417
|
-
this.
|
|
4433
|
+
this.s6b_1 = Unit_instance;
|
|
4418
4434
|
this.t8_1 = 6;
|
|
4419
4435
|
this.s8_1 = 4;
|
|
4420
4436
|
continue $sm;
|
|
4421
4437
|
case 4:
|
|
4422
|
-
this.
|
|
4438
|
+
this.s6b_1;
|
|
4423
4439
|
this.t8_1 = 6;
|
|
4424
|
-
this.
|
|
4440
|
+
this.r6b_1.k2k(this.q6b_1);
|
|
4425
4441
|
return Unit_instance;
|
|
4426
4442
|
case 5:
|
|
4427
4443
|
this.t8_1 = 6;
|
|
4428
4444
|
var t = this.v8_1;
|
|
4429
|
-
this.
|
|
4445
|
+
this.r6b_1.k2k(this.q6b_1);
|
|
4430
4446
|
throw t;
|
|
4431
4447
|
case 6:
|
|
4432
4448
|
throw this.v8_1;
|
|
@@ -4443,8 +4459,8 @@
|
|
|
4443
4459
|
while (true);
|
|
4444
4460
|
};
|
|
4445
4461
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).k2d = function ($this$launch, completion) {
|
|
4446
|
-
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.
|
|
4447
|
-
i.
|
|
4462
|
+
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.n6b_1, this.o6b_1, completion);
|
|
4463
|
+
i.p6b_1 = $this$launch;
|
|
4448
4464
|
return i;
|
|
4449
4465
|
};
|
|
4450
4466
|
function AsyncProviderImpl$launchDefaultWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
@@ -4459,53 +4475,53 @@
|
|
|
4459
4475
|
mainDispatcher = mainDispatcher === VOID ? Dispatchers_getInstance().d21() : mainDispatcher;
|
|
4460
4476
|
defaultDispatcher = defaultDispatcher === VOID ? Dispatchers_getInstance().z20_1 : defaultDispatcher;
|
|
4461
4477
|
unconfinedDispatcher = unconfinedDispatcher === VOID ? Dispatchers_getInstance().a21_1 : unconfinedDispatcher;
|
|
4462
|
-
this.
|
|
4463
|
-
this.
|
|
4464
|
-
this.v6a_1 = Mutex();
|
|
4478
|
+
this.u6a_1 = logger;
|
|
4479
|
+
this.v6a_1 = SupervisorJob();
|
|
4465
4480
|
this.w6a_1 = Mutex();
|
|
4481
|
+
this.x6a_1 = Mutex();
|
|
4466
4482
|
var tmp = this;
|
|
4467
4483
|
// Inline function 'kotlinx.coroutines.CoroutineExceptionHandler' call
|
|
4468
|
-
tmp.
|
|
4469
|
-
this.
|
|
4470
|
-
this.
|
|
4471
|
-
this.
|
|
4484
|
+
tmp.y6a_1 = new AsyncProviderImpl$errorHandler$$inlined$CoroutineExceptionHandler$1(this);
|
|
4485
|
+
this.z6a_1 = CoroutineScope_0(mainDispatcher.dg(this.v6a_1).dg(MainContextId_getInstance()));
|
|
4486
|
+
this.a6b_1 = CoroutineScope_0(defaultDispatcher.dg(this.v6a_1).dg(WorkerContextId_getInstance()));
|
|
4487
|
+
this.b6b_1 = CoroutineScope_0(unconfinedDispatcher.dg(this.v6a_1).dg(WorkerContextId_getInstance()));
|
|
4472
4488
|
}
|
|
4473
|
-
protoOf(AsyncProviderImpl).
|
|
4474
|
-
return this.
|
|
4489
|
+
protoOf(AsyncProviderImpl).n6a = function () {
|
|
4490
|
+
return this.y6a_1;
|
|
4475
4491
|
};
|
|
4476
|
-
protoOf(AsyncProviderImpl).
|
|
4477
|
-
if (this.
|
|
4478
|
-
this.
|
|
4492
|
+
protoOf(AsyncProviderImpl).s6a = function (context, block) {
|
|
4493
|
+
if (this.v6a_1.z1p()) {
|
|
4494
|
+
this.u6a_1.v('AsyncProvider', "supervisorJob is stopped, coroutine can't be started");
|
|
4479
4495
|
// Inline function 'kotlin.apply' call
|
|
4480
4496
|
var this_0 = Job();
|
|
4481
4497
|
this_0.n1q();
|
|
4482
4498
|
return this_0;
|
|
4483
4499
|
}
|
|
4484
|
-
return launch(this.
|
|
4500
|
+
return launch(this.z6a_1, context, VOID, block);
|
|
4485
4501
|
};
|
|
4486
|
-
protoOf(AsyncProviderImpl).
|
|
4487
|
-
if (this.
|
|
4488
|
-
this.
|
|
4502
|
+
protoOf(AsyncProviderImpl).o6a = function (context, block) {
|
|
4503
|
+
if (this.v6a_1.z1p()) {
|
|
4504
|
+
this.u6a_1.v('AsyncProvider', "supervisorJob is stopped, coroutine can't be started");
|
|
4489
4505
|
// Inline function 'kotlin.apply' call
|
|
4490
4506
|
var this_0 = Job();
|
|
4491
4507
|
this_0.n1q();
|
|
4492
4508
|
return this_0;
|
|
4493
4509
|
}
|
|
4494
|
-
return launch(this.
|
|
4510
|
+
return launch(this.a6b_1, context, VOID, block);
|
|
4495
4511
|
};
|
|
4496
|
-
protoOf(AsyncProviderImpl).
|
|
4497
|
-
if (this.
|
|
4498
|
-
this.
|
|
4512
|
+
protoOf(AsyncProviderImpl).q6a = function (context, block) {
|
|
4513
|
+
if (this.v6a_1.z1p()) {
|
|
4514
|
+
this.u6a_1.v('AsyncProvider', "supervisorJob is stopped, coroutine can't be started");
|
|
4499
4515
|
// Inline function 'kotlin.apply' call
|
|
4500
4516
|
var this_0 = Job();
|
|
4501
4517
|
this_0.n1q();
|
|
4502
4518
|
return this_0;
|
|
4503
4519
|
}
|
|
4504
|
-
return launch(this.
|
|
4520
|
+
return launch(this.a6b_1, context, VOID, AsyncProviderImpl$launchDefaultWithLock$slambda_0(this, block, null));
|
|
4505
4521
|
};
|
|
4506
4522
|
protoOf(AsyncProviderImpl).i2 = function () {
|
|
4507
|
-
if (!this.
|
|
4508
|
-
this.
|
|
4523
|
+
if (!this.v6a_1.z1p()) {
|
|
4524
|
+
this.v6a_1.n1q();
|
|
4509
4525
|
}
|
|
4510
4526
|
};
|
|
4511
4527
|
function Key() {
|
|
@@ -4567,7 +4583,7 @@
|
|
|
4567
4583
|
}
|
|
4568
4584
|
function UUIDIdsProvider() {
|
|
4569
4585
|
}
|
|
4570
|
-
protoOf(UUIDIdsProvider).
|
|
4586
|
+
protoOf(UUIDIdsProvider).t6b = function () {
|
|
4571
4587
|
return uuid4().toString();
|
|
4572
4588
|
};
|
|
4573
4589
|
var UUIDIdsProvider_instance;
|
|
@@ -4585,55 +4601,55 @@
|
|
|
4585
4601
|
tmp = lock;
|
|
4586
4602
|
}
|
|
4587
4603
|
lock = tmp;
|
|
4588
|
-
this.
|
|
4589
|
-
this.
|
|
4604
|
+
this.z6b_1 = logger;
|
|
4605
|
+
this.a6c_1 = lock;
|
|
4590
4606
|
var tmp_0 = this;
|
|
4591
4607
|
// Inline function 'kotlin.collections.hashMapOf' call
|
|
4592
|
-
tmp_0.
|
|
4608
|
+
tmp_0.b6c_1 = HashMap_init_$Create$();
|
|
4593
4609
|
}
|
|
4594
|
-
protoOf(JobsProviderImpl).
|
|
4610
|
+
protoOf(JobsProviderImpl).u6b = function (timerTag, job) {
|
|
4595
4611
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4596
|
-
this.
|
|
4597
|
-
if (this.
|
|
4598
|
-
this.
|
|
4612
|
+
this.a6c_1;
|
|
4613
|
+
if (this.y6b(timerTag)) {
|
|
4614
|
+
this.z6b_1.w(VOID, 'Timer already exists for that tag: ' + toString_0(timerTag));
|
|
4599
4615
|
}
|
|
4600
4616
|
// Inline function 'kotlin.collections.set' call
|
|
4601
|
-
this.
|
|
4617
|
+
this.b6c_1.f2(timerTag, job);
|
|
4602
4618
|
};
|
|
4603
|
-
protoOf(JobsProviderImpl).
|
|
4619
|
+
protoOf(JobsProviderImpl).y6b = function (timerTag) {
|
|
4604
4620
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4605
|
-
this.
|
|
4606
|
-
return this.
|
|
4621
|
+
this.a6c_1;
|
|
4622
|
+
return this.b6c_1.a2(timerTag);
|
|
4607
4623
|
};
|
|
4608
|
-
protoOf(JobsProviderImpl).
|
|
4624
|
+
protoOf(JobsProviderImpl).w6b = function (timerTag) {
|
|
4609
4625
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4610
|
-
this.
|
|
4611
|
-
if (!this.
|
|
4612
|
-
this.
|
|
4626
|
+
this.a6c_1;
|
|
4627
|
+
if (!this.y6b(timerTag)) {
|
|
4628
|
+
this.z6b_1.w(VOID, "Can't find timer for that tag: " + toString_0(timerTag));
|
|
4613
4629
|
}
|
|
4614
|
-
this.
|
|
4630
|
+
this.b6c_1.g2(timerTag);
|
|
4615
4631
|
};
|
|
4616
|
-
protoOf(JobsProviderImpl).
|
|
4632
|
+
protoOf(JobsProviderImpl).x6b = function (timers) {
|
|
4617
4633
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4618
|
-
this.
|
|
4634
|
+
this.a6c_1;
|
|
4619
4635
|
// Inline function 'kotlin.collections.forEach' call
|
|
4620
4636
|
var _iterator__ex2g4s = timers.l();
|
|
4621
4637
|
while (_iterator__ex2g4s.m()) {
|
|
4622
4638
|
var element = _iterator__ex2g4s.n();
|
|
4623
|
-
var timer = this.
|
|
4639
|
+
var timer = this.b6c_1.c2(element);
|
|
4624
4640
|
if (timer == null)
|
|
4625
4641
|
null;
|
|
4626
4642
|
else {
|
|
4627
4643
|
timer.n1q();
|
|
4628
4644
|
}
|
|
4629
4645
|
}
|
|
4630
|
-
this.
|
|
4646
|
+
this.b6c_1.d2().l2(toSet(timers));
|
|
4631
4647
|
};
|
|
4632
|
-
protoOf(JobsProviderImpl).
|
|
4648
|
+
protoOf(JobsProviderImpl).v6b = function (timerTag) {
|
|
4633
4649
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4634
|
-
this.
|
|
4635
|
-
var timer = this.
|
|
4636
|
-
this.
|
|
4650
|
+
this.a6c_1;
|
|
4651
|
+
var timer = this.b6c_1.c2(timerTag);
|
|
4652
|
+
this.b6c_1.g2(timerTag);
|
|
4637
4653
|
var tmp;
|
|
4638
4654
|
if (timer == null) {
|
|
4639
4655
|
tmp = null;
|
|
@@ -4646,36 +4662,36 @@
|
|
|
4646
4662
|
}
|
|
4647
4663
|
function FileSystemImpl(fileSystem) {
|
|
4648
4664
|
fileSystem = fileSystem === VOID ? get_SystemFileSystem() : fileSystem;
|
|
4649
|
-
this.
|
|
4665
|
+
this.f6c_1 = fileSystem;
|
|
4650
4666
|
}
|
|
4651
|
-
protoOf(FileSystemImpl).
|
|
4667
|
+
protoOf(FileSystemImpl).c6c = function (path, $completion) {
|
|
4652
4668
|
var directoryPath = Path(path);
|
|
4653
|
-
var exists = this.
|
|
4669
|
+
var exists = this.f6c_1.c1o(directoryPath);
|
|
4654
4670
|
if (!exists) {
|
|
4655
|
-
this.
|
|
4671
|
+
this.f6c_1.g1o(directoryPath);
|
|
4656
4672
|
}
|
|
4657
4673
|
return Unit_instance;
|
|
4658
4674
|
};
|
|
4659
|
-
protoOf(FileSystemImpl).
|
|
4660
|
-
return buffered(this.
|
|
4675
|
+
protoOf(FileSystemImpl).d6c = function (path, fileName, append, $completion) {
|
|
4676
|
+
return buffered(this.f6c_1.h1o(Path_0(path, [fileName]), append));
|
|
4661
4677
|
};
|
|
4662
|
-
protoOf(FileSystemImpl).
|
|
4663
|
-
this.
|
|
4678
|
+
protoOf(FileSystemImpl).e6c = function (path, $completion) {
|
|
4679
|
+
this.f6c_1.e1o(Path_0(path, []));
|
|
4664
4680
|
return Unit_instance;
|
|
4665
4681
|
};
|
|
4666
4682
|
function LoggerFactory() {
|
|
4667
4683
|
}
|
|
4668
4684
|
function LoggerFactoryImpl(coreConfig, fileSystem) {
|
|
4669
|
-
this.
|
|
4670
|
-
this.
|
|
4685
|
+
this.h6c_1 = coreConfig;
|
|
4686
|
+
this.i6c_1 = fileSystem;
|
|
4671
4687
|
}
|
|
4672
|
-
protoOf(LoggerFactoryImpl).
|
|
4688
|
+
protoOf(LoggerFactoryImpl).g6c = function (gameId, roomId, userId) {
|
|
4673
4689
|
// Inline function 'kotlin.let' call
|
|
4674
|
-
var it = this.
|
|
4690
|
+
var it = this.h6c_1.fileNameFormat;
|
|
4675
4691
|
var tmp = Companion_instance_4;
|
|
4676
4692
|
var fileName = tmp.formatter(it, gameId, roomId, userId == null ? 'unknown_user_id' : userId);
|
|
4677
4693
|
// Inline function 'kotlin.collections.map' call
|
|
4678
|
-
var this_0 = split(this.
|
|
4694
|
+
var this_0 = split(this.h6c_1.requireDirectoryPath, ['/']);
|
|
4679
4695
|
// Inline function 'kotlin.collections.mapTo' call
|
|
4680
4696
|
var destination = ArrayList_init_$Create$_0(collectionSizeOrDefault(this_0, 10));
|
|
4681
4697
|
var _iterator__ex2g4s = this_0.l();
|
|
@@ -4687,7 +4703,7 @@
|
|
|
4687
4703
|
}
|
|
4688
4704
|
var segments = destination;
|
|
4689
4705
|
var tmp0_path = joinToString(segments, '/');
|
|
4690
|
-
var tmp1_fileSystem = this.
|
|
4706
|
+
var tmp1_fileSystem = this.i6c_1;
|
|
4691
4707
|
return new LogsStorageControllerImpl(fileName, tmp0_path, tmp1_fileSystem);
|
|
4692
4708
|
};
|
|
4693
4709
|
function appendToFile($this, message, $completion) {
|
|
@@ -4698,7 +4714,7 @@
|
|
|
4698
4714
|
}
|
|
4699
4715
|
function $createDirectoryCOROUTINE$(_this__u8e3s4, resultContinuation) {
|
|
4700
4716
|
CoroutineImpl.call(this, resultContinuation);
|
|
4701
|
-
this.
|
|
4717
|
+
this.b6d_1 = _this__u8e3s4;
|
|
4702
4718
|
}
|
|
4703
4719
|
protoOf($createDirectoryCOROUTINE$).a9 = function () {
|
|
4704
4720
|
var suspendResult = this.u8_1;
|
|
@@ -4710,7 +4726,7 @@
|
|
|
4710
4726
|
this.t8_1 = 3;
|
|
4711
4727
|
this.t8_1 = 2;
|
|
4712
4728
|
this.s8_1 = 1;
|
|
4713
|
-
suspendResult = this.
|
|
4729
|
+
suspendResult = this.b6d_1.e6d_1.c6c(this.b6d_1.d6d_1, this);
|
|
4714
4730
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4715
4731
|
return suspendResult;
|
|
4716
4732
|
}
|
|
@@ -4751,8 +4767,8 @@
|
|
|
4751
4767
|
};
|
|
4752
4768
|
function $appendToFileCOROUTINE$(_this__u8e3s4, message, resultContinuation) {
|
|
4753
4769
|
CoroutineImpl.call(this, resultContinuation);
|
|
4754
|
-
this.
|
|
4755
|
-
this.
|
|
4770
|
+
this.r6c_1 = _this__u8e3s4;
|
|
4771
|
+
this.s6c_1 = message;
|
|
4756
4772
|
}
|
|
4757
4773
|
protoOf($appendToFileCOROUTINE$).a9 = function () {
|
|
4758
4774
|
var suspendResult = this.u8_1;
|
|
@@ -4764,7 +4780,7 @@
|
|
|
4764
4780
|
this.t8_1 = 3;
|
|
4765
4781
|
this.t8_1 = 2;
|
|
4766
4782
|
this.s8_1 = 1;
|
|
4767
|
-
suspendResult = this.
|
|
4783
|
+
suspendResult = this.r6c_1.e6d_1.d6c(this.r6c_1.d6d_1, this.r6c_1.c6d_1, true, this);
|
|
4768
4784
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4769
4785
|
return suspendResult;
|
|
4770
4786
|
}
|
|
@@ -4775,7 +4791,7 @@
|
|
|
4775
4791
|
var sink = buffered(ARGUMENT);
|
|
4776
4792
|
l$ret$1: do {
|
|
4777
4793
|
try {
|
|
4778
|
-
writeString(sink, this.
|
|
4794
|
+
writeString(sink, this.s6c_1 + '\n');
|
|
4779
4795
|
break l$ret$1;
|
|
4780
4796
|
} catch ($p) {
|
|
4781
4797
|
var t = $p;
|
|
@@ -4818,17 +4834,17 @@
|
|
|
4818
4834
|
while (true);
|
|
4819
4835
|
};
|
|
4820
4836
|
function LogsStorageControllerImpl(fileName, path, fileSystem) {
|
|
4821
|
-
this.
|
|
4822
|
-
this.
|
|
4823
|
-
this.
|
|
4837
|
+
this.c6d_1 = fileName;
|
|
4838
|
+
this.d6d_1 = path;
|
|
4839
|
+
this.e6d_1 = fileSystem;
|
|
4824
4840
|
}
|
|
4825
|
-
protoOf(LogsStorageControllerImpl).
|
|
4841
|
+
protoOf(LogsStorageControllerImpl).f6d = function ($completion) {
|
|
4826
4842
|
var tmp = new $createDirectoryCOROUTINE$(this, $completion);
|
|
4827
4843
|
tmp.u8_1 = Unit_instance;
|
|
4828
4844
|
tmp.v8_1 = null;
|
|
4829
4845
|
return tmp.a9();
|
|
4830
4846
|
};
|
|
4831
|
-
protoOf(LogsStorageControllerImpl).
|
|
4847
|
+
protoOf(LogsStorageControllerImpl).g6d = function (log, $completion) {
|
|
4832
4848
|
return appendToFile(this, log, $completion);
|
|
4833
4849
|
};
|
|
4834
4850
|
function BufferedAction() {
|
|
@@ -4843,30 +4859,30 @@
|
|
|
4843
4859
|
initialDelay = initialDelay === VOID ? new Long(0, 0) : initialDelay;
|
|
4844
4860
|
type = type === VOID ? TimerType_DELAY_getInstance() : type;
|
|
4845
4861
|
TimerAction.call(this);
|
|
4846
|
-
this.
|
|
4847
|
-
this.
|
|
4848
|
-
this.
|
|
4849
|
-
this.
|
|
4862
|
+
this.m6d_1 = timerTag;
|
|
4863
|
+
this.n6d_1 = delayMillis;
|
|
4864
|
+
this.o6d_1 = initialDelay;
|
|
4865
|
+
this.p6d_1 = type;
|
|
4850
4866
|
}
|
|
4851
4867
|
protoOf(StartTimerAction).toString = function () {
|
|
4852
|
-
var tmp = 'timerTag=' + toString_0(this.
|
|
4853
|
-
var tmp_0 = 'delayMillis=' + this.
|
|
4868
|
+
var tmp = 'timerTag=' + toString_0(this.m6d_1);
|
|
4869
|
+
var tmp_0 = 'delayMillis=' + this.n6d_1.toString();
|
|
4854
4870
|
// Inline function 'kotlin.takeIf' call
|
|
4855
|
-
var this_0 = 'initialDelay=' + this.
|
|
4871
|
+
var this_0 = 'initialDelay=' + this.o6d_1.toString();
|
|
4856
4872
|
var tmp_1;
|
|
4857
|
-
if (!equalsLong(this.
|
|
4873
|
+
if (!equalsLong(this.o6d_1, new Long(0, 0))) {
|
|
4858
4874
|
tmp_1 = this_0;
|
|
4859
4875
|
} else {
|
|
4860
4876
|
tmp_1 = null;
|
|
4861
4877
|
}
|
|
4862
4878
|
var tmp$ret$1 = tmp_1;
|
|
4863
|
-
return 'StartTimerAction(' + joinToString(listOfNotNull([tmp, tmp_0, tmp$ret$1, 'type=' + this.
|
|
4879
|
+
return 'StartTimerAction(' + joinToString(listOfNotNull([tmp, tmp_0, tmp$ret$1, 'type=' + this.p6d_1.toString()])) + ')';
|
|
4864
4880
|
};
|
|
4865
4881
|
protoOf(StartTimerAction).hashCode = function () {
|
|
4866
|
-
var result = hashCode(this.
|
|
4867
|
-
result = imul(result, 31) + this.m6d_1.hashCode() | 0;
|
|
4882
|
+
var result = hashCode(this.m6d_1);
|
|
4868
4883
|
result = imul(result, 31) + this.n6d_1.hashCode() | 0;
|
|
4869
4884
|
result = imul(result, 31) + this.o6d_1.hashCode() | 0;
|
|
4885
|
+
result = imul(result, 31) + this.p6d_1.hashCode() | 0;
|
|
4870
4886
|
return result;
|
|
4871
4887
|
};
|
|
4872
4888
|
protoOf(StartTimerAction).equals = function (other) {
|
|
@@ -4874,13 +4890,13 @@
|
|
|
4874
4890
|
return true;
|
|
4875
4891
|
if (!(other instanceof StartTimerAction))
|
|
4876
4892
|
return false;
|
|
4877
|
-
if (!equals(this.
|
|
4878
|
-
return false;
|
|
4879
|
-
if (!equalsLong(this.m6d_1, other.m6d_1))
|
|
4893
|
+
if (!equals(this.m6d_1, other.m6d_1))
|
|
4880
4894
|
return false;
|
|
4881
4895
|
if (!equalsLong(this.n6d_1, other.n6d_1))
|
|
4882
4896
|
return false;
|
|
4883
|
-
if (!this.o6d_1
|
|
4897
|
+
if (!equalsLong(this.o6d_1, other.o6d_1))
|
|
4898
|
+
return false;
|
|
4899
|
+
if (!this.p6d_1.equals(other.p6d_1))
|
|
4884
4900
|
return false;
|
|
4885
4901
|
return true;
|
|
4886
4902
|
};
|
|
@@ -4899,18 +4915,18 @@
|
|
|
4899
4915
|
}
|
|
4900
4916
|
function TimerTickAction(timerTag, type) {
|
|
4901
4917
|
TimerAction.call(this);
|
|
4902
|
-
this.
|
|
4903
|
-
this.
|
|
4918
|
+
this.q6d_1 = timerTag;
|
|
4919
|
+
this.r6d_1 = type;
|
|
4904
4920
|
}
|
|
4905
4921
|
protoOf(TimerTickAction).ignoreValidation = function () {
|
|
4906
|
-
return this.
|
|
4922
|
+
return this.q6d_1.ignoreValidation();
|
|
4907
4923
|
};
|
|
4908
4924
|
protoOf(TimerTickAction).toString = function () {
|
|
4909
|
-
return 'TimerTickAction(timerTag=' + toString_0(this.
|
|
4925
|
+
return 'TimerTickAction(timerTag=' + toString_0(this.q6d_1) + ', type=' + this.r6d_1.toString() + ')';
|
|
4910
4926
|
};
|
|
4911
4927
|
protoOf(TimerTickAction).hashCode = function () {
|
|
4912
|
-
var result = hashCode(this.
|
|
4913
|
-
result = imul(result, 31) + this.
|
|
4928
|
+
var result = hashCode(this.q6d_1);
|
|
4929
|
+
result = imul(result, 31) + this.r6d_1.hashCode() | 0;
|
|
4914
4930
|
return result;
|
|
4915
4931
|
};
|
|
4916
4932
|
protoOf(TimerTickAction).equals = function (other) {
|
|
@@ -4918,28 +4934,28 @@
|
|
|
4918
4934
|
return true;
|
|
4919
4935
|
if (!(other instanceof TimerTickAction))
|
|
4920
4936
|
return false;
|
|
4921
|
-
if (!equals(this.
|
|
4937
|
+
if (!equals(this.q6d_1, other.q6d_1))
|
|
4922
4938
|
return false;
|
|
4923
|
-
if (!this.
|
|
4939
|
+
if (!this.r6d_1.equals(other.r6d_1))
|
|
4924
4940
|
return false;
|
|
4925
4941
|
return true;
|
|
4926
4942
|
};
|
|
4927
4943
|
function StopTimerAction(timerTag) {
|
|
4928
4944
|
TimerAction.call(this);
|
|
4929
|
-
this.
|
|
4945
|
+
this.s6d_1 = timerTag;
|
|
4930
4946
|
}
|
|
4931
4947
|
protoOf(StopTimerAction).toString = function () {
|
|
4932
|
-
return 'StopTimerAction(timerTag=' + toString_0(this.
|
|
4948
|
+
return 'StopTimerAction(timerTag=' + toString_0(this.s6d_1) + ')';
|
|
4933
4949
|
};
|
|
4934
4950
|
protoOf(StopTimerAction).hashCode = function () {
|
|
4935
|
-
return hashCode(this.
|
|
4951
|
+
return hashCode(this.s6d_1);
|
|
4936
4952
|
};
|
|
4937
4953
|
protoOf(StopTimerAction).equals = function (other) {
|
|
4938
4954
|
if (this === other)
|
|
4939
4955
|
return true;
|
|
4940
4956
|
if (!(other instanceof StopTimerAction))
|
|
4941
4957
|
return false;
|
|
4942
|
-
if (!equals(this.
|
|
4958
|
+
if (!equals(this.s6d_1, other.s6d_1))
|
|
4943
4959
|
return false;
|
|
4944
4960
|
return true;
|
|
4945
4961
|
};
|
|
@@ -4983,7 +4999,7 @@
|
|
|
4983
4999
|
return function (reducer, initialState, en) {
|
|
4984
5000
|
var store = $storeCreator(reducer, initialState, en);
|
|
4985
5001
|
var origDispatch = store.dispatch;
|
|
4986
|
-
store.
|
|
5002
|
+
store.t6d(applyCatcher$lambda$lambda$lambda(origDispatch, $logger));
|
|
4987
5003
|
return store;
|
|
4988
5004
|
};
|
|
4989
5005
|
}
|
|
@@ -4997,7 +5013,7 @@
|
|
|
4997
5013
|
}
|
|
4998
5014
|
function applyMiddleware$lambda$lambda$lambda$lambda($middleware, $store, $dispatcher) {
|
|
4999
5015
|
return function (action) {
|
|
5000
|
-
$middleware.
|
|
5016
|
+
$middleware.u6d($store, $dispatcher, action);
|
|
5001
5017
|
return Unit_instance;
|
|
5002
5018
|
};
|
|
5003
5019
|
}
|
|
@@ -5012,7 +5028,7 @@
|
|
|
5012
5028
|
while (inductionVariable < last) {
|
|
5013
5029
|
var element = tmp0[inductionVariable];
|
|
5014
5030
|
inductionVariable = inductionVariable + 1 | 0;
|
|
5015
|
-
if (element.
|
|
5031
|
+
if (element.v6d(action)) {
|
|
5016
5032
|
destination.j(element);
|
|
5017
5033
|
}
|
|
5018
5034
|
}
|
|
@@ -5036,7 +5052,7 @@
|
|
|
5036
5052
|
return function (reducer, initialState, en) {
|
|
5037
5053
|
var store = $storeCreator(reducer, initialState, en);
|
|
5038
5054
|
var origDispatch = store.dispatch;
|
|
5039
|
-
store.
|
|
5055
|
+
store.t6d(applyMiddleware$lambda$lambda$lambda($middlewares, origDispatch, store));
|
|
5040
5056
|
return store;
|
|
5041
5057
|
};
|
|
5042
5058
|
}
|
|
@@ -5050,9 +5066,9 @@
|
|
|
5050
5066
|
return new timerMiddleware$$inlined$middlewareForActionType$1(asyncProvider, jobsProvider);
|
|
5051
5067
|
}
|
|
5052
5068
|
function timerMiddleware$o$handle$slambda$slambda($jobsProvider, $action, $store, resultContinuation) {
|
|
5053
|
-
this.
|
|
5054
|
-
this.
|
|
5055
|
-
this.
|
|
5069
|
+
this.e6e_1 = $jobsProvider;
|
|
5070
|
+
this.f6e_1 = $action;
|
|
5071
|
+
this.g6e_1 = $store;
|
|
5056
5072
|
CoroutineImpl.call(this, resultContinuation);
|
|
5057
5073
|
}
|
|
5058
5074
|
protoOf(timerMiddleware$o$handle$slambda$slambda).j2d = function ($this$launchMain, $completion) {
|
|
@@ -5071,8 +5087,8 @@
|
|
|
5071
5087
|
var tmp = this.s8_1;
|
|
5072
5088
|
if (tmp === 0) {
|
|
5073
5089
|
this.t8_1 = 1;
|
|
5074
|
-
if (this.
|
|
5075
|
-
this.
|
|
5090
|
+
if (this.e6e_1.y6b(this.f6e_1.m6d_1)) {
|
|
5091
|
+
this.g6e_1.dispatch(new TimerTickAction(this.f6e_1.m6d_1, TimerType_DELAY_getInstance()));
|
|
5076
5092
|
}
|
|
5077
5093
|
return Unit_instance;
|
|
5078
5094
|
} else if (tmp === 1) {
|
|
@@ -5085,8 +5101,8 @@
|
|
|
5085
5101
|
while (true);
|
|
5086
5102
|
};
|
|
5087
5103
|
protoOf(timerMiddleware$o$handle$slambda$slambda).k2d = function ($this$launchMain, completion) {
|
|
5088
|
-
var i = new timerMiddleware$o$handle$slambda$slambda(this.
|
|
5089
|
-
i.
|
|
5104
|
+
var i = new timerMiddleware$o$handle$slambda$slambda(this.e6e_1, this.f6e_1, this.g6e_1, completion);
|
|
5105
|
+
i.h6e_1 = $this$launchMain;
|
|
5090
5106
|
return i;
|
|
5091
5107
|
};
|
|
5092
5108
|
function timerMiddleware$o$handle$slambda$slambda_0($jobsProvider, $action, $store, resultContinuation) {
|
|
@@ -5098,9 +5114,9 @@
|
|
|
5098
5114
|
return l;
|
|
5099
5115
|
}
|
|
5100
5116
|
function timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $action, $store, resultContinuation) {
|
|
5101
|
-
this.
|
|
5102
|
-
this.
|
|
5103
|
-
this.
|
|
5117
|
+
this.q6e_1 = $jobsProvider;
|
|
5118
|
+
this.r6e_1 = $action;
|
|
5119
|
+
this.s6e_1 = $store;
|
|
5104
5120
|
CoroutineImpl.call(this, resultContinuation);
|
|
5105
5121
|
}
|
|
5106
5122
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).j2d = function ($this$launchMain, $completion) {
|
|
@@ -5119,8 +5135,8 @@
|
|
|
5119
5135
|
var tmp = this.s8_1;
|
|
5120
5136
|
if (tmp === 0) {
|
|
5121
5137
|
this.t8_1 = 1;
|
|
5122
|
-
if (this.
|
|
5123
|
-
this.
|
|
5138
|
+
if (this.q6e_1.y6b(this.r6e_1.m6d_1)) {
|
|
5139
|
+
this.s6e_1.dispatch(new TimerTickAction(this.r6e_1.m6d_1, TimerType_INTERVAL_getInstance()));
|
|
5124
5140
|
}
|
|
5125
5141
|
return Unit_instance;
|
|
5126
5142
|
} else if (tmp === 1) {
|
|
@@ -5133,8 +5149,8 @@
|
|
|
5133
5149
|
while (true);
|
|
5134
5150
|
};
|
|
5135
5151
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).k2d = function ($this$launchMain, completion) {
|
|
5136
|
-
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.
|
|
5137
|
-
i.
|
|
5152
|
+
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.q6e_1, this.r6e_1, this.s6e_1, completion);
|
|
5153
|
+
i.t6e_1 = $this$launchMain;
|
|
5138
5154
|
return i;
|
|
5139
5155
|
};
|
|
5140
5156
|
function timerMiddleware$o$handle$slambda$slambda_2($jobsProvider, $action, $store, resultContinuation) {
|
|
@@ -5146,10 +5162,10 @@
|
|
|
5146
5162
|
return l;
|
|
5147
5163
|
}
|
|
5148
5164
|
function timerMiddleware$o$handle$slambda($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
5149
|
-
this.
|
|
5150
|
-
this.
|
|
5151
|
-
this.
|
|
5152
|
-
this.
|
|
5165
|
+
this.c6f_1 = $action;
|
|
5166
|
+
this.d6f_1 = $asyncProvider;
|
|
5167
|
+
this.e6f_1 = $jobsProvider;
|
|
5168
|
+
this.f6f_1 = $store;
|
|
5153
5169
|
CoroutineImpl.call(this, resultContinuation);
|
|
5154
5170
|
}
|
|
5155
5171
|
protoOf(timerMiddleware$o$handle$slambda).j2d = function ($this$launchDefault, $completion) {
|
|
@@ -5169,9 +5185,9 @@
|
|
|
5169
5185
|
switch (tmp) {
|
|
5170
5186
|
case 0:
|
|
5171
5187
|
this.t8_1 = 10;
|
|
5172
|
-
if (!equalsLong(this.
|
|
5188
|
+
if (!equalsLong(this.c6f_1.o6d_1, new Long(0, 0)) && this.c6f_1.p6d_1.equals(TimerType_INTERVAL_getInstance())) {
|
|
5173
5189
|
this.s8_1 = 1;
|
|
5174
|
-
suspendResult = delay(this.
|
|
5190
|
+
suspendResult = delay(this.c6f_1.o6d_1, this);
|
|
5175
5191
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5176
5192
|
return suspendResult;
|
|
5177
5193
|
}
|
|
@@ -5185,19 +5201,19 @@
|
|
|
5185
5201
|
this.s8_1 = 2;
|
|
5186
5202
|
continue $sm;
|
|
5187
5203
|
case 2:
|
|
5188
|
-
var tmp0 = this.
|
|
5204
|
+
var tmp0 = this.c6f_1.p6d_1.q2_1;
|
|
5189
5205
|
if (tmp0 === 0) {
|
|
5190
5206
|
this.s8_1 = 8;
|
|
5191
|
-
suspendResult = delay(this.
|
|
5207
|
+
suspendResult = delay(this.c6f_1.n6d_1, this);
|
|
5192
5208
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5193
5209
|
return suspendResult;
|
|
5194
5210
|
}
|
|
5195
5211
|
continue $sm;
|
|
5196
5212
|
} else {
|
|
5197
5213
|
if (tmp0 === 1) {
|
|
5198
|
-
if (!equalsLong(this.
|
|
5214
|
+
if (!equalsLong(this.c6f_1.o6d_1, new Long(0, 0))) {
|
|
5199
5215
|
this.s8_1 = 3;
|
|
5200
|
-
suspendResult = delay(this.
|
|
5216
|
+
suspendResult = delay(this.c6f_1.o6d_1, this);
|
|
5201
5217
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5202
5218
|
return suspendResult;
|
|
5203
5219
|
}
|
|
@@ -5220,14 +5236,14 @@
|
|
|
5220
5236
|
this.s8_1 = 5;
|
|
5221
5237
|
continue $sm;
|
|
5222
5238
|
case 5:
|
|
5223
|
-
if (!get_isActive(this.
|
|
5239
|
+
if (!get_isActive(this.g6f_1)) {
|
|
5224
5240
|
this.s8_1 = 7;
|
|
5225
5241
|
continue $sm;
|
|
5226
5242
|
}
|
|
5227
5243
|
|
|
5228
|
-
this.
|
|
5244
|
+
this.d6f_1.t6a(VOID, timerMiddleware$o$handle$slambda$slambda_2(this.e6f_1, this.c6f_1, this.f6f_1, null));
|
|
5229
5245
|
this.s8_1 = 6;
|
|
5230
|
-
suspendResult = delay(this.
|
|
5246
|
+
suspendResult = delay(this.c6f_1.o6d_1, this);
|
|
5231
5247
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5232
5248
|
return suspendResult;
|
|
5233
5249
|
}
|
|
@@ -5237,12 +5253,12 @@
|
|
|
5237
5253
|
this.s8_1 = 5;
|
|
5238
5254
|
continue $sm;
|
|
5239
5255
|
case 7:
|
|
5240
|
-
this.
|
|
5256
|
+
this.h6f_1 = Unit_instance;
|
|
5241
5257
|
this.s8_1 = 9;
|
|
5242
5258
|
continue $sm;
|
|
5243
5259
|
case 8:
|
|
5244
5260
|
var tmp_1 = this;
|
|
5245
|
-
tmp_1.
|
|
5261
|
+
tmp_1.h6f_1 = this.d6f_1.t6a(VOID, timerMiddleware$o$handle$slambda$slambda_0(this.e6f_1, this.c6f_1, this.f6f_1, null));
|
|
5246
5262
|
this.s8_1 = 9;
|
|
5247
5263
|
continue $sm;
|
|
5248
5264
|
case 9:
|
|
@@ -5262,8 +5278,8 @@
|
|
|
5262
5278
|
while (true);
|
|
5263
5279
|
};
|
|
5264
5280
|
protoOf(timerMiddleware$o$handle$slambda).k2d = function ($this$launchDefault, completion) {
|
|
5265
|
-
var i = new timerMiddleware$o$handle$slambda(this.
|
|
5266
|
-
i.
|
|
5281
|
+
var i = new timerMiddleware$o$handle$slambda(this.c6f_1, this.d6f_1, this.e6f_1, this.f6f_1, completion);
|
|
5282
|
+
i.g6f_1 = $this$launchDefault;
|
|
5267
5283
|
return i;
|
|
5268
5284
|
};
|
|
5269
5285
|
function timerMiddleware$o$handle$slambda_0($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
@@ -5275,24 +5291,24 @@
|
|
|
5275
5291
|
return l;
|
|
5276
5292
|
}
|
|
5277
5293
|
function timerMiddleware$$inlined$middlewareForActionType$1($asyncProvider, $jobsProvider) {
|
|
5278
|
-
this.
|
|
5279
|
-
this.
|
|
5294
|
+
this.i6f_1 = $asyncProvider;
|
|
5295
|
+
this.j6f_1 = $jobsProvider;
|
|
5280
5296
|
}
|
|
5281
|
-
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).
|
|
5297
|
+
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).v6d = function (action) {
|
|
5282
5298
|
return action instanceof TimerAction;
|
|
5283
5299
|
};
|
|
5284
|
-
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).
|
|
5300
|
+
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).k6f = function (store, next, action) {
|
|
5285
5301
|
var action_0 = action instanceof TimerAction ? action : THROW_CCE();
|
|
5286
5302
|
if (action_0 instanceof StartTimerAction) {
|
|
5287
|
-
var job = this.
|
|
5288
|
-
this.
|
|
5303
|
+
var job = this.i6f_1.p6a(VOID, timerMiddleware$o$handle$slambda_0(action_0, this.i6f_1, this.j6f_1, store, null));
|
|
5304
|
+
this.j6f_1.u6b(action_0.m6d_1, job);
|
|
5289
5305
|
} else {
|
|
5290
5306
|
if (action_0 instanceof StopTimerAction) {
|
|
5291
|
-
this.
|
|
5307
|
+
this.j6f_1.v6b(action_0.s6d_1);
|
|
5292
5308
|
} else {
|
|
5293
5309
|
if (action_0 instanceof TimerTickAction) {
|
|
5294
|
-
if (action_0.
|
|
5295
|
-
this.
|
|
5310
|
+
if (action_0.r6d_1.equals(TimerType_DELAY_getInstance())) {
|
|
5311
|
+
this.j6f_1.w6b(action_0.q6d_1);
|
|
5296
5312
|
}
|
|
5297
5313
|
} else {
|
|
5298
5314
|
noWhenBranchMatchedException();
|
|
@@ -5301,8 +5317,8 @@
|
|
|
5301
5317
|
}
|
|
5302
5318
|
next(action_0);
|
|
5303
5319
|
};
|
|
5304
|
-
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).
|
|
5305
|
-
return this.
|
|
5320
|
+
protoOf(timerMiddleware$$inlined$middlewareForActionType$1).u6d = function (store, next, action) {
|
|
5321
|
+
return this.k6f(store, next, action);
|
|
5306
5322
|
};
|
|
5307
5323
|
function compose(functions) {
|
|
5308
5324
|
return compose$lambda(functions);
|
|
@@ -5346,7 +5362,7 @@
|
|
|
5346
5362
|
function createStore$dispatch($lock, currentState, currentReducer, stateTrigger, $logger, action) {
|
|
5347
5363
|
try {
|
|
5348
5364
|
// Inline function 'kotlinx.atomicfu.locks.ReentrantLock.lock' call
|
|
5349
|
-
currentState._v = currentReducer._v.
|
|
5365
|
+
currentState._v = currentReducer._v.l6f(currentState._v, action);
|
|
5350
5366
|
stateTrigger.f2a(Unit_instance);
|
|
5351
5367
|
} catch ($p) {
|
|
5352
5368
|
if ($p instanceof Exception) {
|
|
@@ -5370,8 +5386,8 @@
|
|
|
5370
5386
|
};
|
|
5371
5387
|
}
|
|
5372
5388
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug($$this$unsafeFlow, this$0, resultContinuation) {
|
|
5373
|
-
this.
|
|
5374
|
-
this.
|
|
5389
|
+
this.u6f_1 = $$this$unsafeFlow;
|
|
5390
|
+
this.v6f_1 = this$0;
|
|
5375
5391
|
CoroutineImpl.call(this, resultContinuation);
|
|
5376
5392
|
}
|
|
5377
5393
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).u4u = function (value, $completion) {
|
|
@@ -5391,10 +5407,10 @@
|
|
|
5391
5407
|
switch (tmp) {
|
|
5392
5408
|
case 0:
|
|
5393
5409
|
this.t8_1 = 2;
|
|
5394
|
-
var tmp0 = this.
|
|
5395
|
-
this.
|
|
5410
|
+
var tmp0 = this.u6f_1;
|
|
5411
|
+
this.w6f_1;
|
|
5396
5412
|
this.s8_1 = 1;
|
|
5397
|
-
suspendResult = tmp0.z27(this.
|
|
5413
|
+
suspendResult = tmp0.z27(this.v6f_1.state, this);
|
|
5398
5414
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5399
5415
|
return suspendResult;
|
|
5400
5416
|
}
|
|
@@ -5417,8 +5433,8 @@
|
|
|
5417
5433
|
while (true);
|
|
5418
5434
|
};
|
|
5419
5435
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).v4u = function (value, completion) {
|
|
5420
|
-
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.
|
|
5421
|
-
i.
|
|
5436
|
+
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.u6f_1, this.v6f_1, completion);
|
|
5437
|
+
i.w6f_1 = value;
|
|
5422
5438
|
return i;
|
|
5423
5439
|
};
|
|
5424
5440
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug_0($$this$unsafeFlow, this$0, resultContinuation) {
|
|
@@ -5431,8 +5447,8 @@
|
|
|
5431
5447
|
}
|
|
5432
5448
|
function $collectCOROUTINE$(_this__u8e3s4, collector, resultContinuation) {
|
|
5433
5449
|
CoroutineImpl.call(this, resultContinuation);
|
|
5434
|
-
this.
|
|
5435
|
-
this.
|
|
5450
|
+
this.f6g_1 = _this__u8e3s4;
|
|
5451
|
+
this.g6g_1 = collector;
|
|
5436
5452
|
}
|
|
5437
5453
|
protoOf($collectCOROUTINE$).a9 = function () {
|
|
5438
5454
|
var suspendResult = this.u8_1;
|
|
@@ -5442,10 +5458,10 @@
|
|
|
5442
5458
|
switch (tmp) {
|
|
5443
5459
|
case 0:
|
|
5444
5460
|
this.t8_1 = 2;
|
|
5445
|
-
var $this$unsafeFlow = this.
|
|
5461
|
+
var $this$unsafeFlow = this.g6g_1;
|
|
5446
5462
|
this.s8_1 = 1;
|
|
5447
|
-
var tmp_0 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0($this$unsafeFlow, this.
|
|
5448
|
-
suspendResult = this.
|
|
5463
|
+
var tmp_0 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0($this$unsafeFlow, this.f6g_1.i6g_1, null);
|
|
5464
|
+
suspendResult = this.f6g_1.h6g_1.l27(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_0), this);
|
|
5449
5465
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5450
5466
|
return suspendResult;
|
|
5451
5467
|
}
|
|
@@ -5468,13 +5484,13 @@
|
|
|
5468
5484
|
while (true);
|
|
5469
5485
|
};
|
|
5470
5486
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
5471
|
-
this.
|
|
5487
|
+
this.j6g_1 = function_0;
|
|
5472
5488
|
}
|
|
5473
5489
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).z27 = function (value, $completion) {
|
|
5474
|
-
return this.
|
|
5490
|
+
return this.j6g_1(value, $completion);
|
|
5475
5491
|
};
|
|
5476
5492
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).b3 = function () {
|
|
5477
|
-
return this.
|
|
5493
|
+
return this.j6g_1;
|
|
5478
5494
|
};
|
|
5479
5495
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
5480
5496
|
var tmp;
|
|
@@ -5507,8 +5523,8 @@
|
|
|
5507
5523
|
};
|
|
5508
5524
|
}
|
|
5509
5525
|
function createStore$3$observe$$inlined$map$1($this, this$0) {
|
|
5510
|
-
this.
|
|
5511
|
-
this.
|
|
5526
|
+
this.h6g_1 = $this;
|
|
5527
|
+
this.i6g_1 = this$0;
|
|
5512
5528
|
}
|
|
5513
5529
|
protoOf(createStore$3$observe$$inlined$map$1).a28 = function (collector, $completion) {
|
|
5514
5530
|
var tmp = new $collectCOROUTINE$(this, collector, $completion);
|
|
@@ -5520,33 +5536,33 @@
|
|
|
5520
5536
|
return this.a28(collector, $completion);
|
|
5521
5537
|
};
|
|
5522
5538
|
function createStore$3($currentState, $lock, $currentReducer, $stateTrigger, $logger) {
|
|
5523
|
-
this.
|
|
5524
|
-
this.
|
|
5525
|
-
this.
|
|
5539
|
+
this.n6g_1 = $currentState;
|
|
5540
|
+
this.o6g_1 = $stateTrigger;
|
|
5541
|
+
this.k6g_1 = this;
|
|
5526
5542
|
var tmp = this;
|
|
5527
|
-
tmp.
|
|
5543
|
+
tmp.l6g_1 = createStore$o$dispatch$lambda($lock, $currentState, $currentReducer, $stateTrigger, $logger);
|
|
5528
5544
|
var tmp_0 = this;
|
|
5529
|
-
tmp_0.
|
|
5545
|
+
tmp_0.m6g_1 = createStore$o$replaceReducer$lambda($currentReducer, $lock, $currentState, $stateTrigger, $logger);
|
|
5530
5546
|
}
|
|
5531
|
-
protoOf(createStore$3).
|
|
5532
|
-
return this.
|
|
5547
|
+
protoOf(createStore$3).p6g = function () {
|
|
5548
|
+
return this.k6g_1;
|
|
5533
5549
|
};
|
|
5534
5550
|
protoOf(createStore$3).a65 = function () {
|
|
5535
|
-
return createStore$getState(this.
|
|
5536
|
-
};
|
|
5537
|
-
protoOf(createStore$3).s6d = function (_set____db54di) {
|
|
5538
|
-
this.k6g_1 = _set____db54di;
|
|
5551
|
+
return createStore$getState(this.n6g_1);
|
|
5539
5552
|
};
|
|
5540
|
-
protoOf(createStore$3).
|
|
5541
|
-
|
|
5553
|
+
protoOf(createStore$3).t6d = function (_set____db54di) {
|
|
5554
|
+
this.l6g_1 = _set____db54di;
|
|
5542
5555
|
};
|
|
5543
5556
|
protoOf(createStore$3).q6g = function () {
|
|
5544
5557
|
return this.l6g_1;
|
|
5545
5558
|
};
|
|
5546
5559
|
protoOf(createStore$3).r6g = function () {
|
|
5560
|
+
return this.m6g_1;
|
|
5561
|
+
};
|
|
5562
|
+
protoOf(createStore$3).s6g = function () {
|
|
5547
5563
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
5548
5564
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
5549
|
-
var this_0 = this.
|
|
5565
|
+
var this_0 = this.o6g_1;
|
|
5550
5566
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
5551
5567
|
return new createStore$3$observe$$inlined$map$1(this_0, this);
|
|
5552
5568
|
};
|
|
@@ -5622,10 +5638,10 @@
|
|
|
5622
5638
|
return new middleware$1(dispatch);
|
|
5623
5639
|
}
|
|
5624
5640
|
function middleware$1($dispatch) {
|
|
5625
|
-
this.
|
|
5641
|
+
this.t6g_1 = $dispatch;
|
|
5626
5642
|
}
|
|
5627
|
-
protoOf(middleware$1).
|
|
5628
|
-
this.
|
|
5643
|
+
protoOf(middleware$1).u6d = function (store, next, action) {
|
|
5644
|
+
this.t6g_1(store, next, action);
|
|
5629
5645
|
};
|
|
5630
5646
|
function Reducer() {
|
|
5631
5647
|
}
|
|
@@ -5633,11 +5649,11 @@
|
|
|
5633
5649
|
return new combineReducers$1(reducers);
|
|
5634
5650
|
}
|
|
5635
5651
|
function combineReducers$1($reducers) {
|
|
5636
|
-
this.
|
|
5652
|
+
this.u6g_1 = $reducers;
|
|
5637
5653
|
}
|
|
5638
|
-
protoOf(combineReducers$1).
|
|
5654
|
+
protoOf(combineReducers$1).v6g = function (state, action) {
|
|
5639
5655
|
// Inline function 'kotlin.collections.filter' call
|
|
5640
|
-
var tmp0 = this.
|
|
5656
|
+
var tmp0 = this.u6g_1;
|
|
5641
5657
|
// Inline function 'kotlin.collections.filterTo' call
|
|
5642
5658
|
var destination = ArrayList_init_$Create$();
|
|
5643
5659
|
var inductionVariable = 0;
|
|
@@ -5645,7 +5661,7 @@
|
|
|
5645
5661
|
while (inductionVariable < last) {
|
|
5646
5662
|
var element = tmp0[inductionVariable];
|
|
5647
5663
|
inductionVariable = inductionVariable + 1 | 0;
|
|
5648
|
-
if (element.
|
|
5664
|
+
if (element.v6d(action)) {
|
|
5649
5665
|
destination.j(element);
|
|
5650
5666
|
}
|
|
5651
5667
|
}
|
|
@@ -5655,12 +5671,12 @@
|
|
|
5655
5671
|
while (_iterator__ex2g4s.m()) {
|
|
5656
5672
|
var element_0 = _iterator__ex2g4s.n();
|
|
5657
5673
|
var s = accumulator;
|
|
5658
|
-
accumulator = element_0.
|
|
5674
|
+
accumulator = element_0.l6f(s, action);
|
|
5659
5675
|
}
|
|
5660
5676
|
return accumulator;
|
|
5661
5677
|
};
|
|
5662
|
-
protoOf(combineReducers$1).
|
|
5663
|
-
return this.
|
|
5678
|
+
protoOf(combineReducers$1).l6f = function (state, action) {
|
|
5679
|
+
return this.v6g((state == null ? true : !(state == null)) ? state : THROW_CCE(), action);
|
|
5664
5680
|
};
|
|
5665
5681
|
function Store() {
|
|
5666
5682
|
}
|
|
@@ -5902,18 +5918,18 @@
|
|
|
5902
5918
|
return tmp0_elvis_lhs == null ? _this__u8e3s4 : tmp0_elvis_lhs;
|
|
5903
5919
|
}
|
|
5904
5920
|
function ClientLoggerKey(gameId, playerId) {
|
|
5905
|
-
this.
|
|
5906
|
-
this.
|
|
5921
|
+
this.w6g_1 = gameId;
|
|
5922
|
+
this.x6g_1 = playerId;
|
|
5907
5923
|
}
|
|
5908
|
-
protoOf(ClientLoggerKey).
|
|
5909
|
-
return joinToString(listOf([this.
|
|
5924
|
+
protoOf(ClientLoggerKey).y6g = function () {
|
|
5925
|
+
return joinToString(listOf([this.w6g_1, this.x6g_1]), '_');
|
|
5910
5926
|
};
|
|
5911
5927
|
protoOf(ClientLoggerKey).toString = function () {
|
|
5912
|
-
return 'ClientLoggerKey(gameId=' + this.
|
|
5928
|
+
return 'ClientLoggerKey(gameId=' + this.w6g_1 + ', playerId=' + this.x6g_1 + ')';
|
|
5913
5929
|
};
|
|
5914
5930
|
protoOf(ClientLoggerKey).hashCode = function () {
|
|
5915
|
-
var result = getStringHashCode(this.
|
|
5916
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
5931
|
+
var result = getStringHashCode(this.w6g_1);
|
|
5932
|
+
result = imul(result, 31) + getStringHashCode(this.x6g_1) | 0;
|
|
5917
5933
|
return result;
|
|
5918
5934
|
};
|
|
5919
5935
|
protoOf(ClientLoggerKey).equals = function (other) {
|
|
@@ -5921,14 +5937,14 @@
|
|
|
5921
5937
|
return true;
|
|
5922
5938
|
if (!(other instanceof ClientLoggerKey))
|
|
5923
5939
|
return false;
|
|
5924
|
-
if (!(this.v6g_1 === other.v6g_1))
|
|
5925
|
-
return false;
|
|
5926
5940
|
if (!(this.w6g_1 === other.w6g_1))
|
|
5927
5941
|
return false;
|
|
5942
|
+
if (!(this.x6g_1 === other.x6g_1))
|
|
5943
|
+
return false;
|
|
5928
5944
|
return true;
|
|
5929
5945
|
};
|
|
5930
5946
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
5931
|
-
return $this.
|
|
5947
|
+
return $this.z6g_1.x();
|
|
5932
5948
|
}
|
|
5933
5949
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
5934
5950
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
|
|
@@ -5968,7 +5984,7 @@
|
|
|
5968
5984
|
Companion_instance_23 = this;
|
|
5969
5985
|
var tmp = this;
|
|
5970
5986
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
5971
|
-
tmp.
|
|
5987
|
+
tmp.z6g_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
5972
5988
|
}
|
|
5973
5989
|
protoOf(Companion_21).a1c = function () {
|
|
5974
5990
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -6031,7 +6047,7 @@
|
|
|
6031
6047
|
// Inline function 'kotlin.arrayOf' call
|
|
6032
6048
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6033
6049
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6034
|
-
tmp.
|
|
6050
|
+
tmp.f6h_1 = [lazy(tmp_0, LoggerOutputDataDto$Companion$$childSerializers$_anonymous__j015dy), null, null, null, null];
|
|
6035
6051
|
}
|
|
6036
6052
|
protoOf(Companion_22).a1c = function () {
|
|
6037
6053
|
return $serializer_getInstance_10();
|
|
@@ -6050,12 +6066,12 @@
|
|
|
6050
6066
|
tmp0_serialDesc.gz('tag', false);
|
|
6051
6067
|
tmp0_serialDesc.gz('message', false);
|
|
6052
6068
|
tmp0_serialDesc.gz('stackTrace', false);
|
|
6053
|
-
this.
|
|
6069
|
+
this.g6h_1 = tmp0_serialDesc;
|
|
6054
6070
|
}
|
|
6055
|
-
protoOf($serializer_10).
|
|
6056
|
-
var tmp0_desc = this.
|
|
6071
|
+
protoOf($serializer_10).h6h = function (encoder, value) {
|
|
6072
|
+
var tmp0_desc = this.g6h_1;
|
|
6057
6073
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
6058
|
-
var tmp2_cached = Companion_getInstance_25().
|
|
6074
|
+
var tmp2_cached = Companion_getInstance_25().f6h_1;
|
|
6059
6075
|
tmp1_output.ft(tmp0_desc, 0, tmp2_cached[0].x(), value.type);
|
|
6060
6076
|
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
6061
6077
|
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -6064,10 +6080,10 @@
|
|
|
6064
6080
|
tmp1_output.pr(tmp0_desc);
|
|
6065
6081
|
};
|
|
6066
6082
|
protoOf($serializer_10).co = function (encoder, value) {
|
|
6067
|
-
return this.
|
|
6083
|
+
return this.h6h(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
6068
6084
|
};
|
|
6069
6085
|
protoOf($serializer_10).do = function (decoder) {
|
|
6070
|
-
var tmp0_desc = this.
|
|
6086
|
+
var tmp0_desc = this.g6h_1;
|
|
6071
6087
|
var tmp1_flag = true;
|
|
6072
6088
|
var tmp2_index = 0;
|
|
6073
6089
|
var tmp3_bitMask0 = 0;
|
|
@@ -6077,7 +6093,7 @@
|
|
|
6077
6093
|
var tmp7_local3 = null;
|
|
6078
6094
|
var tmp8_local4 = null;
|
|
6079
6095
|
var tmp9_input = decoder.or(tmp0_desc);
|
|
6080
|
-
var tmp10_cached = Companion_getInstance_25().
|
|
6096
|
+
var tmp10_cached = Companion_getInstance_25().f6h_1;
|
|
6081
6097
|
if (tmp9_input.es()) {
|
|
6082
6098
|
tmp4_local0 = tmp9_input.as(tmp0_desc, 0, tmp10_cached[0].x(), tmp4_local0);
|
|
6083
6099
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -6124,13 +6140,13 @@
|
|
|
6124
6140
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
6125
6141
|
};
|
|
6126
6142
|
protoOf($serializer_10).bo = function () {
|
|
6127
|
-
return this.
|
|
6143
|
+
return this.g6h_1;
|
|
6128
6144
|
};
|
|
6129
6145
|
protoOf($serializer_10).vz = function () {
|
|
6130
6146
|
// Inline function 'kotlin.arrayOf' call
|
|
6131
6147
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6132
6148
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6133
|
-
return [Companion_getInstance_25().
|
|
6149
|
+
return [Companion_getInstance_25().f6h_1[0].x(), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
6134
6150
|
};
|
|
6135
6151
|
var $serializer_instance_10;
|
|
6136
6152
|
function $serializer_getInstance_10() {
|
|
@@ -6140,7 +6156,7 @@
|
|
|
6140
6156
|
}
|
|
6141
6157
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
6142
6158
|
if (!(31 === (31 & seen0))) {
|
|
6143
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().
|
|
6159
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().g6h_1);
|
|
6144
6160
|
}
|
|
6145
6161
|
$this.type = type;
|
|
6146
6162
|
$this.key = key;
|
|
@@ -6172,7 +6188,7 @@
|
|
|
6172
6188
|
protoOf(LoggerOutputDataDto).e = function () {
|
|
6173
6189
|
return this.message;
|
|
6174
6190
|
};
|
|
6175
|
-
protoOf(LoggerOutputDataDto).
|
|
6191
|
+
protoOf(LoggerOutputDataDto).i6h = function () {
|
|
6176
6192
|
return this.stackTrace;
|
|
6177
6193
|
};
|
|
6178
6194
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -6229,7 +6245,7 @@
|
|
|
6229
6245
|
protoOf(LoggerOutputDataDto).w64 = function () {
|
|
6230
6246
|
return this.stackTrace;
|
|
6231
6247
|
};
|
|
6232
|
-
protoOf(LoggerOutputDataDto).
|
|
6248
|
+
protoOf(LoggerOutputDataDto).j6h = function (type, key, tag, message, stackTrace) {
|
|
6233
6249
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
6234
6250
|
};
|
|
6235
6251
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -6238,7 +6254,7 @@
|
|
|
6238
6254
|
tag = tag === VOID ? this.tag : tag;
|
|
6239
6255
|
message = message === VOID ? this.message : message;
|
|
6240
6256
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
6241
|
-
return $super === VOID ? this.
|
|
6257
|
+
return $super === VOID ? this.j6h(type, key, tag, message, stackTrace) : $super.j6h.call(this, type, key, tag, message, stackTrace);
|
|
6242
6258
|
};
|
|
6243
6259
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
6244
6260
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -6269,19 +6285,19 @@
|
|
|
6269
6285
|
return true;
|
|
6270
6286
|
};
|
|
6271
6287
|
function checkInitialised($this) {
|
|
6272
|
-
if ($this.
|
|
6288
|
+
if ($this.k6h_1.equals(AppEnvironmentValue_UNDEFINED_getInstance())) {
|
|
6273
6289
|
Logger_getInstance().z1l(VOID, IllegalStateException_init_$Create$('AppEnvironment not initialised'));
|
|
6274
6290
|
}
|
|
6275
6291
|
}
|
|
6276
6292
|
function AppEnvironment() {
|
|
6277
6293
|
AppEnvironment_instance = this;
|
|
6278
|
-
this.
|
|
6294
|
+
this.k6h_1 = AppEnvironmentValue_UNDEFINED_getInstance();
|
|
6279
6295
|
}
|
|
6280
|
-
protoOf(AppEnvironment).
|
|
6281
|
-
this.
|
|
6296
|
+
protoOf(AppEnvironment).l6h = function (value) {
|
|
6297
|
+
this.k6h_1 = value;
|
|
6282
6298
|
};
|
|
6283
|
-
protoOf(AppEnvironment).
|
|
6284
|
-
var tmp = this.
|
|
6299
|
+
protoOf(AppEnvironment).m6h = function () {
|
|
6300
|
+
var tmp = this.k6h_1;
|
|
6285
6301
|
// Inline function 'kotlin.also' call
|
|
6286
6302
|
var this_0 = AppEnvironmentValue_PRODUCTION_getInstance();
|
|
6287
6303
|
checkInitialised(AppEnvironment_getInstance());
|
|
@@ -6779,6 +6795,8 @@
|
|
|
6779
6795
|
defineProp(protoOf(PlayerConnectionState), 'canReconnect', protoOf(PlayerConnectionState).t66);
|
|
6780
6796
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).r2);
|
|
6781
6797
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).s2);
|
|
6798
|
+
defineProp(protoOf(Team), 'first', protoOf(Team).i67);
|
|
6799
|
+
defineProp(protoOf(Team), 'second', protoOf(Team).w5j);
|
|
6782
6800
|
protoOf($serializer_1).wz = typeParametersSerializers;
|
|
6783
6801
|
protoOf($serializer_2).wz = typeParametersSerializers;
|
|
6784
6802
|
protoOf($serializer_3).wz = typeParametersSerializers;
|
|
@@ -6788,52 +6806,52 @@
|
|
|
6788
6806
|
protoOf($serializer_7).wz = typeParametersSerializers;
|
|
6789
6807
|
protoOf($serializer_8).wz = typeParametersSerializers;
|
|
6790
6808
|
protoOf($serializer_9).wz = typeParametersSerializers;
|
|
6791
|
-
protoOf(AsyncProviderImpl).
|
|
6792
|
-
protoOf(AsyncProviderImpl).
|
|
6793
|
-
protoOf(AsyncProviderImpl).
|
|
6794
|
-
protoOf(TimerAction).
|
|
6809
|
+
protoOf(AsyncProviderImpl).t6a = launchMain$default;
|
|
6810
|
+
protoOf(AsyncProviderImpl).p6a = launchDefault$default;
|
|
6811
|
+
protoOf(AsyncProviderImpl).r6a = launchDefaultWithLock$default;
|
|
6812
|
+
protoOf(TimerAction).h6d = get_actionTag;
|
|
6795
6813
|
defineProp(protoOf(TimerAction), 'actionTag', function () {
|
|
6796
|
-
return this.
|
|
6814
|
+
return this.h6d();
|
|
6797
6815
|
});
|
|
6798
6816
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
6799
|
-
return this.
|
|
6817
|
+
return this.h6d();
|
|
6800
6818
|
});
|
|
6801
6819
|
defineProp(protoOf(TimerTickAction), 'actionTag', function () {
|
|
6802
|
-
return this.
|
|
6820
|
+
return this.h6d();
|
|
6803
6821
|
});
|
|
6804
6822
|
protoOf(StopTimerAction).ignoreValidation = ignoreValidation_0;
|
|
6805
6823
|
defineProp(protoOf(StopTimerAction), 'actionTag', function () {
|
|
6806
|
-
return this.
|
|
6824
|
+
return this.h6d();
|
|
6807
6825
|
});
|
|
6808
6826
|
defineProp(protoOf(createStore$3), 'store', function () {
|
|
6809
|
-
return this.
|
|
6827
|
+
return this.p6g();
|
|
6810
6828
|
});
|
|
6811
6829
|
defineProp(protoOf(createStore$3), 'state', function () {
|
|
6812
6830
|
return this.a65();
|
|
6813
6831
|
});
|
|
6814
6832
|
defineProp(protoOf(createStore$3), 'dispatch', function () {
|
|
6815
|
-
return this.
|
|
6833
|
+
return this.q6g();
|
|
6816
6834
|
}, function (value) {
|
|
6817
|
-
this.
|
|
6835
|
+
this.t6d(value);
|
|
6818
6836
|
});
|
|
6819
6837
|
defineProp(protoOf(createStore$3), 'replaceReducer', function () {
|
|
6820
|
-
return this.
|
|
6838
|
+
return this.r6g();
|
|
6821
6839
|
});
|
|
6822
6840
|
defineProp(protoOf(createStore$3), 'observe', function () {
|
|
6823
|
-
return this.
|
|
6841
|
+
return this.s6g();
|
|
6824
6842
|
});
|
|
6825
|
-
protoOf(ActionTypes).
|
|
6843
|
+
protoOf(ActionTypes).h6d = get_actionTag;
|
|
6826
6844
|
defineProp(protoOf(ActionTypes), 'actionTag', function () {
|
|
6827
|
-
return this.
|
|
6845
|
+
return this.h6d();
|
|
6828
6846
|
});
|
|
6829
6847
|
defineProp(protoOf(INIT), 'actionTag', function () {
|
|
6830
|
-
return this.
|
|
6848
|
+
return this.h6d();
|
|
6831
6849
|
});
|
|
6832
6850
|
defineProp(protoOf(REPLACE), 'actionTag', function () {
|
|
6833
|
-
return this.
|
|
6851
|
+
return this.h6d();
|
|
6834
6852
|
});
|
|
6835
|
-
protoOf(middleware$1).
|
|
6836
|
-
protoOf(combineReducers$1).
|
|
6853
|
+
protoOf(middleware$1).v6d = canHandle;
|
|
6854
|
+
protoOf(combineReducers$1).v6d = canHandle_0;
|
|
6837
6855
|
defineProp(protoOf(LogType), 'name', protoOf(LogType).r2);
|
|
6838
6856
|
defineProp(protoOf(LogType), 'ordinal', protoOf(LogType).s2);
|
|
6839
6857
|
protoOf($serializer_10).wz = typeParametersSerializers;
|
|
@@ -6931,6 +6949,12 @@
|
|
|
6931
6949
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'Companion', Companion_getInstance_10, VOID, true);
|
|
6932
6950
|
var $com = _.com || (_.com = {});
|
|
6933
6951
|
var $com$logic = $com.logic || ($com.logic = {});
|
|
6952
|
+
var $com$logic$data = $com$logic.data || ($com$logic.data = {});
|
|
6953
|
+
var $com$logic$data$models = $com$logic$data.models || ($com$logic$data.models = {});
|
|
6954
|
+
var $com$logic$data$models$player = $com$logic$data$models.player || ($com$logic$data$models.player = {});
|
|
6955
|
+
$com$logic$data$models$player.Team = Team;
|
|
6956
|
+
var $com = _.com || (_.com = {});
|
|
6957
|
+
var $com$logic = $com.logic || ($com.logic = {});
|
|
6934
6958
|
var $com$logic$redux = $com$logic.redux || ($com$logic.redux = {});
|
|
6935
6959
|
var $com$logic$redux$actions = $com$logic$redux.actions || ($com$logic$redux.actions = {});
|
|
6936
6960
|
var $com = _.com || (_.com = {});
|