raspberry_games_engine_helpers 1.8.411 → 1.8.414
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/Kosi-Kaverit-kaverit.js +56 -56
- package/Kosi-Kodein-kodein-di.js +493 -493
- package/Logic_Debertz-core.js +499 -441
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.d.ts +63 -11
- package/Logic_Debertz-engine.js +9398 -8940
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1074 -1074
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -187,6 +187,19 @@
|
|
|
187
187
|
initMetadataForInterface(BufferedAction, 'BufferedAction', VOID, VOID, [Action]);
|
|
188
188
|
initMetadataForInterface(IgnoreBufferForAction, 'IgnoreBufferForAction', VOID, VOID, [Action]);
|
|
189
189
|
initMetadataForInterface(ReleaseBufferTriggerAction, 'ReleaseBufferTriggerAction', VOID, VOID, [Action]);
|
|
190
|
+
function ignoreInterception() {
|
|
191
|
+
return false;
|
|
192
|
+
}
|
|
193
|
+
function manualExpectantHandling() {
|
|
194
|
+
return false;
|
|
195
|
+
}
|
|
196
|
+
function waitForExpectantAnimation() {
|
|
197
|
+
return false;
|
|
198
|
+
}
|
|
199
|
+
function get_isAutoStartTimer() {
|
|
200
|
+
return !this.k1v() && !this.l1v();
|
|
201
|
+
}
|
|
202
|
+
initMetadataForInterface(InterceptableAction, 'InterceptableAction', VOID, VOID, [BufferedAction]);
|
|
190
203
|
function ignoreValidation() {
|
|
191
204
|
return true;
|
|
192
205
|
}
|
|
@@ -208,7 +221,7 @@
|
|
|
208
221
|
tmp = types;
|
|
209
222
|
}
|
|
210
223
|
types = tmp;
|
|
211
|
-
return $super === VOID ? this.
|
|
224
|
+
return $super === VOID ? this.x1v(types) : $super.x1v.call(this, types);
|
|
212
225
|
}
|
|
213
226
|
initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
214
227
|
initMetadataForCompanion(Companion_20);
|
|
@@ -216,7 +229,7 @@
|
|
|
216
229
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
217
230
|
//endregion
|
|
218
231
|
function GameEngineConfig() {
|
|
219
|
-
this.version = '1.8.
|
|
232
|
+
this.version = '1.8.414';
|
|
220
233
|
}
|
|
221
234
|
protoOf(GameEngineConfig).k17 = function () {
|
|
222
235
|
return this.version;
|
|
@@ -1349,6 +1362,7 @@
|
|
|
1349
1362
|
function PlayerConnectionState$Companion$_anonymous__8wfaw3() {
|
|
1350
1363
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerConnectionState', values_1());
|
|
1351
1364
|
}
|
|
1365
|
+
var PlayerConnectionState_WAITING_instance;
|
|
1352
1366
|
var PlayerConnectionState_LIVE_instance;
|
|
1353
1367
|
var PlayerConnectionState_TIMEOUT_instance;
|
|
1354
1368
|
var PlayerConnectionState_LOST_CONNECTION_instance;
|
|
@@ -1357,10 +1371,12 @@
|
|
|
1357
1371
|
var PlayerConnectionState_DISCONNECTING_instance;
|
|
1358
1372
|
var PlayerConnectionState_DELETED_instance;
|
|
1359
1373
|
function values_1() {
|
|
1360
|
-
return [PlayerConnectionState_LIVE_getInstance(), PlayerConnectionState_TIMEOUT_getInstance(), PlayerConnectionState_LOST_CONNECTION_getInstance(), PlayerConnectionState_LEFT_getInstance(), PlayerConnectionState_LEFT_PERMANENTLY_getInstance(), PlayerConnectionState_DISCONNECTING_getInstance(), PlayerConnectionState_DELETED_getInstance()];
|
|
1374
|
+
return [PlayerConnectionState_WAITING_getInstance(), PlayerConnectionState_LIVE_getInstance(), PlayerConnectionState_TIMEOUT_getInstance(), PlayerConnectionState_LOST_CONNECTION_getInstance(), PlayerConnectionState_LEFT_getInstance(), PlayerConnectionState_LEFT_PERMANENTLY_getInstance(), PlayerConnectionState_DISCONNECTING_getInstance(), PlayerConnectionState_DELETED_getInstance()];
|
|
1361
1375
|
}
|
|
1362
1376
|
function valueOf_1(value) {
|
|
1363
1377
|
switch (value) {
|
|
1378
|
+
case 'WAITING':
|
|
1379
|
+
return PlayerConnectionState_WAITING_getInstance();
|
|
1364
1380
|
case 'LIVE':
|
|
1365
1381
|
return PlayerConnectionState_LIVE_getInstance();
|
|
1366
1382
|
case 'TIMEOUT':
|
|
@@ -1405,13 +1421,14 @@
|
|
|
1405
1421
|
if (PlayerConnectionState_entriesInitialized)
|
|
1406
1422
|
return Unit_instance;
|
|
1407
1423
|
PlayerConnectionState_entriesInitialized = true;
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1424
|
+
PlayerConnectionState_WAITING_instance = new PlayerConnectionState('WAITING', 0);
|
|
1425
|
+
PlayerConnectionState_LIVE_instance = new PlayerConnectionState('LIVE', 1);
|
|
1426
|
+
PlayerConnectionState_TIMEOUT_instance = new PlayerConnectionState('TIMEOUT', 2);
|
|
1427
|
+
PlayerConnectionState_LOST_CONNECTION_instance = new PlayerConnectionState('LOST_CONNECTION', 3);
|
|
1428
|
+
PlayerConnectionState_LEFT_instance = new PlayerConnectionState('LEFT', 4);
|
|
1429
|
+
PlayerConnectionState_LEFT_PERMANENTLY_instance = new PlayerConnectionState('LEFT_PERMANENTLY', 5);
|
|
1430
|
+
PlayerConnectionState_DISCONNECTING_instance = new PlayerConnectionState('DISCONNECTING', 6);
|
|
1431
|
+
PlayerConnectionState_DELETED_instance = new PlayerConnectionState('DELETED', 7);
|
|
1415
1432
|
Companion_getInstance_9();
|
|
1416
1433
|
}
|
|
1417
1434
|
function PlayerConnectionState(name, ordinal) {
|
|
@@ -1441,15 +1458,16 @@
|
|
|
1441
1458
|
protoOf(PlayerConnectionState).t1r = function () {
|
|
1442
1459
|
var tmp;
|
|
1443
1460
|
switch (this.h2_1) {
|
|
1444
|
-
case 2:
|
|
1445
|
-
case 1:
|
|
1446
1461
|
case 3:
|
|
1462
|
+
case 2:
|
|
1447
1463
|
case 4:
|
|
1448
|
-
case
|
|
1464
|
+
case 5:
|
|
1465
|
+
case 7:
|
|
1449
1466
|
tmp = true;
|
|
1450
1467
|
break;
|
|
1451
|
-
case 5:
|
|
1452
1468
|
case 0:
|
|
1469
|
+
case 6:
|
|
1470
|
+
case 1:
|
|
1453
1471
|
tmp = false;
|
|
1454
1472
|
break;
|
|
1455
1473
|
default:
|
|
@@ -1461,15 +1479,16 @@
|
|
|
1461
1479
|
protoOf(PlayerConnectionState).u1r = function () {
|
|
1462
1480
|
var tmp;
|
|
1463
1481
|
switch (this.h2_1) {
|
|
1464
|
-
case 2:
|
|
1465
|
-
case 1:
|
|
1466
1482
|
case 3:
|
|
1483
|
+
case 2:
|
|
1467
1484
|
case 4:
|
|
1485
|
+
case 5:
|
|
1468
1486
|
tmp = true;
|
|
1469
1487
|
break;
|
|
1470
|
-
case 5:
|
|
1471
|
-
case 6:
|
|
1472
1488
|
case 0:
|
|
1489
|
+
case 6:
|
|
1490
|
+
case 7:
|
|
1491
|
+
case 1:
|
|
1473
1492
|
tmp = false;
|
|
1474
1493
|
break;
|
|
1475
1494
|
default:
|
|
@@ -1481,17 +1500,18 @@
|
|
|
1481
1500
|
protoOf(PlayerConnectionState).v1r = function () {
|
|
1482
1501
|
var tmp;
|
|
1483
1502
|
switch (this.h2_1) {
|
|
1484
|
-
case
|
|
1503
|
+
case 3:
|
|
1485
1504
|
tmp = false;
|
|
1486
1505
|
break;
|
|
1487
|
-
case
|
|
1488
|
-
case 3:
|
|
1506
|
+
case 2:
|
|
1489
1507
|
case 4:
|
|
1490
|
-
case
|
|
1508
|
+
case 5:
|
|
1509
|
+
case 7:
|
|
1491
1510
|
tmp = true;
|
|
1492
1511
|
break;
|
|
1493
|
-
case 5:
|
|
1494
1512
|
case 0:
|
|
1513
|
+
case 6:
|
|
1514
|
+
case 1:
|
|
1495
1515
|
tmp = false;
|
|
1496
1516
|
break;
|
|
1497
1517
|
default:
|
|
@@ -1503,17 +1523,18 @@
|
|
|
1503
1523
|
protoOf(PlayerConnectionState).w1r = function () {
|
|
1504
1524
|
var tmp;
|
|
1505
1525
|
switch (this.h2_1) {
|
|
1506
|
-
case
|
|
1526
|
+
case 3:
|
|
1507
1527
|
tmp = true;
|
|
1508
1528
|
break;
|
|
1509
|
-
case
|
|
1510
|
-
case 3:
|
|
1529
|
+
case 2:
|
|
1511
1530
|
case 4:
|
|
1512
|
-
case
|
|
1531
|
+
case 5:
|
|
1532
|
+
case 7:
|
|
1513
1533
|
tmp = false;
|
|
1514
1534
|
break;
|
|
1515
|
-
case 5:
|
|
1516
1535
|
case 0:
|
|
1536
|
+
case 6:
|
|
1537
|
+
case 1:
|
|
1517
1538
|
tmp = false;
|
|
1518
1539
|
break;
|
|
1519
1540
|
default:
|
|
@@ -1525,17 +1546,18 @@
|
|
|
1525
1546
|
protoOf(PlayerConnectionState).x1r = function () {
|
|
1526
1547
|
var tmp;
|
|
1527
1548
|
switch (this.h2_1) {
|
|
1528
|
-
case 1:
|
|
1529
1549
|
case 2:
|
|
1530
1550
|
case 3:
|
|
1551
|
+
case 4:
|
|
1531
1552
|
tmp = true;
|
|
1532
1553
|
break;
|
|
1533
|
-
case
|
|
1534
|
-
case
|
|
1554
|
+
case 5:
|
|
1555
|
+
case 7:
|
|
1535
1556
|
tmp = false;
|
|
1536
1557
|
break;
|
|
1537
|
-
case 5:
|
|
1538
1558
|
case 0:
|
|
1559
|
+
case 6:
|
|
1560
|
+
case 1:
|
|
1539
1561
|
tmp = true;
|
|
1540
1562
|
break;
|
|
1541
1563
|
default:
|
|
@@ -1544,6 +1566,10 @@
|
|
|
1544
1566
|
}
|
|
1545
1567
|
return tmp;
|
|
1546
1568
|
};
|
|
1569
|
+
function PlayerConnectionState_WAITING_getInstance() {
|
|
1570
|
+
PlayerConnectionState_initEntries();
|
|
1571
|
+
return PlayerConnectionState_WAITING_instance;
|
|
1572
|
+
}
|
|
1547
1573
|
function PlayerConnectionState_LIVE_getInstance() {
|
|
1548
1574
|
PlayerConnectionState_initEntries();
|
|
1549
1575
|
return PlayerConnectionState_LIVE_instance;
|
|
@@ -1767,31 +1793,47 @@
|
|
|
1767
1793
|
return true;
|
|
1768
1794
|
};
|
|
1769
1795
|
function Team(playerIds) {
|
|
1770
|
-
this.
|
|
1796
|
+
this.playerIds = playerIds;
|
|
1771
1797
|
}
|
|
1798
|
+
protoOf(Team).f1s = function () {
|
|
1799
|
+
return this.playerIds;
|
|
1800
|
+
};
|
|
1801
|
+
protoOf(Team).containsPlayer = function (playerId) {
|
|
1802
|
+
return this.playerIds.o1(playerId);
|
|
1803
|
+
};
|
|
1772
1804
|
protoOf(Team).g1s = function () {
|
|
1773
|
-
return this.
|
|
1805
|
+
return this.playerIds.p(0);
|
|
1774
1806
|
};
|
|
1775
1807
|
protoOf(Team).c1d = function () {
|
|
1776
|
-
return this.
|
|
1808
|
+
return this.playerIds.p(1);
|
|
1809
|
+
};
|
|
1810
|
+
protoOf(Team).sc = function () {
|
|
1811
|
+
return this.playerIds;
|
|
1812
|
+
};
|
|
1813
|
+
protoOf(Team).h1s = function (playerIds) {
|
|
1814
|
+
return new Team(playerIds);
|
|
1815
|
+
};
|
|
1816
|
+
protoOf(Team).copy = function (playerIds, $super) {
|
|
1817
|
+
playerIds = playerIds === VOID ? this.playerIds : playerIds;
|
|
1818
|
+
return $super === VOID ? this.h1s(playerIds) : $super.h1s.call(this, playerIds);
|
|
1777
1819
|
};
|
|
1778
1820
|
protoOf(Team).toString = function () {
|
|
1779
|
-
return 'Team(playerIds=' + toString_0(this.
|
|
1821
|
+
return 'Team(playerIds=' + toString_0(this.playerIds) + ')';
|
|
1780
1822
|
};
|
|
1781
1823
|
protoOf(Team).hashCode = function () {
|
|
1782
|
-
return hashCode(this.
|
|
1824
|
+
return hashCode(this.playerIds);
|
|
1783
1825
|
};
|
|
1784
1826
|
protoOf(Team).equals = function (other) {
|
|
1785
1827
|
if (this === other)
|
|
1786
1828
|
return true;
|
|
1787
1829
|
if (!(other instanceof Team))
|
|
1788
1830
|
return false;
|
|
1789
|
-
if (!equals(this.
|
|
1831
|
+
if (!equals(this.playerIds, other.playerIds))
|
|
1790
1832
|
return false;
|
|
1791
1833
|
return true;
|
|
1792
1834
|
};
|
|
1793
1835
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
1794
|
-
return $this.
|
|
1836
|
+
return $this.i1s_1.v1();
|
|
1795
1837
|
}
|
|
1796
1838
|
function TerminationGameReasonDto$Companion$_anonymous__30ivuy() {
|
|
1797
1839
|
var tmp = getKClass(TerminationGameReasonDto);
|
|
@@ -1829,7 +1871,7 @@
|
|
|
1829
1871
|
Companion_instance_9 = this;
|
|
1830
1872
|
var tmp = this;
|
|
1831
1873
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1832
|
-
tmp.
|
|
1874
|
+
tmp.i1s_1 = lazy(tmp_0, TerminationGameReasonDto$Companion$_anonymous__30ivuy);
|
|
1833
1875
|
}
|
|
1834
1876
|
protoOf(Companion_9).z17 = function () {
|
|
1835
1877
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -1850,7 +1892,7 @@
|
|
|
1850
1892
|
Companion_getInstance_12();
|
|
1851
1893
|
}
|
|
1852
1894
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
1853
|
-
return $this.
|
|
1895
|
+
return $this.j1s_1.v1();
|
|
1854
1896
|
}
|
|
1855
1897
|
function ProcessingReasonDto$_anonymous__78na4x() {
|
|
1856
1898
|
var tmp = ProcessingReasonDto_getInstance();
|
|
@@ -1865,7 +1907,7 @@
|
|
|
1865
1907
|
TerminationGameReasonDto.call(this);
|
|
1866
1908
|
var tmp = this;
|
|
1867
1909
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1868
|
-
tmp.
|
|
1910
|
+
tmp.j1s_1 = lazy(tmp_0, ProcessingReasonDto$_anonymous__78na4x);
|
|
1869
1911
|
}
|
|
1870
1912
|
protoOf(ProcessingReasonDto).z17 = function () {
|
|
1871
1913
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -1902,19 +1944,19 @@
|
|
|
1902
1944
|
$serializer_instance_1 = this;
|
|
1903
1945
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
1904
1946
|
tmp0_serialDesc.av('reason', false);
|
|
1905
|
-
this.
|
|
1947
|
+
this.k1s_1 = tmp0_serialDesc;
|
|
1906
1948
|
}
|
|
1907
|
-
protoOf($serializer_1).
|
|
1908
|
-
var tmp0_desc = this.
|
|
1949
|
+
protoOf($serializer_1).l1s = function (encoder, value) {
|
|
1950
|
+
var tmp0_desc = this.k1s_1;
|
|
1909
1951
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
1910
1952
|
tmp1_output.zo(tmp0_desc, 0, value.reason);
|
|
1911
1953
|
tmp1_output.ln(tmp0_desc);
|
|
1912
1954
|
};
|
|
1913
1955
|
protoOf($serializer_1).ck = function (encoder, value) {
|
|
1914
|
-
return this.
|
|
1956
|
+
return this.l1s(encoder, value instanceof GameErrorReasonDto ? value : THROW_CCE());
|
|
1915
1957
|
};
|
|
1916
1958
|
protoOf($serializer_1).dk = function (decoder) {
|
|
1917
|
-
var tmp0_desc = this.
|
|
1959
|
+
var tmp0_desc = this.k1s_1;
|
|
1918
1960
|
var tmp1_flag = true;
|
|
1919
1961
|
var tmp2_index = 0;
|
|
1920
1962
|
var tmp3_bitMask0 = 0;
|
|
@@ -1942,7 +1984,7 @@
|
|
|
1942
1984
|
return GameErrorReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1943
1985
|
};
|
|
1944
1986
|
protoOf($serializer_1).bk = function () {
|
|
1945
|
-
return this.
|
|
1987
|
+
return this.k1s_1;
|
|
1946
1988
|
};
|
|
1947
1989
|
protoOf($serializer_1).rv = function () {
|
|
1948
1990
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1958,7 +2000,7 @@
|
|
|
1958
2000
|
}
|
|
1959
2001
|
function GameErrorReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
1960
2002
|
if (!(1 === (1 & seen0))) {
|
|
1961
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().
|
|
2003
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().k1s_1);
|
|
1962
2004
|
}
|
|
1963
2005
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
1964
2006
|
$this.reason = reason;
|
|
@@ -1999,19 +2041,19 @@
|
|
|
1999
2041
|
$serializer_instance_2 = this;
|
|
2000
2042
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
2001
2043
|
tmp0_serialDesc.av('reason', false);
|
|
2002
|
-
this.
|
|
2044
|
+
this.m1s_1 = tmp0_serialDesc;
|
|
2003
2045
|
}
|
|
2004
|
-
protoOf($serializer_2).
|
|
2005
|
-
var tmp0_desc = this.
|
|
2046
|
+
protoOf($serializer_2).n1s = function (encoder, value) {
|
|
2047
|
+
var tmp0_desc = this.m1s_1;
|
|
2006
2048
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2007
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2049
|
+
tmp1_output.zo(tmp0_desc, 0, value.o1s_1);
|
|
2008
2050
|
tmp1_output.ln(tmp0_desc);
|
|
2009
2051
|
};
|
|
2010
2052
|
protoOf($serializer_2).ck = function (encoder, value) {
|
|
2011
|
-
return this.
|
|
2053
|
+
return this.n1s(encoder, value instanceof GameFinishedReasonDto ? value : THROW_CCE());
|
|
2012
2054
|
};
|
|
2013
2055
|
protoOf($serializer_2).dk = function (decoder) {
|
|
2014
|
-
var tmp0_desc = this.
|
|
2056
|
+
var tmp0_desc = this.m1s_1;
|
|
2015
2057
|
var tmp1_flag = true;
|
|
2016
2058
|
var tmp2_index = 0;
|
|
2017
2059
|
var tmp3_bitMask0 = 0;
|
|
@@ -2039,7 +2081,7 @@
|
|
|
2039
2081
|
return GameFinishedReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2040
2082
|
};
|
|
2041
2083
|
protoOf($serializer_2).bk = function () {
|
|
2042
|
-
return this.
|
|
2084
|
+
return this.m1s_1;
|
|
2043
2085
|
};
|
|
2044
2086
|
protoOf($serializer_2).rv = function () {
|
|
2045
2087
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2055,10 +2097,10 @@
|
|
|
2055
2097
|
}
|
|
2056
2098
|
function GameFinishedReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2057
2099
|
if (!(1 === (1 & seen0))) {
|
|
2058
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().
|
|
2100
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().m1s_1);
|
|
2059
2101
|
}
|
|
2060
2102
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2061
|
-
$this.
|
|
2103
|
+
$this.o1s_1 = reason;
|
|
2062
2104
|
return $this;
|
|
2063
2105
|
}
|
|
2064
2106
|
function GameFinishedReasonDto_init_$Create$(seen0, reason, serializationConstructorMarker) {
|
|
@@ -2066,20 +2108,20 @@
|
|
|
2066
2108
|
}
|
|
2067
2109
|
function GameFinishedReasonDto(reason) {
|
|
2068
2110
|
TerminationGameReasonDto.call(this);
|
|
2069
|
-
this.
|
|
2111
|
+
this.o1s_1 = reason;
|
|
2070
2112
|
}
|
|
2071
2113
|
protoOf(GameFinishedReasonDto).toString = function () {
|
|
2072
|
-
return 'GameFinishedReasonDto(reason=' + this.
|
|
2114
|
+
return 'GameFinishedReasonDto(reason=' + this.o1s_1 + ')';
|
|
2073
2115
|
};
|
|
2074
2116
|
protoOf(GameFinishedReasonDto).hashCode = function () {
|
|
2075
|
-
return getStringHashCode(this.
|
|
2117
|
+
return getStringHashCode(this.o1s_1);
|
|
2076
2118
|
};
|
|
2077
2119
|
protoOf(GameFinishedReasonDto).equals = function (other) {
|
|
2078
2120
|
if (this === other)
|
|
2079
2121
|
return true;
|
|
2080
2122
|
if (!(other instanceof GameFinishedReasonDto))
|
|
2081
2123
|
return false;
|
|
2082
|
-
if (!(this.
|
|
2124
|
+
if (!(this.o1s_1 === other.o1s_1))
|
|
2083
2125
|
return false;
|
|
2084
2126
|
return true;
|
|
2085
2127
|
};
|
|
@@ -2093,19 +2135,19 @@
|
|
|
2093
2135
|
$serializer_instance_3 = this;
|
|
2094
2136
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
2095
2137
|
tmp0_serialDesc.av('playerId', false);
|
|
2096
|
-
this.
|
|
2138
|
+
this.p1s_1 = tmp0_serialDesc;
|
|
2097
2139
|
}
|
|
2098
|
-
protoOf($serializer_3).
|
|
2099
|
-
var tmp0_desc = this.
|
|
2140
|
+
protoOf($serializer_3).q1s = function (encoder, value) {
|
|
2141
|
+
var tmp0_desc = this.p1s_1;
|
|
2100
2142
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2101
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2143
|
+
tmp1_output.zo(tmp0_desc, 0, value.r1s_1);
|
|
2102
2144
|
tmp1_output.ln(tmp0_desc);
|
|
2103
2145
|
};
|
|
2104
2146
|
protoOf($serializer_3).ck = function (encoder, value) {
|
|
2105
|
-
return this.
|
|
2147
|
+
return this.q1s(encoder, value instanceof PlayerExitReasonDto ? value : THROW_CCE());
|
|
2106
2148
|
};
|
|
2107
2149
|
protoOf($serializer_3).dk = function (decoder) {
|
|
2108
|
-
var tmp0_desc = this.
|
|
2150
|
+
var tmp0_desc = this.p1s_1;
|
|
2109
2151
|
var tmp1_flag = true;
|
|
2110
2152
|
var tmp2_index = 0;
|
|
2111
2153
|
var tmp3_bitMask0 = 0;
|
|
@@ -2133,7 +2175,7 @@
|
|
|
2133
2175
|
return PlayerExitReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2134
2176
|
};
|
|
2135
2177
|
protoOf($serializer_3).bk = function () {
|
|
2136
|
-
return this.
|
|
2178
|
+
return this.p1s_1;
|
|
2137
2179
|
};
|
|
2138
2180
|
protoOf($serializer_3).rv = function () {
|
|
2139
2181
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2149,10 +2191,10 @@
|
|
|
2149
2191
|
}
|
|
2150
2192
|
function PlayerExitReasonDto_init_$Init$(seen0, playerId, serializationConstructorMarker, $this) {
|
|
2151
2193
|
if (!(1 === (1 & seen0))) {
|
|
2152
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().
|
|
2194
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().p1s_1);
|
|
2153
2195
|
}
|
|
2154
2196
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2155
|
-
$this.
|
|
2197
|
+
$this.r1s_1 = playerId;
|
|
2156
2198
|
return $this;
|
|
2157
2199
|
}
|
|
2158
2200
|
function PlayerExitReasonDto_init_$Create$(seen0, playerId, serializationConstructorMarker) {
|
|
@@ -2160,20 +2202,20 @@
|
|
|
2160
2202
|
}
|
|
2161
2203
|
function PlayerExitReasonDto(playerId) {
|
|
2162
2204
|
TerminationGameReasonDto.call(this);
|
|
2163
|
-
this.
|
|
2205
|
+
this.r1s_1 = playerId;
|
|
2164
2206
|
}
|
|
2165
2207
|
protoOf(PlayerExitReasonDto).toString = function () {
|
|
2166
|
-
return 'PlayerExitReasonDto(playerId=' + this.
|
|
2208
|
+
return 'PlayerExitReasonDto(playerId=' + this.r1s_1 + ')';
|
|
2167
2209
|
};
|
|
2168
2210
|
protoOf(PlayerExitReasonDto).hashCode = function () {
|
|
2169
|
-
return getStringHashCode(this.
|
|
2211
|
+
return getStringHashCode(this.r1s_1);
|
|
2170
2212
|
};
|
|
2171
2213
|
protoOf(PlayerExitReasonDto).equals = function (other) {
|
|
2172
2214
|
if (this === other)
|
|
2173
2215
|
return true;
|
|
2174
2216
|
if (!(other instanceof PlayerExitReasonDto))
|
|
2175
2217
|
return false;
|
|
2176
|
-
if (!(this.
|
|
2218
|
+
if (!(this.r1s_1 === other.r1s_1))
|
|
2177
2219
|
return false;
|
|
2178
2220
|
return true;
|
|
2179
2221
|
};
|
|
@@ -2188,20 +2230,20 @@
|
|
|
2188
2230
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
2189
2231
|
tmp0_serialDesc.av('playerId', false);
|
|
2190
2232
|
tmp0_serialDesc.av('tag', false);
|
|
2191
|
-
this.
|
|
2233
|
+
this.s1s_1 = tmp0_serialDesc;
|
|
2192
2234
|
}
|
|
2193
|
-
protoOf($serializer_4).
|
|
2194
|
-
var tmp0_desc = this.
|
|
2235
|
+
protoOf($serializer_4).t1s = function (encoder, value) {
|
|
2236
|
+
var tmp0_desc = this.s1s_1;
|
|
2195
2237
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2196
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2197
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2238
|
+
tmp1_output.zo(tmp0_desc, 0, value.u1s_1);
|
|
2239
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.v1s_1);
|
|
2198
2240
|
tmp1_output.ln(tmp0_desc);
|
|
2199
2241
|
};
|
|
2200
2242
|
protoOf($serializer_4).ck = function (encoder, value) {
|
|
2201
|
-
return this.
|
|
2243
|
+
return this.t1s(encoder, value instanceof PlayerLostConnectionReasonDto ? value : THROW_CCE());
|
|
2202
2244
|
};
|
|
2203
2245
|
protoOf($serializer_4).dk = function (decoder) {
|
|
2204
|
-
var tmp0_desc = this.
|
|
2246
|
+
var tmp0_desc = this.s1s_1;
|
|
2205
2247
|
var tmp1_flag = true;
|
|
2206
2248
|
var tmp2_index = 0;
|
|
2207
2249
|
var tmp3_bitMask0 = 0;
|
|
@@ -2236,7 +2278,7 @@
|
|
|
2236
2278
|
return PlayerLostConnectionReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2237
2279
|
};
|
|
2238
2280
|
protoOf($serializer_4).bk = function () {
|
|
2239
|
-
return this.
|
|
2281
|
+
return this.s1s_1;
|
|
2240
2282
|
};
|
|
2241
2283
|
protoOf($serializer_4).rv = function () {
|
|
2242
2284
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2252,11 +2294,11 @@
|
|
|
2252
2294
|
}
|
|
2253
2295
|
function PlayerLostConnectionReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2254
2296
|
if (!(3 === (3 & seen0))) {
|
|
2255
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().
|
|
2297
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().s1s_1);
|
|
2256
2298
|
}
|
|
2257
2299
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2258
|
-
$this.
|
|
2259
|
-
$this.
|
|
2300
|
+
$this.u1s_1 = playerId;
|
|
2301
|
+
$this.v1s_1 = tag;
|
|
2260
2302
|
return $this;
|
|
2261
2303
|
}
|
|
2262
2304
|
function PlayerLostConnectionReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2264,15 +2306,15 @@
|
|
|
2264
2306
|
}
|
|
2265
2307
|
function PlayerLostConnectionReasonDto(playerId, tag) {
|
|
2266
2308
|
TerminationGameReasonDto.call(this);
|
|
2267
|
-
this.
|
|
2268
|
-
this.
|
|
2309
|
+
this.u1s_1 = playerId;
|
|
2310
|
+
this.v1s_1 = tag;
|
|
2269
2311
|
}
|
|
2270
2312
|
protoOf(PlayerLostConnectionReasonDto).toString = function () {
|
|
2271
|
-
return 'PlayerLostConnectionReasonDto(playerId=' + this.
|
|
2313
|
+
return 'PlayerLostConnectionReasonDto(playerId=' + this.u1s_1 + ', tag=' + this.v1s_1 + ')';
|
|
2272
2314
|
};
|
|
2273
2315
|
protoOf(PlayerLostConnectionReasonDto).hashCode = function () {
|
|
2274
|
-
var result = getStringHashCode(this.
|
|
2275
|
-
result = imul(result, 31) + (this.
|
|
2316
|
+
var result = getStringHashCode(this.u1s_1);
|
|
2317
|
+
result = imul(result, 31) + (this.v1s_1 == null ? 0 : getStringHashCode(this.v1s_1)) | 0;
|
|
2276
2318
|
return result;
|
|
2277
2319
|
};
|
|
2278
2320
|
protoOf(PlayerLostConnectionReasonDto).equals = function (other) {
|
|
@@ -2280,9 +2322,9 @@
|
|
|
2280
2322
|
return true;
|
|
2281
2323
|
if (!(other instanceof PlayerLostConnectionReasonDto))
|
|
2282
2324
|
return false;
|
|
2283
|
-
if (!(this.
|
|
2325
|
+
if (!(this.u1s_1 === other.u1s_1))
|
|
2284
2326
|
return false;
|
|
2285
|
-
if (!(this.
|
|
2327
|
+
if (!(this.v1s_1 == other.v1s_1))
|
|
2286
2328
|
return false;
|
|
2287
2329
|
return true;
|
|
2288
2330
|
};
|
|
@@ -2297,20 +2339,20 @@
|
|
|
2297
2339
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
2298
2340
|
tmp0_serialDesc.av('playerId', false);
|
|
2299
2341
|
tmp0_serialDesc.av('tag', false);
|
|
2300
|
-
this.
|
|
2342
|
+
this.w1s_1 = tmp0_serialDesc;
|
|
2301
2343
|
}
|
|
2302
|
-
protoOf($serializer_5).
|
|
2303
|
-
var tmp0_desc = this.
|
|
2344
|
+
protoOf($serializer_5).x1s = function (encoder, value) {
|
|
2345
|
+
var tmp0_desc = this.w1s_1;
|
|
2304
2346
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2305
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2306
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2347
|
+
tmp1_output.zo(tmp0_desc, 0, value.y1s_1);
|
|
2348
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.z1s_1);
|
|
2307
2349
|
tmp1_output.ln(tmp0_desc);
|
|
2308
2350
|
};
|
|
2309
2351
|
protoOf($serializer_5).ck = function (encoder, value) {
|
|
2310
|
-
return this.
|
|
2352
|
+
return this.x1s(encoder, value instanceof PlayerTimeoutReasonDto ? value : THROW_CCE());
|
|
2311
2353
|
};
|
|
2312
2354
|
protoOf($serializer_5).dk = function (decoder) {
|
|
2313
|
-
var tmp0_desc = this.
|
|
2355
|
+
var tmp0_desc = this.w1s_1;
|
|
2314
2356
|
var tmp1_flag = true;
|
|
2315
2357
|
var tmp2_index = 0;
|
|
2316
2358
|
var tmp3_bitMask0 = 0;
|
|
@@ -2345,7 +2387,7 @@
|
|
|
2345
2387
|
return PlayerTimeoutReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2346
2388
|
};
|
|
2347
2389
|
protoOf($serializer_5).bk = function () {
|
|
2348
|
-
return this.
|
|
2390
|
+
return this.w1s_1;
|
|
2349
2391
|
};
|
|
2350
2392
|
protoOf($serializer_5).rv = function () {
|
|
2351
2393
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2361,11 +2403,11 @@
|
|
|
2361
2403
|
}
|
|
2362
2404
|
function PlayerTimeoutReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2363
2405
|
if (!(3 === (3 & seen0))) {
|
|
2364
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().
|
|
2406
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().w1s_1);
|
|
2365
2407
|
}
|
|
2366
2408
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2367
|
-
$this.
|
|
2368
|
-
$this.
|
|
2409
|
+
$this.y1s_1 = playerId;
|
|
2410
|
+
$this.z1s_1 = tag;
|
|
2369
2411
|
return $this;
|
|
2370
2412
|
}
|
|
2371
2413
|
function PlayerTimeoutReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2373,15 +2415,15 @@
|
|
|
2373
2415
|
}
|
|
2374
2416
|
function PlayerTimeoutReasonDto(playerId, tag) {
|
|
2375
2417
|
TerminationGameReasonDto.call(this);
|
|
2376
|
-
this.
|
|
2377
|
-
this.
|
|
2418
|
+
this.y1s_1 = playerId;
|
|
2419
|
+
this.z1s_1 = tag;
|
|
2378
2420
|
}
|
|
2379
2421
|
protoOf(PlayerTimeoutReasonDto).toString = function () {
|
|
2380
|
-
return 'PlayerTimeoutReasonDto(playerId=' + this.
|
|
2422
|
+
return 'PlayerTimeoutReasonDto(playerId=' + this.y1s_1 + ', tag=' + this.z1s_1 + ')';
|
|
2381
2423
|
};
|
|
2382
2424
|
protoOf(PlayerTimeoutReasonDto).hashCode = function () {
|
|
2383
|
-
var result = getStringHashCode(this.
|
|
2384
|
-
result = imul(result, 31) + (this.
|
|
2425
|
+
var result = getStringHashCode(this.y1s_1);
|
|
2426
|
+
result = imul(result, 31) + (this.z1s_1 == null ? 0 : getStringHashCode(this.z1s_1)) | 0;
|
|
2385
2427
|
return result;
|
|
2386
2428
|
};
|
|
2387
2429
|
protoOf(PlayerTimeoutReasonDto).equals = function (other) {
|
|
@@ -2389,14 +2431,14 @@
|
|
|
2389
2431
|
return true;
|
|
2390
2432
|
if (!(other instanceof PlayerTimeoutReasonDto))
|
|
2391
2433
|
return false;
|
|
2392
|
-
if (!(this.
|
|
2434
|
+
if (!(this.y1s_1 === other.y1s_1))
|
|
2393
2435
|
return false;
|
|
2394
|
-
if (!(this.
|
|
2436
|
+
if (!(this.z1s_1 == other.z1s_1))
|
|
2395
2437
|
return false;
|
|
2396
2438
|
return true;
|
|
2397
2439
|
};
|
|
2398
2440
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
2399
|
-
return $this.
|
|
2441
|
+
return $this.a1t_1.v1();
|
|
2400
2442
|
}
|
|
2401
2443
|
function WaitingForConnectionReasonDto$_anonymous__hgbgp6() {
|
|
2402
2444
|
var tmp = WaitingForConnectionReasonDto_getInstance();
|
|
@@ -2411,7 +2453,7 @@
|
|
|
2411
2453
|
TerminationGameReasonDto.call(this);
|
|
2412
2454
|
var tmp = this;
|
|
2413
2455
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2414
|
-
tmp.
|
|
2456
|
+
tmp.a1t_1 = lazy(tmp_0, WaitingForConnectionReasonDto$_anonymous__hgbgp6);
|
|
2415
2457
|
}
|
|
2416
2458
|
protoOf(WaitingForConnectionReasonDto).z17 = function () {
|
|
2417
2459
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -2557,20 +2599,20 @@
|
|
|
2557
2599
|
}
|
|
2558
2600
|
function mapFromDto_2(_this__u8e3s4) {
|
|
2559
2601
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2560
|
-
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.
|
|
2602
|
+
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.o1s_1, get_gameFinishedReasonMapping());
|
|
2561
2603
|
return new GameFinishedReason(tmp0_elvis_lhs == null ? Reason_GAME_NOT_EXISTS_getInstance() : tmp0_elvis_lhs);
|
|
2562
2604
|
}
|
|
2563
2605
|
function mapFromDto_3(_this__u8e3s4) {
|
|
2564
2606
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2565
|
-
return new PlayerExitReason(_this__u8e3s4.
|
|
2607
|
+
return new PlayerExitReason(_this__u8e3s4.r1s_1);
|
|
2566
2608
|
}
|
|
2567
2609
|
function mapFromDto_4(_this__u8e3s4) {
|
|
2568
2610
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2569
|
-
return new PlayerLostConnectionReason(_this__u8e3s4.
|
|
2611
|
+
return new PlayerLostConnectionReason(_this__u8e3s4.u1s_1, _this__u8e3s4.v1s_1);
|
|
2570
2612
|
}
|
|
2571
2613
|
function mapFromDto_5(_this__u8e3s4) {
|
|
2572
2614
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2573
|
-
return new PlayerTimeoutReason(_this__u8e3s4.
|
|
2615
|
+
return new PlayerTimeoutReason(_this__u8e3s4.y1s_1, _this__u8e3s4.z1s_1);
|
|
2574
2616
|
}
|
|
2575
2617
|
function mapFromDto_6(_this__u8e3s4) {
|
|
2576
2618
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
@@ -2631,14 +2673,14 @@
|
|
|
2631
2673
|
return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp8_rating, tmp6_isBot, tmp7_initialLuckyFactor);
|
|
2632
2674
|
}
|
|
2633
2675
|
function mapFromDto_8(_this__u8e3s4) {
|
|
2634
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
2635
|
-
var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.
|
|
2636
|
-
var tmp1_elvis_lhs = _this__u8e3s4.
|
|
2637
|
-
var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.
|
|
2638
|
-
var tmp2_elvis_lhs = _this__u8e3s4.
|
|
2639
|
-
var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.
|
|
2640
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
2641
|
-
return new GameUserInfo(tmp, tmp_0, tmp_1, tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs, _this__u8e3s4.
|
|
2676
|
+
var tmp0_elvis_lhs = _this__u8e3s4.b1t_1;
|
|
2677
|
+
var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.c1t_1) : tmp0_elvis_lhs;
|
|
2678
|
+
var tmp1_elvis_lhs = _this__u8e3s4.d1t_1;
|
|
2679
|
+
var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.e1t_1) : tmp1_elvis_lhs;
|
|
2680
|
+
var tmp2_elvis_lhs = _this__u8e3s4.f1t_1;
|
|
2681
|
+
var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.g1t_1 : tmp2_elvis_lhs;
|
|
2682
|
+
var tmp3_elvis_lhs = _this__u8e3s4.i1t_1;
|
|
2683
|
+
return new GameUserInfo(tmp, tmp_0, tmp_1, tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs, _this__u8e3s4.j1t_1, _this__u8e3s4.h1t_1);
|
|
2642
2684
|
}
|
|
2643
2685
|
function mapToDto_9(_this__u8e3s4) {
|
|
2644
2686
|
var tmp0_safe_receiver = _this__u8e3s4.q1q_1;
|
|
@@ -2655,7 +2697,7 @@
|
|
|
2655
2697
|
return new PlayerStateDto(tmp4_startFrom, tmp6_playerTurnTimeout, tmp5_waitPlayerUntilTime, tmp7_state, tmp9_ready, tmp8_tag, tmp10_connection);
|
|
2656
2698
|
}
|
|
2657
2699
|
function mapFromDto_9(_this__u8e3s4) {
|
|
2658
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
2700
|
+
var tmp0_safe_receiver = _this__u8e3s4.k1t_1;
|
|
2659
2701
|
var tmp;
|
|
2660
2702
|
if (tmp0_safe_receiver == null) {
|
|
2661
2703
|
tmp = null;
|
|
@@ -2664,7 +2706,7 @@
|
|
|
2664
2706
|
tmp = Companion_getInstance_0().tg(tmp0_safe_receiver);
|
|
2665
2707
|
}
|
|
2666
2708
|
var tmp5_startFromTime = tmp;
|
|
2667
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
2709
|
+
var tmp1_safe_receiver = _this__u8e3s4.m1t_1;
|
|
2668
2710
|
var tmp_0;
|
|
2669
2711
|
if (tmp1_safe_receiver == null) {
|
|
2670
2712
|
tmp_0 = null;
|
|
@@ -2673,7 +2715,7 @@
|
|
|
2673
2715
|
tmp_0 = Companion_getInstance_0().tg(tmp1_safe_receiver);
|
|
2674
2716
|
}
|
|
2675
2717
|
var tmp6_waitPlayerUntilTime = tmp_0;
|
|
2676
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
2718
|
+
var tmp2_safe_receiver = _this__u8e3s4.l1t_1;
|
|
2677
2719
|
var tmp_1;
|
|
2678
2720
|
if (tmp2_safe_receiver == null) {
|
|
2679
2721
|
tmp_1 = null;
|
|
@@ -2682,11 +2724,11 @@
|
|
|
2682
2724
|
tmp_1 = Companion_getInstance_0().tg(tmp2_safe_receiver);
|
|
2683
2725
|
}
|
|
2684
2726
|
var tmp7_playerTurnTimeout = tmp_1;
|
|
2685
|
-
var tmp8_state = _this__u8e3s4.
|
|
2686
|
-
var tmp9_tag = _this__u8e3s4.
|
|
2687
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
2727
|
+
var tmp8_state = _this__u8e3s4.n1t_1;
|
|
2728
|
+
var tmp9_tag = _this__u8e3s4.p1t_1;
|
|
2729
|
+
var tmp3_elvis_lhs = _this__u8e3s4.o1t_1;
|
|
2688
2730
|
var tmp10_ready = tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs;
|
|
2689
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
2731
|
+
var tmp4_safe_receiver = _this__u8e3s4.q1t_1;
|
|
2690
2732
|
var tmp11_connection = tmp4_safe_receiver == null ? null : mapFromDto_10(tmp4_safe_receiver);
|
|
2691
2733
|
return new PlayerState(tmp5_startFromTime, tmp7_playerTurnTimeout, tmp6_waitPlayerUntilTime, tmp8_state, tmp10_ready, tmp9_tag, tmp11_connection);
|
|
2692
2734
|
}
|
|
@@ -2694,7 +2736,7 @@
|
|
|
2694
2736
|
return new PlayerConnectionDto(_this__u8e3s4.b1r_1, _this__u8e3s4.c1r_1.toString(), Duration__toIsoString_impl_9h6wsm(_this__u8e3s4.d1r_1));
|
|
2695
2737
|
}
|
|
2696
2738
|
function mapFromDto_10(_this__u8e3s4) {
|
|
2697
|
-
return new PlayerConnection(_this__u8e3s4.
|
|
2739
|
+
return new PlayerConnection(_this__u8e3s4.r1t_1, Companion_getInstance_0().tg(_this__u8e3s4.s1t_1), Companion_getInstance().ng(_this__u8e3s4.t1t_1));
|
|
2698
2740
|
}
|
|
2699
2741
|
function Companion_15() {
|
|
2700
2742
|
}
|
|
@@ -2714,39 +2756,39 @@
|
|
|
2714
2756
|
tmp0_serialDesc.av('rating', false);
|
|
2715
2757
|
tmp0_serialDesc.av('is_bot', false);
|
|
2716
2758
|
tmp0_serialDesc.av('lucky_factor', false);
|
|
2717
|
-
this.
|
|
2759
|
+
this.u1t_1 = tmp0_serialDesc;
|
|
2718
2760
|
}
|
|
2719
|
-
protoOf($serializer_6).
|
|
2720
|
-
var tmp0_desc = this.
|
|
2761
|
+
protoOf($serializer_6).v1t = function (encoder, value) {
|
|
2762
|
+
var tmp0_desc = this.u1t_1;
|
|
2721
2763
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2722
|
-
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.
|
|
2723
|
-
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
2764
|
+
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.b1t_1 == null)) {
|
|
2765
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.b1t_1);
|
|
2724
2766
|
}
|
|
2725
|
-
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.
|
|
2726
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2767
|
+
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.c1t_1 == null)) {
|
|
2768
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.c1t_1);
|
|
2727
2769
|
}
|
|
2728
|
-
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.
|
|
2729
|
-
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
2770
|
+
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.d1t_1 == null)) {
|
|
2771
|
+
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.d1t_1);
|
|
2730
2772
|
}
|
|
2731
|
-
if (tmp1_output.hp(tmp0_desc, 3) ? true : !(value.
|
|
2732
|
-
tmp1_output.dp(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
2773
|
+
if (tmp1_output.hp(tmp0_desc, 3) ? true : !(value.e1t_1 == null)) {
|
|
2774
|
+
tmp1_output.dp(tmp0_desc, 3, StringSerializer_getInstance(), value.e1t_1);
|
|
2733
2775
|
}
|
|
2734
|
-
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.
|
|
2735
|
-
tmp1_output.dp(tmp0_desc, 4, StringSerializer_getInstance(), value.
|
|
2776
|
+
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.f1t_1 == null)) {
|
|
2777
|
+
tmp1_output.dp(tmp0_desc, 4, StringSerializer_getInstance(), value.f1t_1);
|
|
2736
2778
|
}
|
|
2737
|
-
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.
|
|
2738
|
-
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
2779
|
+
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.g1t_1 == null)) {
|
|
2780
|
+
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.g1t_1);
|
|
2739
2781
|
}
|
|
2740
|
-
tmp1_output.dp(tmp0_desc, 6, DoubleSerializer_getInstance(), value.
|
|
2741
|
-
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
2742
|
-
tmp1_output.dp(tmp0_desc, 8, FloatSerializer_getInstance(), value.
|
|
2782
|
+
tmp1_output.dp(tmp0_desc, 6, DoubleSerializer_getInstance(), value.h1t_1);
|
|
2783
|
+
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.i1t_1);
|
|
2784
|
+
tmp1_output.dp(tmp0_desc, 8, FloatSerializer_getInstance(), value.j1t_1);
|
|
2743
2785
|
tmp1_output.ln(tmp0_desc);
|
|
2744
2786
|
};
|
|
2745
2787
|
protoOf($serializer_6).ck = function (encoder, value) {
|
|
2746
|
-
return this.
|
|
2788
|
+
return this.v1t(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
2747
2789
|
};
|
|
2748
2790
|
protoOf($serializer_6).dk = function (decoder) {
|
|
2749
|
-
var tmp0_desc = this.
|
|
2791
|
+
var tmp0_desc = this.u1t_1;
|
|
2750
2792
|
var tmp1_flag = true;
|
|
2751
2793
|
var tmp2_index = 0;
|
|
2752
2794
|
var tmp3_bitMask0 = 0;
|
|
@@ -2830,7 +2872,7 @@
|
|
|
2830
2872
|
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);
|
|
2831
2873
|
};
|
|
2832
2874
|
protoOf($serializer_6).bk = function () {
|
|
2833
|
-
return this.
|
|
2875
|
+
return this.u1t_1;
|
|
2834
2876
|
};
|
|
2835
2877
|
protoOf($serializer_6).rv = function () {
|
|
2836
2878
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2846,35 +2888,35 @@
|
|
|
2846
2888
|
}
|
|
2847
2889
|
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
2848
2890
|
if (!(448 === (448 & seen0))) {
|
|
2849
|
-
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().
|
|
2891
|
+
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().u1t_1);
|
|
2850
2892
|
}
|
|
2851
2893
|
if (0 === (seen0 & 1))
|
|
2852
|
-
$this.
|
|
2894
|
+
$this.b1t_1 = null;
|
|
2853
2895
|
else
|
|
2854
|
-
$this.
|
|
2896
|
+
$this.b1t_1 = playerId;
|
|
2855
2897
|
if (0 === (seen0 & 2))
|
|
2856
|
-
$this.
|
|
2898
|
+
$this.c1t_1 = null;
|
|
2857
2899
|
else
|
|
2858
|
-
$this.
|
|
2900
|
+
$this.c1t_1 = uid;
|
|
2859
2901
|
if (0 === (seen0 & 4))
|
|
2860
|
-
$this.
|
|
2902
|
+
$this.d1t_1 = null;
|
|
2861
2903
|
else
|
|
2862
|
-
$this.
|
|
2904
|
+
$this.d1t_1 = name;
|
|
2863
2905
|
if (0 === (seen0 & 8))
|
|
2864
|
-
$this.
|
|
2906
|
+
$this.e1t_1 = null;
|
|
2865
2907
|
else
|
|
2866
|
-
$this.
|
|
2908
|
+
$this.e1t_1 = nickname;
|
|
2867
2909
|
if (0 === (seen0 & 16))
|
|
2868
|
-
$this.
|
|
2910
|
+
$this.f1t_1 = null;
|
|
2869
2911
|
else
|
|
2870
|
-
$this.
|
|
2912
|
+
$this.f1t_1 = avatarUrl;
|
|
2871
2913
|
if (0 === (seen0 & 32))
|
|
2872
|
-
$this.
|
|
2914
|
+
$this.g1t_1 = null;
|
|
2873
2915
|
else
|
|
2874
|
-
$this.
|
|
2875
|
-
$this.
|
|
2876
|
-
$this.
|
|
2877
|
-
$this.
|
|
2916
|
+
$this.g1t_1 = photo;
|
|
2917
|
+
$this.h1t_1 = rating;
|
|
2918
|
+
$this.i1t_1 = isBot;
|
|
2919
|
+
$this.j1t_1 = initialLuckyFactor;
|
|
2878
2920
|
return $this;
|
|
2879
2921
|
}
|
|
2880
2922
|
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
@@ -2887,47 +2929,47 @@
|
|
|
2887
2929
|
nickname = nickname === VOID ? null : nickname;
|
|
2888
2930
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
2889
2931
|
photo = photo === VOID ? null : photo;
|
|
2890
|
-
this.
|
|
2891
|
-
this.
|
|
2892
|
-
this.
|
|
2893
|
-
this.
|
|
2894
|
-
this.
|
|
2895
|
-
this.
|
|
2896
|
-
this.
|
|
2897
|
-
this.
|
|
2898
|
-
this.
|
|
2899
|
-
}
|
|
2900
|
-
protoOf(GameUserInfoDto).
|
|
2901
|
-
return this.
|
|
2902
|
-
};
|
|
2903
|
-
protoOf(GameUserInfoDto).
|
|
2932
|
+
this.b1t_1 = playerId;
|
|
2933
|
+
this.c1t_1 = uid;
|
|
2934
|
+
this.d1t_1 = name;
|
|
2935
|
+
this.e1t_1 = nickname;
|
|
2936
|
+
this.f1t_1 = avatarUrl;
|
|
2937
|
+
this.g1t_1 = photo;
|
|
2938
|
+
this.h1t_1 = rating;
|
|
2939
|
+
this.i1t_1 = isBot;
|
|
2940
|
+
this.j1t_1 = initialLuckyFactor;
|
|
2941
|
+
}
|
|
2942
|
+
protoOf(GameUserInfoDto).w1t = function () {
|
|
2943
|
+
return this.x1t(VOID, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
2944
|
+
};
|
|
2945
|
+
protoOf(GameUserInfoDto).y1t = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
2904
2946
|
return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
2905
2947
|
};
|
|
2906
|
-
protoOf(GameUserInfoDto).
|
|
2907
|
-
playerId = playerId === VOID ? this.
|
|
2908
|
-
uid = uid === VOID ? this.
|
|
2909
|
-
name = name === VOID ? this.
|
|
2910
|
-
nickname = nickname === VOID ? this.
|
|
2911
|
-
avatarUrl = avatarUrl === VOID ? this.
|
|
2912
|
-
photo = photo === VOID ? this.
|
|
2913
|
-
rating = rating === VOID ? this.
|
|
2914
|
-
isBot = isBot === VOID ? this.
|
|
2915
|
-
initialLuckyFactor = initialLuckyFactor === VOID ? this.
|
|
2916
|
-
return $super === VOID ? this.
|
|
2948
|
+
protoOf(GameUserInfoDto).x1t = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, $super) {
|
|
2949
|
+
playerId = playerId === VOID ? this.b1t_1 : playerId;
|
|
2950
|
+
uid = uid === VOID ? this.c1t_1 : uid;
|
|
2951
|
+
name = name === VOID ? this.d1t_1 : name;
|
|
2952
|
+
nickname = nickname === VOID ? this.e1t_1 : nickname;
|
|
2953
|
+
avatarUrl = avatarUrl === VOID ? this.f1t_1 : avatarUrl;
|
|
2954
|
+
photo = photo === VOID ? this.g1t_1 : photo;
|
|
2955
|
+
rating = rating === VOID ? this.h1t_1 : rating;
|
|
2956
|
+
isBot = isBot === VOID ? this.i1t_1 : isBot;
|
|
2957
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.j1t_1 : initialLuckyFactor;
|
|
2958
|
+
return $super === VOID ? this.y1t(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) : $super.y1t.call(this, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
2917
2959
|
};
|
|
2918
2960
|
protoOf(GameUserInfoDto).toString = function () {
|
|
2919
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
2961
|
+
return 'GameUserInfoDto(playerId=' + this.b1t_1 + ', uid=' + this.c1t_1 + ', name=' + this.d1t_1 + ', nickname=' + this.e1t_1 + ', avatarUrl=' + this.f1t_1 + ', photo=' + this.g1t_1 + ', rating=' + this.h1t_1 + ', isBot=' + this.i1t_1 + ', initialLuckyFactor=' + this.j1t_1 + ')';
|
|
2920
2962
|
};
|
|
2921
2963
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
2922
|
-
var result = this.
|
|
2923
|
-
result = imul(result, 31) + (this.b1t_1 == null ? 0 : getStringHashCode(this.b1t_1)) | 0;
|
|
2964
|
+
var result = this.b1t_1 == null ? 0 : getStringHashCode(this.b1t_1);
|
|
2924
2965
|
result = imul(result, 31) + (this.c1t_1 == null ? 0 : getStringHashCode(this.c1t_1)) | 0;
|
|
2925
2966
|
result = imul(result, 31) + (this.d1t_1 == null ? 0 : getStringHashCode(this.d1t_1)) | 0;
|
|
2926
2967
|
result = imul(result, 31) + (this.e1t_1 == null ? 0 : getStringHashCode(this.e1t_1)) | 0;
|
|
2927
2968
|
result = imul(result, 31) + (this.f1t_1 == null ? 0 : getStringHashCode(this.f1t_1)) | 0;
|
|
2928
|
-
result = imul(result, 31) + (this.g1t_1 == null ? 0 :
|
|
2929
|
-
result = imul(result, 31) + (this.h1t_1 == null ? 0 :
|
|
2930
|
-
result = imul(result, 31) + (this.i1t_1 == null ? 0 :
|
|
2969
|
+
result = imul(result, 31) + (this.g1t_1 == null ? 0 : getStringHashCode(this.g1t_1)) | 0;
|
|
2970
|
+
result = imul(result, 31) + (this.h1t_1 == null ? 0 : getNumberHashCode(this.h1t_1)) | 0;
|
|
2971
|
+
result = imul(result, 31) + (this.i1t_1 == null ? 0 : getBooleanHashCode(this.i1t_1)) | 0;
|
|
2972
|
+
result = imul(result, 31) + (this.j1t_1 == null ? 0 : getNumberHashCode(this.j1t_1)) | 0;
|
|
2931
2973
|
return result;
|
|
2932
2974
|
};
|
|
2933
2975
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -2935,8 +2977,6 @@
|
|
|
2935
2977
|
return true;
|
|
2936
2978
|
if (!(other instanceof GameUserInfoDto))
|
|
2937
2979
|
return false;
|
|
2938
|
-
if (!(this.a1t_1 == other.a1t_1))
|
|
2939
|
-
return false;
|
|
2940
2980
|
if (!(this.b1t_1 == other.b1t_1))
|
|
2941
2981
|
return false;
|
|
2942
2982
|
if (!(this.c1t_1 == other.c1t_1))
|
|
@@ -2947,11 +2987,13 @@
|
|
|
2947
2987
|
return false;
|
|
2948
2988
|
if (!(this.f1t_1 == other.f1t_1))
|
|
2949
2989
|
return false;
|
|
2950
|
-
if (!
|
|
2990
|
+
if (!(this.g1t_1 == other.g1t_1))
|
|
2991
|
+
return false;
|
|
2992
|
+
if (!equals(this.h1t_1, other.h1t_1))
|
|
2951
2993
|
return false;
|
|
2952
|
-
if (!(this.
|
|
2994
|
+
if (!(this.i1t_1 == other.i1t_1))
|
|
2953
2995
|
return false;
|
|
2954
|
-
if (!equals(this.
|
|
2996
|
+
if (!equals(this.j1t_1, other.j1t_1))
|
|
2955
2997
|
return false;
|
|
2956
2998
|
return true;
|
|
2957
2999
|
};
|
|
@@ -2965,7 +3007,7 @@
|
|
|
2965
3007
|
// Inline function 'kotlin.arrayOf' call
|
|
2966
3008
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2967
3009
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2968
|
-
tmp.
|
|
3010
|
+
tmp.z1t_1 = [lazy(tmp_0, PlayerConnectionDto$Companion$$childSerializers$_anonymous__jevhp2), null, null];
|
|
2969
3011
|
}
|
|
2970
3012
|
var Companion_instance_16;
|
|
2971
3013
|
function Companion_getInstance_19() {
|
|
@@ -2979,22 +3021,22 @@
|
|
|
2979
3021
|
tmp0_serialDesc.av('state', false);
|
|
2980
3022
|
tmp0_serialDesc.av('connectionChangedTime', false);
|
|
2981
3023
|
tmp0_serialDesc.av('notLiveDurationRecord', false);
|
|
2982
|
-
this.
|
|
3024
|
+
this.a1u_1 = tmp0_serialDesc;
|
|
2983
3025
|
}
|
|
2984
|
-
protoOf($serializer_7).
|
|
2985
|
-
var tmp0_desc = this.
|
|
3026
|
+
protoOf($serializer_7).b1u = function (encoder, value) {
|
|
3027
|
+
var tmp0_desc = this.a1u_1;
|
|
2986
3028
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2987
|
-
var tmp2_cached = Companion_getInstance_19().
|
|
2988
|
-
tmp1_output.bp(tmp0_desc, 0, tmp2_cached[0].v1(), value.
|
|
2989
|
-
tmp1_output.zo(tmp0_desc, 1, value.
|
|
2990
|
-
tmp1_output.zo(tmp0_desc, 2, value.
|
|
3029
|
+
var tmp2_cached = Companion_getInstance_19().z1t_1;
|
|
3030
|
+
tmp1_output.bp(tmp0_desc, 0, tmp2_cached[0].v1(), value.r1t_1);
|
|
3031
|
+
tmp1_output.zo(tmp0_desc, 1, value.s1t_1);
|
|
3032
|
+
tmp1_output.zo(tmp0_desc, 2, value.t1t_1);
|
|
2991
3033
|
tmp1_output.ln(tmp0_desc);
|
|
2992
3034
|
};
|
|
2993
3035
|
protoOf($serializer_7).ck = function (encoder, value) {
|
|
2994
|
-
return this.
|
|
3036
|
+
return this.b1u(encoder, value instanceof PlayerConnectionDto ? value : THROW_CCE());
|
|
2995
3037
|
};
|
|
2996
3038
|
protoOf($serializer_7).dk = function (decoder) {
|
|
2997
|
-
var tmp0_desc = this.
|
|
3039
|
+
var tmp0_desc = this.a1u_1;
|
|
2998
3040
|
var tmp1_flag = true;
|
|
2999
3041
|
var tmp2_index = 0;
|
|
3000
3042
|
var tmp3_bitMask0 = 0;
|
|
@@ -3002,7 +3044,7 @@
|
|
|
3002
3044
|
var tmp5_local1 = null;
|
|
3003
3045
|
var tmp6_local2 = null;
|
|
3004
3046
|
var tmp7_input = decoder.kn(tmp0_desc);
|
|
3005
|
-
var tmp8_cached = Companion_getInstance_19().
|
|
3047
|
+
var tmp8_cached = Companion_getInstance_19().z1t_1;
|
|
3006
3048
|
if (tmp7_input.ao()) {
|
|
3007
3049
|
tmp4_local0 = tmp7_input.wn(tmp0_desc, 0, tmp8_cached[0].v1(), tmp4_local0);
|
|
3008
3050
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3037,13 +3079,13 @@
|
|
|
3037
3079
|
return PlayerConnectionDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
3038
3080
|
};
|
|
3039
3081
|
protoOf($serializer_7).bk = function () {
|
|
3040
|
-
return this.
|
|
3082
|
+
return this.a1u_1;
|
|
3041
3083
|
};
|
|
3042
3084
|
protoOf($serializer_7).rv = function () {
|
|
3043
3085
|
// Inline function 'kotlin.arrayOf' call
|
|
3044
3086
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3045
3087
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3046
|
-
return [Companion_getInstance_19().
|
|
3088
|
+
return [Companion_getInstance_19().z1t_1[0].v1(), StringSerializer_getInstance(), StringSerializer_getInstance()];
|
|
3047
3089
|
};
|
|
3048
3090
|
var $serializer_instance_7;
|
|
3049
3091
|
function $serializer_getInstance_7() {
|
|
@@ -3053,11 +3095,11 @@
|
|
|
3053
3095
|
}
|
|
3054
3096
|
function PlayerConnectionDto_init_$Init$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker, $this) {
|
|
3055
3097
|
if (!(7 === (7 & seen0))) {
|
|
3056
|
-
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().
|
|
3098
|
+
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().a1u_1);
|
|
3057
3099
|
}
|
|
3058
|
-
$this.
|
|
3059
|
-
$this.
|
|
3060
|
-
$this.
|
|
3100
|
+
$this.r1t_1 = state;
|
|
3101
|
+
$this.s1t_1 = connectionChangedTime;
|
|
3102
|
+
$this.t1t_1 = notLiveDurationRecord;
|
|
3061
3103
|
return $this;
|
|
3062
3104
|
}
|
|
3063
3105
|
function PlayerConnectionDto_init_$Create$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker) {
|
|
@@ -3065,17 +3107,17 @@
|
|
|
3065
3107
|
}
|
|
3066
3108
|
function PlayerConnectionDto(state, connectionChangedTime, notLiveDurationRecord) {
|
|
3067
3109
|
Companion_getInstance_19();
|
|
3068
|
-
this.
|
|
3069
|
-
this.
|
|
3070
|
-
this.
|
|
3110
|
+
this.r1t_1 = state;
|
|
3111
|
+
this.s1t_1 = connectionChangedTime;
|
|
3112
|
+
this.t1t_1 = notLiveDurationRecord;
|
|
3071
3113
|
}
|
|
3072
3114
|
protoOf(PlayerConnectionDto).toString = function () {
|
|
3073
|
-
return 'PlayerConnectionDto(state=' + this.
|
|
3115
|
+
return 'PlayerConnectionDto(state=' + this.r1t_1.toString() + ', connectionChangedTime=' + this.s1t_1 + ', notLiveDurationRecord=' + this.t1t_1 + ')';
|
|
3074
3116
|
};
|
|
3075
3117
|
protoOf(PlayerConnectionDto).hashCode = function () {
|
|
3076
|
-
var result = this.
|
|
3077
|
-
result = imul(result, 31) + getStringHashCode(this.r1t_1) | 0;
|
|
3118
|
+
var result = this.r1t_1.hashCode();
|
|
3078
3119
|
result = imul(result, 31) + getStringHashCode(this.s1t_1) | 0;
|
|
3120
|
+
result = imul(result, 31) + getStringHashCode(this.t1t_1) | 0;
|
|
3079
3121
|
return result;
|
|
3080
3122
|
};
|
|
3081
3123
|
protoOf(PlayerConnectionDto).equals = function (other) {
|
|
@@ -3083,12 +3125,12 @@
|
|
|
3083
3125
|
return true;
|
|
3084
3126
|
if (!(other instanceof PlayerConnectionDto))
|
|
3085
3127
|
return false;
|
|
3086
|
-
if (!this.
|
|
3087
|
-
return false;
|
|
3088
|
-
if (!(this.r1t_1 === other.r1t_1))
|
|
3128
|
+
if (!this.r1t_1.equals(other.r1t_1))
|
|
3089
3129
|
return false;
|
|
3090
3130
|
if (!(this.s1t_1 === other.s1t_1))
|
|
3091
3131
|
return false;
|
|
3132
|
+
if (!(this.t1t_1 === other.t1t_1))
|
|
3133
|
+
return false;
|
|
3092
3134
|
return true;
|
|
3093
3135
|
};
|
|
3094
3136
|
function PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl() {
|
|
@@ -3101,7 +3143,7 @@
|
|
|
3101
3143
|
// Inline function 'kotlin.arrayOf' call
|
|
3102
3144
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3103
3145
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3104
|
-
tmp.
|
|
3146
|
+
tmp.c1u_1 = [null, null, null, lazy(tmp_0, PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl), null, null, null];
|
|
3105
3147
|
}
|
|
3106
3148
|
var Companion_instance_17;
|
|
3107
3149
|
function Companion_getInstance_20() {
|
|
@@ -3119,38 +3161,38 @@
|
|
|
3119
3161
|
tmp0_serialDesc.av('ready', true);
|
|
3120
3162
|
tmp0_serialDesc.av('tag', true);
|
|
3121
3163
|
tmp0_serialDesc.av('connection', true);
|
|
3122
|
-
this.
|
|
3164
|
+
this.d1u_1 = tmp0_serialDesc;
|
|
3123
3165
|
}
|
|
3124
|
-
protoOf($serializer_8).
|
|
3125
|
-
var tmp0_desc = this.
|
|
3166
|
+
protoOf($serializer_8).e1u = function (encoder, value) {
|
|
3167
|
+
var tmp0_desc = this.d1u_1;
|
|
3126
3168
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
3127
|
-
var tmp2_cached = Companion_getInstance_20().
|
|
3128
|
-
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.
|
|
3129
|
-
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
3169
|
+
var tmp2_cached = Companion_getInstance_20().c1u_1;
|
|
3170
|
+
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.k1t_1 == null)) {
|
|
3171
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.k1t_1);
|
|
3130
3172
|
}
|
|
3131
|
-
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.
|
|
3132
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
3173
|
+
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.l1t_1 == null)) {
|
|
3174
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.l1t_1);
|
|
3133
3175
|
}
|
|
3134
|
-
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.
|
|
3135
|
-
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
3176
|
+
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.m1t_1 == null)) {
|
|
3177
|
+
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.m1t_1);
|
|
3136
3178
|
}
|
|
3137
|
-
tmp1_output.bp(tmp0_desc, 3, tmp2_cached[3].v1(), value.
|
|
3138
|
-
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.
|
|
3139
|
-
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
3179
|
+
tmp1_output.bp(tmp0_desc, 3, tmp2_cached[3].v1(), value.n1t_1);
|
|
3180
|
+
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.o1t_1 == null)) {
|
|
3181
|
+
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.o1t_1);
|
|
3140
3182
|
}
|
|
3141
|
-
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.
|
|
3142
|
-
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
3183
|
+
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.p1t_1 == null)) {
|
|
3184
|
+
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.p1t_1);
|
|
3143
3185
|
}
|
|
3144
|
-
if (tmp1_output.hp(tmp0_desc, 6) ? true : !(value.
|
|
3145
|
-
tmp1_output.dp(tmp0_desc, 6, $serializer_getInstance_7(), value.
|
|
3186
|
+
if (tmp1_output.hp(tmp0_desc, 6) ? true : !(value.q1t_1 == null)) {
|
|
3187
|
+
tmp1_output.dp(tmp0_desc, 6, $serializer_getInstance_7(), value.q1t_1);
|
|
3146
3188
|
}
|
|
3147
3189
|
tmp1_output.ln(tmp0_desc);
|
|
3148
3190
|
};
|
|
3149
3191
|
protoOf($serializer_8).ck = function (encoder, value) {
|
|
3150
|
-
return this.
|
|
3192
|
+
return this.e1u(encoder, value instanceof PlayerStateDto ? value : THROW_CCE());
|
|
3151
3193
|
};
|
|
3152
3194
|
protoOf($serializer_8).dk = function (decoder) {
|
|
3153
|
-
var tmp0_desc = this.
|
|
3195
|
+
var tmp0_desc = this.d1u_1;
|
|
3154
3196
|
var tmp1_flag = true;
|
|
3155
3197
|
var tmp2_index = 0;
|
|
3156
3198
|
var tmp3_bitMask0 = 0;
|
|
@@ -3162,7 +3204,7 @@
|
|
|
3162
3204
|
var tmp9_local5 = null;
|
|
3163
3205
|
var tmp10_local6 = null;
|
|
3164
3206
|
var tmp11_input = decoder.kn(tmp0_desc);
|
|
3165
|
-
var tmp12_cached = Companion_getInstance_20().
|
|
3207
|
+
var tmp12_cached = Companion_getInstance_20().c1u_1;
|
|
3166
3208
|
if (tmp11_input.ao()) {
|
|
3167
3209
|
tmp4_local0 = tmp11_input.yn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3168
3210
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3221,10 +3263,10 @@
|
|
|
3221
3263
|
return PlayerStateDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, null);
|
|
3222
3264
|
};
|
|
3223
3265
|
protoOf($serializer_8).bk = function () {
|
|
3224
|
-
return this.
|
|
3266
|
+
return this.d1u_1;
|
|
3225
3267
|
};
|
|
3226
3268
|
protoOf($serializer_8).rv = function () {
|
|
3227
|
-
var tmp0_cached = Companion_getInstance_20().
|
|
3269
|
+
var tmp0_cached = Companion_getInstance_20().c1u_1;
|
|
3228
3270
|
// Inline function 'kotlin.arrayOf' call
|
|
3229
3271
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3230
3272
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3238,33 +3280,33 @@
|
|
|
3238
3280
|
}
|
|
3239
3281
|
function PlayerStateDto_init_$Init$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker, $this) {
|
|
3240
3282
|
if (!(8 === (8 & seen0))) {
|
|
3241
|
-
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().
|
|
3283
|
+
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().d1u_1);
|
|
3242
3284
|
}
|
|
3243
3285
|
if (0 === (seen0 & 1))
|
|
3244
|
-
$this.
|
|
3286
|
+
$this.k1t_1 = null;
|
|
3245
3287
|
else
|
|
3246
|
-
$this.
|
|
3288
|
+
$this.k1t_1 = startFrom;
|
|
3247
3289
|
if (0 === (seen0 & 2))
|
|
3248
|
-
$this.
|
|
3290
|
+
$this.l1t_1 = null;
|
|
3249
3291
|
else
|
|
3250
|
-
$this.
|
|
3292
|
+
$this.l1t_1 = playerTurnTimeout;
|
|
3251
3293
|
if (0 === (seen0 & 4))
|
|
3252
|
-
$this.
|
|
3294
|
+
$this.m1t_1 = null;
|
|
3253
3295
|
else
|
|
3254
|
-
$this.
|
|
3255
|
-
$this.
|
|
3296
|
+
$this.m1t_1 = waitPlayerUntilTime;
|
|
3297
|
+
$this.n1t_1 = state;
|
|
3256
3298
|
if (0 === (seen0 & 16))
|
|
3257
|
-
$this.
|
|
3299
|
+
$this.o1t_1 = null;
|
|
3258
3300
|
else
|
|
3259
|
-
$this.
|
|
3301
|
+
$this.o1t_1 = ready;
|
|
3260
3302
|
if (0 === (seen0 & 32))
|
|
3261
|
-
$this.
|
|
3303
|
+
$this.p1t_1 = null;
|
|
3262
3304
|
else
|
|
3263
|
-
$this.
|
|
3305
|
+
$this.p1t_1 = tag;
|
|
3264
3306
|
if (0 === (seen0 & 64))
|
|
3265
|
-
$this.
|
|
3307
|
+
$this.q1t_1 = null;
|
|
3266
3308
|
else
|
|
3267
|
-
$this.
|
|
3309
|
+
$this.q1t_1 = connection;
|
|
3268
3310
|
return $this;
|
|
3269
3311
|
}
|
|
3270
3312
|
function PlayerStateDto_init_$Create$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker) {
|
|
@@ -3278,25 +3320,25 @@
|
|
|
3278
3320
|
ready = ready === VOID ? null : ready;
|
|
3279
3321
|
tag = tag === VOID ? null : tag;
|
|
3280
3322
|
connection = connection === VOID ? null : connection;
|
|
3281
|
-
this.
|
|
3282
|
-
this.
|
|
3283
|
-
this.
|
|
3284
|
-
this.
|
|
3285
|
-
this.
|
|
3286
|
-
this.
|
|
3287
|
-
this.
|
|
3323
|
+
this.k1t_1 = startFrom;
|
|
3324
|
+
this.l1t_1 = playerTurnTimeout;
|
|
3325
|
+
this.m1t_1 = waitPlayerUntilTime;
|
|
3326
|
+
this.n1t_1 = state;
|
|
3327
|
+
this.o1t_1 = ready;
|
|
3328
|
+
this.p1t_1 = tag;
|
|
3329
|
+
this.q1t_1 = connection;
|
|
3288
3330
|
}
|
|
3289
3331
|
protoOf(PlayerStateDto).toString = function () {
|
|
3290
|
-
return 'PlayerStateDto(startFrom=' + this.
|
|
3332
|
+
return 'PlayerStateDto(startFrom=' + this.k1t_1 + ', playerTurnTimeout=' + this.l1t_1 + ', waitPlayerUntilTime=' + this.m1t_1 + ', state=' + this.n1t_1.toString() + ', ready=' + this.o1t_1 + ', tag=' + this.p1t_1 + ', connection=' + toString(this.q1t_1) + ')';
|
|
3291
3333
|
};
|
|
3292
3334
|
protoOf(PlayerStateDto).hashCode = function () {
|
|
3293
|
-
var result = this.
|
|
3294
|
-
result = imul(result, 31) + (this.k1t_1 == null ? 0 : getStringHashCode(this.k1t_1)) | 0;
|
|
3335
|
+
var result = this.k1t_1 == null ? 0 : getStringHashCode(this.k1t_1);
|
|
3295
3336
|
result = imul(result, 31) + (this.l1t_1 == null ? 0 : getStringHashCode(this.l1t_1)) | 0;
|
|
3296
|
-
result = imul(result, 31) + this.m1t_1.
|
|
3297
|
-
result = imul(result, 31) +
|
|
3298
|
-
result = imul(result, 31) + (this.o1t_1 == null ? 0 :
|
|
3299
|
-
result = imul(result, 31) + (this.p1t_1 == null ? 0 : this.p1t_1
|
|
3337
|
+
result = imul(result, 31) + (this.m1t_1 == null ? 0 : getStringHashCode(this.m1t_1)) | 0;
|
|
3338
|
+
result = imul(result, 31) + this.n1t_1.hashCode() | 0;
|
|
3339
|
+
result = imul(result, 31) + (this.o1t_1 == null ? 0 : getBooleanHashCode(this.o1t_1)) | 0;
|
|
3340
|
+
result = imul(result, 31) + (this.p1t_1 == null ? 0 : getStringHashCode(this.p1t_1)) | 0;
|
|
3341
|
+
result = imul(result, 31) + (this.q1t_1 == null ? 0 : this.q1t_1.hashCode()) | 0;
|
|
3300
3342
|
return result;
|
|
3301
3343
|
};
|
|
3302
3344
|
protoOf(PlayerStateDto).equals = function (other) {
|
|
@@ -3304,19 +3346,19 @@
|
|
|
3304
3346
|
return true;
|
|
3305
3347
|
if (!(other instanceof PlayerStateDto))
|
|
3306
3348
|
return false;
|
|
3307
|
-
if (!(this.j1t_1 == other.j1t_1))
|
|
3308
|
-
return false;
|
|
3309
3349
|
if (!(this.k1t_1 == other.k1t_1))
|
|
3310
3350
|
return false;
|
|
3311
3351
|
if (!(this.l1t_1 == other.l1t_1))
|
|
3312
3352
|
return false;
|
|
3313
|
-
if (!this.m1t_1
|
|
3353
|
+
if (!(this.m1t_1 == other.m1t_1))
|
|
3314
3354
|
return false;
|
|
3315
|
-
if (!
|
|
3355
|
+
if (!this.n1t_1.equals(other.n1t_1))
|
|
3316
3356
|
return false;
|
|
3317
3357
|
if (!(this.o1t_1 == other.o1t_1))
|
|
3318
3358
|
return false;
|
|
3319
|
-
if (!
|
|
3359
|
+
if (!(this.p1t_1 == other.p1t_1))
|
|
3360
|
+
return false;
|
|
3361
|
+
if (!equals(this.q1t_1, other.q1t_1))
|
|
3320
3362
|
return false;
|
|
3321
3363
|
return true;
|
|
3322
3364
|
};
|
|
@@ -3340,7 +3382,7 @@
|
|
|
3340
3382
|
// Inline function 'kotlin.arrayOf' call
|
|
3341
3383
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3342
3384
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3343
|
-
tmp.
|
|
3385
|
+
tmp.f1u_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];
|
|
3344
3386
|
}
|
|
3345
3387
|
var Companion_instance_18;
|
|
3346
3388
|
function Companion_getInstance_21() {
|
|
@@ -3377,45 +3419,45 @@
|
|
|
3377
3419
|
tmp0_serialDesc.av('fineIfNoBribes', false);
|
|
3378
3420
|
tmp0_serialDesc.av('enableFineAfterThirdByte', false);
|
|
3379
3421
|
tmp0_serialDesc.av('fineAfterThirdFailedContract', false);
|
|
3380
|
-
this.
|
|
3422
|
+
this.g1u_1 = tmp0_serialDesc;
|
|
3381
3423
|
}
|
|
3382
|
-
protoOf($serializer_9).
|
|
3383
|
-
var tmp0_desc = this.
|
|
3424
|
+
protoOf($serializer_9).h1u = function (encoder, value) {
|
|
3425
|
+
var tmp0_desc = this.g1u_1;
|
|
3384
3426
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
3385
|
-
var tmp2_cached = Companion_getInstance_21().
|
|
3386
|
-
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
3387
|
-
tmp1_output.dp(tmp0_desc, 1, BooleanSerializer_getInstance(), value.
|
|
3388
|
-
tmp1_output.dp(tmp0_desc, 2, BooleanSerializer_getInstance(), value.
|
|
3389
|
-
tmp1_output.dp(tmp0_desc, 3, BooleanSerializer_getInstance(), value.
|
|
3390
|
-
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
3391
|
-
tmp1_output.dp(tmp0_desc, 5, IntSerializer_getInstance(), value.
|
|
3392
|
-
tmp1_output.dp(tmp0_desc, 6, IntSerializer_getInstance(), value.
|
|
3393
|
-
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
3394
|
-
tmp1_output.dp(tmp0_desc, 8, tmp2_cached[8].v1(), value.
|
|
3395
|
-
tmp1_output.dp(tmp0_desc, 9, tmp2_cached[9].v1(), value.
|
|
3396
|
-
tmp1_output.dp(tmp0_desc, 10, BooleanSerializer_getInstance(), value.
|
|
3397
|
-
tmp1_output.dp(tmp0_desc, 11, StringSerializer_getInstance(), value.
|
|
3398
|
-
tmp1_output.dp(tmp0_desc, 12, StringSerializer_getInstance(), value.
|
|
3399
|
-
tmp1_output.dp(tmp0_desc, 13, tmp2_cached[13].v1(), value.
|
|
3400
|
-
tmp1_output.dp(tmp0_desc, 14, BooleanSerializer_getInstance(), value.
|
|
3401
|
-
tmp1_output.dp(tmp0_desc, 15, BooleanSerializer_getInstance(), value.
|
|
3402
|
-
tmp1_output.dp(tmp0_desc, 16, BooleanSerializer_getInstance(), value.
|
|
3403
|
-
tmp1_output.dp(tmp0_desc, 17, BooleanSerializer_getInstance(), value.
|
|
3404
|
-
tmp1_output.dp(tmp0_desc, 18, BooleanSerializer_getInstance(), value.
|
|
3405
|
-
tmp1_output.dp(tmp0_desc, 19, BooleanSerializer_getInstance(), value.
|
|
3406
|
-
tmp1_output.dp(tmp0_desc, 20, BooleanSerializer_getInstance(), value.
|
|
3407
|
-
tmp1_output.zo(tmp0_desc, 21, value.
|
|
3408
|
-
tmp1_output.dp(tmp0_desc, 22, BooleanSerializer_getInstance(), value.
|
|
3409
|
-
tmp1_output.dp(tmp0_desc, 23, IntSerializer_getInstance(), value.
|
|
3410
|
-
tmp1_output.dp(tmp0_desc, 24, BooleanSerializer_getInstance(), value.
|
|
3411
|
-
tmp1_output.dp(tmp0_desc, 25, IntSerializer_getInstance(), value.
|
|
3427
|
+
var tmp2_cached = Companion_getInstance_21().f1u_1;
|
|
3428
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.i1u_1);
|
|
3429
|
+
tmp1_output.dp(tmp0_desc, 1, BooleanSerializer_getInstance(), value.j1u_1);
|
|
3430
|
+
tmp1_output.dp(tmp0_desc, 2, BooleanSerializer_getInstance(), value.k1u_1);
|
|
3431
|
+
tmp1_output.dp(tmp0_desc, 3, BooleanSerializer_getInstance(), value.l1u_1);
|
|
3432
|
+
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.m1u_1);
|
|
3433
|
+
tmp1_output.dp(tmp0_desc, 5, IntSerializer_getInstance(), value.n1u_1);
|
|
3434
|
+
tmp1_output.dp(tmp0_desc, 6, IntSerializer_getInstance(), value.o1u_1);
|
|
3435
|
+
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.p1u_1);
|
|
3436
|
+
tmp1_output.dp(tmp0_desc, 8, tmp2_cached[8].v1(), value.q1u_1);
|
|
3437
|
+
tmp1_output.dp(tmp0_desc, 9, tmp2_cached[9].v1(), value.r1u_1);
|
|
3438
|
+
tmp1_output.dp(tmp0_desc, 10, BooleanSerializer_getInstance(), value.s1u_1);
|
|
3439
|
+
tmp1_output.dp(tmp0_desc, 11, StringSerializer_getInstance(), value.t1u_1);
|
|
3440
|
+
tmp1_output.dp(tmp0_desc, 12, StringSerializer_getInstance(), value.u1u_1);
|
|
3441
|
+
tmp1_output.dp(tmp0_desc, 13, tmp2_cached[13].v1(), value.v1u_1);
|
|
3442
|
+
tmp1_output.dp(tmp0_desc, 14, BooleanSerializer_getInstance(), value.w1u_1);
|
|
3443
|
+
tmp1_output.dp(tmp0_desc, 15, BooleanSerializer_getInstance(), value.x1u_1);
|
|
3444
|
+
tmp1_output.dp(tmp0_desc, 16, BooleanSerializer_getInstance(), value.y1u_1);
|
|
3445
|
+
tmp1_output.dp(tmp0_desc, 17, BooleanSerializer_getInstance(), value.z1u_1);
|
|
3446
|
+
tmp1_output.dp(tmp0_desc, 18, BooleanSerializer_getInstance(), value.a1v_1);
|
|
3447
|
+
tmp1_output.dp(tmp0_desc, 19, BooleanSerializer_getInstance(), value.b1v_1);
|
|
3448
|
+
tmp1_output.dp(tmp0_desc, 20, BooleanSerializer_getInstance(), value.c1v_1);
|
|
3449
|
+
tmp1_output.zo(tmp0_desc, 21, value.d1v_1);
|
|
3450
|
+
tmp1_output.dp(tmp0_desc, 22, BooleanSerializer_getInstance(), value.e1v_1);
|
|
3451
|
+
tmp1_output.dp(tmp0_desc, 23, IntSerializer_getInstance(), value.f1v_1);
|
|
3452
|
+
tmp1_output.dp(tmp0_desc, 24, BooleanSerializer_getInstance(), value.g1v_1);
|
|
3453
|
+
tmp1_output.dp(tmp0_desc, 25, IntSerializer_getInstance(), value.h1v_1);
|
|
3412
3454
|
tmp1_output.ln(tmp0_desc);
|
|
3413
3455
|
};
|
|
3414
3456
|
protoOf($serializer_9).ck = function (encoder, value) {
|
|
3415
|
-
return this.
|
|
3457
|
+
return this.h1u(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
3416
3458
|
};
|
|
3417
3459
|
protoOf($serializer_9).dk = function (decoder) {
|
|
3418
|
-
var tmp0_desc = this.
|
|
3460
|
+
var tmp0_desc = this.g1u_1;
|
|
3419
3461
|
var tmp1_flag = true;
|
|
3420
3462
|
var tmp2_index = 0;
|
|
3421
3463
|
var tmp3_bitMask0 = 0;
|
|
@@ -3446,7 +3488,7 @@
|
|
|
3446
3488
|
var tmp28_local24 = null;
|
|
3447
3489
|
var tmp29_local25 = null;
|
|
3448
3490
|
var tmp30_input = decoder.kn(tmp0_desc);
|
|
3449
|
-
var tmp31_cached = Companion_getInstance_21().
|
|
3491
|
+
var tmp31_cached = Companion_getInstance_21().f1u_1;
|
|
3450
3492
|
if (tmp30_input.ao()) {
|
|
3451
3493
|
tmp4_local0 = tmp30_input.yn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3452
3494
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3619,10 +3661,10 @@
|
|
|
3619
3661
|
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);
|
|
3620
3662
|
};
|
|
3621
3663
|
protoOf($serializer_9).bk = function () {
|
|
3622
|
-
return this.
|
|
3664
|
+
return this.g1u_1;
|
|
3623
3665
|
};
|
|
3624
3666
|
protoOf($serializer_9).rv = function () {
|
|
3625
|
-
var tmp0_cached = Companion_getInstance_21().
|
|
3667
|
+
var tmp0_cached = Companion_getInstance_21().f1u_1;
|
|
3626
3668
|
// Inline function 'kotlin.arrayOf' call
|
|
3627
3669
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3628
3670
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3636,34 +3678,34 @@
|
|
|
3636
3678
|
}
|
|
3637
3679
|
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) {
|
|
3638
3680
|
if (!(67108863 === (67108863 & seen0))) {
|
|
3639
|
-
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().
|
|
3681
|
+
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().g1u_1);
|
|
3640
3682
|
}
|
|
3641
|
-
$this.
|
|
3642
|
-
$this.
|
|
3643
|
-
$this.
|
|
3644
|
-
$this.
|
|
3645
|
-
$this.
|
|
3646
|
-
$this.
|
|
3647
|
-
$this.
|
|
3648
|
-
$this.
|
|
3649
|
-
$this.
|
|
3650
|
-
$this.
|
|
3651
|
-
$this.
|
|
3652
|
-
$this.
|
|
3653
|
-
$this.
|
|
3654
|
-
$this.
|
|
3655
|
-
$this.
|
|
3656
|
-
$this.
|
|
3657
|
-
$this.
|
|
3658
|
-
$this.
|
|
3659
|
-
$this.
|
|
3660
|
-
$this.
|
|
3661
|
-
$this.
|
|
3662
|
-
$this.
|
|
3663
|
-
$this.
|
|
3664
|
-
$this.
|
|
3665
|
-
$this.
|
|
3666
|
-
$this.
|
|
3683
|
+
$this.i1u_1 = name;
|
|
3684
|
+
$this.j1u_1 = playerWhoChooseSuitGoFirst;
|
|
3685
|
+
$this.k1u_1 = winnerShuffleCards;
|
|
3686
|
+
$this.l1u_1 = playWithoutLiabilities;
|
|
3687
|
+
$this.m1u_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3688
|
+
$this.n1u_1 = dealerInitialCardsCount;
|
|
3689
|
+
$this.o1u_1 = dealerFinalCardsCount;
|
|
3690
|
+
$this.p1u_1 = dealerCounterClockwise;
|
|
3691
|
+
$this.q1u_1 = contractTypes;
|
|
3692
|
+
$this.r1u_1 = bidTypes;
|
|
3693
|
+
$this.s1u_1 = needToPutHigherTrump;
|
|
3694
|
+
$this.t1u_1 = trumpCardStepMode;
|
|
3695
|
+
$this.u1u_1 = trumpCardStepPartnerMode;
|
|
3696
|
+
$this.v1u_1 = combinationsWithFirstCard;
|
|
3697
|
+
$this.w1u_1 = protectBella;
|
|
3698
|
+
$this.x1u_1 = oneTryToProtectBella;
|
|
3699
|
+
$this.y1u_1 = enableFourSevensCombination;
|
|
3700
|
+
$this.z1u_1 = enableTrumpSevenCombination;
|
|
3701
|
+
$this.a1v_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3702
|
+
$this.b1v_1 = checkTrumpCombination;
|
|
3703
|
+
$this.c1v_1 = checkOnlyTrumpDebertz;
|
|
3704
|
+
$this.d1v_1 = pointsDistributeMode;
|
|
3705
|
+
$this.e1v_1 = enableFineIfNoBribes;
|
|
3706
|
+
$this.f1v_1 = fineIfNoBribes;
|
|
3707
|
+
$this.g1v_1 = enableFineAfterThirdByte;
|
|
3708
|
+
$this.h1v_1 = fineAfterThirdFailedContract;
|
|
3667
3709
|
return $this;
|
|
3668
3710
|
}
|
|
3669
3711
|
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) {
|
|
@@ -3671,63 +3713,63 @@
|
|
|
3671
3713
|
}
|
|
3672
3714
|
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) {
|
|
3673
3715
|
Companion_getInstance_21();
|
|
3674
|
-
this.
|
|
3675
|
-
this.
|
|
3676
|
-
this.
|
|
3677
|
-
this.
|
|
3678
|
-
this.
|
|
3679
|
-
this.
|
|
3680
|
-
this.
|
|
3681
|
-
this.
|
|
3682
|
-
this.
|
|
3683
|
-
this.
|
|
3684
|
-
this.
|
|
3685
|
-
this.
|
|
3686
|
-
this.
|
|
3687
|
-
this.
|
|
3688
|
-
this.
|
|
3689
|
-
this.
|
|
3690
|
-
this.
|
|
3691
|
-
this.
|
|
3692
|
-
this.
|
|
3693
|
-
this.
|
|
3694
|
-
this.
|
|
3695
|
-
this.
|
|
3696
|
-
this.
|
|
3697
|
-
this.
|
|
3698
|
-
this.
|
|
3699
|
-
this.
|
|
3716
|
+
this.i1u_1 = name;
|
|
3717
|
+
this.j1u_1 = playerWhoChooseSuitGoFirst;
|
|
3718
|
+
this.k1u_1 = winnerShuffleCards;
|
|
3719
|
+
this.l1u_1 = playWithoutLiabilities;
|
|
3720
|
+
this.m1u_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3721
|
+
this.n1u_1 = dealerInitialCardsCount;
|
|
3722
|
+
this.o1u_1 = dealerFinalCardsCount;
|
|
3723
|
+
this.p1u_1 = dealerCounterClockwise;
|
|
3724
|
+
this.q1u_1 = contractTypes;
|
|
3725
|
+
this.r1u_1 = bidTypes;
|
|
3726
|
+
this.s1u_1 = needToPutHigherTrump;
|
|
3727
|
+
this.t1u_1 = trumpCardStepMode;
|
|
3728
|
+
this.u1u_1 = trumpCardStepPartnerMode;
|
|
3729
|
+
this.v1u_1 = combinationsWithFirstCard;
|
|
3730
|
+
this.w1u_1 = protectBella;
|
|
3731
|
+
this.x1u_1 = oneTryToProtectBella;
|
|
3732
|
+
this.y1u_1 = enableFourSevensCombination;
|
|
3733
|
+
this.z1u_1 = enableTrumpSevenCombination;
|
|
3734
|
+
this.a1v_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3735
|
+
this.b1v_1 = checkTrumpCombination;
|
|
3736
|
+
this.c1v_1 = checkOnlyTrumpDebertz;
|
|
3737
|
+
this.d1v_1 = pointsDistributeMode;
|
|
3738
|
+
this.e1v_1 = enableFineIfNoBribes;
|
|
3739
|
+
this.f1v_1 = fineIfNoBribes;
|
|
3740
|
+
this.g1v_1 = enableFineAfterThirdByte;
|
|
3741
|
+
this.h1v_1 = fineAfterThirdFailedContract;
|
|
3700
3742
|
}
|
|
3701
3743
|
protoOf(RulesDto).toString = function () {
|
|
3702
|
-
return 'RulesDto(name=' + this.
|
|
3744
|
+
return 'RulesDto(name=' + this.i1u_1 + ', playerWhoChooseSuitGoFirst=' + this.j1u_1 + ', winnerShuffleCards=' + this.k1u_1 + ', playWithoutLiabilities=' + this.l1u_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.m1u_1 + ', dealerInitialCardsCount=' + this.n1u_1 + ', dealerFinalCardsCount=' + this.o1u_1 + ', dealerCounterClockwise=' + this.p1u_1 + ', contractTypes=' + toString(this.q1u_1) + ', bidTypes=' + toString(this.r1u_1) + ', needToPutHigherTrump=' + this.s1u_1 + ', trumpCardStepMode=' + this.t1u_1 + ', trumpCardStepPartnerMode=' + this.u1u_1 + ', combinationsWithFirstCard=' + toString(this.v1u_1) + ', protectBella=' + this.w1u_1 + ', oneTryToProtectBella=' + this.x1u_1 + ', enableFourSevensCombination=' + this.y1u_1 + ', enableTrumpSevenCombination=' + this.z1u_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.a1v_1 + ', checkTrumpCombination=' + this.b1v_1 + ', checkOnlyTrumpDebertz=' + this.c1v_1 + ', pointsDistributeMode=' + this.d1v_1 + ', enableFineIfNoBribes=' + this.e1v_1 + ', fineIfNoBribes=' + this.f1v_1 + ', enableFineAfterThirdByte=' + this.g1v_1 + ', fineAfterThirdFailedContract=' + this.h1v_1 + ')';
|
|
3703
3745
|
};
|
|
3704
3746
|
protoOf(RulesDto).hashCode = function () {
|
|
3705
|
-
var result = this.
|
|
3706
|
-
result = imul(result, 31) + (this.i1u_1 == null ? 0 : getBooleanHashCode(this.i1u_1)) | 0;
|
|
3747
|
+
var result = this.i1u_1 == null ? 0 : getStringHashCode(this.i1u_1);
|
|
3707
3748
|
result = imul(result, 31) + (this.j1u_1 == null ? 0 : getBooleanHashCode(this.j1u_1)) | 0;
|
|
3708
3749
|
result = imul(result, 31) + (this.k1u_1 == null ? 0 : getBooleanHashCode(this.k1u_1)) | 0;
|
|
3709
3750
|
result = imul(result, 31) + (this.l1u_1 == null ? 0 : getBooleanHashCode(this.l1u_1)) | 0;
|
|
3710
|
-
result = imul(result, 31) + (this.m1u_1 == null ? 0 : this.m1u_1) | 0;
|
|
3751
|
+
result = imul(result, 31) + (this.m1u_1 == null ? 0 : getBooleanHashCode(this.m1u_1)) | 0;
|
|
3711
3752
|
result = imul(result, 31) + (this.n1u_1 == null ? 0 : this.n1u_1) | 0;
|
|
3712
|
-
result = imul(result, 31) + (this.o1u_1 == null ? 0 :
|
|
3713
|
-
result = imul(result, 31) + (this.p1u_1 == null ? 0 :
|
|
3753
|
+
result = imul(result, 31) + (this.o1u_1 == null ? 0 : this.o1u_1) | 0;
|
|
3754
|
+
result = imul(result, 31) + (this.p1u_1 == null ? 0 : getBooleanHashCode(this.p1u_1)) | 0;
|
|
3714
3755
|
result = imul(result, 31) + (this.q1u_1 == null ? 0 : hashCode(this.q1u_1)) | 0;
|
|
3715
|
-
result = imul(result, 31) + (this.r1u_1 == null ? 0 :
|
|
3716
|
-
result = imul(result, 31) + (this.s1u_1 == null ? 0 :
|
|
3756
|
+
result = imul(result, 31) + (this.r1u_1 == null ? 0 : hashCode(this.r1u_1)) | 0;
|
|
3757
|
+
result = imul(result, 31) + (this.s1u_1 == null ? 0 : getBooleanHashCode(this.s1u_1)) | 0;
|
|
3717
3758
|
result = imul(result, 31) + (this.t1u_1 == null ? 0 : getStringHashCode(this.t1u_1)) | 0;
|
|
3718
|
-
result = imul(result, 31) + (this.u1u_1 == null ? 0 :
|
|
3719
|
-
result = imul(result, 31) + (this.v1u_1 == null ? 0 :
|
|
3759
|
+
result = imul(result, 31) + (this.u1u_1 == null ? 0 : getStringHashCode(this.u1u_1)) | 0;
|
|
3760
|
+
result = imul(result, 31) + (this.v1u_1 == null ? 0 : hashCode(this.v1u_1)) | 0;
|
|
3720
3761
|
result = imul(result, 31) + (this.w1u_1 == null ? 0 : getBooleanHashCode(this.w1u_1)) | 0;
|
|
3721
3762
|
result = imul(result, 31) + (this.x1u_1 == null ? 0 : getBooleanHashCode(this.x1u_1)) | 0;
|
|
3722
3763
|
result = imul(result, 31) + (this.y1u_1 == null ? 0 : getBooleanHashCode(this.y1u_1)) | 0;
|
|
3723
3764
|
result = imul(result, 31) + (this.z1u_1 == null ? 0 : getBooleanHashCode(this.z1u_1)) | 0;
|
|
3724
3765
|
result = imul(result, 31) + (this.a1v_1 == null ? 0 : getBooleanHashCode(this.a1v_1)) | 0;
|
|
3725
3766
|
result = imul(result, 31) + (this.b1v_1 == null ? 0 : getBooleanHashCode(this.b1v_1)) | 0;
|
|
3726
|
-
result = imul(result, 31) +
|
|
3727
|
-
result = imul(result, 31) + (this.d1v_1
|
|
3728
|
-
result = imul(result, 31) + (this.e1v_1 == null ? 0 : this.e1v_1) | 0;
|
|
3729
|
-
result = imul(result, 31) + (this.f1v_1 == null ? 0 :
|
|
3730
|
-
result = imul(result, 31) + (this.g1v_1 == null ? 0 : this.g1v_1) | 0;
|
|
3767
|
+
result = imul(result, 31) + (this.c1v_1 == null ? 0 : getBooleanHashCode(this.c1v_1)) | 0;
|
|
3768
|
+
result = imul(result, 31) + getStringHashCode(this.d1v_1) | 0;
|
|
3769
|
+
result = imul(result, 31) + (this.e1v_1 == null ? 0 : getBooleanHashCode(this.e1v_1)) | 0;
|
|
3770
|
+
result = imul(result, 31) + (this.f1v_1 == null ? 0 : this.f1v_1) | 0;
|
|
3771
|
+
result = imul(result, 31) + (this.g1v_1 == null ? 0 : getBooleanHashCode(this.g1v_1)) | 0;
|
|
3772
|
+
result = imul(result, 31) + (this.h1v_1 == null ? 0 : this.h1v_1) | 0;
|
|
3731
3773
|
return result;
|
|
3732
3774
|
};
|
|
3733
3775
|
protoOf(RulesDto).equals = function (other) {
|
|
@@ -3735,8 +3777,6 @@
|
|
|
3735
3777
|
return true;
|
|
3736
3778
|
if (!(other instanceof RulesDto))
|
|
3737
3779
|
return false;
|
|
3738
|
-
if (!(this.h1u_1 == other.h1u_1))
|
|
3739
|
-
return false;
|
|
3740
3780
|
if (!(this.i1u_1 == other.i1u_1))
|
|
3741
3781
|
return false;
|
|
3742
3782
|
if (!(this.j1u_1 == other.j1u_1))
|
|
@@ -3751,19 +3791,19 @@
|
|
|
3751
3791
|
return false;
|
|
3752
3792
|
if (!(this.o1u_1 == other.o1u_1))
|
|
3753
3793
|
return false;
|
|
3754
|
-
if (!
|
|
3794
|
+
if (!(this.p1u_1 == other.p1u_1))
|
|
3755
3795
|
return false;
|
|
3756
3796
|
if (!equals(this.q1u_1, other.q1u_1))
|
|
3757
3797
|
return false;
|
|
3758
|
-
if (!(this.r1u_1
|
|
3798
|
+
if (!equals(this.r1u_1, other.r1u_1))
|
|
3759
3799
|
return false;
|
|
3760
3800
|
if (!(this.s1u_1 == other.s1u_1))
|
|
3761
3801
|
return false;
|
|
3762
3802
|
if (!(this.t1u_1 == other.t1u_1))
|
|
3763
3803
|
return false;
|
|
3764
|
-
if (!
|
|
3804
|
+
if (!(this.u1u_1 == other.u1u_1))
|
|
3765
3805
|
return false;
|
|
3766
|
-
if (!(this.v1u_1
|
|
3806
|
+
if (!equals(this.v1u_1, other.v1u_1))
|
|
3767
3807
|
return false;
|
|
3768
3808
|
if (!(this.w1u_1 == other.w1u_1))
|
|
3769
3809
|
return false;
|
|
@@ -3777,9 +3817,9 @@
|
|
|
3777
3817
|
return false;
|
|
3778
3818
|
if (!(this.b1v_1 == other.b1v_1))
|
|
3779
3819
|
return false;
|
|
3780
|
-
if (!(this.c1v_1
|
|
3820
|
+
if (!(this.c1v_1 == other.c1v_1))
|
|
3781
3821
|
return false;
|
|
3782
|
-
if (!(this.d1v_1
|
|
3822
|
+
if (!(this.d1v_1 === other.d1v_1))
|
|
3783
3823
|
return false;
|
|
3784
3824
|
if (!(this.e1v_1 == other.e1v_1))
|
|
3785
3825
|
return false;
|
|
@@ -3787,6 +3827,8 @@
|
|
|
3787
3827
|
return false;
|
|
3788
3828
|
if (!(this.g1v_1 == other.g1v_1))
|
|
3789
3829
|
return false;
|
|
3830
|
+
if (!(this.h1v_1 == other.h1v_1))
|
|
3831
|
+
return false;
|
|
3790
3832
|
return true;
|
|
3791
3833
|
};
|
|
3792
3834
|
function BufferedAction() {
|
|
@@ -3795,6 +3837,8 @@
|
|
|
3795
3837
|
}
|
|
3796
3838
|
function ReleaseBufferTriggerAction() {
|
|
3797
3839
|
}
|
|
3840
|
+
function InterceptableAction() {
|
|
3841
|
+
}
|
|
3798
3842
|
function NotValidateIfGameFinished() {
|
|
3799
3843
|
}
|
|
3800
3844
|
function NotValidateIfGameFinishing() {
|
|
@@ -3935,7 +3979,7 @@
|
|
|
3935
3979
|
return tmp;
|
|
3936
3980
|
}
|
|
3937
3981
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
3938
|
-
return $this.
|
|
3982
|
+
return $this.s1v_1.v1();
|
|
3939
3983
|
}
|
|
3940
3984
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
3941
3985
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
|
|
@@ -3975,7 +4019,7 @@
|
|
|
3975
4019
|
Companion_instance_19 = this;
|
|
3976
4020
|
var tmp = this;
|
|
3977
4021
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
3978
|
-
tmp.
|
|
4022
|
+
tmp.s1v_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
3979
4023
|
}
|
|
3980
4024
|
protoOf(Companion_19).z17 = function () {
|
|
3981
4025
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -4038,7 +4082,7 @@
|
|
|
4038
4082
|
// Inline function 'kotlin.arrayOf' call
|
|
4039
4083
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
4040
4084
|
// Inline function 'kotlin.js.asDynamic' call
|
|
4041
|
-
tmp.
|
|
4085
|
+
tmp.y1v_1 = [lazy(tmp_0, LoggerOutputDataDto$Companion$$childSerializers$_anonymous__j015dy), null, null, null, null];
|
|
4042
4086
|
}
|
|
4043
4087
|
protoOf(Companion_20).z17 = function () {
|
|
4044
4088
|
return $serializer_getInstance_10();
|
|
@@ -4057,12 +4101,12 @@
|
|
|
4057
4101
|
tmp0_serialDesc.av('tag', false);
|
|
4058
4102
|
tmp0_serialDesc.av('message', false);
|
|
4059
4103
|
tmp0_serialDesc.av('stackTrace', false);
|
|
4060
|
-
this.
|
|
4104
|
+
this.z1v_1 = tmp0_serialDesc;
|
|
4061
4105
|
}
|
|
4062
|
-
protoOf($serializer_10).
|
|
4063
|
-
var tmp0_desc = this.
|
|
4106
|
+
protoOf($serializer_10).a1w = function (encoder, value) {
|
|
4107
|
+
var tmp0_desc = this.z1v_1;
|
|
4064
4108
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
4065
|
-
var tmp2_cached = Companion_getInstance_23().
|
|
4109
|
+
var tmp2_cached = Companion_getInstance_23().y1v_1;
|
|
4066
4110
|
tmp1_output.bp(tmp0_desc, 0, tmp2_cached[0].v1(), value.type);
|
|
4067
4111
|
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
4068
4112
|
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -4071,10 +4115,10 @@
|
|
|
4071
4115
|
tmp1_output.ln(tmp0_desc);
|
|
4072
4116
|
};
|
|
4073
4117
|
protoOf($serializer_10).ck = function (encoder, value) {
|
|
4074
|
-
return this.
|
|
4118
|
+
return this.a1w(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
4075
4119
|
};
|
|
4076
4120
|
protoOf($serializer_10).dk = function (decoder) {
|
|
4077
|
-
var tmp0_desc = this.
|
|
4121
|
+
var tmp0_desc = this.z1v_1;
|
|
4078
4122
|
var tmp1_flag = true;
|
|
4079
4123
|
var tmp2_index = 0;
|
|
4080
4124
|
var tmp3_bitMask0 = 0;
|
|
@@ -4084,7 +4128,7 @@
|
|
|
4084
4128
|
var tmp7_local3 = null;
|
|
4085
4129
|
var tmp8_local4 = null;
|
|
4086
4130
|
var tmp9_input = decoder.kn(tmp0_desc);
|
|
4087
|
-
var tmp10_cached = Companion_getInstance_23().
|
|
4131
|
+
var tmp10_cached = Companion_getInstance_23().y1v_1;
|
|
4088
4132
|
if (tmp9_input.ao()) {
|
|
4089
4133
|
tmp4_local0 = tmp9_input.wn(tmp0_desc, 0, tmp10_cached[0].v1(), tmp4_local0);
|
|
4090
4134
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -4131,13 +4175,13 @@
|
|
|
4131
4175
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
4132
4176
|
};
|
|
4133
4177
|
protoOf($serializer_10).bk = function () {
|
|
4134
|
-
return this.
|
|
4178
|
+
return this.z1v_1;
|
|
4135
4179
|
};
|
|
4136
4180
|
protoOf($serializer_10).rv = function () {
|
|
4137
4181
|
// Inline function 'kotlin.arrayOf' call
|
|
4138
4182
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
4139
4183
|
// Inline function 'kotlin.js.asDynamic' call
|
|
4140
|
-
return [Companion_getInstance_23().
|
|
4184
|
+
return [Companion_getInstance_23().y1v_1[0].v1(), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
4141
4185
|
};
|
|
4142
4186
|
var $serializer_instance_10;
|
|
4143
4187
|
function $serializer_getInstance_10() {
|
|
@@ -4147,7 +4191,7 @@
|
|
|
4147
4191
|
}
|
|
4148
4192
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
4149
4193
|
if (!(31 === (31 & seen0))) {
|
|
4150
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().
|
|
4194
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().z1v_1);
|
|
4151
4195
|
}
|
|
4152
4196
|
$this.type = type;
|
|
4153
4197
|
$this.key = key;
|
|
@@ -4167,7 +4211,7 @@
|
|
|
4167
4211
|
this.message = message;
|
|
4168
4212
|
this.stackTrace = stackTrace;
|
|
4169
4213
|
}
|
|
4170
|
-
protoOf(LoggerOutputDataDto).
|
|
4214
|
+
protoOf(LoggerOutputDataDto).b1w = function () {
|
|
4171
4215
|
return this.type;
|
|
4172
4216
|
};
|
|
4173
4217
|
protoOf(LoggerOutputDataDto).u1 = function () {
|
|
@@ -4179,7 +4223,7 @@
|
|
|
4179
4223
|
protoOf(LoggerOutputDataDto).e = function () {
|
|
4180
4224
|
return this.message;
|
|
4181
4225
|
};
|
|
4182
|
-
protoOf(LoggerOutputDataDto).
|
|
4226
|
+
protoOf(LoggerOutputDataDto).c1w = function () {
|
|
4183
4227
|
return this.stackTrace;
|
|
4184
4228
|
};
|
|
4185
4229
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -4236,7 +4280,7 @@
|
|
|
4236
4280
|
protoOf(LoggerOutputDataDto).j1q = function () {
|
|
4237
4281
|
return this.stackTrace;
|
|
4238
4282
|
};
|
|
4239
|
-
protoOf(LoggerOutputDataDto).
|
|
4283
|
+
protoOf(LoggerOutputDataDto).d1w = function (type, key, tag, message, stackTrace) {
|
|
4240
4284
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
4241
4285
|
};
|
|
4242
4286
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -4245,7 +4289,7 @@
|
|
|
4245
4289
|
tag = tag === VOID ? this.tag : tag;
|
|
4246
4290
|
message = message === VOID ? this.message : message;
|
|
4247
4291
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
4248
|
-
return $super === VOID ? this.
|
|
4292
|
+
return $super === VOID ? this.d1w(type, key, tag, message, stackTrace) : $super.d1w.call(this, type, key, tag, message, stackTrace);
|
|
4249
4293
|
};
|
|
4250
4294
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
4251
4295
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -4335,6 +4379,8 @@
|
|
|
4335
4379
|
defineProp(protoOf(PlayerConnectionState), 'canReconnect', protoOf(PlayerConnectionState).x1r);
|
|
4336
4380
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).i2);
|
|
4337
4381
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).j2);
|
|
4382
|
+
defineProp(protoOf(Team), 'first', protoOf(Team).g1s);
|
|
4383
|
+
defineProp(protoOf(Team), 'second', protoOf(Team).c1d);
|
|
4338
4384
|
protoOf($serializer_1).sv = typeParametersSerializers;
|
|
4339
4385
|
protoOf($serializer_2).sv = typeParametersSerializers;
|
|
4340
4386
|
protoOf($serializer_3).sv = typeParametersSerializers;
|
|
@@ -4426,6 +4472,7 @@
|
|
|
4426
4472
|
$com$logic$data$models$player.PlayerConnectionState = PlayerConnectionState;
|
|
4427
4473
|
$com$logic$data$models$player.PlayerConnectionState.values = values_1;
|
|
4428
4474
|
$com$logic$data$models$player.PlayerConnectionState.valueOf = valueOf_1;
|
|
4475
|
+
defineProp($com$logic$data$models$player.PlayerConnectionState, 'WAITING', PlayerConnectionState_WAITING_getInstance, VOID, true);
|
|
4429
4476
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'LIVE', PlayerConnectionState_LIVE_getInstance, VOID, true);
|
|
4430
4477
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'TIMEOUT', PlayerConnectionState_TIMEOUT_getInstance, VOID, true);
|
|
4431
4478
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'LOST_CONNECTION', PlayerConnectionState_LOST_CONNECTION_getInstance, VOID, true);
|
|
@@ -4436,6 +4483,12 @@
|
|
|
4436
4483
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'Companion', Companion_getInstance_9, VOID, true);
|
|
4437
4484
|
var $com = _.com || (_.com = {});
|
|
4438
4485
|
var $com$logic = $com.logic || ($com.logic = {});
|
|
4486
|
+
var $com$logic$data = $com$logic.data || ($com$logic.data = {});
|
|
4487
|
+
var $com$logic$data$models = $com$logic$data.models || ($com$logic$data.models = {});
|
|
4488
|
+
var $com$logic$data$models$player = $com$logic$data$models.player || ($com$logic$data$models.player = {});
|
|
4489
|
+
$com$logic$data$models$player.Team = Team;
|
|
4490
|
+
var $com = _.com || (_.com = {});
|
|
4491
|
+
var $com$logic = $com.logic || ($com.logic = {});
|
|
4439
4492
|
var $com$logic$redux = $com$logic.redux || ($com$logic.redux = {});
|
|
4440
4493
|
var $com$logic$redux$actions = $com$logic$redux.actions || ($com$logic$redux.actions = {});
|
|
4441
4494
|
var $com = _.com || (_.com = {});
|
|
@@ -4506,30 +4559,35 @@
|
|
|
4506
4559
|
_.$_$.u = NotValidateIfGameFinishing;
|
|
4507
4560
|
_.$_$.v = BufferedAction;
|
|
4508
4561
|
_.$_$.w = IgnoreBufferForAction;
|
|
4509
|
-
_.$_$.x =
|
|
4510
|
-
_.$_$.y =
|
|
4511
|
-
_.$_$.z =
|
|
4512
|
-
_.$_$.a1 =
|
|
4513
|
-
_.$_$.b1 =
|
|
4514
|
-
_.$_$.c1 =
|
|
4515
|
-
_.$_$.d1 =
|
|
4516
|
-
_.$_$.e1 =
|
|
4517
|
-
_.$_$.f1 =
|
|
4518
|
-
_.$_$.g1 =
|
|
4519
|
-
_.$_$.h1 =
|
|
4520
|
-
_.$_$.i1 =
|
|
4521
|
-
_.$_$.j1 =
|
|
4522
|
-
_.$_$.k1 =
|
|
4523
|
-
_.$_$.l1 =
|
|
4524
|
-
_.$_$.m1 =
|
|
4525
|
-
_.$_$.n1 =
|
|
4526
|
-
_.$_$.o1 =
|
|
4527
|
-
_.$_$.p1 =
|
|
4528
|
-
_.$_$.q1 =
|
|
4529
|
-
_.$_$.r1 =
|
|
4530
|
-
_.$_$.s1 =
|
|
4531
|
-
_.$_$.t1 =
|
|
4532
|
-
_.$_$.u1 =
|
|
4562
|
+
_.$_$.x = ignoreInterception;
|
|
4563
|
+
_.$_$.y = get_isAutoStartTimer;
|
|
4564
|
+
_.$_$.z = manualExpectantHandling;
|
|
4565
|
+
_.$_$.a1 = waitForExpectantAnimation;
|
|
4566
|
+
_.$_$.b1 = InterceptableAction;
|
|
4567
|
+
_.$_$.c1 = ReleaseBufferTriggerAction;
|
|
4568
|
+
_.$_$.d1 = get_actionTag;
|
|
4569
|
+
_.$_$.e1 = Action;
|
|
4570
|
+
_.$_$.f1 = enumToStringSafe;
|
|
4571
|
+
_.$_$.g1 = enumToString;
|
|
4572
|
+
_.$_$.h1 = mapOfObject;
|
|
4573
|
+
_.$_$.i1 = nextToOrNull;
|
|
4574
|
+
_.$_$.j1 = previousToOrNull;
|
|
4575
|
+
_.$_$.k1 = toDomainEnumSafe;
|
|
4576
|
+
_.$_$.l1 = toDomainEnum;
|
|
4577
|
+
_.$_$.m1 = PlayerConnectionState_LEFT_PERMANENTLY_getInstance;
|
|
4578
|
+
_.$_$.n1 = PlayerConnectionState_LIVE_getInstance;
|
|
4579
|
+
_.$_$.o1 = Companion_instance_5;
|
|
4580
|
+
_.$_$.p1 = Companion_getInstance_9;
|
|
4581
|
+
_.$_$.q1 = Companion_instance_8;
|
|
4582
|
+
_.$_$.r1 = Companion_getInstance_10;
|
|
4583
|
+
_.$_$.s1 = $serializer_getInstance_6;
|
|
4584
|
+
_.$_$.t1 = $serializer_getInstance_8;
|
|
4585
|
+
_.$_$.u1 = $serializer_getInstance_9;
|
|
4586
|
+
_.$_$.v1 = ProcessingReasonDto_getInstance;
|
|
4587
|
+
_.$_$.w1 = Companion_getInstance_12;
|
|
4588
|
+
_.$_$.x1 = Companion_getInstance_2;
|
|
4589
|
+
_.$_$.y1 = ProcessingReason_getInstance;
|
|
4590
|
+
_.$_$.z1 = RestartGameReason_getInstance;
|
|
4533
4591
|
//endregion
|
|
4534
4592
|
return _;
|
|
4535
4593
|
}));
|