raspberry_games_engine_helpers 1.8.410 → 1.8.413
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kosi-Kaverit-kaverit.js +56 -56
- package/Kosi-Kodein-kodein-di.js +493 -493
- package/Logic_Debertz-core.js +455 -411
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.d.ts +47 -0
- package/Logic_Debertz-engine.js +9364 -8920
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.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.413';
|
|
220
233
|
}
|
|
221
234
|
protoOf(GameEngineConfig).k17 = function () {
|
|
222
235
|
return this.version;
|
|
@@ -1767,31 +1780,47 @@
|
|
|
1767
1780
|
return true;
|
|
1768
1781
|
};
|
|
1769
1782
|
function Team(playerIds) {
|
|
1770
|
-
this.
|
|
1783
|
+
this.playerIds = playerIds;
|
|
1771
1784
|
}
|
|
1785
|
+
protoOf(Team).f1s = function () {
|
|
1786
|
+
return this.playerIds;
|
|
1787
|
+
};
|
|
1788
|
+
protoOf(Team).containsPlayer = function (playerId) {
|
|
1789
|
+
return this.playerIds.o1(playerId);
|
|
1790
|
+
};
|
|
1772
1791
|
protoOf(Team).g1s = function () {
|
|
1773
|
-
return this.
|
|
1792
|
+
return this.playerIds.p(0);
|
|
1774
1793
|
};
|
|
1775
1794
|
protoOf(Team).c1d = function () {
|
|
1776
|
-
return this.
|
|
1795
|
+
return this.playerIds.p(1);
|
|
1796
|
+
};
|
|
1797
|
+
protoOf(Team).sc = function () {
|
|
1798
|
+
return this.playerIds;
|
|
1799
|
+
};
|
|
1800
|
+
protoOf(Team).h1s = function (playerIds) {
|
|
1801
|
+
return new Team(playerIds);
|
|
1802
|
+
};
|
|
1803
|
+
protoOf(Team).copy = function (playerIds, $super) {
|
|
1804
|
+
playerIds = playerIds === VOID ? this.playerIds : playerIds;
|
|
1805
|
+
return $super === VOID ? this.h1s(playerIds) : $super.h1s.call(this, playerIds);
|
|
1777
1806
|
};
|
|
1778
1807
|
protoOf(Team).toString = function () {
|
|
1779
|
-
return 'Team(playerIds=' + toString_0(this.
|
|
1808
|
+
return 'Team(playerIds=' + toString_0(this.playerIds) + ')';
|
|
1780
1809
|
};
|
|
1781
1810
|
protoOf(Team).hashCode = function () {
|
|
1782
|
-
return hashCode(this.
|
|
1811
|
+
return hashCode(this.playerIds);
|
|
1783
1812
|
};
|
|
1784
1813
|
protoOf(Team).equals = function (other) {
|
|
1785
1814
|
if (this === other)
|
|
1786
1815
|
return true;
|
|
1787
1816
|
if (!(other instanceof Team))
|
|
1788
1817
|
return false;
|
|
1789
|
-
if (!equals(this.
|
|
1818
|
+
if (!equals(this.playerIds, other.playerIds))
|
|
1790
1819
|
return false;
|
|
1791
1820
|
return true;
|
|
1792
1821
|
};
|
|
1793
1822
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
1794
|
-
return $this.
|
|
1823
|
+
return $this.i1s_1.v1();
|
|
1795
1824
|
}
|
|
1796
1825
|
function TerminationGameReasonDto$Companion$_anonymous__30ivuy() {
|
|
1797
1826
|
var tmp = getKClass(TerminationGameReasonDto);
|
|
@@ -1829,7 +1858,7 @@
|
|
|
1829
1858
|
Companion_instance_9 = this;
|
|
1830
1859
|
var tmp = this;
|
|
1831
1860
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1832
|
-
tmp.
|
|
1861
|
+
tmp.i1s_1 = lazy(tmp_0, TerminationGameReasonDto$Companion$_anonymous__30ivuy);
|
|
1833
1862
|
}
|
|
1834
1863
|
protoOf(Companion_9).z17 = function () {
|
|
1835
1864
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -1850,7 +1879,7 @@
|
|
|
1850
1879
|
Companion_getInstance_12();
|
|
1851
1880
|
}
|
|
1852
1881
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
1853
|
-
return $this.
|
|
1882
|
+
return $this.j1s_1.v1();
|
|
1854
1883
|
}
|
|
1855
1884
|
function ProcessingReasonDto$_anonymous__78na4x() {
|
|
1856
1885
|
var tmp = ProcessingReasonDto_getInstance();
|
|
@@ -1865,7 +1894,7 @@
|
|
|
1865
1894
|
TerminationGameReasonDto.call(this);
|
|
1866
1895
|
var tmp = this;
|
|
1867
1896
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1868
|
-
tmp.
|
|
1897
|
+
tmp.j1s_1 = lazy(tmp_0, ProcessingReasonDto$_anonymous__78na4x);
|
|
1869
1898
|
}
|
|
1870
1899
|
protoOf(ProcessingReasonDto).z17 = function () {
|
|
1871
1900
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -1902,19 +1931,19 @@
|
|
|
1902
1931
|
$serializer_instance_1 = this;
|
|
1903
1932
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
1904
1933
|
tmp0_serialDesc.av('reason', false);
|
|
1905
|
-
this.
|
|
1934
|
+
this.k1s_1 = tmp0_serialDesc;
|
|
1906
1935
|
}
|
|
1907
|
-
protoOf($serializer_1).
|
|
1908
|
-
var tmp0_desc = this.
|
|
1936
|
+
protoOf($serializer_1).l1s = function (encoder, value) {
|
|
1937
|
+
var tmp0_desc = this.k1s_1;
|
|
1909
1938
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
1910
1939
|
tmp1_output.zo(tmp0_desc, 0, value.reason);
|
|
1911
1940
|
tmp1_output.ln(tmp0_desc);
|
|
1912
1941
|
};
|
|
1913
1942
|
protoOf($serializer_1).ck = function (encoder, value) {
|
|
1914
|
-
return this.
|
|
1943
|
+
return this.l1s(encoder, value instanceof GameErrorReasonDto ? value : THROW_CCE());
|
|
1915
1944
|
};
|
|
1916
1945
|
protoOf($serializer_1).dk = function (decoder) {
|
|
1917
|
-
var tmp0_desc = this.
|
|
1946
|
+
var tmp0_desc = this.k1s_1;
|
|
1918
1947
|
var tmp1_flag = true;
|
|
1919
1948
|
var tmp2_index = 0;
|
|
1920
1949
|
var tmp3_bitMask0 = 0;
|
|
@@ -1942,7 +1971,7 @@
|
|
|
1942
1971
|
return GameErrorReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1943
1972
|
};
|
|
1944
1973
|
protoOf($serializer_1).bk = function () {
|
|
1945
|
-
return this.
|
|
1974
|
+
return this.k1s_1;
|
|
1946
1975
|
};
|
|
1947
1976
|
protoOf($serializer_1).rv = function () {
|
|
1948
1977
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1958,7 +1987,7 @@
|
|
|
1958
1987
|
}
|
|
1959
1988
|
function GameErrorReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
1960
1989
|
if (!(1 === (1 & seen0))) {
|
|
1961
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().
|
|
1990
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().k1s_1);
|
|
1962
1991
|
}
|
|
1963
1992
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
1964
1993
|
$this.reason = reason;
|
|
@@ -1999,19 +2028,19 @@
|
|
|
1999
2028
|
$serializer_instance_2 = this;
|
|
2000
2029
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
2001
2030
|
tmp0_serialDesc.av('reason', false);
|
|
2002
|
-
this.
|
|
2031
|
+
this.m1s_1 = tmp0_serialDesc;
|
|
2003
2032
|
}
|
|
2004
|
-
protoOf($serializer_2).
|
|
2005
|
-
var tmp0_desc = this.
|
|
2033
|
+
protoOf($serializer_2).n1s = function (encoder, value) {
|
|
2034
|
+
var tmp0_desc = this.m1s_1;
|
|
2006
2035
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2007
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2036
|
+
tmp1_output.zo(tmp0_desc, 0, value.o1s_1);
|
|
2008
2037
|
tmp1_output.ln(tmp0_desc);
|
|
2009
2038
|
};
|
|
2010
2039
|
protoOf($serializer_2).ck = function (encoder, value) {
|
|
2011
|
-
return this.
|
|
2040
|
+
return this.n1s(encoder, value instanceof GameFinishedReasonDto ? value : THROW_CCE());
|
|
2012
2041
|
};
|
|
2013
2042
|
protoOf($serializer_2).dk = function (decoder) {
|
|
2014
|
-
var tmp0_desc = this.
|
|
2043
|
+
var tmp0_desc = this.m1s_1;
|
|
2015
2044
|
var tmp1_flag = true;
|
|
2016
2045
|
var tmp2_index = 0;
|
|
2017
2046
|
var tmp3_bitMask0 = 0;
|
|
@@ -2039,7 +2068,7 @@
|
|
|
2039
2068
|
return GameFinishedReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2040
2069
|
};
|
|
2041
2070
|
protoOf($serializer_2).bk = function () {
|
|
2042
|
-
return this.
|
|
2071
|
+
return this.m1s_1;
|
|
2043
2072
|
};
|
|
2044
2073
|
protoOf($serializer_2).rv = function () {
|
|
2045
2074
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2055,10 +2084,10 @@
|
|
|
2055
2084
|
}
|
|
2056
2085
|
function GameFinishedReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2057
2086
|
if (!(1 === (1 & seen0))) {
|
|
2058
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().
|
|
2087
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().m1s_1);
|
|
2059
2088
|
}
|
|
2060
2089
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2061
|
-
$this.
|
|
2090
|
+
$this.o1s_1 = reason;
|
|
2062
2091
|
return $this;
|
|
2063
2092
|
}
|
|
2064
2093
|
function GameFinishedReasonDto_init_$Create$(seen0, reason, serializationConstructorMarker) {
|
|
@@ -2066,20 +2095,20 @@
|
|
|
2066
2095
|
}
|
|
2067
2096
|
function GameFinishedReasonDto(reason) {
|
|
2068
2097
|
TerminationGameReasonDto.call(this);
|
|
2069
|
-
this.
|
|
2098
|
+
this.o1s_1 = reason;
|
|
2070
2099
|
}
|
|
2071
2100
|
protoOf(GameFinishedReasonDto).toString = function () {
|
|
2072
|
-
return 'GameFinishedReasonDto(reason=' + this.
|
|
2101
|
+
return 'GameFinishedReasonDto(reason=' + this.o1s_1 + ')';
|
|
2073
2102
|
};
|
|
2074
2103
|
protoOf(GameFinishedReasonDto).hashCode = function () {
|
|
2075
|
-
return getStringHashCode(this.
|
|
2104
|
+
return getStringHashCode(this.o1s_1);
|
|
2076
2105
|
};
|
|
2077
2106
|
protoOf(GameFinishedReasonDto).equals = function (other) {
|
|
2078
2107
|
if (this === other)
|
|
2079
2108
|
return true;
|
|
2080
2109
|
if (!(other instanceof GameFinishedReasonDto))
|
|
2081
2110
|
return false;
|
|
2082
|
-
if (!(this.
|
|
2111
|
+
if (!(this.o1s_1 === other.o1s_1))
|
|
2083
2112
|
return false;
|
|
2084
2113
|
return true;
|
|
2085
2114
|
};
|
|
@@ -2093,19 +2122,19 @@
|
|
|
2093
2122
|
$serializer_instance_3 = this;
|
|
2094
2123
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
2095
2124
|
tmp0_serialDesc.av('playerId', false);
|
|
2096
|
-
this.
|
|
2125
|
+
this.p1s_1 = tmp0_serialDesc;
|
|
2097
2126
|
}
|
|
2098
|
-
protoOf($serializer_3).
|
|
2099
|
-
var tmp0_desc = this.
|
|
2127
|
+
protoOf($serializer_3).q1s = function (encoder, value) {
|
|
2128
|
+
var tmp0_desc = this.p1s_1;
|
|
2100
2129
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
2101
|
-
tmp1_output.zo(tmp0_desc, 0, value.
|
|
2130
|
+
tmp1_output.zo(tmp0_desc, 0, value.r1s_1);
|
|
2102
2131
|
tmp1_output.ln(tmp0_desc);
|
|
2103
2132
|
};
|
|
2104
2133
|
protoOf($serializer_3).ck = function (encoder, value) {
|
|
2105
|
-
return this.
|
|
2134
|
+
return this.q1s(encoder, value instanceof PlayerExitReasonDto ? value : THROW_CCE());
|
|
2106
2135
|
};
|
|
2107
2136
|
protoOf($serializer_3).dk = function (decoder) {
|
|
2108
|
-
var tmp0_desc = this.
|
|
2137
|
+
var tmp0_desc = this.p1s_1;
|
|
2109
2138
|
var tmp1_flag = true;
|
|
2110
2139
|
var tmp2_index = 0;
|
|
2111
2140
|
var tmp3_bitMask0 = 0;
|
|
@@ -2133,7 +2162,7 @@
|
|
|
2133
2162
|
return PlayerExitReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2134
2163
|
};
|
|
2135
2164
|
protoOf($serializer_3).bk = function () {
|
|
2136
|
-
return this.
|
|
2165
|
+
return this.p1s_1;
|
|
2137
2166
|
};
|
|
2138
2167
|
protoOf($serializer_3).rv = function () {
|
|
2139
2168
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2149,10 +2178,10 @@
|
|
|
2149
2178
|
}
|
|
2150
2179
|
function PlayerExitReasonDto_init_$Init$(seen0, playerId, serializationConstructorMarker, $this) {
|
|
2151
2180
|
if (!(1 === (1 & seen0))) {
|
|
2152
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().
|
|
2181
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_3().p1s_1);
|
|
2153
2182
|
}
|
|
2154
2183
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2155
|
-
$this.
|
|
2184
|
+
$this.r1s_1 = playerId;
|
|
2156
2185
|
return $this;
|
|
2157
2186
|
}
|
|
2158
2187
|
function PlayerExitReasonDto_init_$Create$(seen0, playerId, serializationConstructorMarker) {
|
|
@@ -2160,20 +2189,20 @@
|
|
|
2160
2189
|
}
|
|
2161
2190
|
function PlayerExitReasonDto(playerId) {
|
|
2162
2191
|
TerminationGameReasonDto.call(this);
|
|
2163
|
-
this.
|
|
2192
|
+
this.r1s_1 = playerId;
|
|
2164
2193
|
}
|
|
2165
2194
|
protoOf(PlayerExitReasonDto).toString = function () {
|
|
2166
|
-
return 'PlayerExitReasonDto(playerId=' + this.
|
|
2195
|
+
return 'PlayerExitReasonDto(playerId=' + this.r1s_1 + ')';
|
|
2167
2196
|
};
|
|
2168
2197
|
protoOf(PlayerExitReasonDto).hashCode = function () {
|
|
2169
|
-
return getStringHashCode(this.
|
|
2198
|
+
return getStringHashCode(this.r1s_1);
|
|
2170
2199
|
};
|
|
2171
2200
|
protoOf(PlayerExitReasonDto).equals = function (other) {
|
|
2172
2201
|
if (this === other)
|
|
2173
2202
|
return true;
|
|
2174
2203
|
if (!(other instanceof PlayerExitReasonDto))
|
|
2175
2204
|
return false;
|
|
2176
|
-
if (!(this.
|
|
2205
|
+
if (!(this.r1s_1 === other.r1s_1))
|
|
2177
2206
|
return false;
|
|
2178
2207
|
return true;
|
|
2179
2208
|
};
|
|
@@ -2188,20 +2217,20 @@
|
|
|
2188
2217
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
2189
2218
|
tmp0_serialDesc.av('playerId', false);
|
|
2190
2219
|
tmp0_serialDesc.av('tag', false);
|
|
2191
|
-
this.
|
|
2220
|
+
this.s1s_1 = tmp0_serialDesc;
|
|
2192
2221
|
}
|
|
2193
|
-
protoOf($serializer_4).
|
|
2194
|
-
var tmp0_desc = this.
|
|
2222
|
+
protoOf($serializer_4).t1s = function (encoder, value) {
|
|
2223
|
+
var tmp0_desc = this.s1s_1;
|
|
2195
2224
|
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.
|
|
2225
|
+
tmp1_output.zo(tmp0_desc, 0, value.u1s_1);
|
|
2226
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.v1s_1);
|
|
2198
2227
|
tmp1_output.ln(tmp0_desc);
|
|
2199
2228
|
};
|
|
2200
2229
|
protoOf($serializer_4).ck = function (encoder, value) {
|
|
2201
|
-
return this.
|
|
2230
|
+
return this.t1s(encoder, value instanceof PlayerLostConnectionReasonDto ? value : THROW_CCE());
|
|
2202
2231
|
};
|
|
2203
2232
|
protoOf($serializer_4).dk = function (decoder) {
|
|
2204
|
-
var tmp0_desc = this.
|
|
2233
|
+
var tmp0_desc = this.s1s_1;
|
|
2205
2234
|
var tmp1_flag = true;
|
|
2206
2235
|
var tmp2_index = 0;
|
|
2207
2236
|
var tmp3_bitMask0 = 0;
|
|
@@ -2236,7 +2265,7 @@
|
|
|
2236
2265
|
return PlayerLostConnectionReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2237
2266
|
};
|
|
2238
2267
|
protoOf($serializer_4).bk = function () {
|
|
2239
|
-
return this.
|
|
2268
|
+
return this.s1s_1;
|
|
2240
2269
|
};
|
|
2241
2270
|
protoOf($serializer_4).rv = function () {
|
|
2242
2271
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2252,11 +2281,11 @@
|
|
|
2252
2281
|
}
|
|
2253
2282
|
function PlayerLostConnectionReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2254
2283
|
if (!(3 === (3 & seen0))) {
|
|
2255
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().
|
|
2284
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().s1s_1);
|
|
2256
2285
|
}
|
|
2257
2286
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2258
|
-
$this.
|
|
2259
|
-
$this.
|
|
2287
|
+
$this.u1s_1 = playerId;
|
|
2288
|
+
$this.v1s_1 = tag;
|
|
2260
2289
|
return $this;
|
|
2261
2290
|
}
|
|
2262
2291
|
function PlayerLostConnectionReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2264,15 +2293,15 @@
|
|
|
2264
2293
|
}
|
|
2265
2294
|
function PlayerLostConnectionReasonDto(playerId, tag) {
|
|
2266
2295
|
TerminationGameReasonDto.call(this);
|
|
2267
|
-
this.
|
|
2268
|
-
this.
|
|
2296
|
+
this.u1s_1 = playerId;
|
|
2297
|
+
this.v1s_1 = tag;
|
|
2269
2298
|
}
|
|
2270
2299
|
protoOf(PlayerLostConnectionReasonDto).toString = function () {
|
|
2271
|
-
return 'PlayerLostConnectionReasonDto(playerId=' + this.
|
|
2300
|
+
return 'PlayerLostConnectionReasonDto(playerId=' + this.u1s_1 + ', tag=' + this.v1s_1 + ')';
|
|
2272
2301
|
};
|
|
2273
2302
|
protoOf(PlayerLostConnectionReasonDto).hashCode = function () {
|
|
2274
|
-
var result = getStringHashCode(this.
|
|
2275
|
-
result = imul(result, 31) + (this.
|
|
2303
|
+
var result = getStringHashCode(this.u1s_1);
|
|
2304
|
+
result = imul(result, 31) + (this.v1s_1 == null ? 0 : getStringHashCode(this.v1s_1)) | 0;
|
|
2276
2305
|
return result;
|
|
2277
2306
|
};
|
|
2278
2307
|
protoOf(PlayerLostConnectionReasonDto).equals = function (other) {
|
|
@@ -2280,9 +2309,9 @@
|
|
|
2280
2309
|
return true;
|
|
2281
2310
|
if (!(other instanceof PlayerLostConnectionReasonDto))
|
|
2282
2311
|
return false;
|
|
2283
|
-
if (!(this.
|
|
2312
|
+
if (!(this.u1s_1 === other.u1s_1))
|
|
2284
2313
|
return false;
|
|
2285
|
-
if (!(this.
|
|
2314
|
+
if (!(this.v1s_1 == other.v1s_1))
|
|
2286
2315
|
return false;
|
|
2287
2316
|
return true;
|
|
2288
2317
|
};
|
|
@@ -2297,20 +2326,20 @@
|
|
|
2297
2326
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
2298
2327
|
tmp0_serialDesc.av('playerId', false);
|
|
2299
2328
|
tmp0_serialDesc.av('tag', false);
|
|
2300
|
-
this.
|
|
2329
|
+
this.w1s_1 = tmp0_serialDesc;
|
|
2301
2330
|
}
|
|
2302
|
-
protoOf($serializer_5).
|
|
2303
|
-
var tmp0_desc = this.
|
|
2331
|
+
protoOf($serializer_5).x1s = function (encoder, value) {
|
|
2332
|
+
var tmp0_desc = this.w1s_1;
|
|
2304
2333
|
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.
|
|
2334
|
+
tmp1_output.zo(tmp0_desc, 0, value.y1s_1);
|
|
2335
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.z1s_1);
|
|
2307
2336
|
tmp1_output.ln(tmp0_desc);
|
|
2308
2337
|
};
|
|
2309
2338
|
protoOf($serializer_5).ck = function (encoder, value) {
|
|
2310
|
-
return this.
|
|
2339
|
+
return this.x1s(encoder, value instanceof PlayerTimeoutReasonDto ? value : THROW_CCE());
|
|
2311
2340
|
};
|
|
2312
2341
|
protoOf($serializer_5).dk = function (decoder) {
|
|
2313
|
-
var tmp0_desc = this.
|
|
2342
|
+
var tmp0_desc = this.w1s_1;
|
|
2314
2343
|
var tmp1_flag = true;
|
|
2315
2344
|
var tmp2_index = 0;
|
|
2316
2345
|
var tmp3_bitMask0 = 0;
|
|
@@ -2345,7 +2374,7 @@
|
|
|
2345
2374
|
return PlayerTimeoutReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2346
2375
|
};
|
|
2347
2376
|
protoOf($serializer_5).bk = function () {
|
|
2348
|
-
return this.
|
|
2377
|
+
return this.w1s_1;
|
|
2349
2378
|
};
|
|
2350
2379
|
protoOf($serializer_5).rv = function () {
|
|
2351
2380
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2361,11 +2390,11 @@
|
|
|
2361
2390
|
}
|
|
2362
2391
|
function PlayerTimeoutReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2363
2392
|
if (!(3 === (3 & seen0))) {
|
|
2364
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().
|
|
2393
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_5().w1s_1);
|
|
2365
2394
|
}
|
|
2366
2395
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2367
|
-
$this.
|
|
2368
|
-
$this.
|
|
2396
|
+
$this.y1s_1 = playerId;
|
|
2397
|
+
$this.z1s_1 = tag;
|
|
2369
2398
|
return $this;
|
|
2370
2399
|
}
|
|
2371
2400
|
function PlayerTimeoutReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2373,15 +2402,15 @@
|
|
|
2373
2402
|
}
|
|
2374
2403
|
function PlayerTimeoutReasonDto(playerId, tag) {
|
|
2375
2404
|
TerminationGameReasonDto.call(this);
|
|
2376
|
-
this.
|
|
2377
|
-
this.
|
|
2405
|
+
this.y1s_1 = playerId;
|
|
2406
|
+
this.z1s_1 = tag;
|
|
2378
2407
|
}
|
|
2379
2408
|
protoOf(PlayerTimeoutReasonDto).toString = function () {
|
|
2380
|
-
return 'PlayerTimeoutReasonDto(playerId=' + this.
|
|
2409
|
+
return 'PlayerTimeoutReasonDto(playerId=' + this.y1s_1 + ', tag=' + this.z1s_1 + ')';
|
|
2381
2410
|
};
|
|
2382
2411
|
protoOf(PlayerTimeoutReasonDto).hashCode = function () {
|
|
2383
|
-
var result = getStringHashCode(this.
|
|
2384
|
-
result = imul(result, 31) + (this.
|
|
2412
|
+
var result = getStringHashCode(this.y1s_1);
|
|
2413
|
+
result = imul(result, 31) + (this.z1s_1 == null ? 0 : getStringHashCode(this.z1s_1)) | 0;
|
|
2385
2414
|
return result;
|
|
2386
2415
|
};
|
|
2387
2416
|
protoOf(PlayerTimeoutReasonDto).equals = function (other) {
|
|
@@ -2389,14 +2418,14 @@
|
|
|
2389
2418
|
return true;
|
|
2390
2419
|
if (!(other instanceof PlayerTimeoutReasonDto))
|
|
2391
2420
|
return false;
|
|
2392
|
-
if (!(this.
|
|
2421
|
+
if (!(this.y1s_1 === other.y1s_1))
|
|
2393
2422
|
return false;
|
|
2394
|
-
if (!(this.
|
|
2423
|
+
if (!(this.z1s_1 == other.z1s_1))
|
|
2395
2424
|
return false;
|
|
2396
2425
|
return true;
|
|
2397
2426
|
};
|
|
2398
2427
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
2399
|
-
return $this.
|
|
2428
|
+
return $this.a1t_1.v1();
|
|
2400
2429
|
}
|
|
2401
2430
|
function WaitingForConnectionReasonDto$_anonymous__hgbgp6() {
|
|
2402
2431
|
var tmp = WaitingForConnectionReasonDto_getInstance();
|
|
@@ -2411,7 +2440,7 @@
|
|
|
2411
2440
|
TerminationGameReasonDto.call(this);
|
|
2412
2441
|
var tmp = this;
|
|
2413
2442
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2414
|
-
tmp.
|
|
2443
|
+
tmp.a1t_1 = lazy(tmp_0, WaitingForConnectionReasonDto$_anonymous__hgbgp6);
|
|
2415
2444
|
}
|
|
2416
2445
|
protoOf(WaitingForConnectionReasonDto).z17 = function () {
|
|
2417
2446
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -2557,20 +2586,20 @@
|
|
|
2557
2586
|
}
|
|
2558
2587
|
function mapFromDto_2(_this__u8e3s4) {
|
|
2559
2588
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2560
|
-
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.
|
|
2589
|
+
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.o1s_1, get_gameFinishedReasonMapping());
|
|
2561
2590
|
return new GameFinishedReason(tmp0_elvis_lhs == null ? Reason_GAME_NOT_EXISTS_getInstance() : tmp0_elvis_lhs);
|
|
2562
2591
|
}
|
|
2563
2592
|
function mapFromDto_3(_this__u8e3s4) {
|
|
2564
2593
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2565
|
-
return new PlayerExitReason(_this__u8e3s4.
|
|
2594
|
+
return new PlayerExitReason(_this__u8e3s4.r1s_1);
|
|
2566
2595
|
}
|
|
2567
2596
|
function mapFromDto_4(_this__u8e3s4) {
|
|
2568
2597
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2569
|
-
return new PlayerLostConnectionReason(_this__u8e3s4.
|
|
2598
|
+
return new PlayerLostConnectionReason(_this__u8e3s4.u1s_1, _this__u8e3s4.v1s_1);
|
|
2570
2599
|
}
|
|
2571
2600
|
function mapFromDto_5(_this__u8e3s4) {
|
|
2572
2601
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2573
|
-
return new PlayerTimeoutReason(_this__u8e3s4.
|
|
2602
|
+
return new PlayerTimeoutReason(_this__u8e3s4.y1s_1, _this__u8e3s4.z1s_1);
|
|
2574
2603
|
}
|
|
2575
2604
|
function mapFromDto_6(_this__u8e3s4) {
|
|
2576
2605
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
@@ -2631,14 +2660,14 @@
|
|
|
2631
2660
|
return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp8_rating, tmp6_isBot, tmp7_initialLuckyFactor);
|
|
2632
2661
|
}
|
|
2633
2662
|
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.
|
|
2663
|
+
var tmp0_elvis_lhs = _this__u8e3s4.b1t_1;
|
|
2664
|
+
var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.c1t_1) : tmp0_elvis_lhs;
|
|
2665
|
+
var tmp1_elvis_lhs = _this__u8e3s4.d1t_1;
|
|
2666
|
+
var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.e1t_1) : tmp1_elvis_lhs;
|
|
2667
|
+
var tmp2_elvis_lhs = _this__u8e3s4.f1t_1;
|
|
2668
|
+
var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.g1t_1 : tmp2_elvis_lhs;
|
|
2669
|
+
var tmp3_elvis_lhs = _this__u8e3s4.i1t_1;
|
|
2670
|
+
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
2671
|
}
|
|
2643
2672
|
function mapToDto_9(_this__u8e3s4) {
|
|
2644
2673
|
var tmp0_safe_receiver = _this__u8e3s4.q1q_1;
|
|
@@ -2655,7 +2684,7 @@
|
|
|
2655
2684
|
return new PlayerStateDto(tmp4_startFrom, tmp6_playerTurnTimeout, tmp5_waitPlayerUntilTime, tmp7_state, tmp9_ready, tmp8_tag, tmp10_connection);
|
|
2656
2685
|
}
|
|
2657
2686
|
function mapFromDto_9(_this__u8e3s4) {
|
|
2658
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
2687
|
+
var tmp0_safe_receiver = _this__u8e3s4.k1t_1;
|
|
2659
2688
|
var tmp;
|
|
2660
2689
|
if (tmp0_safe_receiver == null) {
|
|
2661
2690
|
tmp = null;
|
|
@@ -2664,7 +2693,7 @@
|
|
|
2664
2693
|
tmp = Companion_getInstance_0().tg(tmp0_safe_receiver);
|
|
2665
2694
|
}
|
|
2666
2695
|
var tmp5_startFromTime = tmp;
|
|
2667
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
2696
|
+
var tmp1_safe_receiver = _this__u8e3s4.m1t_1;
|
|
2668
2697
|
var tmp_0;
|
|
2669
2698
|
if (tmp1_safe_receiver == null) {
|
|
2670
2699
|
tmp_0 = null;
|
|
@@ -2673,7 +2702,7 @@
|
|
|
2673
2702
|
tmp_0 = Companion_getInstance_0().tg(tmp1_safe_receiver);
|
|
2674
2703
|
}
|
|
2675
2704
|
var tmp6_waitPlayerUntilTime = tmp_0;
|
|
2676
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
2705
|
+
var tmp2_safe_receiver = _this__u8e3s4.l1t_1;
|
|
2677
2706
|
var tmp_1;
|
|
2678
2707
|
if (tmp2_safe_receiver == null) {
|
|
2679
2708
|
tmp_1 = null;
|
|
@@ -2682,11 +2711,11 @@
|
|
|
2682
2711
|
tmp_1 = Companion_getInstance_0().tg(tmp2_safe_receiver);
|
|
2683
2712
|
}
|
|
2684
2713
|
var tmp7_playerTurnTimeout = tmp_1;
|
|
2685
|
-
var tmp8_state = _this__u8e3s4.
|
|
2686
|
-
var tmp9_tag = _this__u8e3s4.
|
|
2687
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
2714
|
+
var tmp8_state = _this__u8e3s4.n1t_1;
|
|
2715
|
+
var tmp9_tag = _this__u8e3s4.p1t_1;
|
|
2716
|
+
var tmp3_elvis_lhs = _this__u8e3s4.o1t_1;
|
|
2688
2717
|
var tmp10_ready = tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs;
|
|
2689
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
2718
|
+
var tmp4_safe_receiver = _this__u8e3s4.q1t_1;
|
|
2690
2719
|
var tmp11_connection = tmp4_safe_receiver == null ? null : mapFromDto_10(tmp4_safe_receiver);
|
|
2691
2720
|
return new PlayerState(tmp5_startFromTime, tmp7_playerTurnTimeout, tmp6_waitPlayerUntilTime, tmp8_state, tmp10_ready, tmp9_tag, tmp11_connection);
|
|
2692
2721
|
}
|
|
@@ -2694,7 +2723,7 @@
|
|
|
2694
2723
|
return new PlayerConnectionDto(_this__u8e3s4.b1r_1, _this__u8e3s4.c1r_1.toString(), Duration__toIsoString_impl_9h6wsm(_this__u8e3s4.d1r_1));
|
|
2695
2724
|
}
|
|
2696
2725
|
function mapFromDto_10(_this__u8e3s4) {
|
|
2697
|
-
return new PlayerConnection(_this__u8e3s4.
|
|
2726
|
+
return new PlayerConnection(_this__u8e3s4.r1t_1, Companion_getInstance_0().tg(_this__u8e3s4.s1t_1), Companion_getInstance().ng(_this__u8e3s4.t1t_1));
|
|
2698
2727
|
}
|
|
2699
2728
|
function Companion_15() {
|
|
2700
2729
|
}
|
|
@@ -2714,39 +2743,39 @@
|
|
|
2714
2743
|
tmp0_serialDesc.av('rating', false);
|
|
2715
2744
|
tmp0_serialDesc.av('is_bot', false);
|
|
2716
2745
|
tmp0_serialDesc.av('lucky_factor', false);
|
|
2717
|
-
this.
|
|
2746
|
+
this.u1t_1 = tmp0_serialDesc;
|
|
2718
2747
|
}
|
|
2719
|
-
protoOf($serializer_6).
|
|
2720
|
-
var tmp0_desc = this.
|
|
2748
|
+
protoOf($serializer_6).v1t = function (encoder, value) {
|
|
2749
|
+
var tmp0_desc = this.u1t_1;
|
|
2721
2750
|
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.
|
|
2751
|
+
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.b1t_1 == null)) {
|
|
2752
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.b1t_1);
|
|
2724
2753
|
}
|
|
2725
|
-
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.
|
|
2726
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2754
|
+
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.c1t_1 == null)) {
|
|
2755
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.c1t_1);
|
|
2727
2756
|
}
|
|
2728
|
-
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.
|
|
2729
|
-
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
2757
|
+
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.d1t_1 == null)) {
|
|
2758
|
+
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.d1t_1);
|
|
2730
2759
|
}
|
|
2731
|
-
if (tmp1_output.hp(tmp0_desc, 3) ? true : !(value.
|
|
2732
|
-
tmp1_output.dp(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
2760
|
+
if (tmp1_output.hp(tmp0_desc, 3) ? true : !(value.e1t_1 == null)) {
|
|
2761
|
+
tmp1_output.dp(tmp0_desc, 3, StringSerializer_getInstance(), value.e1t_1);
|
|
2733
2762
|
}
|
|
2734
|
-
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.
|
|
2735
|
-
tmp1_output.dp(tmp0_desc, 4, StringSerializer_getInstance(), value.
|
|
2763
|
+
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.f1t_1 == null)) {
|
|
2764
|
+
tmp1_output.dp(tmp0_desc, 4, StringSerializer_getInstance(), value.f1t_1);
|
|
2736
2765
|
}
|
|
2737
|
-
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.
|
|
2738
|
-
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
2766
|
+
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.g1t_1 == null)) {
|
|
2767
|
+
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.g1t_1);
|
|
2739
2768
|
}
|
|
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.
|
|
2769
|
+
tmp1_output.dp(tmp0_desc, 6, DoubleSerializer_getInstance(), value.h1t_1);
|
|
2770
|
+
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.i1t_1);
|
|
2771
|
+
tmp1_output.dp(tmp0_desc, 8, FloatSerializer_getInstance(), value.j1t_1);
|
|
2743
2772
|
tmp1_output.ln(tmp0_desc);
|
|
2744
2773
|
};
|
|
2745
2774
|
protoOf($serializer_6).ck = function (encoder, value) {
|
|
2746
|
-
return this.
|
|
2775
|
+
return this.v1t(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
2747
2776
|
};
|
|
2748
2777
|
protoOf($serializer_6).dk = function (decoder) {
|
|
2749
|
-
var tmp0_desc = this.
|
|
2778
|
+
var tmp0_desc = this.u1t_1;
|
|
2750
2779
|
var tmp1_flag = true;
|
|
2751
2780
|
var tmp2_index = 0;
|
|
2752
2781
|
var tmp3_bitMask0 = 0;
|
|
@@ -2830,7 +2859,7 @@
|
|
|
2830
2859
|
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
2860
|
};
|
|
2832
2861
|
protoOf($serializer_6).bk = function () {
|
|
2833
|
-
return this.
|
|
2862
|
+
return this.u1t_1;
|
|
2834
2863
|
};
|
|
2835
2864
|
protoOf($serializer_6).rv = function () {
|
|
2836
2865
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2846,35 +2875,35 @@
|
|
|
2846
2875
|
}
|
|
2847
2876
|
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
2848
2877
|
if (!(448 === (448 & seen0))) {
|
|
2849
|
-
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().
|
|
2878
|
+
throwMissingFieldException(seen0, 448, $serializer_getInstance_6().u1t_1);
|
|
2850
2879
|
}
|
|
2851
2880
|
if (0 === (seen0 & 1))
|
|
2852
|
-
$this.
|
|
2881
|
+
$this.b1t_1 = null;
|
|
2853
2882
|
else
|
|
2854
|
-
$this.
|
|
2883
|
+
$this.b1t_1 = playerId;
|
|
2855
2884
|
if (0 === (seen0 & 2))
|
|
2856
|
-
$this.
|
|
2885
|
+
$this.c1t_1 = null;
|
|
2857
2886
|
else
|
|
2858
|
-
$this.
|
|
2887
|
+
$this.c1t_1 = uid;
|
|
2859
2888
|
if (0 === (seen0 & 4))
|
|
2860
|
-
$this.
|
|
2889
|
+
$this.d1t_1 = null;
|
|
2861
2890
|
else
|
|
2862
|
-
$this.
|
|
2891
|
+
$this.d1t_1 = name;
|
|
2863
2892
|
if (0 === (seen0 & 8))
|
|
2864
|
-
$this.
|
|
2893
|
+
$this.e1t_1 = null;
|
|
2865
2894
|
else
|
|
2866
|
-
$this.
|
|
2895
|
+
$this.e1t_1 = nickname;
|
|
2867
2896
|
if (0 === (seen0 & 16))
|
|
2868
|
-
$this.
|
|
2897
|
+
$this.f1t_1 = null;
|
|
2869
2898
|
else
|
|
2870
|
-
$this.
|
|
2899
|
+
$this.f1t_1 = avatarUrl;
|
|
2871
2900
|
if (0 === (seen0 & 32))
|
|
2872
|
-
$this.
|
|
2901
|
+
$this.g1t_1 = null;
|
|
2873
2902
|
else
|
|
2874
|
-
$this.
|
|
2875
|
-
$this.
|
|
2876
|
-
$this.
|
|
2877
|
-
$this.
|
|
2903
|
+
$this.g1t_1 = photo;
|
|
2904
|
+
$this.h1t_1 = rating;
|
|
2905
|
+
$this.i1t_1 = isBot;
|
|
2906
|
+
$this.j1t_1 = initialLuckyFactor;
|
|
2878
2907
|
return $this;
|
|
2879
2908
|
}
|
|
2880
2909
|
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
@@ -2887,47 +2916,47 @@
|
|
|
2887
2916
|
nickname = nickname === VOID ? null : nickname;
|
|
2888
2917
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
2889
2918
|
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).
|
|
2919
|
+
this.b1t_1 = playerId;
|
|
2920
|
+
this.c1t_1 = uid;
|
|
2921
|
+
this.d1t_1 = name;
|
|
2922
|
+
this.e1t_1 = nickname;
|
|
2923
|
+
this.f1t_1 = avatarUrl;
|
|
2924
|
+
this.g1t_1 = photo;
|
|
2925
|
+
this.h1t_1 = rating;
|
|
2926
|
+
this.i1t_1 = isBot;
|
|
2927
|
+
this.j1t_1 = initialLuckyFactor;
|
|
2928
|
+
}
|
|
2929
|
+
protoOf(GameUserInfoDto).w1t = function () {
|
|
2930
|
+
return this.x1t(VOID, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
2931
|
+
};
|
|
2932
|
+
protoOf(GameUserInfoDto).y1t = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
2904
2933
|
return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
2905
2934
|
};
|
|
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.
|
|
2935
|
+
protoOf(GameUserInfoDto).x1t = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, $super) {
|
|
2936
|
+
playerId = playerId === VOID ? this.b1t_1 : playerId;
|
|
2937
|
+
uid = uid === VOID ? this.c1t_1 : uid;
|
|
2938
|
+
name = name === VOID ? this.d1t_1 : name;
|
|
2939
|
+
nickname = nickname === VOID ? this.e1t_1 : nickname;
|
|
2940
|
+
avatarUrl = avatarUrl === VOID ? this.f1t_1 : avatarUrl;
|
|
2941
|
+
photo = photo === VOID ? this.g1t_1 : photo;
|
|
2942
|
+
rating = rating === VOID ? this.h1t_1 : rating;
|
|
2943
|
+
isBot = isBot === VOID ? this.i1t_1 : isBot;
|
|
2944
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.j1t_1 : initialLuckyFactor;
|
|
2945
|
+
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
2946
|
};
|
|
2918
2947
|
protoOf(GameUserInfoDto).toString = function () {
|
|
2919
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
2948
|
+
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
2949
|
};
|
|
2921
2950
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
2922
|
-
var result = this.
|
|
2923
|
-
result = imul(result, 31) + (this.b1t_1 == null ? 0 : getStringHashCode(this.b1t_1)) | 0;
|
|
2951
|
+
var result = this.b1t_1 == null ? 0 : getStringHashCode(this.b1t_1);
|
|
2924
2952
|
result = imul(result, 31) + (this.c1t_1 == null ? 0 : getStringHashCode(this.c1t_1)) | 0;
|
|
2925
2953
|
result = imul(result, 31) + (this.d1t_1 == null ? 0 : getStringHashCode(this.d1t_1)) | 0;
|
|
2926
2954
|
result = imul(result, 31) + (this.e1t_1 == null ? 0 : getStringHashCode(this.e1t_1)) | 0;
|
|
2927
2955
|
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 :
|
|
2956
|
+
result = imul(result, 31) + (this.g1t_1 == null ? 0 : getStringHashCode(this.g1t_1)) | 0;
|
|
2957
|
+
result = imul(result, 31) + (this.h1t_1 == null ? 0 : getNumberHashCode(this.h1t_1)) | 0;
|
|
2958
|
+
result = imul(result, 31) + (this.i1t_1 == null ? 0 : getBooleanHashCode(this.i1t_1)) | 0;
|
|
2959
|
+
result = imul(result, 31) + (this.j1t_1 == null ? 0 : getNumberHashCode(this.j1t_1)) | 0;
|
|
2931
2960
|
return result;
|
|
2932
2961
|
};
|
|
2933
2962
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -2935,8 +2964,6 @@
|
|
|
2935
2964
|
return true;
|
|
2936
2965
|
if (!(other instanceof GameUserInfoDto))
|
|
2937
2966
|
return false;
|
|
2938
|
-
if (!(this.a1t_1 == other.a1t_1))
|
|
2939
|
-
return false;
|
|
2940
2967
|
if (!(this.b1t_1 == other.b1t_1))
|
|
2941
2968
|
return false;
|
|
2942
2969
|
if (!(this.c1t_1 == other.c1t_1))
|
|
@@ -2947,11 +2974,13 @@
|
|
|
2947
2974
|
return false;
|
|
2948
2975
|
if (!(this.f1t_1 == other.f1t_1))
|
|
2949
2976
|
return false;
|
|
2950
|
-
if (!
|
|
2977
|
+
if (!(this.g1t_1 == other.g1t_1))
|
|
2951
2978
|
return false;
|
|
2952
|
-
if (!(this.h1t_1
|
|
2979
|
+
if (!equals(this.h1t_1, other.h1t_1))
|
|
2953
2980
|
return false;
|
|
2954
|
-
if (!
|
|
2981
|
+
if (!(this.i1t_1 == other.i1t_1))
|
|
2982
|
+
return false;
|
|
2983
|
+
if (!equals(this.j1t_1, other.j1t_1))
|
|
2955
2984
|
return false;
|
|
2956
2985
|
return true;
|
|
2957
2986
|
};
|
|
@@ -2965,7 +2994,7 @@
|
|
|
2965
2994
|
// Inline function 'kotlin.arrayOf' call
|
|
2966
2995
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2967
2996
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2968
|
-
tmp.
|
|
2997
|
+
tmp.z1t_1 = [lazy(tmp_0, PlayerConnectionDto$Companion$$childSerializers$_anonymous__jevhp2), null, null];
|
|
2969
2998
|
}
|
|
2970
2999
|
var Companion_instance_16;
|
|
2971
3000
|
function Companion_getInstance_19() {
|
|
@@ -2979,22 +3008,22 @@
|
|
|
2979
3008
|
tmp0_serialDesc.av('state', false);
|
|
2980
3009
|
tmp0_serialDesc.av('connectionChangedTime', false);
|
|
2981
3010
|
tmp0_serialDesc.av('notLiveDurationRecord', false);
|
|
2982
|
-
this.
|
|
3011
|
+
this.a1u_1 = tmp0_serialDesc;
|
|
2983
3012
|
}
|
|
2984
|
-
protoOf($serializer_7).
|
|
2985
|
-
var tmp0_desc = this.
|
|
3013
|
+
protoOf($serializer_7).b1u = function (encoder, value) {
|
|
3014
|
+
var tmp0_desc = this.a1u_1;
|
|
2986
3015
|
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.
|
|
3016
|
+
var tmp2_cached = Companion_getInstance_19().z1t_1;
|
|
3017
|
+
tmp1_output.bp(tmp0_desc, 0, tmp2_cached[0].v1(), value.r1t_1);
|
|
3018
|
+
tmp1_output.zo(tmp0_desc, 1, value.s1t_1);
|
|
3019
|
+
tmp1_output.zo(tmp0_desc, 2, value.t1t_1);
|
|
2991
3020
|
tmp1_output.ln(tmp0_desc);
|
|
2992
3021
|
};
|
|
2993
3022
|
protoOf($serializer_7).ck = function (encoder, value) {
|
|
2994
|
-
return this.
|
|
3023
|
+
return this.b1u(encoder, value instanceof PlayerConnectionDto ? value : THROW_CCE());
|
|
2995
3024
|
};
|
|
2996
3025
|
protoOf($serializer_7).dk = function (decoder) {
|
|
2997
|
-
var tmp0_desc = this.
|
|
3026
|
+
var tmp0_desc = this.a1u_1;
|
|
2998
3027
|
var tmp1_flag = true;
|
|
2999
3028
|
var tmp2_index = 0;
|
|
3000
3029
|
var tmp3_bitMask0 = 0;
|
|
@@ -3002,7 +3031,7 @@
|
|
|
3002
3031
|
var tmp5_local1 = null;
|
|
3003
3032
|
var tmp6_local2 = null;
|
|
3004
3033
|
var tmp7_input = decoder.kn(tmp0_desc);
|
|
3005
|
-
var tmp8_cached = Companion_getInstance_19().
|
|
3034
|
+
var tmp8_cached = Companion_getInstance_19().z1t_1;
|
|
3006
3035
|
if (tmp7_input.ao()) {
|
|
3007
3036
|
tmp4_local0 = tmp7_input.wn(tmp0_desc, 0, tmp8_cached[0].v1(), tmp4_local0);
|
|
3008
3037
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3037,13 +3066,13 @@
|
|
|
3037
3066
|
return PlayerConnectionDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, null);
|
|
3038
3067
|
};
|
|
3039
3068
|
protoOf($serializer_7).bk = function () {
|
|
3040
|
-
return this.
|
|
3069
|
+
return this.a1u_1;
|
|
3041
3070
|
};
|
|
3042
3071
|
protoOf($serializer_7).rv = function () {
|
|
3043
3072
|
// Inline function 'kotlin.arrayOf' call
|
|
3044
3073
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3045
3074
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3046
|
-
return [Companion_getInstance_19().
|
|
3075
|
+
return [Companion_getInstance_19().z1t_1[0].v1(), StringSerializer_getInstance(), StringSerializer_getInstance()];
|
|
3047
3076
|
};
|
|
3048
3077
|
var $serializer_instance_7;
|
|
3049
3078
|
function $serializer_getInstance_7() {
|
|
@@ -3053,11 +3082,11 @@
|
|
|
3053
3082
|
}
|
|
3054
3083
|
function PlayerConnectionDto_init_$Init$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker, $this) {
|
|
3055
3084
|
if (!(7 === (7 & seen0))) {
|
|
3056
|
-
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().
|
|
3085
|
+
throwMissingFieldException(seen0, 7, $serializer_getInstance_7().a1u_1);
|
|
3057
3086
|
}
|
|
3058
|
-
$this.
|
|
3059
|
-
$this.
|
|
3060
|
-
$this.
|
|
3087
|
+
$this.r1t_1 = state;
|
|
3088
|
+
$this.s1t_1 = connectionChangedTime;
|
|
3089
|
+
$this.t1t_1 = notLiveDurationRecord;
|
|
3061
3090
|
return $this;
|
|
3062
3091
|
}
|
|
3063
3092
|
function PlayerConnectionDto_init_$Create$(seen0, state, connectionChangedTime, notLiveDurationRecord, serializationConstructorMarker) {
|
|
@@ -3065,17 +3094,17 @@
|
|
|
3065
3094
|
}
|
|
3066
3095
|
function PlayerConnectionDto(state, connectionChangedTime, notLiveDurationRecord) {
|
|
3067
3096
|
Companion_getInstance_19();
|
|
3068
|
-
this.
|
|
3069
|
-
this.
|
|
3070
|
-
this.
|
|
3097
|
+
this.r1t_1 = state;
|
|
3098
|
+
this.s1t_1 = connectionChangedTime;
|
|
3099
|
+
this.t1t_1 = notLiveDurationRecord;
|
|
3071
3100
|
}
|
|
3072
3101
|
protoOf(PlayerConnectionDto).toString = function () {
|
|
3073
|
-
return 'PlayerConnectionDto(state=' + this.
|
|
3102
|
+
return 'PlayerConnectionDto(state=' + this.r1t_1.toString() + ', connectionChangedTime=' + this.s1t_1 + ', notLiveDurationRecord=' + this.t1t_1 + ')';
|
|
3074
3103
|
};
|
|
3075
3104
|
protoOf(PlayerConnectionDto).hashCode = function () {
|
|
3076
|
-
var result = this.
|
|
3077
|
-
result = imul(result, 31) + getStringHashCode(this.r1t_1) | 0;
|
|
3105
|
+
var result = this.r1t_1.hashCode();
|
|
3078
3106
|
result = imul(result, 31) + getStringHashCode(this.s1t_1) | 0;
|
|
3107
|
+
result = imul(result, 31) + getStringHashCode(this.t1t_1) | 0;
|
|
3079
3108
|
return result;
|
|
3080
3109
|
};
|
|
3081
3110
|
protoOf(PlayerConnectionDto).equals = function (other) {
|
|
@@ -3083,12 +3112,12 @@
|
|
|
3083
3112
|
return true;
|
|
3084
3113
|
if (!(other instanceof PlayerConnectionDto))
|
|
3085
3114
|
return false;
|
|
3086
|
-
if (!this.
|
|
3087
|
-
return false;
|
|
3088
|
-
if (!(this.r1t_1 === other.r1t_1))
|
|
3115
|
+
if (!this.r1t_1.equals(other.r1t_1))
|
|
3089
3116
|
return false;
|
|
3090
3117
|
if (!(this.s1t_1 === other.s1t_1))
|
|
3091
3118
|
return false;
|
|
3119
|
+
if (!(this.t1t_1 === other.t1t_1))
|
|
3120
|
+
return false;
|
|
3092
3121
|
return true;
|
|
3093
3122
|
};
|
|
3094
3123
|
function PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl() {
|
|
@@ -3101,7 +3130,7 @@
|
|
|
3101
3130
|
// Inline function 'kotlin.arrayOf' call
|
|
3102
3131
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3103
3132
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3104
|
-
tmp.
|
|
3133
|
+
tmp.c1u_1 = [null, null, null, lazy(tmp_0, PlayerStateDto$Companion$$childSerializers$_anonymous__izgokl), null, null, null];
|
|
3105
3134
|
}
|
|
3106
3135
|
var Companion_instance_17;
|
|
3107
3136
|
function Companion_getInstance_20() {
|
|
@@ -3119,38 +3148,38 @@
|
|
|
3119
3148
|
tmp0_serialDesc.av('ready', true);
|
|
3120
3149
|
tmp0_serialDesc.av('tag', true);
|
|
3121
3150
|
tmp0_serialDesc.av('connection', true);
|
|
3122
|
-
this.
|
|
3151
|
+
this.d1u_1 = tmp0_serialDesc;
|
|
3123
3152
|
}
|
|
3124
|
-
protoOf($serializer_8).
|
|
3125
|
-
var tmp0_desc = this.
|
|
3153
|
+
protoOf($serializer_8).e1u = function (encoder, value) {
|
|
3154
|
+
var tmp0_desc = this.d1u_1;
|
|
3126
3155
|
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.
|
|
3156
|
+
var tmp2_cached = Companion_getInstance_20().c1u_1;
|
|
3157
|
+
if (tmp1_output.hp(tmp0_desc, 0) ? true : !(value.k1t_1 == null)) {
|
|
3158
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.k1t_1);
|
|
3130
3159
|
}
|
|
3131
|
-
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.
|
|
3132
|
-
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
3160
|
+
if (tmp1_output.hp(tmp0_desc, 1) ? true : !(value.l1t_1 == null)) {
|
|
3161
|
+
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.l1t_1);
|
|
3133
3162
|
}
|
|
3134
|
-
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.
|
|
3135
|
-
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
3163
|
+
if (tmp1_output.hp(tmp0_desc, 2) ? true : !(value.m1t_1 == null)) {
|
|
3164
|
+
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.m1t_1);
|
|
3136
3165
|
}
|
|
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.
|
|
3166
|
+
tmp1_output.bp(tmp0_desc, 3, tmp2_cached[3].v1(), value.n1t_1);
|
|
3167
|
+
if (tmp1_output.hp(tmp0_desc, 4) ? true : !(value.o1t_1 == null)) {
|
|
3168
|
+
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.o1t_1);
|
|
3140
3169
|
}
|
|
3141
|
-
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.
|
|
3142
|
-
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
3170
|
+
if (tmp1_output.hp(tmp0_desc, 5) ? true : !(value.p1t_1 == null)) {
|
|
3171
|
+
tmp1_output.dp(tmp0_desc, 5, StringSerializer_getInstance(), value.p1t_1);
|
|
3143
3172
|
}
|
|
3144
|
-
if (tmp1_output.hp(tmp0_desc, 6) ? true : !(value.
|
|
3145
|
-
tmp1_output.dp(tmp0_desc, 6, $serializer_getInstance_7(), value.
|
|
3173
|
+
if (tmp1_output.hp(tmp0_desc, 6) ? true : !(value.q1t_1 == null)) {
|
|
3174
|
+
tmp1_output.dp(tmp0_desc, 6, $serializer_getInstance_7(), value.q1t_1);
|
|
3146
3175
|
}
|
|
3147
3176
|
tmp1_output.ln(tmp0_desc);
|
|
3148
3177
|
};
|
|
3149
3178
|
protoOf($serializer_8).ck = function (encoder, value) {
|
|
3150
|
-
return this.
|
|
3179
|
+
return this.e1u(encoder, value instanceof PlayerStateDto ? value : THROW_CCE());
|
|
3151
3180
|
};
|
|
3152
3181
|
protoOf($serializer_8).dk = function (decoder) {
|
|
3153
|
-
var tmp0_desc = this.
|
|
3182
|
+
var tmp0_desc = this.d1u_1;
|
|
3154
3183
|
var tmp1_flag = true;
|
|
3155
3184
|
var tmp2_index = 0;
|
|
3156
3185
|
var tmp3_bitMask0 = 0;
|
|
@@ -3162,7 +3191,7 @@
|
|
|
3162
3191
|
var tmp9_local5 = null;
|
|
3163
3192
|
var tmp10_local6 = null;
|
|
3164
3193
|
var tmp11_input = decoder.kn(tmp0_desc);
|
|
3165
|
-
var tmp12_cached = Companion_getInstance_20().
|
|
3194
|
+
var tmp12_cached = Companion_getInstance_20().c1u_1;
|
|
3166
3195
|
if (tmp11_input.ao()) {
|
|
3167
3196
|
tmp4_local0 = tmp11_input.yn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3168
3197
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3221,10 +3250,10 @@
|
|
|
3221
3250
|
return PlayerStateDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, null);
|
|
3222
3251
|
};
|
|
3223
3252
|
protoOf($serializer_8).bk = function () {
|
|
3224
|
-
return this.
|
|
3253
|
+
return this.d1u_1;
|
|
3225
3254
|
};
|
|
3226
3255
|
protoOf($serializer_8).rv = function () {
|
|
3227
|
-
var tmp0_cached = Companion_getInstance_20().
|
|
3256
|
+
var tmp0_cached = Companion_getInstance_20().c1u_1;
|
|
3228
3257
|
// Inline function 'kotlin.arrayOf' call
|
|
3229
3258
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3230
3259
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3238,33 +3267,33 @@
|
|
|
3238
3267
|
}
|
|
3239
3268
|
function PlayerStateDto_init_$Init$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker, $this) {
|
|
3240
3269
|
if (!(8 === (8 & seen0))) {
|
|
3241
|
-
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().
|
|
3270
|
+
throwMissingFieldException(seen0, 8, $serializer_getInstance_8().d1u_1);
|
|
3242
3271
|
}
|
|
3243
3272
|
if (0 === (seen0 & 1))
|
|
3244
|
-
$this.
|
|
3273
|
+
$this.k1t_1 = null;
|
|
3245
3274
|
else
|
|
3246
|
-
$this.
|
|
3275
|
+
$this.k1t_1 = startFrom;
|
|
3247
3276
|
if (0 === (seen0 & 2))
|
|
3248
|
-
$this.
|
|
3277
|
+
$this.l1t_1 = null;
|
|
3249
3278
|
else
|
|
3250
|
-
$this.
|
|
3279
|
+
$this.l1t_1 = playerTurnTimeout;
|
|
3251
3280
|
if (0 === (seen0 & 4))
|
|
3252
|
-
$this.
|
|
3281
|
+
$this.m1t_1 = null;
|
|
3253
3282
|
else
|
|
3254
|
-
$this.
|
|
3255
|
-
$this.
|
|
3283
|
+
$this.m1t_1 = waitPlayerUntilTime;
|
|
3284
|
+
$this.n1t_1 = state;
|
|
3256
3285
|
if (0 === (seen0 & 16))
|
|
3257
|
-
$this.
|
|
3286
|
+
$this.o1t_1 = null;
|
|
3258
3287
|
else
|
|
3259
|
-
$this.
|
|
3288
|
+
$this.o1t_1 = ready;
|
|
3260
3289
|
if (0 === (seen0 & 32))
|
|
3261
|
-
$this.
|
|
3290
|
+
$this.p1t_1 = null;
|
|
3262
3291
|
else
|
|
3263
|
-
$this.
|
|
3292
|
+
$this.p1t_1 = tag;
|
|
3264
3293
|
if (0 === (seen0 & 64))
|
|
3265
|
-
$this.
|
|
3294
|
+
$this.q1t_1 = null;
|
|
3266
3295
|
else
|
|
3267
|
-
$this.
|
|
3296
|
+
$this.q1t_1 = connection;
|
|
3268
3297
|
return $this;
|
|
3269
3298
|
}
|
|
3270
3299
|
function PlayerStateDto_init_$Create$(seen0, startFrom, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, serializationConstructorMarker) {
|
|
@@ -3278,25 +3307,25 @@
|
|
|
3278
3307
|
ready = ready === VOID ? null : ready;
|
|
3279
3308
|
tag = tag === VOID ? null : tag;
|
|
3280
3309
|
connection = connection === VOID ? null : connection;
|
|
3281
|
-
this.
|
|
3282
|
-
this.
|
|
3283
|
-
this.
|
|
3284
|
-
this.
|
|
3285
|
-
this.
|
|
3286
|
-
this.
|
|
3287
|
-
this.
|
|
3310
|
+
this.k1t_1 = startFrom;
|
|
3311
|
+
this.l1t_1 = playerTurnTimeout;
|
|
3312
|
+
this.m1t_1 = waitPlayerUntilTime;
|
|
3313
|
+
this.n1t_1 = state;
|
|
3314
|
+
this.o1t_1 = ready;
|
|
3315
|
+
this.p1t_1 = tag;
|
|
3316
|
+
this.q1t_1 = connection;
|
|
3288
3317
|
}
|
|
3289
3318
|
protoOf(PlayerStateDto).toString = function () {
|
|
3290
|
-
return 'PlayerStateDto(startFrom=' + this.
|
|
3319
|
+
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
3320
|
};
|
|
3292
3321
|
protoOf(PlayerStateDto).hashCode = function () {
|
|
3293
|
-
var result = this.
|
|
3294
|
-
result = imul(result, 31) + (this.k1t_1 == null ? 0 : getStringHashCode(this.k1t_1)) | 0;
|
|
3322
|
+
var result = this.k1t_1 == null ? 0 : getStringHashCode(this.k1t_1);
|
|
3295
3323
|
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
|
|
3324
|
+
result = imul(result, 31) + (this.m1t_1 == null ? 0 : getStringHashCode(this.m1t_1)) | 0;
|
|
3325
|
+
result = imul(result, 31) + this.n1t_1.hashCode() | 0;
|
|
3326
|
+
result = imul(result, 31) + (this.o1t_1 == null ? 0 : getBooleanHashCode(this.o1t_1)) | 0;
|
|
3327
|
+
result = imul(result, 31) + (this.p1t_1 == null ? 0 : getStringHashCode(this.p1t_1)) | 0;
|
|
3328
|
+
result = imul(result, 31) + (this.q1t_1 == null ? 0 : this.q1t_1.hashCode()) | 0;
|
|
3300
3329
|
return result;
|
|
3301
3330
|
};
|
|
3302
3331
|
protoOf(PlayerStateDto).equals = function (other) {
|
|
@@ -3304,19 +3333,19 @@
|
|
|
3304
3333
|
return true;
|
|
3305
3334
|
if (!(other instanceof PlayerStateDto))
|
|
3306
3335
|
return false;
|
|
3307
|
-
if (!(this.j1t_1 == other.j1t_1))
|
|
3308
|
-
return false;
|
|
3309
3336
|
if (!(this.k1t_1 == other.k1t_1))
|
|
3310
3337
|
return false;
|
|
3311
3338
|
if (!(this.l1t_1 == other.l1t_1))
|
|
3312
3339
|
return false;
|
|
3313
|
-
if (!this.m1t_1
|
|
3340
|
+
if (!(this.m1t_1 == other.m1t_1))
|
|
3314
3341
|
return false;
|
|
3315
|
-
if (!
|
|
3342
|
+
if (!this.n1t_1.equals(other.n1t_1))
|
|
3316
3343
|
return false;
|
|
3317
3344
|
if (!(this.o1t_1 == other.o1t_1))
|
|
3318
3345
|
return false;
|
|
3319
|
-
if (!
|
|
3346
|
+
if (!(this.p1t_1 == other.p1t_1))
|
|
3347
|
+
return false;
|
|
3348
|
+
if (!equals(this.q1t_1, other.q1t_1))
|
|
3320
3349
|
return false;
|
|
3321
3350
|
return true;
|
|
3322
3351
|
};
|
|
@@ -3340,7 +3369,7 @@
|
|
|
3340
3369
|
// Inline function 'kotlin.arrayOf' call
|
|
3341
3370
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3342
3371
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3343
|
-
tmp.
|
|
3372
|
+
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
3373
|
}
|
|
3345
3374
|
var Companion_instance_18;
|
|
3346
3375
|
function Companion_getInstance_21() {
|
|
@@ -3377,45 +3406,45 @@
|
|
|
3377
3406
|
tmp0_serialDesc.av('fineIfNoBribes', false);
|
|
3378
3407
|
tmp0_serialDesc.av('enableFineAfterThirdByte', false);
|
|
3379
3408
|
tmp0_serialDesc.av('fineAfterThirdFailedContract', false);
|
|
3380
|
-
this.
|
|
3409
|
+
this.g1u_1 = tmp0_serialDesc;
|
|
3381
3410
|
}
|
|
3382
|
-
protoOf($serializer_9).
|
|
3383
|
-
var tmp0_desc = this.
|
|
3411
|
+
protoOf($serializer_9).h1u = function (encoder, value) {
|
|
3412
|
+
var tmp0_desc = this.g1u_1;
|
|
3384
3413
|
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.
|
|
3414
|
+
var tmp2_cached = Companion_getInstance_21().f1u_1;
|
|
3415
|
+
tmp1_output.dp(tmp0_desc, 0, StringSerializer_getInstance(), value.i1u_1);
|
|
3416
|
+
tmp1_output.dp(tmp0_desc, 1, BooleanSerializer_getInstance(), value.j1u_1);
|
|
3417
|
+
tmp1_output.dp(tmp0_desc, 2, BooleanSerializer_getInstance(), value.k1u_1);
|
|
3418
|
+
tmp1_output.dp(tmp0_desc, 3, BooleanSerializer_getInstance(), value.l1u_1);
|
|
3419
|
+
tmp1_output.dp(tmp0_desc, 4, BooleanSerializer_getInstance(), value.m1u_1);
|
|
3420
|
+
tmp1_output.dp(tmp0_desc, 5, IntSerializer_getInstance(), value.n1u_1);
|
|
3421
|
+
tmp1_output.dp(tmp0_desc, 6, IntSerializer_getInstance(), value.o1u_1);
|
|
3422
|
+
tmp1_output.dp(tmp0_desc, 7, BooleanSerializer_getInstance(), value.p1u_1);
|
|
3423
|
+
tmp1_output.dp(tmp0_desc, 8, tmp2_cached[8].v1(), value.q1u_1);
|
|
3424
|
+
tmp1_output.dp(tmp0_desc, 9, tmp2_cached[9].v1(), value.r1u_1);
|
|
3425
|
+
tmp1_output.dp(tmp0_desc, 10, BooleanSerializer_getInstance(), value.s1u_1);
|
|
3426
|
+
tmp1_output.dp(tmp0_desc, 11, StringSerializer_getInstance(), value.t1u_1);
|
|
3427
|
+
tmp1_output.dp(tmp0_desc, 12, StringSerializer_getInstance(), value.u1u_1);
|
|
3428
|
+
tmp1_output.dp(tmp0_desc, 13, tmp2_cached[13].v1(), value.v1u_1);
|
|
3429
|
+
tmp1_output.dp(tmp0_desc, 14, BooleanSerializer_getInstance(), value.w1u_1);
|
|
3430
|
+
tmp1_output.dp(tmp0_desc, 15, BooleanSerializer_getInstance(), value.x1u_1);
|
|
3431
|
+
tmp1_output.dp(tmp0_desc, 16, BooleanSerializer_getInstance(), value.y1u_1);
|
|
3432
|
+
tmp1_output.dp(tmp0_desc, 17, BooleanSerializer_getInstance(), value.z1u_1);
|
|
3433
|
+
tmp1_output.dp(tmp0_desc, 18, BooleanSerializer_getInstance(), value.a1v_1);
|
|
3434
|
+
tmp1_output.dp(tmp0_desc, 19, BooleanSerializer_getInstance(), value.b1v_1);
|
|
3435
|
+
tmp1_output.dp(tmp0_desc, 20, BooleanSerializer_getInstance(), value.c1v_1);
|
|
3436
|
+
tmp1_output.zo(tmp0_desc, 21, value.d1v_1);
|
|
3437
|
+
tmp1_output.dp(tmp0_desc, 22, BooleanSerializer_getInstance(), value.e1v_1);
|
|
3438
|
+
tmp1_output.dp(tmp0_desc, 23, IntSerializer_getInstance(), value.f1v_1);
|
|
3439
|
+
tmp1_output.dp(tmp0_desc, 24, BooleanSerializer_getInstance(), value.g1v_1);
|
|
3440
|
+
tmp1_output.dp(tmp0_desc, 25, IntSerializer_getInstance(), value.h1v_1);
|
|
3412
3441
|
tmp1_output.ln(tmp0_desc);
|
|
3413
3442
|
};
|
|
3414
3443
|
protoOf($serializer_9).ck = function (encoder, value) {
|
|
3415
|
-
return this.
|
|
3444
|
+
return this.h1u(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
3416
3445
|
};
|
|
3417
3446
|
protoOf($serializer_9).dk = function (decoder) {
|
|
3418
|
-
var tmp0_desc = this.
|
|
3447
|
+
var tmp0_desc = this.g1u_1;
|
|
3419
3448
|
var tmp1_flag = true;
|
|
3420
3449
|
var tmp2_index = 0;
|
|
3421
3450
|
var tmp3_bitMask0 = 0;
|
|
@@ -3446,7 +3475,7 @@
|
|
|
3446
3475
|
var tmp28_local24 = null;
|
|
3447
3476
|
var tmp29_local25 = null;
|
|
3448
3477
|
var tmp30_input = decoder.kn(tmp0_desc);
|
|
3449
|
-
var tmp31_cached = Companion_getInstance_21().
|
|
3478
|
+
var tmp31_cached = Companion_getInstance_21().f1u_1;
|
|
3450
3479
|
if (tmp30_input.ao()) {
|
|
3451
3480
|
tmp4_local0 = tmp30_input.yn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
3452
3481
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3619,10 +3648,10 @@
|
|
|
3619
3648
|
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
3649
|
};
|
|
3621
3650
|
protoOf($serializer_9).bk = function () {
|
|
3622
|
-
return this.
|
|
3651
|
+
return this.g1u_1;
|
|
3623
3652
|
};
|
|
3624
3653
|
protoOf($serializer_9).rv = function () {
|
|
3625
|
-
var tmp0_cached = Companion_getInstance_21().
|
|
3654
|
+
var tmp0_cached = Companion_getInstance_21().f1u_1;
|
|
3626
3655
|
// Inline function 'kotlin.arrayOf' call
|
|
3627
3656
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3628
3657
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3636,34 +3665,34 @@
|
|
|
3636
3665
|
}
|
|
3637
3666
|
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
3667
|
if (!(67108863 === (67108863 & seen0))) {
|
|
3639
|
-
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().
|
|
3668
|
+
throwMissingFieldException(seen0, 67108863, $serializer_getInstance_9().g1u_1);
|
|
3640
3669
|
}
|
|
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.
|
|
3670
|
+
$this.i1u_1 = name;
|
|
3671
|
+
$this.j1u_1 = playerWhoChooseSuitGoFirst;
|
|
3672
|
+
$this.k1u_1 = winnerShuffleCards;
|
|
3673
|
+
$this.l1u_1 = playWithoutLiabilities;
|
|
3674
|
+
$this.m1u_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3675
|
+
$this.n1u_1 = dealerInitialCardsCount;
|
|
3676
|
+
$this.o1u_1 = dealerFinalCardsCount;
|
|
3677
|
+
$this.p1u_1 = dealerCounterClockwise;
|
|
3678
|
+
$this.q1u_1 = contractTypes;
|
|
3679
|
+
$this.r1u_1 = bidTypes;
|
|
3680
|
+
$this.s1u_1 = needToPutHigherTrump;
|
|
3681
|
+
$this.t1u_1 = trumpCardStepMode;
|
|
3682
|
+
$this.u1u_1 = trumpCardStepPartnerMode;
|
|
3683
|
+
$this.v1u_1 = combinationsWithFirstCard;
|
|
3684
|
+
$this.w1u_1 = protectBella;
|
|
3685
|
+
$this.x1u_1 = oneTryToProtectBella;
|
|
3686
|
+
$this.y1u_1 = enableFourSevensCombination;
|
|
3687
|
+
$this.z1u_1 = enableTrumpSevenCombination;
|
|
3688
|
+
$this.a1v_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3689
|
+
$this.b1v_1 = checkTrumpCombination;
|
|
3690
|
+
$this.c1v_1 = checkOnlyTrumpDebertz;
|
|
3691
|
+
$this.d1v_1 = pointsDistributeMode;
|
|
3692
|
+
$this.e1v_1 = enableFineIfNoBribes;
|
|
3693
|
+
$this.f1v_1 = fineIfNoBribes;
|
|
3694
|
+
$this.g1v_1 = enableFineAfterThirdByte;
|
|
3695
|
+
$this.h1v_1 = fineAfterThirdFailedContract;
|
|
3667
3696
|
return $this;
|
|
3668
3697
|
}
|
|
3669
3698
|
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 +3700,63 @@
|
|
|
3671
3700
|
}
|
|
3672
3701
|
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
3702
|
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.
|
|
3703
|
+
this.i1u_1 = name;
|
|
3704
|
+
this.j1u_1 = playerWhoChooseSuitGoFirst;
|
|
3705
|
+
this.k1u_1 = winnerShuffleCards;
|
|
3706
|
+
this.l1u_1 = playWithoutLiabilities;
|
|
3707
|
+
this.m1u_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3708
|
+
this.n1u_1 = dealerInitialCardsCount;
|
|
3709
|
+
this.o1u_1 = dealerFinalCardsCount;
|
|
3710
|
+
this.p1u_1 = dealerCounterClockwise;
|
|
3711
|
+
this.q1u_1 = contractTypes;
|
|
3712
|
+
this.r1u_1 = bidTypes;
|
|
3713
|
+
this.s1u_1 = needToPutHigherTrump;
|
|
3714
|
+
this.t1u_1 = trumpCardStepMode;
|
|
3715
|
+
this.u1u_1 = trumpCardStepPartnerMode;
|
|
3716
|
+
this.v1u_1 = combinationsWithFirstCard;
|
|
3717
|
+
this.w1u_1 = protectBella;
|
|
3718
|
+
this.x1u_1 = oneTryToProtectBella;
|
|
3719
|
+
this.y1u_1 = enableFourSevensCombination;
|
|
3720
|
+
this.z1u_1 = enableTrumpSevenCombination;
|
|
3721
|
+
this.a1v_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3722
|
+
this.b1v_1 = checkTrumpCombination;
|
|
3723
|
+
this.c1v_1 = checkOnlyTrumpDebertz;
|
|
3724
|
+
this.d1v_1 = pointsDistributeMode;
|
|
3725
|
+
this.e1v_1 = enableFineIfNoBribes;
|
|
3726
|
+
this.f1v_1 = fineIfNoBribes;
|
|
3727
|
+
this.g1v_1 = enableFineAfterThirdByte;
|
|
3728
|
+
this.h1v_1 = fineAfterThirdFailedContract;
|
|
3700
3729
|
}
|
|
3701
3730
|
protoOf(RulesDto).toString = function () {
|
|
3702
|
-
return 'RulesDto(name=' + this.
|
|
3731
|
+
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
3732
|
};
|
|
3704
3733
|
protoOf(RulesDto).hashCode = function () {
|
|
3705
|
-
var result = this.
|
|
3706
|
-
result = imul(result, 31) + (this.i1u_1 == null ? 0 : getBooleanHashCode(this.i1u_1)) | 0;
|
|
3734
|
+
var result = this.i1u_1 == null ? 0 : getStringHashCode(this.i1u_1);
|
|
3707
3735
|
result = imul(result, 31) + (this.j1u_1 == null ? 0 : getBooleanHashCode(this.j1u_1)) | 0;
|
|
3708
3736
|
result = imul(result, 31) + (this.k1u_1 == null ? 0 : getBooleanHashCode(this.k1u_1)) | 0;
|
|
3709
3737
|
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;
|
|
3738
|
+
result = imul(result, 31) + (this.m1u_1 == null ? 0 : getBooleanHashCode(this.m1u_1)) | 0;
|
|
3711
3739
|
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 :
|
|
3740
|
+
result = imul(result, 31) + (this.o1u_1 == null ? 0 : this.o1u_1) | 0;
|
|
3741
|
+
result = imul(result, 31) + (this.p1u_1 == null ? 0 : getBooleanHashCode(this.p1u_1)) | 0;
|
|
3714
3742
|
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 :
|
|
3743
|
+
result = imul(result, 31) + (this.r1u_1 == null ? 0 : hashCode(this.r1u_1)) | 0;
|
|
3744
|
+
result = imul(result, 31) + (this.s1u_1 == null ? 0 : getBooleanHashCode(this.s1u_1)) | 0;
|
|
3717
3745
|
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 :
|
|
3746
|
+
result = imul(result, 31) + (this.u1u_1 == null ? 0 : getStringHashCode(this.u1u_1)) | 0;
|
|
3747
|
+
result = imul(result, 31) + (this.v1u_1 == null ? 0 : hashCode(this.v1u_1)) | 0;
|
|
3720
3748
|
result = imul(result, 31) + (this.w1u_1 == null ? 0 : getBooleanHashCode(this.w1u_1)) | 0;
|
|
3721
3749
|
result = imul(result, 31) + (this.x1u_1 == null ? 0 : getBooleanHashCode(this.x1u_1)) | 0;
|
|
3722
3750
|
result = imul(result, 31) + (this.y1u_1 == null ? 0 : getBooleanHashCode(this.y1u_1)) | 0;
|
|
3723
3751
|
result = imul(result, 31) + (this.z1u_1 == null ? 0 : getBooleanHashCode(this.z1u_1)) | 0;
|
|
3724
3752
|
result = imul(result, 31) + (this.a1v_1 == null ? 0 : getBooleanHashCode(this.a1v_1)) | 0;
|
|
3725
3753
|
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;
|
|
3754
|
+
result = imul(result, 31) + (this.c1v_1 == null ? 0 : getBooleanHashCode(this.c1v_1)) | 0;
|
|
3755
|
+
result = imul(result, 31) + getStringHashCode(this.d1v_1) | 0;
|
|
3756
|
+
result = imul(result, 31) + (this.e1v_1 == null ? 0 : getBooleanHashCode(this.e1v_1)) | 0;
|
|
3757
|
+
result = imul(result, 31) + (this.f1v_1 == null ? 0 : this.f1v_1) | 0;
|
|
3758
|
+
result = imul(result, 31) + (this.g1v_1 == null ? 0 : getBooleanHashCode(this.g1v_1)) | 0;
|
|
3759
|
+
result = imul(result, 31) + (this.h1v_1 == null ? 0 : this.h1v_1) | 0;
|
|
3731
3760
|
return result;
|
|
3732
3761
|
};
|
|
3733
3762
|
protoOf(RulesDto).equals = function (other) {
|
|
@@ -3735,8 +3764,6 @@
|
|
|
3735
3764
|
return true;
|
|
3736
3765
|
if (!(other instanceof RulesDto))
|
|
3737
3766
|
return false;
|
|
3738
|
-
if (!(this.h1u_1 == other.h1u_1))
|
|
3739
|
-
return false;
|
|
3740
3767
|
if (!(this.i1u_1 == other.i1u_1))
|
|
3741
3768
|
return false;
|
|
3742
3769
|
if (!(this.j1u_1 == other.j1u_1))
|
|
@@ -3751,19 +3778,19 @@
|
|
|
3751
3778
|
return false;
|
|
3752
3779
|
if (!(this.o1u_1 == other.o1u_1))
|
|
3753
3780
|
return false;
|
|
3754
|
-
if (!
|
|
3781
|
+
if (!(this.p1u_1 == other.p1u_1))
|
|
3755
3782
|
return false;
|
|
3756
3783
|
if (!equals(this.q1u_1, other.q1u_1))
|
|
3757
3784
|
return false;
|
|
3758
|
-
if (!(this.r1u_1
|
|
3785
|
+
if (!equals(this.r1u_1, other.r1u_1))
|
|
3759
3786
|
return false;
|
|
3760
3787
|
if (!(this.s1u_1 == other.s1u_1))
|
|
3761
3788
|
return false;
|
|
3762
3789
|
if (!(this.t1u_1 == other.t1u_1))
|
|
3763
3790
|
return false;
|
|
3764
|
-
if (!
|
|
3791
|
+
if (!(this.u1u_1 == other.u1u_1))
|
|
3765
3792
|
return false;
|
|
3766
|
-
if (!(this.v1u_1
|
|
3793
|
+
if (!equals(this.v1u_1, other.v1u_1))
|
|
3767
3794
|
return false;
|
|
3768
3795
|
if (!(this.w1u_1 == other.w1u_1))
|
|
3769
3796
|
return false;
|
|
@@ -3777,9 +3804,9 @@
|
|
|
3777
3804
|
return false;
|
|
3778
3805
|
if (!(this.b1v_1 == other.b1v_1))
|
|
3779
3806
|
return false;
|
|
3780
|
-
if (!(this.c1v_1
|
|
3807
|
+
if (!(this.c1v_1 == other.c1v_1))
|
|
3781
3808
|
return false;
|
|
3782
|
-
if (!(this.d1v_1
|
|
3809
|
+
if (!(this.d1v_1 === other.d1v_1))
|
|
3783
3810
|
return false;
|
|
3784
3811
|
if (!(this.e1v_1 == other.e1v_1))
|
|
3785
3812
|
return false;
|
|
@@ -3787,6 +3814,8 @@
|
|
|
3787
3814
|
return false;
|
|
3788
3815
|
if (!(this.g1v_1 == other.g1v_1))
|
|
3789
3816
|
return false;
|
|
3817
|
+
if (!(this.h1v_1 == other.h1v_1))
|
|
3818
|
+
return false;
|
|
3790
3819
|
return true;
|
|
3791
3820
|
};
|
|
3792
3821
|
function BufferedAction() {
|
|
@@ -3795,6 +3824,8 @@
|
|
|
3795
3824
|
}
|
|
3796
3825
|
function ReleaseBufferTriggerAction() {
|
|
3797
3826
|
}
|
|
3827
|
+
function InterceptableAction() {
|
|
3828
|
+
}
|
|
3798
3829
|
function NotValidateIfGameFinished() {
|
|
3799
3830
|
}
|
|
3800
3831
|
function NotValidateIfGameFinishing() {
|
|
@@ -3935,7 +3966,7 @@
|
|
|
3935
3966
|
return tmp;
|
|
3936
3967
|
}
|
|
3937
3968
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
3938
|
-
return $this.
|
|
3969
|
+
return $this.s1v_1.v1();
|
|
3939
3970
|
}
|
|
3940
3971
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
3941
3972
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
|
|
@@ -3975,7 +4006,7 @@
|
|
|
3975
4006
|
Companion_instance_19 = this;
|
|
3976
4007
|
var tmp = this;
|
|
3977
4008
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
3978
|
-
tmp.
|
|
4009
|
+
tmp.s1v_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
3979
4010
|
}
|
|
3980
4011
|
protoOf(Companion_19).z17 = function () {
|
|
3981
4012
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -4038,7 +4069,7 @@
|
|
|
4038
4069
|
// Inline function 'kotlin.arrayOf' call
|
|
4039
4070
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
4040
4071
|
// Inline function 'kotlin.js.asDynamic' call
|
|
4041
|
-
tmp.
|
|
4072
|
+
tmp.y1v_1 = [lazy(tmp_0, LoggerOutputDataDto$Companion$$childSerializers$_anonymous__j015dy), null, null, null, null];
|
|
4042
4073
|
}
|
|
4043
4074
|
protoOf(Companion_20).z17 = function () {
|
|
4044
4075
|
return $serializer_getInstance_10();
|
|
@@ -4057,12 +4088,12 @@
|
|
|
4057
4088
|
tmp0_serialDesc.av('tag', false);
|
|
4058
4089
|
tmp0_serialDesc.av('message', false);
|
|
4059
4090
|
tmp0_serialDesc.av('stackTrace', false);
|
|
4060
|
-
this.
|
|
4091
|
+
this.z1v_1 = tmp0_serialDesc;
|
|
4061
4092
|
}
|
|
4062
|
-
protoOf($serializer_10).
|
|
4063
|
-
var tmp0_desc = this.
|
|
4093
|
+
protoOf($serializer_10).a1w = function (encoder, value) {
|
|
4094
|
+
var tmp0_desc = this.z1v_1;
|
|
4064
4095
|
var tmp1_output = encoder.kn(tmp0_desc);
|
|
4065
|
-
var tmp2_cached = Companion_getInstance_23().
|
|
4096
|
+
var tmp2_cached = Companion_getInstance_23().y1v_1;
|
|
4066
4097
|
tmp1_output.bp(tmp0_desc, 0, tmp2_cached[0].v1(), value.type);
|
|
4067
4098
|
tmp1_output.dp(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
4068
4099
|
tmp1_output.dp(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -4071,10 +4102,10 @@
|
|
|
4071
4102
|
tmp1_output.ln(tmp0_desc);
|
|
4072
4103
|
};
|
|
4073
4104
|
protoOf($serializer_10).ck = function (encoder, value) {
|
|
4074
|
-
return this.
|
|
4105
|
+
return this.a1w(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
4075
4106
|
};
|
|
4076
4107
|
protoOf($serializer_10).dk = function (decoder) {
|
|
4077
|
-
var tmp0_desc = this.
|
|
4108
|
+
var tmp0_desc = this.z1v_1;
|
|
4078
4109
|
var tmp1_flag = true;
|
|
4079
4110
|
var tmp2_index = 0;
|
|
4080
4111
|
var tmp3_bitMask0 = 0;
|
|
@@ -4084,7 +4115,7 @@
|
|
|
4084
4115
|
var tmp7_local3 = null;
|
|
4085
4116
|
var tmp8_local4 = null;
|
|
4086
4117
|
var tmp9_input = decoder.kn(tmp0_desc);
|
|
4087
|
-
var tmp10_cached = Companion_getInstance_23().
|
|
4118
|
+
var tmp10_cached = Companion_getInstance_23().y1v_1;
|
|
4088
4119
|
if (tmp9_input.ao()) {
|
|
4089
4120
|
tmp4_local0 = tmp9_input.wn(tmp0_desc, 0, tmp10_cached[0].v1(), tmp4_local0);
|
|
4090
4121
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -4131,13 +4162,13 @@
|
|
|
4131
4162
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
4132
4163
|
};
|
|
4133
4164
|
protoOf($serializer_10).bk = function () {
|
|
4134
|
-
return this.
|
|
4165
|
+
return this.z1v_1;
|
|
4135
4166
|
};
|
|
4136
4167
|
protoOf($serializer_10).rv = function () {
|
|
4137
4168
|
// Inline function 'kotlin.arrayOf' call
|
|
4138
4169
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
4139
4170
|
// Inline function 'kotlin.js.asDynamic' call
|
|
4140
|
-
return [Companion_getInstance_23().
|
|
4171
|
+
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
4172
|
};
|
|
4142
4173
|
var $serializer_instance_10;
|
|
4143
4174
|
function $serializer_getInstance_10() {
|
|
@@ -4147,7 +4178,7 @@
|
|
|
4147
4178
|
}
|
|
4148
4179
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
4149
4180
|
if (!(31 === (31 & seen0))) {
|
|
4150
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().
|
|
4181
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_10().z1v_1);
|
|
4151
4182
|
}
|
|
4152
4183
|
$this.type = type;
|
|
4153
4184
|
$this.key = key;
|
|
@@ -4167,7 +4198,7 @@
|
|
|
4167
4198
|
this.message = message;
|
|
4168
4199
|
this.stackTrace = stackTrace;
|
|
4169
4200
|
}
|
|
4170
|
-
protoOf(LoggerOutputDataDto).
|
|
4201
|
+
protoOf(LoggerOutputDataDto).b1w = function () {
|
|
4171
4202
|
return this.type;
|
|
4172
4203
|
};
|
|
4173
4204
|
protoOf(LoggerOutputDataDto).u1 = function () {
|
|
@@ -4179,7 +4210,7 @@
|
|
|
4179
4210
|
protoOf(LoggerOutputDataDto).e = function () {
|
|
4180
4211
|
return this.message;
|
|
4181
4212
|
};
|
|
4182
|
-
protoOf(LoggerOutputDataDto).
|
|
4213
|
+
protoOf(LoggerOutputDataDto).c1w = function () {
|
|
4183
4214
|
return this.stackTrace;
|
|
4184
4215
|
};
|
|
4185
4216
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -4236,7 +4267,7 @@
|
|
|
4236
4267
|
protoOf(LoggerOutputDataDto).j1q = function () {
|
|
4237
4268
|
return this.stackTrace;
|
|
4238
4269
|
};
|
|
4239
|
-
protoOf(LoggerOutputDataDto).
|
|
4270
|
+
protoOf(LoggerOutputDataDto).d1w = function (type, key, tag, message, stackTrace) {
|
|
4240
4271
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
4241
4272
|
};
|
|
4242
4273
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -4245,7 +4276,7 @@
|
|
|
4245
4276
|
tag = tag === VOID ? this.tag : tag;
|
|
4246
4277
|
message = message === VOID ? this.message : message;
|
|
4247
4278
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
4248
|
-
return $super === VOID ? this.
|
|
4279
|
+
return $super === VOID ? this.d1w(type, key, tag, message, stackTrace) : $super.d1w.call(this, type, key, tag, message, stackTrace);
|
|
4249
4280
|
};
|
|
4250
4281
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
4251
4282
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -4335,6 +4366,8 @@
|
|
|
4335
4366
|
defineProp(protoOf(PlayerConnectionState), 'canReconnect', protoOf(PlayerConnectionState).x1r);
|
|
4336
4367
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).i2);
|
|
4337
4368
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).j2);
|
|
4369
|
+
defineProp(protoOf(Team), 'first', protoOf(Team).g1s);
|
|
4370
|
+
defineProp(protoOf(Team), 'second', protoOf(Team).c1d);
|
|
4338
4371
|
protoOf($serializer_1).sv = typeParametersSerializers;
|
|
4339
4372
|
protoOf($serializer_2).sv = typeParametersSerializers;
|
|
4340
4373
|
protoOf($serializer_3).sv = typeParametersSerializers;
|
|
@@ -4436,6 +4469,12 @@
|
|
|
4436
4469
|
defineProp($com$logic$data$models$player.PlayerConnectionState, 'Companion', Companion_getInstance_9, VOID, true);
|
|
4437
4470
|
var $com = _.com || (_.com = {});
|
|
4438
4471
|
var $com$logic = $com.logic || ($com.logic = {});
|
|
4472
|
+
var $com$logic$data = $com$logic.data || ($com$logic.data = {});
|
|
4473
|
+
var $com$logic$data$models = $com$logic$data.models || ($com$logic$data.models = {});
|
|
4474
|
+
var $com$logic$data$models$player = $com$logic$data$models.player || ($com$logic$data$models.player = {});
|
|
4475
|
+
$com$logic$data$models$player.Team = Team;
|
|
4476
|
+
var $com = _.com || (_.com = {});
|
|
4477
|
+
var $com$logic = $com.logic || ($com.logic = {});
|
|
4439
4478
|
var $com$logic$redux = $com$logic.redux || ($com$logic.redux = {});
|
|
4440
4479
|
var $com$logic$redux$actions = $com$logic$redux.actions || ($com$logic$redux.actions = {});
|
|
4441
4480
|
var $com = _.com || (_.com = {});
|
|
@@ -4506,30 +4545,35 @@
|
|
|
4506
4545
|
_.$_$.u = NotValidateIfGameFinishing;
|
|
4507
4546
|
_.$_$.v = BufferedAction;
|
|
4508
4547
|
_.$_$.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 =
|
|
4548
|
+
_.$_$.x = ignoreInterception;
|
|
4549
|
+
_.$_$.y = get_isAutoStartTimer;
|
|
4550
|
+
_.$_$.z = manualExpectantHandling;
|
|
4551
|
+
_.$_$.a1 = waitForExpectantAnimation;
|
|
4552
|
+
_.$_$.b1 = InterceptableAction;
|
|
4553
|
+
_.$_$.c1 = ReleaseBufferTriggerAction;
|
|
4554
|
+
_.$_$.d1 = get_actionTag;
|
|
4555
|
+
_.$_$.e1 = Action;
|
|
4556
|
+
_.$_$.f1 = enumToStringSafe;
|
|
4557
|
+
_.$_$.g1 = enumToString;
|
|
4558
|
+
_.$_$.h1 = mapOfObject;
|
|
4559
|
+
_.$_$.i1 = nextToOrNull;
|
|
4560
|
+
_.$_$.j1 = previousToOrNull;
|
|
4561
|
+
_.$_$.k1 = toDomainEnumSafe;
|
|
4562
|
+
_.$_$.l1 = toDomainEnum;
|
|
4563
|
+
_.$_$.m1 = PlayerConnectionState_LEFT_PERMANENTLY_getInstance;
|
|
4564
|
+
_.$_$.n1 = PlayerConnectionState_LIVE_getInstance;
|
|
4565
|
+
_.$_$.o1 = Companion_instance_5;
|
|
4566
|
+
_.$_$.p1 = Companion_getInstance_9;
|
|
4567
|
+
_.$_$.q1 = Companion_instance_8;
|
|
4568
|
+
_.$_$.r1 = Companion_getInstance_10;
|
|
4569
|
+
_.$_$.s1 = $serializer_getInstance_6;
|
|
4570
|
+
_.$_$.t1 = $serializer_getInstance_8;
|
|
4571
|
+
_.$_$.u1 = $serializer_getInstance_9;
|
|
4572
|
+
_.$_$.v1 = ProcessingReasonDto_getInstance;
|
|
4573
|
+
_.$_$.w1 = Companion_getInstance_12;
|
|
4574
|
+
_.$_$.x1 = Companion_getInstance_2;
|
|
4575
|
+
_.$_$.y1 = ProcessingReason_getInstance;
|
|
4576
|
+
_.$_$.z1 = RestartGameReason_getInstance;
|
|
4533
4577
|
//endregion
|
|
4534
4578
|
return _;
|
|
4535
4579
|
}));
|