game_client_logic_deb 1.8.381 → 1.8.382
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +18 -18
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +3 -3
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -385,7 +385,7 @@
|
|
|
385
385
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
386
386
|
//endregion
|
|
387
387
|
function GameEngineConfig() {
|
|
388
|
-
this.version = '1.8.
|
|
388
|
+
this.version = '1.8.382';
|
|
389
389
|
}
|
|
390
390
|
protoOf(GameEngineConfig).u3u = function () {
|
|
391
391
|
return this.version;
|
package/Logic_Debertz-engine.js
CHANGED
|
@@ -2208,23 +2208,23 @@
|
|
|
2208
2208
|
return false;
|
|
2209
2209
|
return true;
|
|
2210
2210
|
};
|
|
2211
|
-
function RatingConfig(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease
|
|
2211
|
+
function RatingConfig(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease) {
|
|
2212
2212
|
defaultFactor = defaultFactor === VOID ? 30 : defaultFactor;
|
|
2213
2213
|
eloScaleH2H = eloScaleH2H === VOID ? 400.0 : eloScaleH2H;
|
|
2214
2214
|
eloScaleFfa = eloScaleFfa === VOID ? 700.0 : eloScaleFfa;
|
|
2215
2215
|
h2hCloseLossThresholdRatio = h2hCloseLossThresholdRatio === VOID ? 0.9 : h2hCloseLossThresholdRatio;
|
|
2216
2216
|
ffaMovEnabled = ffaMovEnabled === VOID ? true : ffaMovEnabled;
|
|
2217
|
+
ffaMaxRatingDecreaseFraction = ffaMaxRatingDecreaseFraction === VOID ? 0.8 : ffaMaxRatingDecreaseFraction;
|
|
2217
2218
|
botNativeUpdatesRating = botNativeUpdatesRating === VOID ? true : botNativeUpdatesRating;
|
|
2218
2219
|
replacementForcedDecrease = replacementForcedDecrease === VOID ? true : replacementForcedDecrease;
|
|
2219
|
-
ffaMaxRatingDecreaseFraction = ffaMaxRatingDecreaseFraction === VOID ? 0.8 : ffaMaxRatingDecreaseFraction;
|
|
2220
2220
|
this.defaultFactor = defaultFactor;
|
|
2221
2221
|
this.eloScaleH2H = eloScaleH2H;
|
|
2222
2222
|
this.eloScaleFfa = eloScaleFfa;
|
|
2223
2223
|
this.h2hCloseLossThresholdRatio = h2hCloseLossThresholdRatio;
|
|
2224
2224
|
this.ffaMovEnabled = ffaMovEnabled;
|
|
2225
|
+
this.ffaMaxRatingDecreaseFraction = ffaMaxRatingDecreaseFraction;
|
|
2225
2226
|
this.botNativeUpdatesRating = botNativeUpdatesRating;
|
|
2226
2227
|
this.replacementForcedDecrease = replacementForcedDecrease;
|
|
2227
|
-
this.ffaMaxRatingDecreaseFraction = ffaMaxRatingDecreaseFraction;
|
|
2228
2228
|
}
|
|
2229
2229
|
protoOf(RatingConfig).q6k = function () {
|
|
2230
2230
|
return this.defaultFactor;
|
|
@@ -2242,13 +2242,13 @@
|
|
|
2242
2242
|
return this.ffaMovEnabled;
|
|
2243
2243
|
};
|
|
2244
2244
|
protoOf(RatingConfig).v6k = function () {
|
|
2245
|
-
return this.
|
|
2245
|
+
return this.ffaMaxRatingDecreaseFraction;
|
|
2246
2246
|
};
|
|
2247
2247
|
protoOf(RatingConfig).w6k = function () {
|
|
2248
|
-
return this.
|
|
2248
|
+
return this.botNativeUpdatesRating;
|
|
2249
2249
|
};
|
|
2250
2250
|
protoOf(RatingConfig).x6k = function () {
|
|
2251
|
-
return this.
|
|
2251
|
+
return this.replacementForcedDecrease;
|
|
2252
2252
|
};
|
|
2253
2253
|
protoOf(RatingConfig).ne = function () {
|
|
2254
2254
|
return this.defaultFactor;
|
|
@@ -2266,30 +2266,30 @@
|
|
|
2266
2266
|
return this.ffaMovEnabled;
|
|
2267
2267
|
};
|
|
2268
2268
|
protoOf(RatingConfig).w64 = function () {
|
|
2269
|
-
return this.
|
|
2269
|
+
return this.ffaMaxRatingDecreaseFraction;
|
|
2270
2270
|
};
|
|
2271
2271
|
protoOf(RatingConfig).x64 = function () {
|
|
2272
|
-
return this.
|
|
2272
|
+
return this.botNativeUpdatesRating;
|
|
2273
2273
|
};
|
|
2274
2274
|
protoOf(RatingConfig).u6j = function () {
|
|
2275
|
-
return this.
|
|
2275
|
+
return this.replacementForcedDecrease;
|
|
2276
2276
|
};
|
|
2277
|
-
protoOf(RatingConfig).y6k = function (defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease
|
|
2278
|
-
return new RatingConfig(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease
|
|
2277
|
+
protoOf(RatingConfig).y6k = function (defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease) {
|
|
2278
|
+
return new RatingConfig(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease);
|
|
2279
2279
|
};
|
|
2280
|
-
protoOf(RatingConfig).copy = function (defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease,
|
|
2280
|
+
protoOf(RatingConfig).copy = function (defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease, $super) {
|
|
2281
2281
|
defaultFactor = defaultFactor === VOID ? this.defaultFactor : defaultFactor;
|
|
2282
2282
|
eloScaleH2H = eloScaleH2H === VOID ? this.eloScaleH2H : eloScaleH2H;
|
|
2283
2283
|
eloScaleFfa = eloScaleFfa === VOID ? this.eloScaleFfa : eloScaleFfa;
|
|
2284
2284
|
h2hCloseLossThresholdRatio = h2hCloseLossThresholdRatio === VOID ? this.h2hCloseLossThresholdRatio : h2hCloseLossThresholdRatio;
|
|
2285
2285
|
ffaMovEnabled = ffaMovEnabled === VOID ? this.ffaMovEnabled : ffaMovEnabled;
|
|
2286
|
+
ffaMaxRatingDecreaseFraction = ffaMaxRatingDecreaseFraction === VOID ? this.ffaMaxRatingDecreaseFraction : ffaMaxRatingDecreaseFraction;
|
|
2286
2287
|
botNativeUpdatesRating = botNativeUpdatesRating === VOID ? this.botNativeUpdatesRating : botNativeUpdatesRating;
|
|
2287
2288
|
replacementForcedDecrease = replacementForcedDecrease === VOID ? this.replacementForcedDecrease : replacementForcedDecrease;
|
|
2288
|
-
|
|
2289
|
-
return $super === VOID ? this.y6k(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease, ffaMaxRatingDecreaseFraction) : $super.y6k.call(this, defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, botNativeUpdatesRating, replacementForcedDecrease, ffaMaxRatingDecreaseFraction);
|
|
2289
|
+
return $super === VOID ? this.y6k(defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease) : $super.y6k.call(this, defaultFactor, eloScaleH2H, eloScaleFfa, h2hCloseLossThresholdRatio, ffaMovEnabled, ffaMaxRatingDecreaseFraction, botNativeUpdatesRating, replacementForcedDecrease);
|
|
2290
2290
|
};
|
|
2291
2291
|
protoOf(RatingConfig).toString = function () {
|
|
2292
|
-
return 'RatingConfig(defaultFactor=' + this.defaultFactor + ', eloScaleH2H=' + this.eloScaleH2H + ', eloScaleFfa=' + this.eloScaleFfa + ', h2hCloseLossThresholdRatio=' + this.h2hCloseLossThresholdRatio + ', ffaMovEnabled=' + this.ffaMovEnabled + ',
|
|
2292
|
+
return 'RatingConfig(defaultFactor=' + this.defaultFactor + ', eloScaleH2H=' + this.eloScaleH2H + ', eloScaleFfa=' + this.eloScaleFfa + ', h2hCloseLossThresholdRatio=' + this.h2hCloseLossThresholdRatio + ', ffaMovEnabled=' + this.ffaMovEnabled + ', ffaMaxRatingDecreaseFraction=' + this.ffaMaxRatingDecreaseFraction + ', botNativeUpdatesRating=' + this.botNativeUpdatesRating + ', replacementForcedDecrease=' + this.replacementForcedDecrease + ')';
|
|
2293
2293
|
};
|
|
2294
2294
|
protoOf(RatingConfig).hashCode = function () {
|
|
2295
2295
|
var result = getNumberHashCode(this.defaultFactor);
|
|
@@ -2297,9 +2297,9 @@
|
|
|
2297
2297
|
result = imul(result, 31) + getNumberHashCode(this.eloScaleFfa) | 0;
|
|
2298
2298
|
result = imul(result, 31) + getNumberHashCode(this.h2hCloseLossThresholdRatio) | 0;
|
|
2299
2299
|
result = imul(result, 31) + getBooleanHashCode(this.ffaMovEnabled) | 0;
|
|
2300
|
+
result = imul(result, 31) + getNumberHashCode(this.ffaMaxRatingDecreaseFraction) | 0;
|
|
2300
2301
|
result = imul(result, 31) + getBooleanHashCode(this.botNativeUpdatesRating) | 0;
|
|
2301
2302
|
result = imul(result, 31) + getBooleanHashCode(this.replacementForcedDecrease) | 0;
|
|
2302
|
-
result = imul(result, 31) + getNumberHashCode(this.ffaMaxRatingDecreaseFraction) | 0;
|
|
2303
2303
|
return result;
|
|
2304
2304
|
};
|
|
2305
2305
|
protoOf(RatingConfig).equals = function (other) {
|
|
@@ -2317,12 +2317,12 @@
|
|
|
2317
2317
|
return false;
|
|
2318
2318
|
if (!(this.ffaMovEnabled === other.ffaMovEnabled))
|
|
2319
2319
|
return false;
|
|
2320
|
+
if (!equals(this.ffaMaxRatingDecreaseFraction, other.ffaMaxRatingDecreaseFraction))
|
|
2321
|
+
return false;
|
|
2320
2322
|
if (!(this.botNativeUpdatesRating === other.botNativeUpdatesRating))
|
|
2321
2323
|
return false;
|
|
2322
2324
|
if (!(this.replacementForcedDecrease === other.replacementForcedDecrease))
|
|
2323
2325
|
return false;
|
|
2324
|
-
if (!equals(this.ffaMaxRatingDecreaseFraction, other.ffaMaxRatingDecreaseFraction))
|
|
2325
|
-
return false;
|
|
2326
2326
|
return true;
|
|
2327
2327
|
};
|
|
2328
2328
|
function Companion_4() {
|