raspberry_games_engine_helpers 1.8.266 → 1.8.267
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/Logic_Debertz-core.js +530 -487
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.d.ts +3 -2
- package/Logic_Debertz-engine.js +5747 -5747
- package/Logic_Debertz-engine.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
var coerceAtLeast = kotlin_kotlin.$_$.x9;
|
|
87
87
|
var LinkedHashMap_init_$Create$ = kotlin_kotlin.$_$.t;
|
|
88
88
|
var ensureNotNull = kotlin_kotlin.$_$.yc;
|
|
89
|
+
var DoubleSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.p;
|
|
89
90
|
var BooleanSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.o;
|
|
90
91
|
var FloatSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.q;
|
|
91
92
|
var ArrayListSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.t1;
|
|
@@ -196,7 +197,7 @@
|
|
|
196
197
|
tmp = types;
|
|
197
198
|
}
|
|
198
199
|
types = tmp;
|
|
199
|
-
return this.
|
|
200
|
+
return this.q2b(types);
|
|
200
201
|
}
|
|
201
202
|
initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
202
203
|
initMetadataForCompanion(Companion_17);
|
|
@@ -204,7 +205,7 @@
|
|
|
204
205
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_7});
|
|
205
206
|
//endregion
|
|
206
207
|
function GameEngineConfig() {
|
|
207
|
-
this.version = '1.8.
|
|
208
|
+
this.version = '1.8.267';
|
|
208
209
|
}
|
|
209
210
|
protoOf(GameEngineConfig).e25 = function () {
|
|
210
211
|
return this.version;
|
|
@@ -972,15 +973,17 @@
|
|
|
972
973
|
Exception_init_$Init$(message, this);
|
|
973
974
|
captureStack(this, MechanicException);
|
|
974
975
|
}
|
|
975
|
-
function GameUserInfo(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload) {
|
|
976
|
+
function GameUserInfo(playerId, name, avatarUrl, isBot, initialRating, initialLuckyFactor, payload) {
|
|
976
977
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
977
978
|
isBot = isBot === VOID ? false : isBot;
|
|
979
|
+
initialRating = initialRating === VOID ? null : initialRating;
|
|
978
980
|
initialLuckyFactor = initialLuckyFactor === VOID ? null : initialLuckyFactor;
|
|
979
981
|
payload = payload === VOID ? null : payload;
|
|
980
982
|
this.w26_1 = playerId;
|
|
981
983
|
this.name = name;
|
|
982
984
|
this.avatarUrl = avatarUrl;
|
|
983
985
|
this.isBot = isBot;
|
|
986
|
+
this.initialRating = initialRating;
|
|
984
987
|
this.initialLuckyFactor = initialLuckyFactor;
|
|
985
988
|
this.payload = payload;
|
|
986
989
|
}
|
|
@@ -997,9 +1000,12 @@
|
|
|
997
1000
|
return this.isBot;
|
|
998
1001
|
};
|
|
999
1002
|
protoOf(GameUserInfo).z26 = function () {
|
|
1000
|
-
return this.
|
|
1003
|
+
return this.initialRating;
|
|
1001
1004
|
};
|
|
1002
1005
|
protoOf(GameUserInfo).a27 = function () {
|
|
1006
|
+
return this.initialLuckyFactor;
|
|
1007
|
+
};
|
|
1008
|
+
protoOf(GameUserInfo).b27 = function () {
|
|
1003
1009
|
return this.payload;
|
|
1004
1010
|
};
|
|
1005
1011
|
protoOf(GameUserInfo).toString = function () {
|
|
@@ -1039,17 +1045,28 @@
|
|
|
1039
1045
|
}
|
|
1040
1046
|
var tmp_6 = tmp_5;
|
|
1041
1047
|
// Inline function 'kotlin.takeIf' call
|
|
1042
|
-
var this_3 = '
|
|
1048
|
+
var this_3 = 'initialRating=' + this.initialRating;
|
|
1043
1049
|
// Inline function 'kotlin.contracts.contract' call
|
|
1044
1050
|
var tmp_7;
|
|
1045
1051
|
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1046
|
-
if (!(this.
|
|
1052
|
+
if (!(this.initialRating == null)) {
|
|
1047
1053
|
tmp_7 = this_3;
|
|
1048
1054
|
} else {
|
|
1049
1055
|
tmp_7 = null;
|
|
1050
1056
|
}
|
|
1051
|
-
var
|
|
1052
|
-
|
|
1057
|
+
var tmp_8 = tmp_7;
|
|
1058
|
+
// Inline function 'kotlin.takeIf' call
|
|
1059
|
+
var this_4 = 'payload=' + toString(this.payload);
|
|
1060
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1061
|
+
var tmp_9;
|
|
1062
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1063
|
+
if (!(this.payload == null)) {
|
|
1064
|
+
tmp_9 = this_4;
|
|
1065
|
+
} else {
|
|
1066
|
+
tmp_9 = null;
|
|
1067
|
+
}
|
|
1068
|
+
var tmp$ret$9 = tmp_9;
|
|
1069
|
+
return 'GameUserInfo(' + joinToString(listOfNotNull([tmp, tmp_0, tmp_2, tmp_4, tmp_6, tmp_8, tmp$ret$9])) + ')';
|
|
1053
1070
|
};
|
|
1054
1071
|
protoOf(GameUserInfo).zc = function () {
|
|
1055
1072
|
return this.w26_1;
|
|
@@ -1063,29 +1080,34 @@
|
|
|
1063
1080
|
protoOf(GameUserInfo).e1x = function () {
|
|
1064
1081
|
return this.isBot;
|
|
1065
1082
|
};
|
|
1066
|
-
protoOf(GameUserInfo).
|
|
1083
|
+
protoOf(GameUserInfo).c27 = function () {
|
|
1084
|
+
return this.initialRating;
|
|
1085
|
+
};
|
|
1086
|
+
protoOf(GameUserInfo).d27 = function () {
|
|
1067
1087
|
return this.initialLuckyFactor;
|
|
1068
1088
|
};
|
|
1069
|
-
protoOf(GameUserInfo).
|
|
1089
|
+
protoOf(GameUserInfo).e27 = function () {
|
|
1070
1090
|
return this.payload;
|
|
1071
1091
|
};
|
|
1072
|
-
protoOf(GameUserInfo).
|
|
1073
|
-
return new GameUserInfo(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload);
|
|
1092
|
+
protoOf(GameUserInfo).f27 = function (playerId, name, avatarUrl, isBot, initialRating, initialLuckyFactor, payload) {
|
|
1093
|
+
return new GameUserInfo(playerId, name, avatarUrl, isBot, initialRating, initialLuckyFactor, payload);
|
|
1074
1094
|
};
|
|
1075
|
-
protoOf(GameUserInfo).copy = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, payload, $super) {
|
|
1095
|
+
protoOf(GameUserInfo).copy = function (playerId, name, avatarUrl, isBot, initialRating, initialLuckyFactor, payload, $super) {
|
|
1076
1096
|
playerId = playerId === VOID ? this.w26_1 : playerId;
|
|
1077
1097
|
name = name === VOID ? this.name : name;
|
|
1078
1098
|
avatarUrl = avatarUrl === VOID ? this.avatarUrl : avatarUrl;
|
|
1079
1099
|
isBot = isBot === VOID ? this.isBot : isBot;
|
|
1100
|
+
initialRating = initialRating === VOID ? this.initialRating : initialRating;
|
|
1080
1101
|
initialLuckyFactor = initialLuckyFactor === VOID ? this.initialLuckyFactor : initialLuckyFactor;
|
|
1081
1102
|
payload = payload === VOID ? this.payload : payload;
|
|
1082
|
-
return this.
|
|
1103
|
+
return this.f27(playerId, name, avatarUrl, isBot, initialRating, initialLuckyFactor, payload);
|
|
1083
1104
|
};
|
|
1084
1105
|
protoOf(GameUserInfo).hashCode = function () {
|
|
1085
1106
|
var result = getStringHashCode(this.w26_1);
|
|
1086
1107
|
result = imul(result, 31) + getStringHashCode(this.name) | 0;
|
|
1087
1108
|
result = imul(result, 31) + (this.avatarUrl == null ? 0 : getStringHashCode(this.avatarUrl)) | 0;
|
|
1088
1109
|
result = imul(result, 31) + getBooleanHashCode(this.isBot) | 0;
|
|
1110
|
+
result = imul(result, 31) + (this.initialRating == null ? 0 : getNumberHashCode(this.initialRating)) | 0;
|
|
1089
1111
|
result = imul(result, 31) + (this.initialLuckyFactor == null ? 0 : getNumberHashCode(this.initialLuckyFactor)) | 0;
|
|
1090
1112
|
result = imul(result, 31) + (this.payload == null ? 0 : hashCode(this.payload)) | 0;
|
|
1091
1113
|
return result;
|
|
@@ -1104,6 +1126,8 @@
|
|
|
1104
1126
|
return false;
|
|
1105
1127
|
if (!(this.isBot === tmp0_other_with_cast.isBot))
|
|
1106
1128
|
return false;
|
|
1129
|
+
if (!equals(this.initialRating, tmp0_other_with_cast.initialRating))
|
|
1130
|
+
return false;
|
|
1107
1131
|
if (!equals(this.initialLuckyFactor, tmp0_other_with_cast.initialLuckyFactor))
|
|
1108
1132
|
return false;
|
|
1109
1133
|
if (!equals(this.payload, tmp0_other_with_cast.payload))
|
|
@@ -1155,18 +1179,18 @@
|
|
|
1155
1179
|
return getItemIndex(_this__u8e3s4, get_byIdPlayerPredicate()(playerId));
|
|
1156
1180
|
}
|
|
1157
1181
|
function PlayerIndex(playerId, index) {
|
|
1158
|
-
this.
|
|
1159
|
-
this.
|
|
1182
|
+
this.g27_1 = playerId;
|
|
1183
|
+
this.h27_1 = index;
|
|
1160
1184
|
}
|
|
1161
1185
|
protoOf(PlayerIndex).g26 = function () {
|
|
1162
|
-
return this.
|
|
1186
|
+
return this.g27_1;
|
|
1163
1187
|
};
|
|
1164
1188
|
protoOf(PlayerIndex).toString = function () {
|
|
1165
|
-
return 'PlayerIndex(playerId=' + this.
|
|
1189
|
+
return 'PlayerIndex(playerId=' + this.g27_1 + ', index=' + this.h27_1 + ')';
|
|
1166
1190
|
};
|
|
1167
1191
|
protoOf(PlayerIndex).hashCode = function () {
|
|
1168
|
-
var result = getStringHashCode(this.
|
|
1169
|
-
result = imul(result, 31) + this.
|
|
1192
|
+
var result = getStringHashCode(this.g27_1);
|
|
1193
|
+
result = imul(result, 31) + this.h27_1 | 0;
|
|
1170
1194
|
return result;
|
|
1171
1195
|
};
|
|
1172
1196
|
protoOf(PlayerIndex).equals = function (other) {
|
|
@@ -1175,9 +1199,9 @@
|
|
|
1175
1199
|
if (!(other instanceof PlayerIndex))
|
|
1176
1200
|
return false;
|
|
1177
1201
|
var tmp0_other_with_cast = other instanceof PlayerIndex ? other : THROW_CCE();
|
|
1178
|
-
if (!(this.
|
|
1202
|
+
if (!(this.g27_1 === tmp0_other_with_cast.g27_1))
|
|
1179
1203
|
return false;
|
|
1180
|
-
if (!(this.
|
|
1204
|
+
if (!(this.h27_1 === tmp0_other_with_cast.h27_1))
|
|
1181
1205
|
return false;
|
|
1182
1206
|
return true;
|
|
1183
1207
|
};
|
|
@@ -1192,7 +1216,7 @@
|
|
|
1192
1216
|
}
|
|
1193
1217
|
function playerTurnPredicate$lambda(p1) {
|
|
1194
1218
|
_init_properties_Player_kt__qi83pd();
|
|
1195
|
-
return p1.
|
|
1219
|
+
return p1.i27().q27();
|
|
1196
1220
|
}
|
|
1197
1221
|
var properties_initialized_Player_kt_56shkt;
|
|
1198
1222
|
function _init_properties_Player_kt__qi83pd() {
|
|
@@ -1203,14 +1227,14 @@
|
|
|
1203
1227
|
}
|
|
1204
1228
|
}
|
|
1205
1229
|
function Companion_4() {
|
|
1206
|
-
this.
|
|
1230
|
+
this.r27_1 = 75;
|
|
1207
1231
|
}
|
|
1208
|
-
protoOf(Companion_4).
|
|
1232
|
+
protoOf(Companion_4).s27 = function (state, timeout) {
|
|
1209
1233
|
return new PlayerConnection(state, System_instance.n1g().f1w(timeout));
|
|
1210
1234
|
};
|
|
1211
|
-
protoOf(Companion_4).
|
|
1235
|
+
protoOf(Companion_4).t27 = function (state, timeout, $super) {
|
|
1212
1236
|
timeout = timeout === VOID ? Companion_getInstance().hg_1 : timeout;
|
|
1213
|
-
return $super === VOID ? this.
|
|
1237
|
+
return $super === VOID ? this.s27(state, timeout) : $super.s27.call(this, state, new Duration(timeout));
|
|
1214
1238
|
};
|
|
1215
1239
|
var Companion_instance_4;
|
|
1216
1240
|
function Companion_getInstance_6() {
|
|
@@ -1219,45 +1243,45 @@
|
|
|
1219
1243
|
function PlayerConnection(state, connectionChangedTime, notLiveDurationRecord) {
|
|
1220
1244
|
connectionChangedTime = connectionChangedTime === VOID ? System_instance.n1g() : connectionChangedTime;
|
|
1221
1245
|
notLiveDurationRecord = notLiveDurationRecord === VOID ? Companion_getInstance().hg_1 : notLiveDurationRecord;
|
|
1222
|
-
this.
|
|
1223
|
-
this.
|
|
1224
|
-
this.
|
|
1246
|
+
this.u27_1 = state;
|
|
1247
|
+
this.v27_1 = connectionChangedTime;
|
|
1248
|
+
this.w27_1 = notLiveDurationRecord;
|
|
1225
1249
|
}
|
|
1226
|
-
protoOf(PlayerConnection).
|
|
1227
|
-
return System_instance.n1g().g1w(this.
|
|
1250
|
+
protoOf(PlayerConnection).x27 = function () {
|
|
1251
|
+
return System_instance.n1g().g1w(this.v27_1);
|
|
1228
1252
|
};
|
|
1229
|
-
protoOf(PlayerConnection).
|
|
1253
|
+
protoOf(PlayerConnection).y27 = function () {
|
|
1230
1254
|
var tmp;
|
|
1231
|
-
if (this.
|
|
1232
|
-
tmp = this.
|
|
1255
|
+
if (this.u27_1.isLive) {
|
|
1256
|
+
tmp = this.w27_1;
|
|
1233
1257
|
} else {
|
|
1234
|
-
tmp = Duration__plus_impl_yu9v8f(this.
|
|
1258
|
+
tmp = Duration__plus_impl_yu9v8f(this.w27_1, this.x27());
|
|
1235
1259
|
}
|
|
1236
1260
|
return tmp;
|
|
1237
1261
|
};
|
|
1238
|
-
protoOf(PlayerConnection).
|
|
1262
|
+
protoOf(PlayerConnection).z27 = function (gameDuration) {
|
|
1239
1263
|
// Inline function 'kotlin.Long.div' call
|
|
1240
1264
|
var percent = _Duration___get_inWholeMilliseconds__impl__msfiry(gameDuration).h3() / 100.0;
|
|
1241
1265
|
// Inline function 'kotlin.math.round' call
|
|
1242
1266
|
// Inline function 'kotlin.Long.div' call
|
|
1243
|
-
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.
|
|
1267
|
+
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.y27()).h3() / percent;
|
|
1244
1268
|
var tmp$ret$2 = round(x);
|
|
1245
1269
|
return numberToInt(tmp$ret$2);
|
|
1246
1270
|
};
|
|
1247
|
-
protoOf(PlayerConnection).
|
|
1248
|
-
return 100 - this.
|
|
1271
|
+
protoOf(PlayerConnection).a28 = function (gameDuration) {
|
|
1272
|
+
return 100 - this.z27(gameDuration) | 0;
|
|
1249
1273
|
};
|
|
1250
|
-
protoOf(PlayerConnection).
|
|
1251
|
-
var percentage = this.
|
|
1274
|
+
protoOf(PlayerConnection).b28 = function (gameDuration) {
|
|
1275
|
+
var percentage = this.a28(gameDuration);
|
|
1252
1276
|
return percentage >= 75;
|
|
1253
1277
|
};
|
|
1254
1278
|
protoOf(PlayerConnection).toString = function () {
|
|
1255
|
-
return 'PlayerConnection(state=' + this.
|
|
1279
|
+
return 'PlayerConnection(state=' + this.u27_1.toString() + ', connectionChangedTime=' + this.v27_1.toString() + ', notLiveDurationRecord=' + Duration__toString_impl_8d916b(this.w27_1) + ')';
|
|
1256
1280
|
};
|
|
1257
1281
|
protoOf(PlayerConnection).hashCode = function () {
|
|
1258
|
-
var result = this.
|
|
1259
|
-
result = imul(result, 31) + this.
|
|
1260
|
-
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.
|
|
1282
|
+
var result = this.u27_1.hashCode();
|
|
1283
|
+
result = imul(result, 31) + this.v27_1.hashCode() | 0;
|
|
1284
|
+
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.w27_1) | 0;
|
|
1261
1285
|
return result;
|
|
1262
1286
|
};
|
|
1263
1287
|
protoOf(PlayerConnection).equals = function (other) {
|
|
@@ -1266,16 +1290,16 @@
|
|
|
1266
1290
|
if (!(other instanceof PlayerConnection))
|
|
1267
1291
|
return false;
|
|
1268
1292
|
var tmp0_other_with_cast = other instanceof PlayerConnection ? other : THROW_CCE();
|
|
1269
|
-
if (!this.
|
|
1293
|
+
if (!this.u27_1.equals(tmp0_other_with_cast.u27_1))
|
|
1270
1294
|
return false;
|
|
1271
|
-
if (!this.
|
|
1295
|
+
if (!this.v27_1.equals(tmp0_other_with_cast.v27_1))
|
|
1272
1296
|
return false;
|
|
1273
|
-
if (!equals(this.
|
|
1297
|
+
if (!equals(this.w27_1, tmp0_other_with_cast.w27_1))
|
|
1274
1298
|
return false;
|
|
1275
1299
|
return true;
|
|
1276
1300
|
};
|
|
1277
1301
|
function _get_$cachedSerializer__te6jhj_4($this) {
|
|
1278
|
-
return $this.
|
|
1302
|
+
return $this.c28_1.a2();
|
|
1279
1303
|
}
|
|
1280
1304
|
function PlayerConnectionState$Companion$_anonymous__8wfaw3() {
|
|
1281
1305
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerConnectionState', values_1());
|
|
@@ -1313,7 +1337,7 @@
|
|
|
1313
1337
|
Companion_instance_5 = this;
|
|
1314
1338
|
var tmp = this;
|
|
1315
1339
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1316
|
-
tmp.
|
|
1340
|
+
tmp.c28_1 = lazy(tmp_0, PlayerConnectionState$Companion$_anonymous__8wfaw3);
|
|
1317
1341
|
}
|
|
1318
1342
|
protoOf(Companion_5).o17 = function () {
|
|
1319
1343
|
return _get_$cachedSerializer__te6jhj_4(this);
|
|
@@ -1344,34 +1368,34 @@
|
|
|
1344
1368
|
function PlayerConnectionState(name, ordinal) {
|
|
1345
1369
|
Enum.call(this, name, ordinal);
|
|
1346
1370
|
}
|
|
1347
|
-
protoOf(PlayerConnectionState).
|
|
1371
|
+
protoOf(PlayerConnectionState).f28 = function () {
|
|
1348
1372
|
return this.equals(PlayerConnectionState_LIVE_getInstance());
|
|
1349
1373
|
};
|
|
1350
|
-
protoOf(PlayerConnectionState).
|
|
1374
|
+
protoOf(PlayerConnectionState).g28 = function () {
|
|
1351
1375
|
return this.equals(PlayerConnectionState_TIMEOUT_getInstance());
|
|
1352
1376
|
};
|
|
1353
|
-
protoOf(PlayerConnectionState).
|
|
1377
|
+
protoOf(PlayerConnectionState).h28 = function () {
|
|
1354
1378
|
return this.equals(PlayerConnectionState_LOST_CONNECTION_getInstance());
|
|
1355
1379
|
};
|
|
1356
|
-
protoOf(PlayerConnectionState).
|
|
1380
|
+
protoOf(PlayerConnectionState).i28 = function () {
|
|
1357
1381
|
return this.equals(PlayerConnectionState_LEFT_getInstance());
|
|
1358
1382
|
};
|
|
1359
|
-
protoOf(PlayerConnectionState).
|
|
1383
|
+
protoOf(PlayerConnectionState).j28 = function () {
|
|
1360
1384
|
return this.equals(PlayerConnectionState_DELETED_getInstance());
|
|
1361
1385
|
};
|
|
1362
|
-
protoOf(PlayerConnectionState).
|
|
1386
|
+
protoOf(PlayerConnectionState).k28 = function () {
|
|
1363
1387
|
return this.equals(PlayerConnectionState_DISCONNECTING_getInstance());
|
|
1364
1388
|
};
|
|
1365
|
-
protoOf(PlayerConnectionState).
|
|
1389
|
+
protoOf(PlayerConnectionState).l28 = function () {
|
|
1366
1390
|
return this.isDisconnected || this.isDeleted;
|
|
1367
1391
|
};
|
|
1368
|
-
protoOf(PlayerConnectionState).
|
|
1392
|
+
protoOf(PlayerConnectionState).m28 = function () {
|
|
1369
1393
|
return this.isTimeOut || this.isLostConnection || this.isLeft;
|
|
1370
1394
|
};
|
|
1371
|
-
protoOf(PlayerConnectionState).
|
|
1395
|
+
protoOf(PlayerConnectionState).n28 = function () {
|
|
1372
1396
|
return this.isTimeOut || this.isLeft || this.isDeleted;
|
|
1373
1397
|
};
|
|
1374
|
-
protoOf(PlayerConnectionState).
|
|
1398
|
+
protoOf(PlayerConnectionState).o28 = function () {
|
|
1375
1399
|
return this.isLostConnection;
|
|
1376
1400
|
};
|
|
1377
1401
|
function PlayerConnectionState_LIVE_getInstance() {
|
|
@@ -1399,7 +1423,7 @@
|
|
|
1399
1423
|
return PlayerConnectionState_DELETED_instance;
|
|
1400
1424
|
}
|
|
1401
1425
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
1402
|
-
return $this.
|
|
1426
|
+
return $this.p28_1.a2();
|
|
1403
1427
|
}
|
|
1404
1428
|
function PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2() {
|
|
1405
1429
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerState.PlayerWaitingState', values_2());
|
|
@@ -1414,7 +1438,7 @@
|
|
|
1414
1438
|
Companion_instance_6 = this;
|
|
1415
1439
|
var tmp = this;
|
|
1416
1440
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1417
|
-
tmp.
|
|
1441
|
+
tmp.p28_1 = lazy(tmp_0, PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2);
|
|
1418
1442
|
}
|
|
1419
1443
|
protoOf(Companion_6).o17 = function () {
|
|
1420
1444
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -1442,18 +1466,18 @@
|
|
|
1442
1466
|
function PlayerWaitingState(name, ordinal) {
|
|
1443
1467
|
Enum.call(this, name, ordinal);
|
|
1444
1468
|
}
|
|
1445
|
-
protoOf(PlayerWaitingState).
|
|
1446
|
-
return this.
|
|
1469
|
+
protoOf(PlayerWaitingState).q27 = function () {
|
|
1470
|
+
return this.s28() || this.t28();
|
|
1447
1471
|
};
|
|
1448
|
-
protoOf(PlayerWaitingState).
|
|
1472
|
+
protoOf(PlayerWaitingState).s28 = function () {
|
|
1449
1473
|
return this.equals(PlayerWaitingState_IN_PROGRESS_getInstance());
|
|
1450
1474
|
};
|
|
1451
|
-
protoOf(PlayerWaitingState).
|
|
1475
|
+
protoOf(PlayerWaitingState).t28 = function () {
|
|
1452
1476
|
return this.equals(PlayerWaitingState_IN_PROGRESS_ATTENTION_MODE_getInstance());
|
|
1453
1477
|
};
|
|
1454
1478
|
function Companion_7() {
|
|
1455
1479
|
}
|
|
1456
|
-
protoOf(Companion_7).
|
|
1480
|
+
protoOf(Companion_7).u28 = function (connection) {
|
|
1457
1481
|
var tmp0_state = PlayerWaitingState_IDLE_getInstance();
|
|
1458
1482
|
return new PlayerState(null, null, null, tmp0_state, false, null, connection);
|
|
1459
1483
|
};
|
|
@@ -1476,17 +1500,17 @@
|
|
|
1476
1500
|
function PlayerState(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) {
|
|
1477
1501
|
tag = tag === VOID ? null : tag;
|
|
1478
1502
|
connection = connection === VOID ? null : connection;
|
|
1479
|
-
this.
|
|
1480
|
-
this.
|
|
1481
|
-
this.
|
|
1482
|
-
this.
|
|
1483
|
-
this.
|
|
1484
|
-
this.
|
|
1485
|
-
this.
|
|
1486
|
-
}
|
|
1487
|
-
protoOf(PlayerState).
|
|
1503
|
+
this.j27_1 = startFromTime;
|
|
1504
|
+
this.k27_1 = playerTurnTimeout;
|
|
1505
|
+
this.l27_1 = waitPlayerUntilTime;
|
|
1506
|
+
this.m27_1 = state;
|
|
1507
|
+
this.n27_1 = ready;
|
|
1508
|
+
this.o27_1 = tag;
|
|
1509
|
+
this.p27_1 = connection;
|
|
1510
|
+
}
|
|
1511
|
+
protoOf(PlayerState).v28 = function () {
|
|
1488
1512
|
// Inline function 'kotlin.requireNotNull' call
|
|
1489
|
-
var value = this.
|
|
1513
|
+
var value = this.p27_1;
|
|
1490
1514
|
// Inline function 'kotlin.contracts.contract' call
|
|
1491
1515
|
var tmp$ret$1;
|
|
1492
1516
|
$l$block: {
|
|
@@ -1505,67 +1529,67 @@
|
|
|
1505
1529
|
};
|
|
1506
1530
|
protoOf(PlayerState).toString = function () {
|
|
1507
1531
|
// Inline function 'kotlin.takeIf' call
|
|
1508
|
-
var this_0 = 'startFromTime=' + toString(this.
|
|
1532
|
+
var this_0 = 'startFromTime=' + toString(this.j27_1);
|
|
1509
1533
|
// Inline function 'kotlin.contracts.contract' call
|
|
1510
1534
|
var tmp;
|
|
1511
1535
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1512
|
-
if (!(this.
|
|
1536
|
+
if (!(this.j27_1 == null)) {
|
|
1513
1537
|
tmp = this_0;
|
|
1514
1538
|
} else {
|
|
1515
1539
|
tmp = null;
|
|
1516
1540
|
}
|
|
1517
1541
|
var tmp_0 = tmp;
|
|
1518
1542
|
// Inline function 'kotlin.takeIf' call
|
|
1519
|
-
var this_1 = 'playerTurnTimeout=' + toString(this.
|
|
1543
|
+
var this_1 = 'playerTurnTimeout=' + toString(this.k27_1);
|
|
1520
1544
|
// Inline function 'kotlin.contracts.contract' call
|
|
1521
1545
|
var tmp_1;
|
|
1522
1546
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1523
|
-
if (!(this.
|
|
1547
|
+
if (!(this.k27_1 == null)) {
|
|
1524
1548
|
tmp_1 = this_1;
|
|
1525
1549
|
} else {
|
|
1526
1550
|
tmp_1 = null;
|
|
1527
1551
|
}
|
|
1528
1552
|
var tmp_2 = tmp_1;
|
|
1529
1553
|
// Inline function 'kotlin.takeIf' call
|
|
1530
|
-
var this_2 = 'waitPlayerUntilTime=' + toString(this.
|
|
1554
|
+
var this_2 = 'waitPlayerUntilTime=' + toString(this.l27_1);
|
|
1531
1555
|
// Inline function 'kotlin.contracts.contract' call
|
|
1532
1556
|
var tmp_3;
|
|
1533
1557
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1534
|
-
if (!(this.
|
|
1558
|
+
if (!(this.l27_1 == null)) {
|
|
1535
1559
|
tmp_3 = this_2;
|
|
1536
1560
|
} else {
|
|
1537
1561
|
tmp_3 = null;
|
|
1538
1562
|
}
|
|
1539
1563
|
var tmp_4 = tmp_3;
|
|
1540
|
-
var tmp_5 = 'state=' + this.
|
|
1564
|
+
var tmp_5 = 'state=' + this.m27_1.toString();
|
|
1541
1565
|
// Inline function 'kotlin.takeIf' call
|
|
1542
|
-
var this_3 = 'ready=' + this.
|
|
1566
|
+
var this_3 = 'ready=' + this.n27_1;
|
|
1543
1567
|
// Inline function 'kotlin.contracts.contract' call
|
|
1544
1568
|
var tmp_6;
|
|
1545
1569
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1546
|
-
if (this.
|
|
1570
|
+
if (this.n27_1) {
|
|
1547
1571
|
tmp_6 = this_3;
|
|
1548
1572
|
} else {
|
|
1549
1573
|
tmp_6 = null;
|
|
1550
1574
|
}
|
|
1551
1575
|
var tmp_7 = tmp_6;
|
|
1552
1576
|
// Inline function 'kotlin.takeIf' call
|
|
1553
|
-
var this_4 = 'tag=' + this.
|
|
1577
|
+
var this_4 = 'tag=' + this.o27_1;
|
|
1554
1578
|
// Inline function 'kotlin.contracts.contract' call
|
|
1555
1579
|
var tmp_8;
|
|
1556
1580
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1557
|
-
if (!(this.
|
|
1581
|
+
if (!(this.o27_1 == null)) {
|
|
1558
1582
|
tmp_8 = this_4;
|
|
1559
1583
|
} else {
|
|
1560
1584
|
tmp_8 = null;
|
|
1561
1585
|
}
|
|
1562
1586
|
var tmp_9 = tmp_8;
|
|
1563
1587
|
// Inline function 'kotlin.takeIf' call
|
|
1564
|
-
var this_5 = 'connection=' + toString(this.
|
|
1588
|
+
var this_5 = 'connection=' + toString(this.p27_1);
|
|
1565
1589
|
// Inline function 'kotlin.contracts.contract' call
|
|
1566
1590
|
var tmp_10;
|
|
1567
1591
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1568
|
-
if (!(this.
|
|
1592
|
+
if (!(this.p27_1 == null)) {
|
|
1569
1593
|
tmp_10 = this_5;
|
|
1570
1594
|
} else {
|
|
1571
1595
|
tmp_10 = null;
|
|
@@ -1573,17 +1597,17 @@
|
|
|
1573
1597
|
var tmp$ret$11 = tmp_10;
|
|
1574
1598
|
return 'PlayerState(' + joinToString(listOfNotNull([tmp_0, tmp_2, tmp_4, tmp_5, tmp_7, tmp_9, tmp$ret$11])) + ')';
|
|
1575
1599
|
};
|
|
1576
|
-
protoOf(PlayerState).
|
|
1577
|
-
return this.
|
|
1600
|
+
protoOf(PlayerState).q27 = function () {
|
|
1601
|
+
return this.m27_1.q27();
|
|
1578
1602
|
};
|
|
1579
1603
|
protoOf(PlayerState).hashCode = function () {
|
|
1580
|
-
var result = this.
|
|
1581
|
-
result = imul(result, 31) + (this.
|
|
1582
|
-
result = imul(result, 31) + (this.
|
|
1583
|
-
result = imul(result, 31) + this.
|
|
1584
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1585
|
-
result = imul(result, 31) + (this.
|
|
1586
|
-
result = imul(result, 31) + (this.
|
|
1604
|
+
var result = this.j27_1 == null ? 0 : this.j27_1.hashCode();
|
|
1605
|
+
result = imul(result, 31) + (this.k27_1 == null ? 0 : this.k27_1.hashCode()) | 0;
|
|
1606
|
+
result = imul(result, 31) + (this.l27_1 == null ? 0 : this.l27_1.hashCode()) | 0;
|
|
1607
|
+
result = imul(result, 31) + this.m27_1.hashCode() | 0;
|
|
1608
|
+
result = imul(result, 31) + getBooleanHashCode(this.n27_1) | 0;
|
|
1609
|
+
result = imul(result, 31) + (this.o27_1 == null ? 0 : getStringHashCode(this.o27_1)) | 0;
|
|
1610
|
+
result = imul(result, 31) + (this.p27_1 == null ? 0 : this.p27_1.hashCode()) | 0;
|
|
1587
1611
|
return result;
|
|
1588
1612
|
};
|
|
1589
1613
|
protoOf(PlayerState).equals = function (other) {
|
|
@@ -1592,30 +1616,30 @@
|
|
|
1592
1616
|
if (!(other instanceof PlayerState))
|
|
1593
1617
|
return false;
|
|
1594
1618
|
var tmp0_other_with_cast = other instanceof PlayerState ? other : THROW_CCE();
|
|
1595
|
-
if (!equals(this.
|
|
1619
|
+
if (!equals(this.j27_1, tmp0_other_with_cast.j27_1))
|
|
1596
1620
|
return false;
|
|
1597
|
-
if (!equals(this.
|
|
1621
|
+
if (!equals(this.k27_1, tmp0_other_with_cast.k27_1))
|
|
1598
1622
|
return false;
|
|
1599
|
-
if (!equals(this.
|
|
1623
|
+
if (!equals(this.l27_1, tmp0_other_with_cast.l27_1))
|
|
1600
1624
|
return false;
|
|
1601
|
-
if (!this.
|
|
1625
|
+
if (!this.m27_1.equals(tmp0_other_with_cast.m27_1))
|
|
1602
1626
|
return false;
|
|
1603
|
-
if (!(this.
|
|
1627
|
+
if (!(this.n27_1 === tmp0_other_with_cast.n27_1))
|
|
1604
1628
|
return false;
|
|
1605
|
-
if (!(this.
|
|
1629
|
+
if (!(this.o27_1 == tmp0_other_with_cast.o27_1))
|
|
1606
1630
|
return false;
|
|
1607
|
-
if (!equals(this.
|
|
1631
|
+
if (!equals(this.p27_1, tmp0_other_with_cast.p27_1))
|
|
1608
1632
|
return false;
|
|
1609
1633
|
return true;
|
|
1610
1634
|
};
|
|
1611
1635
|
function Team(playerIds) {
|
|
1612
|
-
this.
|
|
1636
|
+
this.w28_1 = playerIds;
|
|
1613
1637
|
}
|
|
1614
1638
|
protoOf(Team).toString = function () {
|
|
1615
|
-
return 'Team(playerIds=' + toString_0(this.
|
|
1639
|
+
return 'Team(playerIds=' + toString_0(this.w28_1) + ')';
|
|
1616
1640
|
};
|
|
1617
1641
|
protoOf(Team).hashCode = function () {
|
|
1618
|
-
return hashCode(this.
|
|
1642
|
+
return hashCode(this.w28_1);
|
|
1619
1643
|
};
|
|
1620
1644
|
protoOf(Team).equals = function (other) {
|
|
1621
1645
|
if (this === other)
|
|
@@ -1623,12 +1647,12 @@
|
|
|
1623
1647
|
if (!(other instanceof Team))
|
|
1624
1648
|
return false;
|
|
1625
1649
|
var tmp0_other_with_cast = other instanceof Team ? other : THROW_CCE();
|
|
1626
|
-
if (!equals(this.
|
|
1650
|
+
if (!equals(this.w28_1, tmp0_other_with_cast.w28_1))
|
|
1627
1651
|
return false;
|
|
1628
1652
|
return true;
|
|
1629
1653
|
};
|
|
1630
1654
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
1631
|
-
return $this.
|
|
1655
|
+
return $this.x28_1.a2();
|
|
1632
1656
|
}
|
|
1633
1657
|
function TerminationGameReasonDto$Companion$_anonymous__30ivuy() {
|
|
1634
1658
|
var tmp = getKClass(TerminationGameReasonDto);
|
|
@@ -1666,7 +1690,7 @@
|
|
|
1666
1690
|
Companion_instance_8 = this;
|
|
1667
1691
|
var tmp = this;
|
|
1668
1692
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1669
|
-
tmp.
|
|
1693
|
+
tmp.x28_1 = lazy(tmp_0, TerminationGameReasonDto$Companion$_anonymous__30ivuy);
|
|
1670
1694
|
}
|
|
1671
1695
|
protoOf(Companion_8).o17 = function () {
|
|
1672
1696
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -1687,7 +1711,7 @@
|
|
|
1687
1711
|
Companion_getInstance_10();
|
|
1688
1712
|
}
|
|
1689
1713
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
1690
|
-
return $this.
|
|
1714
|
+
return $this.y28_1.a2();
|
|
1691
1715
|
}
|
|
1692
1716
|
function ProcessingReasonDto$_anonymous__78na4x() {
|
|
1693
1717
|
var tmp = ProcessingReasonDto_getInstance();
|
|
@@ -1702,7 +1726,7 @@
|
|
|
1702
1726
|
TerminationGameReasonDto.call(this);
|
|
1703
1727
|
var tmp = this;
|
|
1704
1728
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1705
|
-
tmp.
|
|
1729
|
+
tmp.y28_1 = lazy(tmp_0, ProcessingReasonDto$_anonymous__78na4x);
|
|
1706
1730
|
}
|
|
1707
1731
|
protoOf(ProcessingReasonDto).o17 = function () {
|
|
1708
1732
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -1740,19 +1764,19 @@
|
|
|
1740
1764
|
$serializer_instance_0 = this;
|
|
1741
1765
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
1742
1766
|
tmp0_serialDesc.xu('reason', false);
|
|
1743
|
-
this.
|
|
1767
|
+
this.z28_1 = tmp0_serialDesc;
|
|
1744
1768
|
}
|
|
1745
|
-
protoOf($serializer_0).
|
|
1746
|
-
var tmp0_desc = this.
|
|
1769
|
+
protoOf($serializer_0).a29 = function (encoder, value) {
|
|
1770
|
+
var tmp0_desc = this.z28_1;
|
|
1747
1771
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
1748
1772
|
tmp1_output.wo(tmp0_desc, 0, value.reason);
|
|
1749
1773
|
tmp1_output.in(tmp0_desc);
|
|
1750
1774
|
};
|
|
1751
1775
|
protoOf($serializer_0).zj = function (encoder, value) {
|
|
1752
|
-
return this.
|
|
1776
|
+
return this.a29(encoder, value instanceof GameErrorReasonDto ? value : THROW_CCE());
|
|
1753
1777
|
};
|
|
1754
1778
|
protoOf($serializer_0).ak = function (decoder) {
|
|
1755
|
-
var tmp0_desc = this.
|
|
1779
|
+
var tmp0_desc = this.z28_1;
|
|
1756
1780
|
var tmp1_flag = true;
|
|
1757
1781
|
var tmp2_index = 0;
|
|
1758
1782
|
var tmp3_bitMask0 = 0;
|
|
@@ -1780,7 +1804,7 @@
|
|
|
1780
1804
|
return GameErrorReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1781
1805
|
};
|
|
1782
1806
|
protoOf($serializer_0).yj = function () {
|
|
1783
|
-
return this.
|
|
1807
|
+
return this.z28_1;
|
|
1784
1808
|
};
|
|
1785
1809
|
protoOf($serializer_0).mv = function () {
|
|
1786
1810
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1796,7 +1820,7 @@
|
|
|
1796
1820
|
}
|
|
1797
1821
|
function GameErrorReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
1798
1822
|
if (!(1 === (1 & seen0))) {
|
|
1799
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_0().
|
|
1823
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_0().z28_1);
|
|
1800
1824
|
}
|
|
1801
1825
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
1802
1826
|
$this.reason = reason;
|
|
@@ -1838,19 +1862,19 @@
|
|
|
1838
1862
|
$serializer_instance_1 = this;
|
|
1839
1863
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
1840
1864
|
tmp0_serialDesc.xu('reason', false);
|
|
1841
|
-
this.
|
|
1865
|
+
this.b29_1 = tmp0_serialDesc;
|
|
1842
1866
|
}
|
|
1843
|
-
protoOf($serializer_1).
|
|
1844
|
-
var tmp0_desc = this.
|
|
1867
|
+
protoOf($serializer_1).c29 = function (encoder, value) {
|
|
1868
|
+
var tmp0_desc = this.b29_1;
|
|
1845
1869
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
1846
|
-
tmp1_output.wo(tmp0_desc, 0, value.
|
|
1870
|
+
tmp1_output.wo(tmp0_desc, 0, value.d29_1);
|
|
1847
1871
|
tmp1_output.in(tmp0_desc);
|
|
1848
1872
|
};
|
|
1849
1873
|
protoOf($serializer_1).zj = function (encoder, value) {
|
|
1850
|
-
return this.
|
|
1874
|
+
return this.c29(encoder, value instanceof GameFinishedReasonDto ? value : THROW_CCE());
|
|
1851
1875
|
};
|
|
1852
1876
|
protoOf($serializer_1).ak = function (decoder) {
|
|
1853
|
-
var tmp0_desc = this.
|
|
1877
|
+
var tmp0_desc = this.b29_1;
|
|
1854
1878
|
var tmp1_flag = true;
|
|
1855
1879
|
var tmp2_index = 0;
|
|
1856
1880
|
var tmp3_bitMask0 = 0;
|
|
@@ -1878,7 +1902,7 @@
|
|
|
1878
1902
|
return GameFinishedReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1879
1903
|
};
|
|
1880
1904
|
protoOf($serializer_1).yj = function () {
|
|
1881
|
-
return this.
|
|
1905
|
+
return this.b29_1;
|
|
1882
1906
|
};
|
|
1883
1907
|
protoOf($serializer_1).mv = function () {
|
|
1884
1908
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1894,10 +1918,10 @@
|
|
|
1894
1918
|
}
|
|
1895
1919
|
function GameFinishedReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
1896
1920
|
if (!(1 === (1 & seen0))) {
|
|
1897
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().
|
|
1921
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().b29_1);
|
|
1898
1922
|
}
|
|
1899
1923
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
1900
|
-
$this.
|
|
1924
|
+
$this.d29_1 = reason;
|
|
1901
1925
|
return $this;
|
|
1902
1926
|
}
|
|
1903
1927
|
function GameFinishedReasonDto_init_$Create$(seen0, reason, serializationConstructorMarker) {
|
|
@@ -1905,13 +1929,13 @@
|
|
|
1905
1929
|
}
|
|
1906
1930
|
function GameFinishedReasonDto(reason) {
|
|
1907
1931
|
TerminationGameReasonDto.call(this);
|
|
1908
|
-
this.
|
|
1932
|
+
this.d29_1 = reason;
|
|
1909
1933
|
}
|
|
1910
1934
|
protoOf(GameFinishedReasonDto).toString = function () {
|
|
1911
|
-
return 'GameFinishedReasonDto(reason=' + this.
|
|
1935
|
+
return 'GameFinishedReasonDto(reason=' + this.d29_1 + ')';
|
|
1912
1936
|
};
|
|
1913
1937
|
protoOf(GameFinishedReasonDto).hashCode = function () {
|
|
1914
|
-
return getStringHashCode(this.
|
|
1938
|
+
return getStringHashCode(this.d29_1);
|
|
1915
1939
|
};
|
|
1916
1940
|
protoOf(GameFinishedReasonDto).equals = function (other) {
|
|
1917
1941
|
if (this === other)
|
|
@@ -1919,7 +1943,7 @@
|
|
|
1919
1943
|
if (!(other instanceof GameFinishedReasonDto))
|
|
1920
1944
|
return false;
|
|
1921
1945
|
var tmp0_other_with_cast = other instanceof GameFinishedReasonDto ? other : THROW_CCE();
|
|
1922
|
-
if (!(this.
|
|
1946
|
+
if (!(this.d29_1 === tmp0_other_with_cast.d29_1))
|
|
1923
1947
|
return false;
|
|
1924
1948
|
return true;
|
|
1925
1949
|
};
|
|
@@ -1933,19 +1957,19 @@
|
|
|
1933
1957
|
$serializer_instance_2 = this;
|
|
1934
1958
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
1935
1959
|
tmp0_serialDesc.xu('playerId', false);
|
|
1936
|
-
this.
|
|
1960
|
+
this.e29_1 = tmp0_serialDesc;
|
|
1937
1961
|
}
|
|
1938
|
-
protoOf($serializer_2).
|
|
1939
|
-
var tmp0_desc = this.
|
|
1962
|
+
protoOf($serializer_2).f29 = function (encoder, value) {
|
|
1963
|
+
var tmp0_desc = this.e29_1;
|
|
1940
1964
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
1941
|
-
tmp1_output.wo(tmp0_desc, 0, value.
|
|
1965
|
+
tmp1_output.wo(tmp0_desc, 0, value.g29_1);
|
|
1942
1966
|
tmp1_output.in(tmp0_desc);
|
|
1943
1967
|
};
|
|
1944
1968
|
protoOf($serializer_2).zj = function (encoder, value) {
|
|
1945
|
-
return this.
|
|
1969
|
+
return this.f29(encoder, value instanceof PlayerExitReasonDto ? value : THROW_CCE());
|
|
1946
1970
|
};
|
|
1947
1971
|
protoOf($serializer_2).ak = function (decoder) {
|
|
1948
|
-
var tmp0_desc = this.
|
|
1972
|
+
var tmp0_desc = this.e29_1;
|
|
1949
1973
|
var tmp1_flag = true;
|
|
1950
1974
|
var tmp2_index = 0;
|
|
1951
1975
|
var tmp3_bitMask0 = 0;
|
|
@@ -1973,7 +1997,7 @@
|
|
|
1973
1997
|
return PlayerExitReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
1974
1998
|
};
|
|
1975
1999
|
protoOf($serializer_2).yj = function () {
|
|
1976
|
-
return this.
|
|
2000
|
+
return this.e29_1;
|
|
1977
2001
|
};
|
|
1978
2002
|
protoOf($serializer_2).mv = function () {
|
|
1979
2003
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -1989,10 +2013,10 @@
|
|
|
1989
2013
|
}
|
|
1990
2014
|
function PlayerExitReasonDto_init_$Init$(seen0, playerId, serializationConstructorMarker, $this) {
|
|
1991
2015
|
if (!(1 === (1 & seen0))) {
|
|
1992
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().
|
|
2016
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().e29_1);
|
|
1993
2017
|
}
|
|
1994
2018
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
1995
|
-
$this.
|
|
2019
|
+
$this.g29_1 = playerId;
|
|
1996
2020
|
return $this;
|
|
1997
2021
|
}
|
|
1998
2022
|
function PlayerExitReasonDto_init_$Create$(seen0, playerId, serializationConstructorMarker) {
|
|
@@ -2000,13 +2024,13 @@
|
|
|
2000
2024
|
}
|
|
2001
2025
|
function PlayerExitReasonDto(playerId) {
|
|
2002
2026
|
TerminationGameReasonDto.call(this);
|
|
2003
|
-
this.
|
|
2027
|
+
this.g29_1 = playerId;
|
|
2004
2028
|
}
|
|
2005
2029
|
protoOf(PlayerExitReasonDto).toString = function () {
|
|
2006
|
-
return 'PlayerExitReasonDto(playerId=' + this.
|
|
2030
|
+
return 'PlayerExitReasonDto(playerId=' + this.g29_1 + ')';
|
|
2007
2031
|
};
|
|
2008
2032
|
protoOf(PlayerExitReasonDto).hashCode = function () {
|
|
2009
|
-
return getStringHashCode(this.
|
|
2033
|
+
return getStringHashCode(this.g29_1);
|
|
2010
2034
|
};
|
|
2011
2035
|
protoOf(PlayerExitReasonDto).equals = function (other) {
|
|
2012
2036
|
if (this === other)
|
|
@@ -2014,7 +2038,7 @@
|
|
|
2014
2038
|
if (!(other instanceof PlayerExitReasonDto))
|
|
2015
2039
|
return false;
|
|
2016
2040
|
var tmp0_other_with_cast = other instanceof PlayerExitReasonDto ? other : THROW_CCE();
|
|
2017
|
-
if (!(this.
|
|
2041
|
+
if (!(this.g29_1 === tmp0_other_with_cast.g29_1))
|
|
2018
2042
|
return false;
|
|
2019
2043
|
return true;
|
|
2020
2044
|
};
|
|
@@ -2029,20 +2053,20 @@
|
|
|
2029
2053
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
2030
2054
|
tmp0_serialDesc.xu('playerId', false);
|
|
2031
2055
|
tmp0_serialDesc.xu('tag', false);
|
|
2032
|
-
this.
|
|
2056
|
+
this.h29_1 = tmp0_serialDesc;
|
|
2033
2057
|
}
|
|
2034
|
-
protoOf($serializer_3).
|
|
2035
|
-
var tmp0_desc = this.
|
|
2058
|
+
protoOf($serializer_3).i29 = function (encoder, value) {
|
|
2059
|
+
var tmp0_desc = this.h29_1;
|
|
2036
2060
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
2037
|
-
tmp1_output.wo(tmp0_desc, 0, value.
|
|
2038
|
-
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2061
|
+
tmp1_output.wo(tmp0_desc, 0, value.j29_1);
|
|
2062
|
+
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.k29_1);
|
|
2039
2063
|
tmp1_output.in(tmp0_desc);
|
|
2040
2064
|
};
|
|
2041
2065
|
protoOf($serializer_3).zj = function (encoder, value) {
|
|
2042
|
-
return this.
|
|
2066
|
+
return this.i29(encoder, value instanceof PlayerLostConnectionReasonDto ? value : THROW_CCE());
|
|
2043
2067
|
};
|
|
2044
2068
|
protoOf($serializer_3).ak = function (decoder) {
|
|
2045
|
-
var tmp0_desc = this.
|
|
2069
|
+
var tmp0_desc = this.h29_1;
|
|
2046
2070
|
var tmp1_flag = true;
|
|
2047
2071
|
var tmp2_index = 0;
|
|
2048
2072
|
var tmp3_bitMask0 = 0;
|
|
@@ -2077,7 +2101,7 @@
|
|
|
2077
2101
|
return PlayerLostConnectionReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2078
2102
|
};
|
|
2079
2103
|
protoOf($serializer_3).yj = function () {
|
|
2080
|
-
return this.
|
|
2104
|
+
return this.h29_1;
|
|
2081
2105
|
};
|
|
2082
2106
|
protoOf($serializer_3).mv = function () {
|
|
2083
2107
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2093,11 +2117,11 @@
|
|
|
2093
2117
|
}
|
|
2094
2118
|
function PlayerLostConnectionReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2095
2119
|
if (!(3 === (3 & seen0))) {
|
|
2096
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_3().
|
|
2120
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_3().h29_1);
|
|
2097
2121
|
}
|
|
2098
2122
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2099
|
-
$this.
|
|
2100
|
-
$this.
|
|
2123
|
+
$this.j29_1 = playerId;
|
|
2124
|
+
$this.k29_1 = tag;
|
|
2101
2125
|
return $this;
|
|
2102
2126
|
}
|
|
2103
2127
|
function PlayerLostConnectionReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2105,15 +2129,15 @@
|
|
|
2105
2129
|
}
|
|
2106
2130
|
function PlayerLostConnectionReasonDto(playerId, tag) {
|
|
2107
2131
|
TerminationGameReasonDto.call(this);
|
|
2108
|
-
this.
|
|
2109
|
-
this.
|
|
2132
|
+
this.j29_1 = playerId;
|
|
2133
|
+
this.k29_1 = tag;
|
|
2110
2134
|
}
|
|
2111
2135
|
protoOf(PlayerLostConnectionReasonDto).toString = function () {
|
|
2112
|
-
return 'PlayerLostConnectionReasonDto(playerId=' + this.
|
|
2136
|
+
return 'PlayerLostConnectionReasonDto(playerId=' + this.j29_1 + ', tag=' + this.k29_1 + ')';
|
|
2113
2137
|
};
|
|
2114
2138
|
protoOf(PlayerLostConnectionReasonDto).hashCode = function () {
|
|
2115
|
-
var result = getStringHashCode(this.
|
|
2116
|
-
result = imul(result, 31) + (this.
|
|
2139
|
+
var result = getStringHashCode(this.j29_1);
|
|
2140
|
+
result = imul(result, 31) + (this.k29_1 == null ? 0 : getStringHashCode(this.k29_1)) | 0;
|
|
2117
2141
|
return result;
|
|
2118
2142
|
};
|
|
2119
2143
|
protoOf(PlayerLostConnectionReasonDto).equals = function (other) {
|
|
@@ -2122,9 +2146,9 @@
|
|
|
2122
2146
|
if (!(other instanceof PlayerLostConnectionReasonDto))
|
|
2123
2147
|
return false;
|
|
2124
2148
|
var tmp0_other_with_cast = other instanceof PlayerLostConnectionReasonDto ? other : THROW_CCE();
|
|
2125
|
-
if (!(this.
|
|
2149
|
+
if (!(this.j29_1 === tmp0_other_with_cast.j29_1))
|
|
2126
2150
|
return false;
|
|
2127
|
-
if (!(this.
|
|
2151
|
+
if (!(this.k29_1 == tmp0_other_with_cast.k29_1))
|
|
2128
2152
|
return false;
|
|
2129
2153
|
return true;
|
|
2130
2154
|
};
|
|
@@ -2139,20 +2163,20 @@
|
|
|
2139
2163
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
2140
2164
|
tmp0_serialDesc.xu('playerId', false);
|
|
2141
2165
|
tmp0_serialDesc.xu('tag', false);
|
|
2142
|
-
this.
|
|
2166
|
+
this.l29_1 = tmp0_serialDesc;
|
|
2143
2167
|
}
|
|
2144
|
-
protoOf($serializer_4).
|
|
2145
|
-
var tmp0_desc = this.
|
|
2168
|
+
protoOf($serializer_4).m29 = function (encoder, value) {
|
|
2169
|
+
var tmp0_desc = this.l29_1;
|
|
2146
2170
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
2147
|
-
tmp1_output.wo(tmp0_desc, 0, value.
|
|
2148
|
-
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2171
|
+
tmp1_output.wo(tmp0_desc, 0, value.n29_1);
|
|
2172
|
+
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.o29_1);
|
|
2149
2173
|
tmp1_output.in(tmp0_desc);
|
|
2150
2174
|
};
|
|
2151
2175
|
protoOf($serializer_4).zj = function (encoder, value) {
|
|
2152
|
-
return this.
|
|
2176
|
+
return this.m29(encoder, value instanceof PlayerTimeoutReasonDto ? value : THROW_CCE());
|
|
2153
2177
|
};
|
|
2154
2178
|
protoOf($serializer_4).ak = function (decoder) {
|
|
2155
|
-
var tmp0_desc = this.
|
|
2179
|
+
var tmp0_desc = this.l29_1;
|
|
2156
2180
|
var tmp1_flag = true;
|
|
2157
2181
|
var tmp2_index = 0;
|
|
2158
2182
|
var tmp3_bitMask0 = 0;
|
|
@@ -2187,7 +2211,7 @@
|
|
|
2187
2211
|
return PlayerTimeoutReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2188
2212
|
};
|
|
2189
2213
|
protoOf($serializer_4).yj = function () {
|
|
2190
|
-
return this.
|
|
2214
|
+
return this.l29_1;
|
|
2191
2215
|
};
|
|
2192
2216
|
protoOf($serializer_4).mv = function () {
|
|
2193
2217
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2203,11 +2227,11 @@
|
|
|
2203
2227
|
}
|
|
2204
2228
|
function PlayerTimeoutReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2205
2229
|
if (!(3 === (3 & seen0))) {
|
|
2206
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().
|
|
2230
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().l29_1);
|
|
2207
2231
|
}
|
|
2208
2232
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2209
|
-
$this.
|
|
2210
|
-
$this.
|
|
2233
|
+
$this.n29_1 = playerId;
|
|
2234
|
+
$this.o29_1 = tag;
|
|
2211
2235
|
return $this;
|
|
2212
2236
|
}
|
|
2213
2237
|
function PlayerTimeoutReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2215,15 +2239,15 @@
|
|
|
2215
2239
|
}
|
|
2216
2240
|
function PlayerTimeoutReasonDto(playerId, tag) {
|
|
2217
2241
|
TerminationGameReasonDto.call(this);
|
|
2218
|
-
this.
|
|
2219
|
-
this.
|
|
2242
|
+
this.n29_1 = playerId;
|
|
2243
|
+
this.o29_1 = tag;
|
|
2220
2244
|
}
|
|
2221
2245
|
protoOf(PlayerTimeoutReasonDto).toString = function () {
|
|
2222
|
-
return 'PlayerTimeoutReasonDto(playerId=' + this.
|
|
2246
|
+
return 'PlayerTimeoutReasonDto(playerId=' + this.n29_1 + ', tag=' + this.o29_1 + ')';
|
|
2223
2247
|
};
|
|
2224
2248
|
protoOf(PlayerTimeoutReasonDto).hashCode = function () {
|
|
2225
|
-
var result = getStringHashCode(this.
|
|
2226
|
-
result = imul(result, 31) + (this.
|
|
2249
|
+
var result = getStringHashCode(this.n29_1);
|
|
2250
|
+
result = imul(result, 31) + (this.o29_1 == null ? 0 : getStringHashCode(this.o29_1)) | 0;
|
|
2227
2251
|
return result;
|
|
2228
2252
|
};
|
|
2229
2253
|
protoOf(PlayerTimeoutReasonDto).equals = function (other) {
|
|
@@ -2232,14 +2256,14 @@
|
|
|
2232
2256
|
if (!(other instanceof PlayerTimeoutReasonDto))
|
|
2233
2257
|
return false;
|
|
2234
2258
|
var tmp0_other_with_cast = other instanceof PlayerTimeoutReasonDto ? other : THROW_CCE();
|
|
2235
|
-
if (!(this.
|
|
2259
|
+
if (!(this.n29_1 === tmp0_other_with_cast.n29_1))
|
|
2236
2260
|
return false;
|
|
2237
|
-
if (!(this.
|
|
2261
|
+
if (!(this.o29_1 == tmp0_other_with_cast.o29_1))
|
|
2238
2262
|
return false;
|
|
2239
2263
|
return true;
|
|
2240
2264
|
};
|
|
2241
2265
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
2242
|
-
return $this.
|
|
2266
|
+
return $this.p29_1.a2();
|
|
2243
2267
|
}
|
|
2244
2268
|
function WaitingForConnectionReasonDto$_anonymous__hgbgp6() {
|
|
2245
2269
|
var tmp = WaitingForConnectionReasonDto_getInstance();
|
|
@@ -2254,7 +2278,7 @@
|
|
|
2254
2278
|
TerminationGameReasonDto.call(this);
|
|
2255
2279
|
var tmp = this;
|
|
2256
2280
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2257
|
-
tmp.
|
|
2281
|
+
tmp.p29_1 = lazy(tmp_0, WaitingForConnectionReasonDto$_anonymous__hgbgp6);
|
|
2258
2282
|
}
|
|
2259
2283
|
protoOf(WaitingForConnectionReasonDto).o17 = function () {
|
|
2260
2284
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -2401,20 +2425,20 @@
|
|
|
2401
2425
|
}
|
|
2402
2426
|
function mapFromDto_2(_this__u8e3s4) {
|
|
2403
2427
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2404
|
-
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.
|
|
2428
|
+
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.d29_1, get_gameFinishedReasonMapping());
|
|
2405
2429
|
return new GameFinishedReason(tmp0_elvis_lhs == null ? Reason_GAME_NOT_EXISTS_getInstance() : tmp0_elvis_lhs);
|
|
2406
2430
|
}
|
|
2407
2431
|
function mapFromDto_3(_this__u8e3s4) {
|
|
2408
2432
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2409
|
-
return new PlayerExitReason(_this__u8e3s4.
|
|
2433
|
+
return new PlayerExitReason(_this__u8e3s4.g29_1);
|
|
2410
2434
|
}
|
|
2411
2435
|
function mapFromDto_4(_this__u8e3s4) {
|
|
2412
2436
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2413
|
-
return new PlayerLostConnectionReason(_this__u8e3s4.
|
|
2437
|
+
return new PlayerLostConnectionReason(_this__u8e3s4.j29_1, _this__u8e3s4.k29_1);
|
|
2414
2438
|
}
|
|
2415
2439
|
function mapFromDto_5(_this__u8e3s4) {
|
|
2416
2440
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2417
|
-
return new PlayerTimeoutReason(_this__u8e3s4.
|
|
2441
|
+
return new PlayerTimeoutReason(_this__u8e3s4.n29_1, _this__u8e3s4.o29_1);
|
|
2418
2442
|
}
|
|
2419
2443
|
function mapFromDto_6(_this__u8e3s4) {
|
|
2420
2444
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
@@ -2475,17 +2499,21 @@
|
|
|
2475
2499
|
}
|
|
2476
2500
|
var tmp6_isBot = tmp;
|
|
2477
2501
|
var tmp7_initialLuckyFactor = _this__u8e3s4.initialLuckyFactor;
|
|
2478
|
-
|
|
2502
|
+
var tmp8_rating = _this__u8e3s4.initialRating;
|
|
2503
|
+
return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp8_rating, tmp6_isBot, tmp7_initialLuckyFactor);
|
|
2479
2504
|
}
|
|
2480
2505
|
function mapFromDto_8(_this__u8e3s4) {
|
|
2481
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
2482
|
-
var
|
|
2483
|
-
var tmp1_elvis_lhs = _this__u8e3s4.
|
|
2484
|
-
var
|
|
2485
|
-
var tmp2_elvis_lhs = _this__u8e3s4.
|
|
2486
|
-
var
|
|
2487
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
2488
|
-
|
|
2506
|
+
var tmp0_elvis_lhs = _this__u8e3s4.q29_1;
|
|
2507
|
+
var tmp4_playerId = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.r29_1) : tmp0_elvis_lhs;
|
|
2508
|
+
var tmp1_elvis_lhs = _this__u8e3s4.s29_1;
|
|
2509
|
+
var tmp5_name = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.t29_1) : tmp1_elvis_lhs;
|
|
2510
|
+
var tmp2_elvis_lhs = _this__u8e3s4.u29_1;
|
|
2511
|
+
var tmp6_avatarUrl = tmp2_elvis_lhs == null ? _this__u8e3s4.v29_1 : tmp2_elvis_lhs;
|
|
2512
|
+
var tmp3_elvis_lhs = _this__u8e3s4.x29_1;
|
|
2513
|
+
var tmp7_isBot = tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs;
|
|
2514
|
+
var tmp8_initialLuckyFactor = _this__u8e3s4.y29_1;
|
|
2515
|
+
var tmp9_initialRating = _this__u8e3s4.w29_1;
|
|
2516
|
+
return new GameUserInfo(tmp4_playerId, tmp5_name, tmp6_avatarUrl, tmp7_isBot, tmp9_initialRating, tmp8_initialLuckyFactor);
|
|
2489
2517
|
}
|
|
2490
2518
|
function Companion_14() {
|
|
2491
2519
|
}
|
|
@@ -2495,47 +2523,49 @@
|
|
|
2495
2523
|
}
|
|
2496
2524
|
function $serializer_5() {
|
|
2497
2525
|
$serializer_instance_5 = this;
|
|
2498
|
-
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this,
|
|
2526
|
+
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this, 9);
|
|
2499
2527
|
tmp0_serialDesc.xu('playerId', true);
|
|
2500
2528
|
tmp0_serialDesc.xu('uid', true);
|
|
2501
2529
|
tmp0_serialDesc.xu('name', true);
|
|
2502
2530
|
tmp0_serialDesc.xu('nickname', true);
|
|
2503
2531
|
tmp0_serialDesc.xu('avatarUrl', true);
|
|
2504
2532
|
tmp0_serialDesc.xu('photo', true);
|
|
2505
|
-
tmp0_serialDesc.xu('
|
|
2506
|
-
tmp0_serialDesc.xu('
|
|
2507
|
-
|
|
2533
|
+
tmp0_serialDesc.xu('rating', false);
|
|
2534
|
+
tmp0_serialDesc.xu('is_bot', false);
|
|
2535
|
+
tmp0_serialDesc.xu('lucky_factor', false);
|
|
2536
|
+
this.z29_1 = tmp0_serialDesc;
|
|
2508
2537
|
}
|
|
2509
|
-
protoOf($serializer_5).
|
|
2510
|
-
var tmp0_desc = this.
|
|
2538
|
+
protoOf($serializer_5).a2a = function (encoder, value) {
|
|
2539
|
+
var tmp0_desc = this.z29_1;
|
|
2511
2540
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
2512
|
-
if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.
|
|
2513
|
-
tmp1_output.ap(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
2541
|
+
if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.q29_1 == null)) {
|
|
2542
|
+
tmp1_output.ap(tmp0_desc, 0, StringSerializer_getInstance(), value.q29_1);
|
|
2514
2543
|
}
|
|
2515
|
-
if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.
|
|
2516
|
-
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2544
|
+
if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.r29_1 == null)) {
|
|
2545
|
+
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.r29_1);
|
|
2517
2546
|
}
|
|
2518
|
-
if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.
|
|
2519
|
-
tmp1_output.ap(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
2547
|
+
if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.s29_1 == null)) {
|
|
2548
|
+
tmp1_output.ap(tmp0_desc, 2, StringSerializer_getInstance(), value.s29_1);
|
|
2520
2549
|
}
|
|
2521
|
-
if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.
|
|
2522
|
-
tmp1_output.ap(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
2550
|
+
if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.t29_1 == null)) {
|
|
2551
|
+
tmp1_output.ap(tmp0_desc, 3, StringSerializer_getInstance(), value.t29_1);
|
|
2523
2552
|
}
|
|
2524
|
-
if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.
|
|
2525
|
-
tmp1_output.ap(tmp0_desc, 4, StringSerializer_getInstance(), value.
|
|
2553
|
+
if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.u29_1 == null)) {
|
|
2554
|
+
tmp1_output.ap(tmp0_desc, 4, StringSerializer_getInstance(), value.u29_1);
|
|
2526
2555
|
}
|
|
2527
|
-
if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.
|
|
2528
|
-
tmp1_output.ap(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
2556
|
+
if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.v29_1 == null)) {
|
|
2557
|
+
tmp1_output.ap(tmp0_desc, 5, StringSerializer_getInstance(), value.v29_1);
|
|
2529
2558
|
}
|
|
2530
|
-
tmp1_output.ap(tmp0_desc, 6,
|
|
2531
|
-
tmp1_output.ap(tmp0_desc, 7,
|
|
2559
|
+
tmp1_output.ap(tmp0_desc, 6, DoubleSerializer_getInstance(), value.w29_1);
|
|
2560
|
+
tmp1_output.ap(tmp0_desc, 7, BooleanSerializer_getInstance(), value.x29_1);
|
|
2561
|
+
tmp1_output.ap(tmp0_desc, 8, FloatSerializer_getInstance(), value.y29_1);
|
|
2532
2562
|
tmp1_output.in(tmp0_desc);
|
|
2533
2563
|
};
|
|
2534
2564
|
protoOf($serializer_5).zj = function (encoder, value) {
|
|
2535
|
-
return this.
|
|
2565
|
+
return this.a2a(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
2536
2566
|
};
|
|
2537
2567
|
protoOf($serializer_5).ak = function (decoder) {
|
|
2538
|
-
var tmp0_desc = this.
|
|
2568
|
+
var tmp0_desc = this.z29_1;
|
|
2539
2569
|
var tmp1_flag = true;
|
|
2540
2570
|
var tmp2_index = 0;
|
|
2541
2571
|
var tmp3_bitMask0 = 0;
|
|
@@ -2547,78 +2577,85 @@
|
|
|
2547
2577
|
var tmp9_local5 = null;
|
|
2548
2578
|
var tmp10_local6 = null;
|
|
2549
2579
|
var tmp11_local7 = null;
|
|
2550
|
-
var
|
|
2551
|
-
|
|
2552
|
-
|
|
2580
|
+
var tmp12_local8 = null;
|
|
2581
|
+
var tmp13_input = decoder.hn(tmp0_desc);
|
|
2582
|
+
if (tmp13_input.xn()) {
|
|
2583
|
+
tmp4_local0 = tmp13_input.vn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
2553
2584
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
2554
|
-
tmp5_local1 =
|
|
2585
|
+
tmp5_local1 = tmp13_input.vn(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
|
|
2555
2586
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
2556
|
-
tmp6_local2 =
|
|
2587
|
+
tmp6_local2 = tmp13_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
|
|
2557
2588
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
2558
|
-
tmp7_local3 =
|
|
2589
|
+
tmp7_local3 = tmp13_input.vn(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
|
|
2559
2590
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
2560
|
-
tmp8_local4 =
|
|
2591
|
+
tmp8_local4 = tmp13_input.vn(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
|
|
2561
2592
|
tmp3_bitMask0 = tmp3_bitMask0 | 16;
|
|
2562
|
-
tmp9_local5 =
|
|
2593
|
+
tmp9_local5 = tmp13_input.vn(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
|
|
2563
2594
|
tmp3_bitMask0 = tmp3_bitMask0 | 32;
|
|
2564
|
-
tmp10_local6 =
|
|
2595
|
+
tmp10_local6 = tmp13_input.vn(tmp0_desc, 6, DoubleSerializer_getInstance(), tmp10_local6);
|
|
2565
2596
|
tmp3_bitMask0 = tmp3_bitMask0 | 64;
|
|
2566
|
-
tmp11_local7 =
|
|
2597
|
+
tmp11_local7 = tmp13_input.vn(tmp0_desc, 7, BooleanSerializer_getInstance(), tmp11_local7);
|
|
2567
2598
|
tmp3_bitMask0 = tmp3_bitMask0 | 128;
|
|
2599
|
+
tmp12_local8 = tmp13_input.vn(tmp0_desc, 8, FloatSerializer_getInstance(), tmp12_local8);
|
|
2600
|
+
tmp3_bitMask0 = tmp3_bitMask0 | 256;
|
|
2568
2601
|
} else
|
|
2569
2602
|
while (tmp1_flag) {
|
|
2570
|
-
tmp2_index =
|
|
2603
|
+
tmp2_index = tmp13_input.yn(tmp0_desc);
|
|
2571
2604
|
switch (tmp2_index) {
|
|
2572
2605
|
case -1:
|
|
2573
2606
|
tmp1_flag = false;
|
|
2574
2607
|
break;
|
|
2575
2608
|
case 0:
|
|
2576
|
-
tmp4_local0 =
|
|
2609
|
+
tmp4_local0 = tmp13_input.vn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
2577
2610
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
2578
2611
|
break;
|
|
2579
2612
|
case 1:
|
|
2580
|
-
tmp5_local1 =
|
|
2613
|
+
tmp5_local1 = tmp13_input.vn(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
|
|
2581
2614
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
2582
2615
|
break;
|
|
2583
2616
|
case 2:
|
|
2584
|
-
tmp6_local2 =
|
|
2617
|
+
tmp6_local2 = tmp13_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
|
|
2585
2618
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
2586
2619
|
break;
|
|
2587
2620
|
case 3:
|
|
2588
|
-
tmp7_local3 =
|
|
2621
|
+
tmp7_local3 = tmp13_input.vn(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
|
|
2589
2622
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
2590
2623
|
break;
|
|
2591
2624
|
case 4:
|
|
2592
|
-
tmp8_local4 =
|
|
2625
|
+
tmp8_local4 = tmp13_input.vn(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
|
|
2593
2626
|
tmp3_bitMask0 = tmp3_bitMask0 | 16;
|
|
2594
2627
|
break;
|
|
2595
2628
|
case 5:
|
|
2596
|
-
tmp9_local5 =
|
|
2629
|
+
tmp9_local5 = tmp13_input.vn(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
|
|
2597
2630
|
tmp3_bitMask0 = tmp3_bitMask0 | 32;
|
|
2598
2631
|
break;
|
|
2599
2632
|
case 6:
|
|
2600
|
-
tmp10_local6 =
|
|
2633
|
+
tmp10_local6 = tmp13_input.vn(tmp0_desc, 6, DoubleSerializer_getInstance(), tmp10_local6);
|
|
2601
2634
|
tmp3_bitMask0 = tmp3_bitMask0 | 64;
|
|
2602
2635
|
break;
|
|
2603
2636
|
case 7:
|
|
2604
|
-
tmp11_local7 =
|
|
2637
|
+
tmp11_local7 = tmp13_input.vn(tmp0_desc, 7, BooleanSerializer_getInstance(), tmp11_local7);
|
|
2605
2638
|
tmp3_bitMask0 = tmp3_bitMask0 | 128;
|
|
2606
2639
|
break;
|
|
2640
|
+
case 8:
|
|
2641
|
+
tmp12_local8 = tmp13_input.vn(tmp0_desc, 8, FloatSerializer_getInstance(), tmp12_local8);
|
|
2642
|
+
tmp3_bitMask0 = tmp3_bitMask0 | 256;
|
|
2643
|
+
break;
|
|
2607
2644
|
default:
|
|
2608
2645
|
throw UnknownFieldException_init_$Create$(tmp2_index);
|
|
2609
2646
|
}
|
|
2610
2647
|
}
|
|
2611
|
-
|
|
2612
|
-
return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, null);
|
|
2648
|
+
tmp13_input.in(tmp0_desc);
|
|
2649
|
+
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);
|
|
2613
2650
|
};
|
|
2614
2651
|
protoOf($serializer_5).yj = function () {
|
|
2615
|
-
return this.
|
|
2652
|
+
return this.z29_1;
|
|
2616
2653
|
};
|
|
2617
2654
|
protoOf($serializer_5).mv = function () {
|
|
2618
2655
|
// Inline function 'kotlin.arrayOf' call
|
|
2619
2656
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2620
2657
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2621
|
-
return [get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
|
|
2658
|
+
return [get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(DoubleSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
|
|
2622
2659
|
};
|
|
2623
2660
|
var $serializer_instance_5;
|
|
2624
2661
|
function $serializer_getInstance_5() {
|
|
@@ -2626,86 +2663,90 @@
|
|
|
2626
2663
|
new $serializer_5();
|
|
2627
2664
|
return $serializer_instance_5;
|
|
2628
2665
|
}
|
|
2629
|
-
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
2630
|
-
if (!(
|
|
2631
|
-
throwMissingFieldException(seen0,
|
|
2666
|
+
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
2667
|
+
if (!(448 === (448 & seen0))) {
|
|
2668
|
+
throwMissingFieldException(seen0, 448, $serializer_getInstance_5().z29_1);
|
|
2632
2669
|
}
|
|
2633
2670
|
if (0 === (seen0 & 1))
|
|
2634
|
-
$this.
|
|
2671
|
+
$this.q29_1 = null;
|
|
2635
2672
|
else
|
|
2636
|
-
$this.
|
|
2673
|
+
$this.q29_1 = playerId;
|
|
2637
2674
|
if (0 === (seen0 & 2))
|
|
2638
|
-
$this.
|
|
2675
|
+
$this.r29_1 = null;
|
|
2639
2676
|
else
|
|
2640
|
-
$this.
|
|
2677
|
+
$this.r29_1 = uid;
|
|
2641
2678
|
if (0 === (seen0 & 4))
|
|
2642
|
-
$this.
|
|
2679
|
+
$this.s29_1 = null;
|
|
2643
2680
|
else
|
|
2644
|
-
$this.
|
|
2681
|
+
$this.s29_1 = name;
|
|
2645
2682
|
if (0 === (seen0 & 8))
|
|
2646
|
-
$this.
|
|
2683
|
+
$this.t29_1 = null;
|
|
2647
2684
|
else
|
|
2648
|
-
$this.
|
|
2685
|
+
$this.t29_1 = nickname;
|
|
2649
2686
|
if (0 === (seen0 & 16))
|
|
2650
|
-
$this.
|
|
2687
|
+
$this.u29_1 = null;
|
|
2651
2688
|
else
|
|
2652
|
-
$this.
|
|
2689
|
+
$this.u29_1 = avatarUrl;
|
|
2653
2690
|
if (0 === (seen0 & 32))
|
|
2654
|
-
$this.
|
|
2691
|
+
$this.v29_1 = null;
|
|
2655
2692
|
else
|
|
2656
|
-
$this.
|
|
2657
|
-
$this.
|
|
2658
|
-
$this.
|
|
2693
|
+
$this.v29_1 = photo;
|
|
2694
|
+
$this.w29_1 = rating;
|
|
2695
|
+
$this.x29_1 = isBot;
|
|
2696
|
+
$this.y29_1 = initialLuckyFactor;
|
|
2659
2697
|
return $this;
|
|
2660
2698
|
}
|
|
2661
|
-
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
2662
|
-
return GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
|
|
2699
|
+
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
2700
|
+
return GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
|
|
2663
2701
|
}
|
|
2664
|
-
function GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor) {
|
|
2702
|
+
function GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
2665
2703
|
playerId = playerId === VOID ? null : playerId;
|
|
2666
2704
|
uid = uid === VOID ? null : uid;
|
|
2667
2705
|
name = name === VOID ? null : name;
|
|
2668
2706
|
nickname = nickname === VOID ? null : nickname;
|
|
2669
2707
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
2670
2708
|
photo = photo === VOID ? null : photo;
|
|
2671
|
-
this.
|
|
2672
|
-
this.
|
|
2673
|
-
this.
|
|
2674
|
-
this.
|
|
2675
|
-
this.
|
|
2676
|
-
this.
|
|
2677
|
-
this.
|
|
2678
|
-
this.
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2709
|
+
this.q29_1 = playerId;
|
|
2710
|
+
this.r29_1 = uid;
|
|
2711
|
+
this.s29_1 = name;
|
|
2712
|
+
this.t29_1 = nickname;
|
|
2713
|
+
this.u29_1 = avatarUrl;
|
|
2714
|
+
this.v29_1 = photo;
|
|
2715
|
+
this.w29_1 = rating;
|
|
2716
|
+
this.x29_1 = isBot;
|
|
2717
|
+
this.y29_1 = initialLuckyFactor;
|
|
2718
|
+
}
|
|
2719
|
+
protoOf(GameUserInfoDto).b2a = function () {
|
|
2720
|
+
return this.c2a(VOID, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
2721
|
+
};
|
|
2722
|
+
protoOf(GameUserInfoDto).d2a = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
2723
|
+
return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
2724
|
+
};
|
|
2725
|
+
protoOf(GameUserInfoDto).c2a = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, $super) {
|
|
2726
|
+
playerId = playerId === VOID ? this.q29_1 : playerId;
|
|
2727
|
+
uid = uid === VOID ? this.r29_1 : uid;
|
|
2728
|
+
name = name === VOID ? this.s29_1 : name;
|
|
2729
|
+
nickname = nickname === VOID ? this.t29_1 : nickname;
|
|
2730
|
+
avatarUrl = avatarUrl === VOID ? this.u29_1 : avatarUrl;
|
|
2731
|
+
photo = photo === VOID ? this.v29_1 : photo;
|
|
2732
|
+
rating = rating === VOID ? this.w29_1 : rating;
|
|
2733
|
+
isBot = isBot === VOID ? this.x29_1 : isBot;
|
|
2734
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.y29_1 : initialLuckyFactor;
|
|
2735
|
+
return $super === VOID ? this.d2a(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) : $super.d2a.call(this, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
2696
2736
|
};
|
|
2697
2737
|
protoOf(GameUserInfoDto).toString = function () {
|
|
2698
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
2738
|
+
return 'GameUserInfoDto(playerId=' + this.q29_1 + ', uid=' + this.r29_1 + ', name=' + this.s29_1 + ', nickname=' + this.t29_1 + ', avatarUrl=' + this.u29_1 + ', photo=' + this.v29_1 + ', rating=' + this.w29_1 + ', isBot=' + this.x29_1 + ', initialLuckyFactor=' + this.y29_1 + ')';
|
|
2699
2739
|
};
|
|
2700
2740
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
2701
|
-
var result = this.
|
|
2702
|
-
result = imul(result, 31) + (this.p29_1 == null ? 0 : getStringHashCode(this.p29_1)) | 0;
|
|
2703
|
-
result = imul(result, 31) + (this.q29_1 == null ? 0 : getStringHashCode(this.q29_1)) | 0;
|
|
2741
|
+
var result = this.q29_1 == null ? 0 : getStringHashCode(this.q29_1);
|
|
2704
2742
|
result = imul(result, 31) + (this.r29_1 == null ? 0 : getStringHashCode(this.r29_1)) | 0;
|
|
2705
2743
|
result = imul(result, 31) + (this.s29_1 == null ? 0 : getStringHashCode(this.s29_1)) | 0;
|
|
2706
2744
|
result = imul(result, 31) + (this.t29_1 == null ? 0 : getStringHashCode(this.t29_1)) | 0;
|
|
2707
|
-
result = imul(result, 31) + (this.u29_1 == null ? 0 :
|
|
2708
|
-
result = imul(result, 31) + (this.v29_1 == null ? 0 :
|
|
2745
|
+
result = imul(result, 31) + (this.u29_1 == null ? 0 : getStringHashCode(this.u29_1)) | 0;
|
|
2746
|
+
result = imul(result, 31) + (this.v29_1 == null ? 0 : getStringHashCode(this.v29_1)) | 0;
|
|
2747
|
+
result = imul(result, 31) + (this.w29_1 == null ? 0 : getNumberHashCode(this.w29_1)) | 0;
|
|
2748
|
+
result = imul(result, 31) + (this.x29_1 == null ? 0 : getBooleanHashCode(this.x29_1)) | 0;
|
|
2749
|
+
result = imul(result, 31) + (this.y29_1 == null ? 0 : getNumberHashCode(this.y29_1)) | 0;
|
|
2709
2750
|
return result;
|
|
2710
2751
|
};
|
|
2711
2752
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -2714,10 +2755,6 @@
|
|
|
2714
2755
|
if (!(other instanceof GameUserInfoDto))
|
|
2715
2756
|
return false;
|
|
2716
2757
|
var tmp0_other_with_cast = other instanceof GameUserInfoDto ? other : THROW_CCE();
|
|
2717
|
-
if (!(this.o29_1 == tmp0_other_with_cast.o29_1))
|
|
2718
|
-
return false;
|
|
2719
|
-
if (!(this.p29_1 == tmp0_other_with_cast.p29_1))
|
|
2720
|
-
return false;
|
|
2721
2758
|
if (!(this.q29_1 == tmp0_other_with_cast.q29_1))
|
|
2722
2759
|
return false;
|
|
2723
2760
|
if (!(this.r29_1 == tmp0_other_with_cast.r29_1))
|
|
@@ -2728,7 +2765,13 @@
|
|
|
2728
2765
|
return false;
|
|
2729
2766
|
if (!(this.u29_1 == tmp0_other_with_cast.u29_1))
|
|
2730
2767
|
return false;
|
|
2731
|
-
if (!
|
|
2768
|
+
if (!(this.v29_1 == tmp0_other_with_cast.v29_1))
|
|
2769
|
+
return false;
|
|
2770
|
+
if (!equals(this.w29_1, tmp0_other_with_cast.w29_1))
|
|
2771
|
+
return false;
|
|
2772
|
+
if (!(this.x29_1 == tmp0_other_with_cast.x29_1))
|
|
2773
|
+
return false;
|
|
2774
|
+
if (!equals(this.y29_1, tmp0_other_with_cast.y29_1))
|
|
2732
2775
|
return false;
|
|
2733
2776
|
return true;
|
|
2734
2777
|
};
|
|
@@ -2738,7 +2781,7 @@
|
|
|
2738
2781
|
// Inline function 'kotlin.arrayOf' call
|
|
2739
2782
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
2740
2783
|
// Inline function 'kotlin.js.asDynamic' call
|
|
2741
|
-
tmp.
|
|
2784
|
+
tmp.e2a_1 = [null, null, null, null, null, null, null, null, new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), null, null, null, null, null, null, null, null, null, null, null, null, null];
|
|
2742
2785
|
}
|
|
2743
2786
|
var Companion_instance_15;
|
|
2744
2787
|
function Companion_getInstance_17() {
|
|
@@ -2773,91 +2816,91 @@
|
|
|
2773
2816
|
tmp0_serialDesc.xu('fineIfNoBribes', true);
|
|
2774
2817
|
tmp0_serialDesc.xu('enableFineAfterThirdByte', true);
|
|
2775
2818
|
tmp0_serialDesc.xu('fineAfterThirdFailedContract', true);
|
|
2776
|
-
this.
|
|
2819
|
+
this.f2a_1 = tmp0_serialDesc;
|
|
2777
2820
|
}
|
|
2778
|
-
protoOf($serializer_6).
|
|
2779
|
-
var tmp0_desc = this.
|
|
2821
|
+
protoOf($serializer_6).g2a = function (encoder, value) {
|
|
2822
|
+
var tmp0_desc = this.f2a_1;
|
|
2780
2823
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
2781
|
-
var tmp2_cached = Companion_getInstance_17().
|
|
2782
|
-
if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.
|
|
2783
|
-
tmp1_output.ap(tmp0_desc, 0, BooleanSerializer_getInstance(), value.
|
|
2824
|
+
var tmp2_cached = Companion_getInstance_17().e2a_1;
|
|
2825
|
+
if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.h2a_1 == null)) {
|
|
2826
|
+
tmp1_output.ap(tmp0_desc, 0, BooleanSerializer_getInstance(), value.h2a_1);
|
|
2784
2827
|
}
|
|
2785
|
-
if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.
|
|
2786
|
-
tmp1_output.ap(tmp0_desc, 1, BooleanSerializer_getInstance(), value.
|
|
2828
|
+
if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.i2a_1 == null)) {
|
|
2829
|
+
tmp1_output.ap(tmp0_desc, 1, BooleanSerializer_getInstance(), value.i2a_1);
|
|
2787
2830
|
}
|
|
2788
|
-
if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.
|
|
2789
|
-
tmp1_output.ap(tmp0_desc, 2, BooleanSerializer_getInstance(), value.
|
|
2831
|
+
if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.j2a_1 == null)) {
|
|
2832
|
+
tmp1_output.ap(tmp0_desc, 2, BooleanSerializer_getInstance(), value.j2a_1);
|
|
2790
2833
|
}
|
|
2791
|
-
if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.
|
|
2792
|
-
tmp1_output.ap(tmp0_desc, 3, BooleanSerializer_getInstance(), value.
|
|
2834
|
+
if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.k2a_1 == null)) {
|
|
2835
|
+
tmp1_output.ap(tmp0_desc, 3, BooleanSerializer_getInstance(), value.k2a_1);
|
|
2793
2836
|
}
|
|
2794
|
-
if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.
|
|
2795
|
-
tmp1_output.ap(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
2837
|
+
if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.l2a_1 == null)) {
|
|
2838
|
+
tmp1_output.ap(tmp0_desc, 4, BooleanSerializer_getInstance(), value.l2a_1);
|
|
2796
2839
|
}
|
|
2797
|
-
if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.
|
|
2798
|
-
tmp1_output.ap(tmp0_desc, 5, IntSerializer_getInstance(), value.
|
|
2840
|
+
if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.m2a_1 == null)) {
|
|
2841
|
+
tmp1_output.ap(tmp0_desc, 5, IntSerializer_getInstance(), value.m2a_1);
|
|
2799
2842
|
}
|
|
2800
|
-
if (tmp1_output.ep(tmp0_desc, 6) ? true : !(value.
|
|
2801
|
-
tmp1_output.ap(tmp0_desc, 6, IntSerializer_getInstance(), value.
|
|
2843
|
+
if (tmp1_output.ep(tmp0_desc, 6) ? true : !(value.n2a_1 == null)) {
|
|
2844
|
+
tmp1_output.ap(tmp0_desc, 6, IntSerializer_getInstance(), value.n2a_1);
|
|
2802
2845
|
}
|
|
2803
|
-
if (tmp1_output.ep(tmp0_desc, 7) ? true : !(value.
|
|
2804
|
-
tmp1_output.ap(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
2846
|
+
if (tmp1_output.ep(tmp0_desc, 7) ? true : !(value.o2a_1 == null)) {
|
|
2847
|
+
tmp1_output.ap(tmp0_desc, 7, BooleanSerializer_getInstance(), value.o2a_1);
|
|
2805
2848
|
}
|
|
2806
|
-
if (tmp1_output.ep(tmp0_desc, 8) ? true : !(value.
|
|
2807
|
-
tmp1_output.ap(tmp0_desc, 8, tmp2_cached[8], value.
|
|
2849
|
+
if (tmp1_output.ep(tmp0_desc, 8) ? true : !(value.p2a_1 == null)) {
|
|
2850
|
+
tmp1_output.ap(tmp0_desc, 8, tmp2_cached[8], value.p2a_1);
|
|
2808
2851
|
}
|
|
2809
|
-
if (tmp1_output.ep(tmp0_desc, 9) ? true : !(value.
|
|
2810
|
-
tmp1_output.ap(tmp0_desc, 9, tmp2_cached[9], value.
|
|
2852
|
+
if (tmp1_output.ep(tmp0_desc, 9) ? true : !(value.q2a_1 == null)) {
|
|
2853
|
+
tmp1_output.ap(tmp0_desc, 9, tmp2_cached[9], value.q2a_1);
|
|
2811
2854
|
}
|
|
2812
|
-
if (tmp1_output.ep(tmp0_desc, 10) ? true : !(value.
|
|
2813
|
-
tmp1_output.ap(tmp0_desc, 10, tmp2_cached[10], value.
|
|
2855
|
+
if (tmp1_output.ep(tmp0_desc, 10) ? true : !(value.r2a_1 == null)) {
|
|
2856
|
+
tmp1_output.ap(tmp0_desc, 10, tmp2_cached[10], value.r2a_1);
|
|
2814
2857
|
}
|
|
2815
|
-
if (tmp1_output.ep(tmp0_desc, 11) ? true : !(value.
|
|
2816
|
-
tmp1_output.ap(tmp0_desc, 11, BooleanSerializer_getInstance(), value.
|
|
2858
|
+
if (tmp1_output.ep(tmp0_desc, 11) ? true : !(value.s2a_1 == null)) {
|
|
2859
|
+
tmp1_output.ap(tmp0_desc, 11, BooleanSerializer_getInstance(), value.s2a_1);
|
|
2817
2860
|
}
|
|
2818
|
-
if (tmp1_output.ep(tmp0_desc, 12) ? true : !(value.
|
|
2819
|
-
tmp1_output.ap(tmp0_desc, 12, BooleanSerializer_getInstance(), value.
|
|
2861
|
+
if (tmp1_output.ep(tmp0_desc, 12) ? true : !(value.t2a_1 == null)) {
|
|
2862
|
+
tmp1_output.ap(tmp0_desc, 12, BooleanSerializer_getInstance(), value.t2a_1);
|
|
2820
2863
|
}
|
|
2821
|
-
if (tmp1_output.ep(tmp0_desc, 13) ? true : !(value.
|
|
2822
|
-
tmp1_output.ap(tmp0_desc, 13, BooleanSerializer_getInstance(), value.
|
|
2864
|
+
if (tmp1_output.ep(tmp0_desc, 13) ? true : !(value.u2a_1 == null)) {
|
|
2865
|
+
tmp1_output.ap(tmp0_desc, 13, BooleanSerializer_getInstance(), value.u2a_1);
|
|
2823
2866
|
}
|
|
2824
|
-
if (tmp1_output.ep(tmp0_desc, 14) ? true : !(value.
|
|
2825
|
-
tmp1_output.ap(tmp0_desc, 14, BooleanSerializer_getInstance(), value.
|
|
2867
|
+
if (tmp1_output.ep(tmp0_desc, 14) ? true : !(value.v2a_1 == null)) {
|
|
2868
|
+
tmp1_output.ap(tmp0_desc, 14, BooleanSerializer_getInstance(), value.v2a_1);
|
|
2826
2869
|
}
|
|
2827
|
-
if (tmp1_output.ep(tmp0_desc, 15) ? true : !(value.
|
|
2828
|
-
tmp1_output.ap(tmp0_desc, 15, BooleanSerializer_getInstance(), value.
|
|
2870
|
+
if (tmp1_output.ep(tmp0_desc, 15) ? true : !(value.w2a_1 == null)) {
|
|
2871
|
+
tmp1_output.ap(tmp0_desc, 15, BooleanSerializer_getInstance(), value.w2a_1);
|
|
2829
2872
|
}
|
|
2830
|
-
if (tmp1_output.ep(tmp0_desc, 16) ? true : !(value.
|
|
2831
|
-
tmp1_output.ap(tmp0_desc, 16, BooleanSerializer_getInstance(), value.
|
|
2873
|
+
if (tmp1_output.ep(tmp0_desc, 16) ? true : !(value.x2a_1 == null)) {
|
|
2874
|
+
tmp1_output.ap(tmp0_desc, 16, BooleanSerializer_getInstance(), value.x2a_1);
|
|
2832
2875
|
}
|
|
2833
|
-
if (tmp1_output.ep(tmp0_desc, 17) ? true : !(value.
|
|
2834
|
-
tmp1_output.ap(tmp0_desc, 17, BooleanSerializer_getInstance(), value.
|
|
2876
|
+
if (tmp1_output.ep(tmp0_desc, 17) ? true : !(value.y2a_1 == null)) {
|
|
2877
|
+
tmp1_output.ap(tmp0_desc, 17, BooleanSerializer_getInstance(), value.y2a_1);
|
|
2835
2878
|
}
|
|
2836
|
-
if (tmp1_output.ep(tmp0_desc, 18) ? true : !(value.
|
|
2837
|
-
tmp1_output.ap(tmp0_desc, 18, BooleanSerializer_getInstance(), value.
|
|
2879
|
+
if (tmp1_output.ep(tmp0_desc, 18) ? true : !(value.z2a_1 == null)) {
|
|
2880
|
+
tmp1_output.ap(tmp0_desc, 18, BooleanSerializer_getInstance(), value.z2a_1);
|
|
2838
2881
|
}
|
|
2839
|
-
if (tmp1_output.ep(tmp0_desc, 19) ? true : !(value.
|
|
2840
|
-
tmp1_output.ap(tmp0_desc, 19, StringSerializer_getInstance(), value.
|
|
2882
|
+
if (tmp1_output.ep(tmp0_desc, 19) ? true : !(value.a2b_1 == null)) {
|
|
2883
|
+
tmp1_output.ap(tmp0_desc, 19, StringSerializer_getInstance(), value.a2b_1);
|
|
2841
2884
|
}
|
|
2842
|
-
if (tmp1_output.ep(tmp0_desc, 20) ? true : !(value.
|
|
2843
|
-
tmp1_output.ap(tmp0_desc, 20, BooleanSerializer_getInstance(), value.
|
|
2885
|
+
if (tmp1_output.ep(tmp0_desc, 20) ? true : !(value.b2b_1 == null)) {
|
|
2886
|
+
tmp1_output.ap(tmp0_desc, 20, BooleanSerializer_getInstance(), value.b2b_1);
|
|
2844
2887
|
}
|
|
2845
|
-
if (tmp1_output.ep(tmp0_desc, 21) ? true : !(value.
|
|
2846
|
-
tmp1_output.ap(tmp0_desc, 21, IntSerializer_getInstance(), value.
|
|
2888
|
+
if (tmp1_output.ep(tmp0_desc, 21) ? true : !(value.c2b_1 == null)) {
|
|
2889
|
+
tmp1_output.ap(tmp0_desc, 21, IntSerializer_getInstance(), value.c2b_1);
|
|
2847
2890
|
}
|
|
2848
|
-
if (tmp1_output.ep(tmp0_desc, 22) ? true : !(value.
|
|
2849
|
-
tmp1_output.ap(tmp0_desc, 22, BooleanSerializer_getInstance(), value.
|
|
2891
|
+
if (tmp1_output.ep(tmp0_desc, 22) ? true : !(value.d2b_1 == null)) {
|
|
2892
|
+
tmp1_output.ap(tmp0_desc, 22, BooleanSerializer_getInstance(), value.d2b_1);
|
|
2850
2893
|
}
|
|
2851
|
-
if (tmp1_output.ep(tmp0_desc, 23) ? true : !(value.
|
|
2852
|
-
tmp1_output.ap(tmp0_desc, 23, IntSerializer_getInstance(), value.
|
|
2894
|
+
if (tmp1_output.ep(tmp0_desc, 23) ? true : !(value.e2b_1 == null)) {
|
|
2895
|
+
tmp1_output.ap(tmp0_desc, 23, IntSerializer_getInstance(), value.e2b_1);
|
|
2853
2896
|
}
|
|
2854
2897
|
tmp1_output.in(tmp0_desc);
|
|
2855
2898
|
};
|
|
2856
2899
|
protoOf($serializer_6).zj = function (encoder, value) {
|
|
2857
|
-
return this.
|
|
2900
|
+
return this.g2a(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
2858
2901
|
};
|
|
2859
2902
|
protoOf($serializer_6).ak = function (decoder) {
|
|
2860
|
-
var tmp0_desc = this.
|
|
2903
|
+
var tmp0_desc = this.f2a_1;
|
|
2861
2904
|
var tmp1_flag = true;
|
|
2862
2905
|
var tmp2_index = 0;
|
|
2863
2906
|
var tmp3_bitMask0 = 0;
|
|
@@ -2886,7 +2929,7 @@
|
|
|
2886
2929
|
var tmp26_local22 = null;
|
|
2887
2930
|
var tmp27_local23 = null;
|
|
2888
2931
|
var tmp28_input = decoder.hn(tmp0_desc);
|
|
2889
|
-
var tmp29_cached = Companion_getInstance_17().
|
|
2932
|
+
var tmp29_cached = Companion_getInstance_17().e2a_1;
|
|
2890
2933
|
if (tmp28_input.xn()) {
|
|
2891
2934
|
tmp4_local0 = tmp28_input.vn(tmp0_desc, 0, BooleanSerializer_getInstance(), tmp4_local0);
|
|
2892
2935
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3047,10 +3090,10 @@
|
|
|
3047
3090
|
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, null);
|
|
3048
3091
|
};
|
|
3049
3092
|
protoOf($serializer_6).yj = function () {
|
|
3050
|
-
return this.
|
|
3093
|
+
return this.f2a_1;
|
|
3051
3094
|
};
|
|
3052
3095
|
protoOf($serializer_6).mv = function () {
|
|
3053
|
-
var tmp0_cached = Companion_getInstance_17().
|
|
3096
|
+
var tmp0_cached = Companion_getInstance_17().e2a_1;
|
|
3054
3097
|
// Inline function 'kotlin.arrayOf' call
|
|
3055
3098
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3056
3099
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3064,104 +3107,104 @@
|
|
|
3064
3107
|
}
|
|
3065
3108
|
function RulesDto_init_$Init$(seen0, needToPutHigherTrump, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, distributePoints, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker, $this) {
|
|
3066
3109
|
if (!(0 === (0 & seen0))) {
|
|
3067
|
-
throwMissingFieldException(seen0, 0, $serializer_getInstance_6().
|
|
3110
|
+
throwMissingFieldException(seen0, 0, $serializer_getInstance_6().f2a_1);
|
|
3068
3111
|
}
|
|
3069
3112
|
if (0 === (seen0 & 1))
|
|
3070
|
-
$this.
|
|
3113
|
+
$this.h2a_1 = null;
|
|
3071
3114
|
else
|
|
3072
|
-
$this.
|
|
3115
|
+
$this.h2a_1 = needToPutHigherTrump;
|
|
3073
3116
|
if (0 === (seen0 & 2))
|
|
3074
|
-
$this.
|
|
3117
|
+
$this.i2a_1 = null;
|
|
3075
3118
|
else
|
|
3076
|
-
$this.
|
|
3119
|
+
$this.i2a_1 = playerWhoChooseSuitGoFirst;
|
|
3077
3120
|
if (0 === (seen0 & 4))
|
|
3078
|
-
$this.
|
|
3121
|
+
$this.j2a_1 = null;
|
|
3079
3122
|
else
|
|
3080
|
-
$this.
|
|
3123
|
+
$this.j2a_1 = winnerShuffleCards;
|
|
3081
3124
|
if (0 === (seen0 & 8))
|
|
3082
|
-
$this.
|
|
3125
|
+
$this.k2a_1 = null;
|
|
3083
3126
|
else
|
|
3084
|
-
$this.
|
|
3127
|
+
$this.k2a_1 = playWithoutLiabilities;
|
|
3085
3128
|
if (0 === (seen0 & 16))
|
|
3086
|
-
$this.
|
|
3129
|
+
$this.l2a_1 = null;
|
|
3087
3130
|
else
|
|
3088
|
-
$this.
|
|
3131
|
+
$this.l2a_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3089
3132
|
if (0 === (seen0 & 32))
|
|
3090
|
-
$this.
|
|
3133
|
+
$this.m2a_1 = null;
|
|
3091
3134
|
else
|
|
3092
|
-
$this.
|
|
3135
|
+
$this.m2a_1 = dealerInitialCardsCount;
|
|
3093
3136
|
if (0 === (seen0 & 64))
|
|
3094
|
-
$this.
|
|
3137
|
+
$this.n2a_1 = null;
|
|
3095
3138
|
else
|
|
3096
|
-
$this.
|
|
3139
|
+
$this.n2a_1 = dealerFinalCardsCount;
|
|
3097
3140
|
if (0 === (seen0 & 128))
|
|
3098
|
-
$this.
|
|
3141
|
+
$this.o2a_1 = null;
|
|
3099
3142
|
else
|
|
3100
|
-
$this.
|
|
3143
|
+
$this.o2a_1 = dealerCounterClockwise;
|
|
3101
3144
|
if (0 === (seen0 & 256))
|
|
3102
|
-
$this.
|
|
3145
|
+
$this.p2a_1 = null;
|
|
3103
3146
|
else
|
|
3104
|
-
$this.
|
|
3147
|
+
$this.p2a_1 = contractTypes;
|
|
3105
3148
|
if (0 === (seen0 & 512))
|
|
3106
|
-
$this.
|
|
3149
|
+
$this.q2a_1 = null;
|
|
3107
3150
|
else
|
|
3108
|
-
$this.
|
|
3151
|
+
$this.q2a_1 = bidTypes;
|
|
3109
3152
|
if (0 === (seen0 & 1024))
|
|
3110
|
-
$this.
|
|
3153
|
+
$this.r2a_1 = null;
|
|
3111
3154
|
else
|
|
3112
|
-
$this.
|
|
3155
|
+
$this.r2a_1 = combinationsWithFirstCard;
|
|
3113
3156
|
if (0 === (seen0 & 2048))
|
|
3114
|
-
$this.
|
|
3157
|
+
$this.s2a_1 = null;
|
|
3115
3158
|
else
|
|
3116
|
-
$this.
|
|
3159
|
+
$this.s2a_1 = protectBella;
|
|
3117
3160
|
if (0 === (seen0 & 4096))
|
|
3118
|
-
$this.
|
|
3161
|
+
$this.t2a_1 = null;
|
|
3119
3162
|
else
|
|
3120
|
-
$this.
|
|
3163
|
+
$this.t2a_1 = oneTryToProtectBella;
|
|
3121
3164
|
if (0 === (seen0 & 8192))
|
|
3122
|
-
$this.
|
|
3165
|
+
$this.u2a_1 = null;
|
|
3123
3166
|
else
|
|
3124
|
-
$this.
|
|
3167
|
+
$this.u2a_1 = enableFourSevensCombination;
|
|
3125
3168
|
if (0 === (seen0 & 16384))
|
|
3126
|
-
$this.
|
|
3169
|
+
$this.v2a_1 = null;
|
|
3127
3170
|
else
|
|
3128
|
-
$this.
|
|
3171
|
+
$this.v2a_1 = enableTrumpSevenCombination;
|
|
3129
3172
|
if (0 === (seen0 & 32768))
|
|
3130
|
-
$this.
|
|
3173
|
+
$this.w2a_1 = null;
|
|
3131
3174
|
else
|
|
3132
|
-
$this.
|
|
3175
|
+
$this.w2a_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3133
3176
|
if (0 === (seen0 & 65536))
|
|
3134
|
-
$this.
|
|
3177
|
+
$this.x2a_1 = null;
|
|
3135
3178
|
else
|
|
3136
|
-
$this.
|
|
3179
|
+
$this.x2a_1 = checkTrumpCombination;
|
|
3137
3180
|
if (0 === (seen0 & 131072))
|
|
3138
|
-
$this.
|
|
3181
|
+
$this.y2a_1 = null;
|
|
3139
3182
|
else
|
|
3140
|
-
$this.
|
|
3183
|
+
$this.y2a_1 = checkOnlyTrumpDebertz;
|
|
3141
3184
|
if (0 === (seen0 & 262144))
|
|
3142
|
-
$this.
|
|
3185
|
+
$this.z2a_1 = null;
|
|
3143
3186
|
else
|
|
3144
|
-
$this.
|
|
3187
|
+
$this.z2a_1 = distributePoints;
|
|
3145
3188
|
if (0 === (seen0 & 524288))
|
|
3146
|
-
$this.
|
|
3189
|
+
$this.a2b_1 = null;
|
|
3147
3190
|
else
|
|
3148
|
-
$this.
|
|
3191
|
+
$this.a2b_1 = pointsDistributeMode;
|
|
3149
3192
|
if (0 === (seen0 & 1048576))
|
|
3150
|
-
$this.
|
|
3193
|
+
$this.b2b_1 = null;
|
|
3151
3194
|
else
|
|
3152
|
-
$this.
|
|
3195
|
+
$this.b2b_1 = enableFineIfNoBribes;
|
|
3153
3196
|
if (0 === (seen0 & 2097152))
|
|
3154
|
-
$this.
|
|
3197
|
+
$this.c2b_1 = null;
|
|
3155
3198
|
else
|
|
3156
|
-
$this.
|
|
3199
|
+
$this.c2b_1 = fineIfNoBribes;
|
|
3157
3200
|
if (0 === (seen0 & 4194304))
|
|
3158
|
-
$this.
|
|
3201
|
+
$this.d2b_1 = null;
|
|
3159
3202
|
else
|
|
3160
|
-
$this.
|
|
3203
|
+
$this.d2b_1 = enableFineAfterThirdByte;
|
|
3161
3204
|
if (0 === (seen0 & 8388608))
|
|
3162
|
-
$this.
|
|
3205
|
+
$this.e2b_1 = null;
|
|
3163
3206
|
else
|
|
3164
|
-
$this.
|
|
3207
|
+
$this.e2b_1 = fineAfterThirdFailedContract;
|
|
3165
3208
|
return $this;
|
|
3166
3209
|
}
|
|
3167
3210
|
function RulesDto_init_$Create$(seen0, needToPutHigherTrump, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, distributePoints, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker) {
|
|
@@ -3193,59 +3236,59 @@
|
|
|
3193
3236
|
fineIfNoBribes = fineIfNoBribes === VOID ? null : fineIfNoBribes;
|
|
3194
3237
|
enableFineAfterThirdByte = enableFineAfterThirdByte === VOID ? null : enableFineAfterThirdByte;
|
|
3195
3238
|
fineAfterThirdFailedContract = fineAfterThirdFailedContract === VOID ? null : fineAfterThirdFailedContract;
|
|
3196
|
-
this.
|
|
3197
|
-
this.
|
|
3198
|
-
this.
|
|
3199
|
-
this.
|
|
3200
|
-
this.
|
|
3201
|
-
this.
|
|
3202
|
-
this.
|
|
3203
|
-
this.
|
|
3204
|
-
this.
|
|
3205
|
-
this.
|
|
3206
|
-
this.
|
|
3207
|
-
this.
|
|
3208
|
-
this.
|
|
3209
|
-
this.
|
|
3210
|
-
this.
|
|
3211
|
-
this.
|
|
3212
|
-
this.
|
|
3213
|
-
this.
|
|
3214
|
-
this.
|
|
3215
|
-
this.
|
|
3216
|
-
this.
|
|
3217
|
-
this.
|
|
3218
|
-
this.
|
|
3219
|
-
this.
|
|
3239
|
+
this.h2a_1 = needToPutHigherTrump;
|
|
3240
|
+
this.i2a_1 = playerWhoChooseSuitGoFirst;
|
|
3241
|
+
this.j2a_1 = winnerShuffleCards;
|
|
3242
|
+
this.k2a_1 = playWithoutLiabilities;
|
|
3243
|
+
this.l2a_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3244
|
+
this.m2a_1 = dealerInitialCardsCount;
|
|
3245
|
+
this.n2a_1 = dealerFinalCardsCount;
|
|
3246
|
+
this.o2a_1 = dealerCounterClockwise;
|
|
3247
|
+
this.p2a_1 = contractTypes;
|
|
3248
|
+
this.q2a_1 = bidTypes;
|
|
3249
|
+
this.r2a_1 = combinationsWithFirstCard;
|
|
3250
|
+
this.s2a_1 = protectBella;
|
|
3251
|
+
this.t2a_1 = oneTryToProtectBella;
|
|
3252
|
+
this.u2a_1 = enableFourSevensCombination;
|
|
3253
|
+
this.v2a_1 = enableTrumpSevenCombination;
|
|
3254
|
+
this.w2a_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3255
|
+
this.x2a_1 = checkTrumpCombination;
|
|
3256
|
+
this.y2a_1 = checkOnlyTrumpDebertz;
|
|
3257
|
+
this.z2a_1 = distributePoints;
|
|
3258
|
+
this.a2b_1 = pointsDistributeMode;
|
|
3259
|
+
this.b2b_1 = enableFineIfNoBribes;
|
|
3260
|
+
this.c2b_1 = fineIfNoBribes;
|
|
3261
|
+
this.d2b_1 = enableFineAfterThirdByte;
|
|
3262
|
+
this.e2b_1 = fineAfterThirdFailedContract;
|
|
3220
3263
|
}
|
|
3221
3264
|
protoOf(RulesDto).toString = function () {
|
|
3222
|
-
return 'RulesDto(needToPutHigherTrump=' + this.
|
|
3265
|
+
return 'RulesDto(needToPutHigherTrump=' + this.h2a_1 + ', playerWhoChooseSuitGoFirst=' + this.i2a_1 + ', winnerShuffleCards=' + this.j2a_1 + ', playWithoutLiabilities=' + this.k2a_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.l2a_1 + ', dealerInitialCardsCount=' + this.m2a_1 + ', dealerFinalCardsCount=' + this.n2a_1 + ', dealerCounterClockwise=' + this.o2a_1 + ', contractTypes=' + toString(this.p2a_1) + ', bidTypes=' + toString(this.q2a_1) + ', combinationsWithFirstCard=' + toString(this.r2a_1) + ', protectBella=' + this.s2a_1 + ', oneTryToProtectBella=' + this.t2a_1 + ', enableFourSevensCombination=' + this.u2a_1 + ', enableTrumpSevenCombination=' + this.v2a_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.w2a_1 + ', checkTrumpCombination=' + this.x2a_1 + ', checkOnlyTrumpDebertz=' + this.y2a_1 + ', distributePoints=' + this.z2a_1 + ', pointsDistributeMode=' + this.a2b_1 + ', enableFineIfNoBribes=' + this.b2b_1 + ', fineIfNoBribes=' + this.c2b_1 + ', enableFineAfterThirdByte=' + this.d2b_1 + ', fineAfterThirdFailedContract=' + this.e2b_1 + ')';
|
|
3223
3266
|
};
|
|
3224
3267
|
protoOf(RulesDto).hashCode = function () {
|
|
3225
|
-
var result = this.
|
|
3226
|
-
result = imul(result, 31) + (this.f2a_1 == null ? 0 : getBooleanHashCode(this.f2a_1)) | 0;
|
|
3227
|
-
result = imul(result, 31) + (this.g2a_1 == null ? 0 : getBooleanHashCode(this.g2a_1)) | 0;
|
|
3228
|
-
result = imul(result, 31) + (this.h2a_1 == null ? 0 : getBooleanHashCode(this.h2a_1)) | 0;
|
|
3268
|
+
var result = this.h2a_1 == null ? 0 : getBooleanHashCode(this.h2a_1);
|
|
3229
3269
|
result = imul(result, 31) + (this.i2a_1 == null ? 0 : getBooleanHashCode(this.i2a_1)) | 0;
|
|
3230
|
-
result = imul(result, 31) + (this.j2a_1 == null ? 0 : this.j2a_1) | 0;
|
|
3231
|
-
result = imul(result, 31) + (this.k2a_1 == null ? 0 : this.k2a_1) | 0;
|
|
3270
|
+
result = imul(result, 31) + (this.j2a_1 == null ? 0 : getBooleanHashCode(this.j2a_1)) | 0;
|
|
3271
|
+
result = imul(result, 31) + (this.k2a_1 == null ? 0 : getBooleanHashCode(this.k2a_1)) | 0;
|
|
3232
3272
|
result = imul(result, 31) + (this.l2a_1 == null ? 0 : getBooleanHashCode(this.l2a_1)) | 0;
|
|
3233
|
-
result = imul(result, 31) + (this.m2a_1 == null ? 0 :
|
|
3234
|
-
result = imul(result, 31) + (this.n2a_1 == null ? 0 :
|
|
3235
|
-
result = imul(result, 31) + (this.o2a_1 == null ? 0 :
|
|
3236
|
-
result = imul(result, 31) + (this.p2a_1 == null ? 0 :
|
|
3237
|
-
result = imul(result, 31) + (this.q2a_1 == null ? 0 :
|
|
3238
|
-
result = imul(result, 31) + (this.r2a_1 == null ? 0 :
|
|
3273
|
+
result = imul(result, 31) + (this.m2a_1 == null ? 0 : this.m2a_1) | 0;
|
|
3274
|
+
result = imul(result, 31) + (this.n2a_1 == null ? 0 : this.n2a_1) | 0;
|
|
3275
|
+
result = imul(result, 31) + (this.o2a_1 == null ? 0 : getBooleanHashCode(this.o2a_1)) | 0;
|
|
3276
|
+
result = imul(result, 31) + (this.p2a_1 == null ? 0 : hashCode(this.p2a_1)) | 0;
|
|
3277
|
+
result = imul(result, 31) + (this.q2a_1 == null ? 0 : hashCode(this.q2a_1)) | 0;
|
|
3278
|
+
result = imul(result, 31) + (this.r2a_1 == null ? 0 : hashCode(this.r2a_1)) | 0;
|
|
3239
3279
|
result = imul(result, 31) + (this.s2a_1 == null ? 0 : getBooleanHashCode(this.s2a_1)) | 0;
|
|
3240
3280
|
result = imul(result, 31) + (this.t2a_1 == null ? 0 : getBooleanHashCode(this.t2a_1)) | 0;
|
|
3241
3281
|
result = imul(result, 31) + (this.u2a_1 == null ? 0 : getBooleanHashCode(this.u2a_1)) | 0;
|
|
3242
3282
|
result = imul(result, 31) + (this.v2a_1 == null ? 0 : getBooleanHashCode(this.v2a_1)) | 0;
|
|
3243
3283
|
result = imul(result, 31) + (this.w2a_1 == null ? 0 : getBooleanHashCode(this.w2a_1)) | 0;
|
|
3244
|
-
result = imul(result, 31) + (this.x2a_1 == null ? 0 :
|
|
3284
|
+
result = imul(result, 31) + (this.x2a_1 == null ? 0 : getBooleanHashCode(this.x2a_1)) | 0;
|
|
3245
3285
|
result = imul(result, 31) + (this.y2a_1 == null ? 0 : getBooleanHashCode(this.y2a_1)) | 0;
|
|
3246
|
-
result = imul(result, 31) + (this.z2a_1 == null ? 0 : this.z2a_1) | 0;
|
|
3247
|
-
result = imul(result, 31) + (this.a2b_1 == null ? 0 :
|
|
3248
|
-
result = imul(result, 31) + (this.b2b_1 == null ? 0 : this.b2b_1) | 0;
|
|
3286
|
+
result = imul(result, 31) + (this.z2a_1 == null ? 0 : getBooleanHashCode(this.z2a_1)) | 0;
|
|
3287
|
+
result = imul(result, 31) + (this.a2b_1 == null ? 0 : getStringHashCode(this.a2b_1)) | 0;
|
|
3288
|
+
result = imul(result, 31) + (this.b2b_1 == null ? 0 : getBooleanHashCode(this.b2b_1)) | 0;
|
|
3289
|
+
result = imul(result, 31) + (this.c2b_1 == null ? 0 : this.c2b_1) | 0;
|
|
3290
|
+
result = imul(result, 31) + (this.d2b_1 == null ? 0 : getBooleanHashCode(this.d2b_1)) | 0;
|
|
3291
|
+
result = imul(result, 31) + (this.e2b_1 == null ? 0 : this.e2b_1) | 0;
|
|
3249
3292
|
return result;
|
|
3250
3293
|
};
|
|
3251
3294
|
protoOf(RulesDto).equals = function (other) {
|
|
@@ -3254,12 +3297,6 @@
|
|
|
3254
3297
|
if (!(other instanceof RulesDto))
|
|
3255
3298
|
return false;
|
|
3256
3299
|
var tmp0_other_with_cast = other instanceof RulesDto ? other : THROW_CCE();
|
|
3257
|
-
if (!(this.e2a_1 == tmp0_other_with_cast.e2a_1))
|
|
3258
|
-
return false;
|
|
3259
|
-
if (!(this.f2a_1 == tmp0_other_with_cast.f2a_1))
|
|
3260
|
-
return false;
|
|
3261
|
-
if (!(this.g2a_1 == tmp0_other_with_cast.g2a_1))
|
|
3262
|
-
return false;
|
|
3263
3300
|
if (!(this.h2a_1 == tmp0_other_with_cast.h2a_1))
|
|
3264
3301
|
return false;
|
|
3265
3302
|
if (!(this.i2a_1 == tmp0_other_with_cast.i2a_1))
|
|
@@ -3270,17 +3307,17 @@
|
|
|
3270
3307
|
return false;
|
|
3271
3308
|
if (!(this.l2a_1 == tmp0_other_with_cast.l2a_1))
|
|
3272
3309
|
return false;
|
|
3273
|
-
if (!
|
|
3310
|
+
if (!(this.m2a_1 == tmp0_other_with_cast.m2a_1))
|
|
3274
3311
|
return false;
|
|
3275
|
-
if (!
|
|
3312
|
+
if (!(this.n2a_1 == tmp0_other_with_cast.n2a_1))
|
|
3276
3313
|
return false;
|
|
3277
|
-
if (!
|
|
3314
|
+
if (!(this.o2a_1 == tmp0_other_with_cast.o2a_1))
|
|
3278
3315
|
return false;
|
|
3279
|
-
if (!(this.p2a_1
|
|
3316
|
+
if (!equals(this.p2a_1, tmp0_other_with_cast.p2a_1))
|
|
3280
3317
|
return false;
|
|
3281
|
-
if (!(this.q2a_1
|
|
3318
|
+
if (!equals(this.q2a_1, tmp0_other_with_cast.q2a_1))
|
|
3282
3319
|
return false;
|
|
3283
|
-
if (!(this.r2a_1
|
|
3320
|
+
if (!equals(this.r2a_1, tmp0_other_with_cast.r2a_1))
|
|
3284
3321
|
return false;
|
|
3285
3322
|
if (!(this.s2a_1 == tmp0_other_with_cast.s2a_1))
|
|
3286
3323
|
return false;
|
|
@@ -3302,6 +3339,12 @@
|
|
|
3302
3339
|
return false;
|
|
3303
3340
|
if (!(this.b2b_1 == tmp0_other_with_cast.b2b_1))
|
|
3304
3341
|
return false;
|
|
3342
|
+
if (!(this.c2b_1 == tmp0_other_with_cast.c2b_1))
|
|
3343
|
+
return false;
|
|
3344
|
+
if (!(this.d2b_1 == tmp0_other_with_cast.d2b_1))
|
|
3345
|
+
return false;
|
|
3346
|
+
if (!(this.e2b_1 == tmp0_other_with_cast.e2b_1))
|
|
3347
|
+
return false;
|
|
3305
3348
|
return true;
|
|
3306
3349
|
};
|
|
3307
3350
|
function BufferedAction() {
|
|
@@ -3423,7 +3466,7 @@
|
|
|
3423
3466
|
return nextItemIndex > get_lastIndex(_this__u8e3s4) ? null : _this__u8e3s4.o(nextItemIndex);
|
|
3424
3467
|
}
|
|
3425
3468
|
function _get_$cachedSerializer__te6jhj_9($this) {
|
|
3426
|
-
return $this.
|
|
3469
|
+
return $this.l2b_1.a2();
|
|
3427
3470
|
}
|
|
3428
3471
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
3429
3472
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
|
|
@@ -3463,7 +3506,7 @@
|
|
|
3463
3506
|
Companion_instance_16 = this;
|
|
3464
3507
|
var tmp = this;
|
|
3465
3508
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
3466
|
-
tmp.
|
|
3509
|
+
tmp.l2b_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
3467
3510
|
}
|
|
3468
3511
|
protoOf(Companion_16).o17 = function () {
|
|
3469
3512
|
return _get_$cachedSerializer__te6jhj_9(this);
|
|
@@ -3522,7 +3565,7 @@
|
|
|
3522
3565
|
// Inline function 'kotlin.arrayOf' call
|
|
3523
3566
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3524
3567
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3525
|
-
tmp.
|
|
3568
|
+
tmp.r2b_1 = [Companion_getInstance_18().o17(), null, null, null, null];
|
|
3526
3569
|
}
|
|
3527
3570
|
protoOf(Companion_17).o17 = function () {
|
|
3528
3571
|
return $serializer_getInstance_7();
|
|
@@ -3541,12 +3584,12 @@
|
|
|
3541
3584
|
tmp0_serialDesc.xu('tag', false);
|
|
3542
3585
|
tmp0_serialDesc.xu('message', false);
|
|
3543
3586
|
tmp0_serialDesc.xu('stackTrace', false);
|
|
3544
|
-
this.
|
|
3587
|
+
this.s2b_1 = tmp0_serialDesc;
|
|
3545
3588
|
}
|
|
3546
|
-
protoOf($serializer_7).
|
|
3547
|
-
var tmp0_desc = this.
|
|
3589
|
+
protoOf($serializer_7).t2b = function (encoder, value) {
|
|
3590
|
+
var tmp0_desc = this.s2b_1;
|
|
3548
3591
|
var tmp1_output = encoder.hn(tmp0_desc);
|
|
3549
|
-
var tmp2_cached = Companion_getInstance_19().
|
|
3592
|
+
var tmp2_cached = Companion_getInstance_19().r2b_1;
|
|
3550
3593
|
tmp1_output.yo(tmp0_desc, 0, tmp2_cached[0], value.type);
|
|
3551
3594
|
tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
3552
3595
|
tmp1_output.ap(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -3555,10 +3598,10 @@
|
|
|
3555
3598
|
tmp1_output.in(tmp0_desc);
|
|
3556
3599
|
};
|
|
3557
3600
|
protoOf($serializer_7).zj = function (encoder, value) {
|
|
3558
|
-
return this.
|
|
3601
|
+
return this.t2b(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
3559
3602
|
};
|
|
3560
3603
|
protoOf($serializer_7).ak = function (decoder) {
|
|
3561
|
-
var tmp0_desc = this.
|
|
3604
|
+
var tmp0_desc = this.s2b_1;
|
|
3562
3605
|
var tmp1_flag = true;
|
|
3563
3606
|
var tmp2_index = 0;
|
|
3564
3607
|
var tmp3_bitMask0 = 0;
|
|
@@ -3568,7 +3611,7 @@
|
|
|
3568
3611
|
var tmp7_local3 = null;
|
|
3569
3612
|
var tmp8_local4 = null;
|
|
3570
3613
|
var tmp9_input = decoder.hn(tmp0_desc);
|
|
3571
|
-
var tmp10_cached = Companion_getInstance_19().
|
|
3614
|
+
var tmp10_cached = Companion_getInstance_19().r2b_1;
|
|
3572
3615
|
if (tmp9_input.xn()) {
|
|
3573
3616
|
tmp4_local0 = tmp9_input.tn(tmp0_desc, 0, tmp10_cached[0], tmp4_local0);
|
|
3574
3617
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3615,13 +3658,13 @@
|
|
|
3615
3658
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
3616
3659
|
};
|
|
3617
3660
|
protoOf($serializer_7).yj = function () {
|
|
3618
|
-
return this.
|
|
3661
|
+
return this.s2b_1;
|
|
3619
3662
|
};
|
|
3620
3663
|
protoOf($serializer_7).mv = function () {
|
|
3621
3664
|
// Inline function 'kotlin.arrayOf' call
|
|
3622
3665
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3623
3666
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3624
|
-
return [Companion_getInstance_19().
|
|
3667
|
+
return [Companion_getInstance_19().r2b_1[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
3625
3668
|
};
|
|
3626
3669
|
var $serializer_instance_7;
|
|
3627
3670
|
function $serializer_getInstance_7() {
|
|
@@ -3631,7 +3674,7 @@
|
|
|
3631
3674
|
}
|
|
3632
3675
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
3633
3676
|
if (!(31 === (31 & seen0))) {
|
|
3634
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_7().
|
|
3677
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_7().s2b_1);
|
|
3635
3678
|
}
|
|
3636
3679
|
$this.type = type;
|
|
3637
3680
|
$this.key = key;
|
|
@@ -3663,7 +3706,7 @@
|
|
|
3663
3706
|
protoOf(LoggerOutputDataDto).e9 = function () {
|
|
3664
3707
|
return this.message;
|
|
3665
3708
|
};
|
|
3666
|
-
protoOf(LoggerOutputDataDto).
|
|
3709
|
+
protoOf(LoggerOutputDataDto).u2b = function () {
|
|
3667
3710
|
return this.stackTrace;
|
|
3668
3711
|
};
|
|
3669
3712
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -3725,10 +3768,10 @@
|
|
|
3725
3768
|
protoOf(LoggerOutputDataDto).e1x = function () {
|
|
3726
3769
|
return this.message;
|
|
3727
3770
|
};
|
|
3728
|
-
protoOf(LoggerOutputDataDto).
|
|
3771
|
+
protoOf(LoggerOutputDataDto).c27 = function () {
|
|
3729
3772
|
return this.stackTrace;
|
|
3730
3773
|
};
|
|
3731
|
-
protoOf(LoggerOutputDataDto).
|
|
3774
|
+
protoOf(LoggerOutputDataDto).v2b = function (type, key, tag, message, stackTrace) {
|
|
3732
3775
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
3733
3776
|
};
|
|
3734
3777
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -3737,7 +3780,7 @@
|
|
|
3737
3780
|
tag = tag === VOID ? this.tag : tag;
|
|
3738
3781
|
message = message === VOID ? this.message : message;
|
|
3739
3782
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
3740
|
-
return this.
|
|
3783
|
+
return this.v2b(type, key, tag, message, stackTrace);
|
|
3741
3784
|
};
|
|
3742
3785
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
3743
3786
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -3823,16 +3866,16 @@
|
|
|
3823
3866
|
defineProp(protoOf(PlayerIndex), 'playerId', function () {
|
|
3824
3867
|
return this.g26();
|
|
3825
3868
|
});
|
|
3826
|
-
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).
|
|
3827
|
-
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).
|
|
3828
|
-
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).
|
|
3829
|
-
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).
|
|
3830
|
-
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).
|
|
3831
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).
|
|
3832
|
-
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).
|
|
3833
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).
|
|
3834
|
-
defineProp(protoOf(PlayerConnectionState), 'isClientDisconnectReason', protoOf(PlayerConnectionState).
|
|
3835
|
-
defineProp(protoOf(PlayerConnectionState), 'isServerDisconnectReason', protoOf(PlayerConnectionState).
|
|
3869
|
+
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).f28);
|
|
3870
|
+
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).g28);
|
|
3871
|
+
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).h28);
|
|
3872
|
+
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).i28);
|
|
3873
|
+
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).j28);
|
|
3874
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).k28);
|
|
3875
|
+
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).l28);
|
|
3876
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).m28);
|
|
3877
|
+
defineProp(protoOf(PlayerConnectionState), 'isClientDisconnectReason', protoOf(PlayerConnectionState).n28);
|
|
3878
|
+
defineProp(protoOf(PlayerConnectionState), 'isServerDisconnectReason', protoOf(PlayerConnectionState).o28);
|
|
3836
3879
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).k2);
|
|
3837
3880
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).l2);
|
|
3838
3881
|
protoOf($serializer_0).nv = typeParametersSerializers;
|