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