client_plugin_logic_deb 1.8.374 → 1.8.376
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/Logic_Debertz-client_plugin.d.ts +1 -1
- package/Logic_Debertz-client_plugin.js +2057 -2064
- package/Logic_Debertz-client_plugin.js.map +1 -1
- package/Logic_Debertz-core.js +200 -140
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +11449 -11429
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6585 -6554
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +882 -866
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +4 -4
- package/kotlinx-coroutines-core.js +2 -2
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -165,6 +165,7 @@
|
|
|
165
165
|
var get_lastIndex_0 = kotlin_kotlin.$_$.c8;
|
|
166
166
|
var singleOrNull = kotlin_kotlin.$_$.c9;
|
|
167
167
|
var firstOrNull = kotlin_kotlin.$_$.k7;
|
|
168
|
+
var listOf = kotlin_kotlin.$_$.j8;
|
|
168
169
|
var copyToArray = kotlin_kotlin.$_$.a7;
|
|
169
170
|
var LoggerOutput = kotlin_io_raspberryapps_cardgame_logger.$_$.a;
|
|
170
171
|
var LoggerEnabledTrigger = kotlin_io_raspberryapps_cardgame_logger.$_$.d;
|
|
@@ -387,6 +388,8 @@
|
|
|
387
388
|
initMetadataForLambda(windowedByInterval$o$collect$slambda, CoroutineImpl, VOID, [1]);
|
|
388
389
|
initMetadataForCoroutine($collectCOROUTINE$_0, CoroutineImpl);
|
|
389
390
|
initMetadataForClass(windowedByInterval$$inlined$filter$1, VOID, VOID, VOID, [Flow], [1]);
|
|
391
|
+
initMetadataForClass(ClientLoggerKey, 'ClientLoggerKey');
|
|
392
|
+
initMetadataForClass(ServerLoggerKey, 'ServerLoggerKey');
|
|
390
393
|
initMetadataForCompanion(Companion_22, VOID, [SerializerFactory]);
|
|
391
394
|
initMetadataForClass(LogType, 'LogType', VOID, Enum, VOID, VOID, VOID, {0: Companion_getInstance_25});
|
|
392
395
|
function observe(types, $super) {
|
|
@@ -399,7 +402,7 @@
|
|
|
399
402
|
tmp = types;
|
|
400
403
|
}
|
|
401
404
|
types = tmp;
|
|
402
|
-
return $super === VOID ? this.
|
|
405
|
+
return $super === VOID ? this.x6s(types) : $super.x6s.call(this, types);
|
|
403
406
|
}
|
|
404
407
|
initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
405
408
|
initMetadataForCompanion(Companion_23);
|
|
@@ -415,7 +418,7 @@
|
|
|
415
418
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
416
419
|
//endregion
|
|
417
420
|
function GameEngineConfig() {
|
|
418
|
-
this.version = '1.8.
|
|
421
|
+
this.version = '1.8.376';
|
|
419
422
|
}
|
|
420
423
|
protoOf(GameEngineConfig).e3y = function () {
|
|
421
424
|
return this.version;
|
|
@@ -6526,8 +6529,55 @@
|
|
|
6526
6529
|
var tmp0_elvis_lhs = firstOrNull(split(_this__u8e3s4, ['(']));
|
|
6527
6530
|
return tmp0_elvis_lhs == null ? _this__u8e3s4 : tmp0_elvis_lhs;
|
|
6528
6531
|
}
|
|
6532
|
+
function ClientLoggerKey(gameId, playerId) {
|
|
6533
|
+
this.o6s_1 = gameId;
|
|
6534
|
+
this.p6s_1 = playerId;
|
|
6535
|
+
}
|
|
6536
|
+
protoOf(ClientLoggerKey).q6s = function () {
|
|
6537
|
+
return joinToString(listOf([this.o6s_1, this.p6s_1]), '_');
|
|
6538
|
+
};
|
|
6539
|
+
protoOf(ClientLoggerKey).toString = function () {
|
|
6540
|
+
return 'ClientLoggerKey(gameId=' + this.o6s_1 + ', playerId=' + this.p6s_1 + ')';
|
|
6541
|
+
};
|
|
6542
|
+
protoOf(ClientLoggerKey).hashCode = function () {
|
|
6543
|
+
var result = getStringHashCode(this.o6s_1);
|
|
6544
|
+
result = imul(result, 31) + getStringHashCode(this.p6s_1) | 0;
|
|
6545
|
+
return result;
|
|
6546
|
+
};
|
|
6547
|
+
protoOf(ClientLoggerKey).equals = function (other) {
|
|
6548
|
+
if (this === other)
|
|
6549
|
+
return true;
|
|
6550
|
+
if (!(other instanceof ClientLoggerKey))
|
|
6551
|
+
return false;
|
|
6552
|
+
if (!(this.o6s_1 === other.o6s_1))
|
|
6553
|
+
return false;
|
|
6554
|
+
if (!(this.p6s_1 === other.p6s_1))
|
|
6555
|
+
return false;
|
|
6556
|
+
return true;
|
|
6557
|
+
};
|
|
6558
|
+
function ServerLoggerKey(gameId) {
|
|
6559
|
+
this.r6s_1 = gameId;
|
|
6560
|
+
}
|
|
6561
|
+
protoOf(ServerLoggerKey).q6s = function () {
|
|
6562
|
+
return this.r6s_1;
|
|
6563
|
+
};
|
|
6564
|
+
protoOf(ServerLoggerKey).toString = function () {
|
|
6565
|
+
return 'ServerLoggerKey(gameId=' + this.r6s_1 + ')';
|
|
6566
|
+
};
|
|
6567
|
+
protoOf(ServerLoggerKey).hashCode = function () {
|
|
6568
|
+
return getStringHashCode(this.r6s_1);
|
|
6569
|
+
};
|
|
6570
|
+
protoOf(ServerLoggerKey).equals = function (other) {
|
|
6571
|
+
if (this === other)
|
|
6572
|
+
return true;
|
|
6573
|
+
if (!(other instanceof ServerLoggerKey))
|
|
6574
|
+
return false;
|
|
6575
|
+
if (!(this.r6s_1 === other.r6s_1))
|
|
6576
|
+
return false;
|
|
6577
|
+
return true;
|
|
6578
|
+
};
|
|
6529
6579
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
6530
|
-
return $this.
|
|
6580
|
+
return $this.s6s_1.w();
|
|
6531
6581
|
}
|
|
6532
6582
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
6533
6583
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_4());
|
|
@@ -6567,7 +6617,7 @@
|
|
|
6567
6617
|
Companion_instance_24 = this;
|
|
6568
6618
|
var tmp = this;
|
|
6569
6619
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
6570
|
-
tmp.
|
|
6620
|
+
tmp.s6s_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
6571
6621
|
}
|
|
6572
6622
|
protoOf(Companion_22).o4s = function () {
|
|
6573
6623
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -6630,7 +6680,7 @@
|
|
|
6630
6680
|
// Inline function 'kotlin.arrayOf' call
|
|
6631
6681
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6632
6682
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6633
|
-
tmp.
|
|
6683
|
+
tmp.y6s_1 = [lazy(tmp_0, LoggerOutputDataDto$Companion$$childSerializers$_anonymous__j015dy), null, null, null, null];
|
|
6634
6684
|
}
|
|
6635
6685
|
protoOf(Companion_23).o4s = function () {
|
|
6636
6686
|
return $serializer_getInstance_12();
|
|
@@ -6649,12 +6699,12 @@
|
|
|
6649
6699
|
tmp0_serialDesc.gz('tag', false);
|
|
6650
6700
|
tmp0_serialDesc.gz('message', false);
|
|
6651
6701
|
tmp0_serialDesc.gz('stackTrace', false);
|
|
6652
|
-
this.
|
|
6702
|
+
this.z6s_1 = tmp0_serialDesc;
|
|
6653
6703
|
}
|
|
6654
|
-
protoOf($serializer_12).
|
|
6655
|
-
var tmp0_desc = this.
|
|
6704
|
+
protoOf($serializer_12).a6t = function (encoder, value) {
|
|
6705
|
+
var tmp0_desc = this.z6s_1;
|
|
6656
6706
|
var tmp1_output = encoder.or(tmp0_desc);
|
|
6657
|
-
var tmp2_cached = Companion_getInstance_26().
|
|
6707
|
+
var tmp2_cached = Companion_getInstance_26().y6s_1;
|
|
6658
6708
|
tmp1_output.ft(tmp0_desc, 0, tmp2_cached[0].w(), value.type);
|
|
6659
6709
|
tmp1_output.ht(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
6660
6710
|
tmp1_output.ht(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -6663,10 +6713,10 @@
|
|
|
6663
6713
|
tmp1_output.pr(tmp0_desc);
|
|
6664
6714
|
};
|
|
6665
6715
|
protoOf($serializer_12).co = function (encoder, value) {
|
|
6666
|
-
return this.
|
|
6716
|
+
return this.a6t(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
6667
6717
|
};
|
|
6668
6718
|
protoOf($serializer_12).do = function (decoder) {
|
|
6669
|
-
var tmp0_desc = this.
|
|
6719
|
+
var tmp0_desc = this.z6s_1;
|
|
6670
6720
|
var tmp1_flag = true;
|
|
6671
6721
|
var tmp2_index = 0;
|
|
6672
6722
|
var tmp3_bitMask0 = 0;
|
|
@@ -6676,7 +6726,7 @@
|
|
|
6676
6726
|
var tmp7_local3 = null;
|
|
6677
6727
|
var tmp8_local4 = null;
|
|
6678
6728
|
var tmp9_input = decoder.or(tmp0_desc);
|
|
6679
|
-
var tmp10_cached = Companion_getInstance_26().
|
|
6729
|
+
var tmp10_cached = Companion_getInstance_26().y6s_1;
|
|
6680
6730
|
if (tmp9_input.es()) {
|
|
6681
6731
|
tmp4_local0 = tmp9_input.as(tmp0_desc, 0, tmp10_cached[0].w(), tmp4_local0);
|
|
6682
6732
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -6723,13 +6773,13 @@
|
|
|
6723
6773
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
6724
6774
|
};
|
|
6725
6775
|
protoOf($serializer_12).bo = function () {
|
|
6726
|
-
return this.
|
|
6776
|
+
return this.z6s_1;
|
|
6727
6777
|
};
|
|
6728
6778
|
protoOf($serializer_12).vz = function () {
|
|
6729
6779
|
// Inline function 'kotlin.arrayOf' call
|
|
6730
6780
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6731
6781
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6732
|
-
return [Companion_getInstance_26().
|
|
6782
|
+
return [Companion_getInstance_26().y6s_1[0].w(), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
6733
6783
|
};
|
|
6734
6784
|
var $serializer_instance_12;
|
|
6735
6785
|
function $serializer_getInstance_12() {
|
|
@@ -6739,7 +6789,7 @@
|
|
|
6739
6789
|
}
|
|
6740
6790
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
6741
6791
|
if (!(31 === (31 & seen0))) {
|
|
6742
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_12().
|
|
6792
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_12().z6s_1);
|
|
6743
6793
|
}
|
|
6744
6794
|
$this.type = type;
|
|
6745
6795
|
$this.key = key;
|
|
@@ -6771,7 +6821,7 @@
|
|
|
6771
6821
|
protoOf(LoggerOutputDataDto).e = function () {
|
|
6772
6822
|
return this.message;
|
|
6773
6823
|
};
|
|
6774
|
-
protoOf(LoggerOutputDataDto).
|
|
6824
|
+
protoOf(LoggerOutputDataDto).b6t = function () {
|
|
6775
6825
|
return this.stackTrace;
|
|
6776
6826
|
};
|
|
6777
6827
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -6828,7 +6878,7 @@
|
|
|
6828
6878
|
protoOf(LoggerOutputDataDto).a6e = function () {
|
|
6829
6879
|
return this.stackTrace;
|
|
6830
6880
|
};
|
|
6831
|
-
protoOf(LoggerOutputDataDto).
|
|
6881
|
+
protoOf(LoggerOutputDataDto).c6t = function (type, key, tag, message, stackTrace) {
|
|
6832
6882
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
6833
6883
|
};
|
|
6834
6884
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -6837,7 +6887,7 @@
|
|
|
6837
6887
|
tag = tag === VOID ? this.tag : tag;
|
|
6838
6888
|
message = message === VOID ? this.message : message;
|
|
6839
6889
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
6840
|
-
return $super === VOID ? this.
|
|
6890
|
+
return $super === VOID ? this.c6t(type, key, tag, message, stackTrace) : $super.c6t.call(this, type, key, tag, message, stackTrace);
|
|
6841
6891
|
};
|
|
6842
6892
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
6843
6893
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -6868,8 +6918,8 @@
|
|
|
6868
6918
|
return true;
|
|
6869
6919
|
};
|
|
6870
6920
|
function ObservableLoggerOutputImpl$observe$o$collect$slambda($$this$unsafeFlow, $types, resultContinuation) {
|
|
6871
|
-
this.
|
|
6872
|
-
this.
|
|
6921
|
+
this.l6t_1 = $$this$unsafeFlow;
|
|
6922
|
+
this.m6t_1 = $types;
|
|
6873
6923
|
CoroutineImpl.call(this, resultContinuation);
|
|
6874
6924
|
}
|
|
6875
6925
|
protoOf(ObservableLoggerOutputImpl$observe$o$collect$slambda).a2j = function (value, $completion) {
|
|
@@ -6890,15 +6940,15 @@
|
|
|
6890
6940
|
case 0:
|
|
6891
6941
|
this.s8_1 = 5;
|
|
6892
6942
|
var tmp_0 = this;
|
|
6893
|
-
tmp_0.
|
|
6943
|
+
tmp_0.p6t_1 = this.l6t_1;
|
|
6894
6944
|
var tmp_1 = this;
|
|
6895
|
-
tmp_1.
|
|
6945
|
+
tmp_1.o6t_1 = this.n6t_1;
|
|
6896
6946
|
this.r8_1 = 1;
|
|
6897
6947
|
continue $sm;
|
|
6898
6948
|
case 1:
|
|
6899
|
-
var $this$transform = this.
|
|
6900
|
-
var value = this.
|
|
6901
|
-
if (contains_0(this.
|
|
6949
|
+
var $this$transform = this.p6t_1;
|
|
6950
|
+
var value = this.o6t_1;
|
|
6951
|
+
if (contains_0(this.m6t_1, value.type)) {
|
|
6902
6952
|
this.r8_1 = 3;
|
|
6903
6953
|
suspendResult = $this$transform.g24(value, this);
|
|
6904
6954
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
@@ -6938,8 +6988,8 @@
|
|
|
6938
6988
|
while (true);
|
|
6939
6989
|
};
|
|
6940
6990
|
protoOf(ObservableLoggerOutputImpl$observe$o$collect$slambda).b2j = function (value, completion) {
|
|
6941
|
-
var i = new ObservableLoggerOutputImpl$observe$o$collect$slambda(this.
|
|
6942
|
-
i.
|
|
6991
|
+
var i = new ObservableLoggerOutputImpl$observe$o$collect$slambda(this.l6t_1, this.m6t_1, completion);
|
|
6992
|
+
i.n6t_1 = value;
|
|
6943
6993
|
return i;
|
|
6944
6994
|
};
|
|
6945
6995
|
function ObservableLoggerOutputImpl$observe$o$collect$slambda_0($$this$unsafeFlow, $types, resultContinuation) {
|
|
@@ -6952,8 +7002,8 @@
|
|
|
6952
7002
|
}
|
|
6953
7003
|
function $collectCOROUTINE$_1(_this__u8e3s4, collector, resultContinuation) {
|
|
6954
7004
|
CoroutineImpl.call(this, resultContinuation);
|
|
6955
|
-
this.
|
|
6956
|
-
this.
|
|
7005
|
+
this.y6t_1 = _this__u8e3s4;
|
|
7006
|
+
this.z6t_1 = collector;
|
|
6957
7007
|
}
|
|
6958
7008
|
protoOf($collectCOROUTINE$_1).z8 = function () {
|
|
6959
7009
|
var suspendResult = this.t8_1;
|
|
@@ -6963,10 +7013,10 @@
|
|
|
6963
7013
|
switch (tmp) {
|
|
6964
7014
|
case 0:
|
|
6965
7015
|
this.s8_1 = 2;
|
|
6966
|
-
var $this$unsafeFlow = this.
|
|
7016
|
+
var $this$unsafeFlow = this.z6t_1;
|
|
6967
7017
|
this.r8_1 = 1;
|
|
6968
|
-
var tmp_0 = ObservableLoggerOutputImpl$observe$o$collect$slambda_0($this$unsafeFlow, this.
|
|
6969
|
-
suspendResult = this.
|
|
7018
|
+
var tmp_0 = ObservableLoggerOutputImpl$observe$o$collect$slambda_0($this$unsafeFlow, this.y6t_1.b6u_1, null);
|
|
7019
|
+
suspendResult = this.y6t_1.a6u_1.d23(new sam$kotlinx_coroutines_flow_FlowCollector$0_1(tmp_0), this);
|
|
6970
7020
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
6971
7021
|
return suspendResult;
|
|
6972
7022
|
}
|
|
@@ -6989,20 +7039,20 @@
|
|
|
6989
7039
|
while (true);
|
|
6990
7040
|
};
|
|
6991
7041
|
function Companion_24() {
|
|
6992
|
-
this.
|
|
7042
|
+
this.c6u_1 = 1000;
|
|
6993
7043
|
}
|
|
6994
7044
|
var Companion_instance_26;
|
|
6995
7045
|
function Companion_getInstance_27() {
|
|
6996
7046
|
return Companion_instance_26;
|
|
6997
7047
|
}
|
|
6998
7048
|
function sam$kotlinx_coroutines_flow_FlowCollector$0_1(function_0) {
|
|
6999
|
-
this.
|
|
7049
|
+
this.d6u_1 = function_0;
|
|
7000
7050
|
}
|
|
7001
7051
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_1).g24 = function (value, $completion) {
|
|
7002
|
-
return this.
|
|
7052
|
+
return this.d6u_1(value, $completion);
|
|
7003
7053
|
};
|
|
7004
7054
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_1).a3 = function () {
|
|
7005
|
-
return this.
|
|
7055
|
+
return this.d6u_1;
|
|
7006
7056
|
};
|
|
7007
7057
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_1).equals = function (other) {
|
|
7008
7058
|
var tmp;
|
|
@@ -7026,8 +7076,8 @@
|
|
|
7026
7076
|
return null;
|
|
7027
7077
|
}
|
|
7028
7078
|
function ObservableLoggerOutputImpl$observe$$inlined$filter$1($this, $types) {
|
|
7029
|
-
this.
|
|
7030
|
-
this.
|
|
7079
|
+
this.a6u_1 = $this;
|
|
7080
|
+
this.b6u_1 = $types;
|
|
7031
7081
|
}
|
|
7032
7082
|
protoOf(ObservableLoggerOutputImpl$observe$$inlined$filter$1).h24 = function (collector, $completion) {
|
|
7033
7083
|
var tmp = new $collectCOROUTINE$_1(this, collector, $completion);
|
|
@@ -7047,39 +7097,42 @@
|
|
|
7047
7097
|
}
|
|
7048
7098
|
payloadToKeyMapper = tmp;
|
|
7049
7099
|
enabled = enabled === VOID ? true : enabled;
|
|
7050
|
-
this.
|
|
7051
|
-
this.
|
|
7052
|
-
this.
|
|
7100
|
+
this.e6u_1 = payloadToKeyMapper;
|
|
7101
|
+
this.f6u_1 = enabled;
|
|
7102
|
+
this.g6u_1 = MutableSharedFlow(VOID, 20, BufferOverflow_DROP_OLDEST_getInstance());
|
|
7053
7103
|
}
|
|
7054
|
-
protoOf(ObservableLoggerOutputImpl).
|
|
7055
|
-
this.
|
|
7104
|
+
protoOf(ObservableLoggerOutputImpl).v6s = function (_set____db54di) {
|
|
7105
|
+
this.e6u_1 = _set____db54di;
|
|
7056
7106
|
};
|
|
7057
|
-
protoOf(ObservableLoggerOutputImpl).
|
|
7058
|
-
return this.
|
|
7107
|
+
protoOf(ObservableLoggerOutputImpl).w6s = function () {
|
|
7108
|
+
return this.e6u_1;
|
|
7059
7109
|
};
|
|
7060
7110
|
protoOf(ObservableLoggerOutputImpl).q51 = function (_set____db54di) {
|
|
7061
|
-
this.
|
|
7111
|
+
this.f6u_1 = _set____db54di;
|
|
7062
7112
|
};
|
|
7063
7113
|
protoOf(ObservableLoggerOutputImpl).r51 = function () {
|
|
7064
|
-
return this.
|
|
7114
|
+
return this.f6u_1;
|
|
7065
7115
|
};
|
|
7066
|
-
protoOf(ObservableLoggerOutputImpl).
|
|
7116
|
+
protoOf(ObservableLoggerOutputImpl).x6s = function (types) {
|
|
7067
7117
|
// Inline function 'kotlinx.coroutines.flow.filter' call
|
|
7068
7118
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
7069
|
-
var this_0 = this.
|
|
7119
|
+
var this_0 = this.g6u_1;
|
|
7070
7120
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
7071
7121
|
return new ObservableLoggerOutputImpl$observe$$inlined$filter$1(this_0, types);
|
|
7072
7122
|
};
|
|
7073
7123
|
protoOf(ObservableLoggerOutputImpl).l51 = function (tag, message, payload) {
|
|
7074
|
-
if (!this.
|
|
7124
|
+
if (!this.f6u_1)
|
|
7075
7125
|
return Unit_instance;
|
|
7076
|
-
|
|
7126
|
+
var tmp = LogType_DEBUG_getInstance();
|
|
7127
|
+
var tmp0_safe_receiver = this.e6u_1(payload);
|
|
7128
|
+
this.g6u_1.o27(new LoggerOutputDataDto(tmp, tmp0_safe_receiver == null ? null : tmp0_safe_receiver.q6s(), tag, message, null));
|
|
7077
7129
|
};
|
|
7078
7130
|
protoOf(ObservableLoggerOutputImpl).m51 = function (tag, message, exception, payload) {
|
|
7079
|
-
if (!this.
|
|
7131
|
+
if (!this.f6u_1)
|
|
7080
7132
|
return Unit_instance;
|
|
7081
7133
|
var tmp = LogType_ERROR_getInstance();
|
|
7082
|
-
var
|
|
7134
|
+
var tmp0_safe_receiver = this.e6u_1(payload);
|
|
7135
|
+
var tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.q6s();
|
|
7083
7136
|
var tmp_1;
|
|
7084
7137
|
if (message == null) {
|
|
7085
7138
|
tmp_1 = exception == null ? null : exception.message;
|
|
@@ -7087,39 +7140,44 @@
|
|
|
7087
7140
|
tmp_1 = message;
|
|
7088
7141
|
}
|
|
7089
7142
|
var tmp_2 = tmp_1;
|
|
7090
|
-
var
|
|
7091
|
-
this.
|
|
7143
|
+
var tmp4_safe_receiver = exception == null ? null : stackTraceToString(exception);
|
|
7144
|
+
this.g6u_1.o27(new LoggerOutputDataDto(tmp, tmp_0, tag, tmp_2, tmp4_safe_receiver == null ? null : take(tmp4_safe_receiver, 1000)));
|
|
7092
7145
|
};
|
|
7093
7146
|
protoOf(ObservableLoggerOutputImpl).p51 = function (tag, message, payload) {
|
|
7094
|
-
|
|
7147
|
+
var tmp = LogType_INFO_getInstance();
|
|
7148
|
+
var tmp0_safe_receiver = this.e6u_1(payload);
|
|
7149
|
+
this.g6u_1.o27(new LoggerOutputDataDto(tmp, tmp0_safe_receiver == null ? null : tmp0_safe_receiver.q6s(), tag, message, null));
|
|
7095
7150
|
};
|
|
7096
7151
|
protoOf(ObservableLoggerOutputImpl).o51 = function (tag, message, exception, payload) {
|
|
7097
|
-
|
|
7152
|
+
var tmp = LogType_VERBOSE_getInstance();
|
|
7153
|
+
var tmp0_safe_receiver = this.e6u_1(payload);
|
|
7154
|
+
this.g6u_1.o27(new LoggerOutputDataDto(tmp, tmp0_safe_receiver == null ? null : tmp0_safe_receiver.q6s(), tag, message, null));
|
|
7098
7155
|
};
|
|
7099
7156
|
protoOf(ObservableLoggerOutputImpl).n51 = function (tag, message, exception, payload) {
|
|
7100
|
-
if (!this.
|
|
7157
|
+
if (!this.f6u_1)
|
|
7101
7158
|
return Unit_instance;
|
|
7102
7159
|
var tmp = LogType_WARN_getInstance();
|
|
7103
|
-
var
|
|
7104
|
-
var
|
|
7105
|
-
var
|
|
7106
|
-
var
|
|
7107
|
-
|
|
7160
|
+
var tmp0_safe_receiver = this.e6u_1(payload);
|
|
7161
|
+
var tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.q6s();
|
|
7162
|
+
var tmp2_elvis_lhs = exception == null ? null : exception.message;
|
|
7163
|
+
var tmp_1 = '' + message + ' ' + (tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs);
|
|
7164
|
+
var tmp4_safe_receiver = exception == null ? null : stackTraceToString(exception);
|
|
7165
|
+
this.g6u_1.o27(new LoggerOutputDataDto(tmp, tmp_0, tag, tmp_1, tmp4_safe_receiver == null ? null : take(tmp4_safe_receiver, 1000)));
|
|
7108
7166
|
};
|
|
7109
7167
|
function checkInitialised($this) {
|
|
7110
|
-
if ($this.
|
|
7168
|
+
if ($this.h6u_1.equals(AppEnvironmentValue_UNDEFINED_getInstance())) {
|
|
7111
7169
|
Logger_getInstance().n52(VOID, IllegalStateException_init_$Create$('AppEnvironment not initialised'));
|
|
7112
7170
|
}
|
|
7113
7171
|
}
|
|
7114
7172
|
function AppEnvironment() {
|
|
7115
7173
|
AppEnvironment_instance = this;
|
|
7116
|
-
this.
|
|
7174
|
+
this.h6u_1 = AppEnvironmentValue_UNDEFINED_getInstance();
|
|
7117
7175
|
}
|
|
7118
|
-
protoOf(AppEnvironment).
|
|
7119
|
-
this.
|
|
7176
|
+
protoOf(AppEnvironment).i6u = function (value) {
|
|
7177
|
+
this.h6u_1 = value;
|
|
7120
7178
|
};
|
|
7121
|
-
protoOf(AppEnvironment).
|
|
7122
|
-
var tmp = this.
|
|
7179
|
+
protoOf(AppEnvironment).j6u = function () {
|
|
7180
|
+
var tmp = this.h6u_1;
|
|
7123
7181
|
// Inline function 'kotlin.also' call
|
|
7124
7182
|
var this_0 = AppEnvironmentValue_PRODUCTION_getInstance();
|
|
7125
7183
|
checkInitialised(AppEnvironment_getInstance());
|
|
@@ -7692,9 +7750,9 @@
|
|
|
7692
7750
|
protoOf(ObservableLoggerOutputImpl).v = v;
|
|
7693
7751
|
protoOf(ObservableLoggerOutputImpl).w = w;
|
|
7694
7752
|
defineProp(protoOf(ObservableLoggerOutputImpl), 'payloadToKeyMapper', function () {
|
|
7695
|
-
return this.
|
|
7753
|
+
return this.w6s();
|
|
7696
7754
|
}, function (value) {
|
|
7697
|
-
this.
|
|
7755
|
+
this.v6s(value);
|
|
7698
7756
|
});
|
|
7699
7757
|
defineProp(protoOf(ObservableLoggerOutputImpl), 'enabled', function () {
|
|
7700
7758
|
return this.r51();
|
|
@@ -7938,75 +7996,77 @@
|
|
|
7938
7996
|
_.$_$.o3 = valueOf_2;
|
|
7939
7997
|
_.$_$.p3 = LoggerOutputDataDto;
|
|
7940
7998
|
_.$_$.q3 = ObservableLoggerOutputImpl;
|
|
7941
|
-
_.$_$.r3 =
|
|
7942
|
-
_.$_$.s3 =
|
|
7943
|
-
_.$_$.t3 =
|
|
7944
|
-
_.$_$.u3 =
|
|
7945
|
-
_.$_$.v3 =
|
|
7946
|
-
_.$_$.w3 =
|
|
7947
|
-
_.$_$.x3 =
|
|
7948
|
-
_.$_$.y3 =
|
|
7949
|
-
_.$_$.z3 =
|
|
7950
|
-
_.$_$.a4 =
|
|
7951
|
-
_.$_$.b4 =
|
|
7952
|
-
_.$_$.c4 =
|
|
7953
|
-
_.$_$.d4 =
|
|
7954
|
-
_.$_$.e4 =
|
|
7955
|
-
_.$_$.f4 =
|
|
7956
|
-
_.$_$.g4 =
|
|
7957
|
-
_.$_$.h4 =
|
|
7958
|
-
_.$_$.i4 =
|
|
7959
|
-
_.$_$.j4 =
|
|
7960
|
-
_.$_$.k4 =
|
|
7961
|
-
_.$_$.l4 =
|
|
7962
|
-
_.$_$.m4 =
|
|
7963
|
-
_.$_$.n4 =
|
|
7964
|
-
_.$_$.o4 =
|
|
7965
|
-
_.$_$.p4 =
|
|
7966
|
-
_.$_$.q4 =
|
|
7967
|
-
_.$_$.r4 =
|
|
7968
|
-
_.$_$.s4 =
|
|
7969
|
-
_.$_$.t4 =
|
|
7970
|
-
_.$_$.u4 =
|
|
7971
|
-
_.$_$.v4 =
|
|
7972
|
-
_.$_$.w4 =
|
|
7973
|
-
_.$_$.x4 =
|
|
7974
|
-
_.$_$.y4 =
|
|
7975
|
-
_.$_$.z4 =
|
|
7976
|
-
_.$_$.a5 =
|
|
7977
|
-
_.$_$.b5 =
|
|
7978
|
-
_.$_$.c5 =
|
|
7979
|
-
_.$_$.d5 =
|
|
7980
|
-
_.$_$.e5 =
|
|
7981
|
-
_.$_$.f5 =
|
|
7982
|
-
_.$_$.g5 =
|
|
7983
|
-
_.$_$.h5 =
|
|
7984
|
-
_.$_$.i5 =
|
|
7985
|
-
_.$_$.j5 =
|
|
7986
|
-
_.$_$.k5 =
|
|
7987
|
-
_.$_$.l5 =
|
|
7988
|
-
_.$_$.m5 =
|
|
7989
|
-
_.$_$.n5 =
|
|
7990
|
-
_.$_$.o5 =
|
|
7991
|
-
_.$_$.p5 =
|
|
7992
|
-
_.$_$.q5 =
|
|
7993
|
-
_.$_$.r5 =
|
|
7994
|
-
_.$_$.s5 =
|
|
7995
|
-
_.$_$.t5 =
|
|
7996
|
-
_.$_$.u5 =
|
|
7997
|
-
_.$_$.v5 = $
|
|
7998
|
-
_.$_$.w5 = $
|
|
7999
|
-
_.$_$.x5 = $
|
|
8000
|
-
_.$_$.y5 =
|
|
8001
|
-
_.$_$.z5 =
|
|
8002
|
-
_.$_$.a6 =
|
|
8003
|
-
_.$_$.b6 =
|
|
8004
|
-
_.$_$.c6 =
|
|
8005
|
-
_.$_$.d6 =
|
|
8006
|
-
_.$_$.e6 =
|
|
8007
|
-
_.$_$.f6 =
|
|
8008
|
-
_.$_$.g6 =
|
|
8009
|
-
_.$_$.h6 =
|
|
7999
|
+
_.$_$.r3 = ClientLoggerKey;
|
|
8000
|
+
_.$_$.s3 = ServerLoggerKey;
|
|
8001
|
+
_.$_$.t3 = enumToStringSafe;
|
|
8002
|
+
_.$_$.u3 = enumToString;
|
|
8003
|
+
_.$_$.v3 = getDataClassName;
|
|
8004
|
+
_.$_$.w3 = getItemIndex;
|
|
8005
|
+
_.$_$.x3 = mapOfObject;
|
|
8006
|
+
_.$_$.y3 = nextToOrNull;
|
|
8007
|
+
_.$_$.z3 = nextTo;
|
|
8008
|
+
_.$_$.a4 = previousToOrNull;
|
|
8009
|
+
_.$_$.b4 = sortWithItem;
|
|
8010
|
+
_.$_$.c4 = swap;
|
|
8011
|
+
_.$_$.d4 = toDomainEnumSafe;
|
|
8012
|
+
_.$_$.e4 = toDomainEnum;
|
|
8013
|
+
_.$_$.f4 = updateItem;
|
|
8014
|
+
_.$_$.g4 = updateLastItem;
|
|
8015
|
+
_.$_$.h4 = updateOrAddItems;
|
|
8016
|
+
_.$_$.i4 = updated;
|
|
8017
|
+
_.$_$.j4 = combinedLoggerModule;
|
|
8018
|
+
_.$_$.k4 = coreModule;
|
|
8019
|
+
_.$_$.l4 = dealerModule;
|
|
8020
|
+
_.$_$.m4 = randomOrgModule;
|
|
8021
|
+
_.$_$.n4 = assertIfMainThread;
|
|
8022
|
+
_.$_$.o4 = get_versionOrDefault;
|
|
8023
|
+
_.$_$.p4 = AgentType_BOT_NATIVE_getInstance;
|
|
8024
|
+
_.$_$.q4 = AgentType_BOT_REPLACEMENT_getInstance;
|
|
8025
|
+
_.$_$.r4 = AgentType_HUMAN_getInstance;
|
|
8026
|
+
_.$_$.s4 = PlayerConnectionState_DELETED_getInstance;
|
|
8027
|
+
_.$_$.t4 = PlayerConnectionState_DISCONNECTING_getInstance;
|
|
8028
|
+
_.$_$.u4 = PlayerConnectionState_LEFT_getInstance;
|
|
8029
|
+
_.$_$.v4 = PlayerConnectionState_LIVE_getInstance;
|
|
8030
|
+
_.$_$.w4 = PlayerConnectionState_LOST_CONNECTION_getInstance;
|
|
8031
|
+
_.$_$.x4 = PlayerConnectionState_TIMEOUT_getInstance;
|
|
8032
|
+
_.$_$.y4 = PlayerWaitingState_IDLE_getInstance;
|
|
8033
|
+
_.$_$.z4 = PlayerWaitingState_IN_PROGRESS_getInstance;
|
|
8034
|
+
_.$_$.a5 = Reason_DUPLICATED_PLAYER_ANSWER_getInstance;
|
|
8035
|
+
_.$_$.b5 = Reason_GAME_NOT_EXISTS_getInstance_0;
|
|
8036
|
+
_.$_$.c5 = Reason_INTERNAL_ERROR_getInstance;
|
|
8037
|
+
_.$_$.d5 = Reason_PLAYER_DISCONNECTED_getInstance;
|
|
8038
|
+
_.$_$.e5 = Reason_SERVER_ERROR_getInstance;
|
|
8039
|
+
_.$_$.f5 = Reason_WRONG_PLAYER_TURN_getInstance;
|
|
8040
|
+
_.$_$.g5 = Reason_DEPLOY_getInstance;
|
|
8041
|
+
_.$_$.h5 = Reason_FINISHED_getInstance;
|
|
8042
|
+
_.$_$.i5 = Reason_REVENGED_getInstance;
|
|
8043
|
+
_.$_$.j5 = TimerType_DELAY_getInstance;
|
|
8044
|
+
_.$_$.k5 = LogType_DEBUG_getInstance;
|
|
8045
|
+
_.$_$.l5 = LogType_ERROR_getInstance;
|
|
8046
|
+
_.$_$.m5 = LogType_INFO_getInstance;
|
|
8047
|
+
_.$_$.n5 = LogType_VERBOSE_getInstance;
|
|
8048
|
+
_.$_$.o5 = LogType_WARN_getInstance;
|
|
8049
|
+
_.$_$.p5 = AppEnvironmentValue_DEVELOPMENT_getInstance;
|
|
8050
|
+
_.$_$.q5 = AppEnvironmentValue_PRODUCTION_getInstance;
|
|
8051
|
+
_.$_$.r5 = Companion_instance_8;
|
|
8052
|
+
_.$_$.s5 = Companion_getInstance_10;
|
|
8053
|
+
_.$_$.t5 = Companion_instance_11;
|
|
8054
|
+
_.$_$.u5 = Companion_getInstance_11;
|
|
8055
|
+
_.$_$.v5 = $serializer_getInstance_7;
|
|
8056
|
+
_.$_$.w5 = $serializer_getInstance_8;
|
|
8057
|
+
_.$_$.x5 = $serializer_getInstance_10;
|
|
8058
|
+
_.$_$.y5 = $serializer_getInstance_11;
|
|
8059
|
+
_.$_$.z5 = $serializer_getInstance_1;
|
|
8060
|
+
_.$_$.a6 = ProcessingReasonDto_getInstance;
|
|
8061
|
+
_.$_$.b6 = Companion_getInstance_14;
|
|
8062
|
+
_.$_$.c6 = Companion_getInstance_4;
|
|
8063
|
+
_.$_$.d6 = Companion_instance_5;
|
|
8064
|
+
_.$_$.e6 = ProcessingReason_getInstance;
|
|
8065
|
+
_.$_$.f6 = RestartGameReason_getInstance;
|
|
8066
|
+
_.$_$.g6 = WaitingForConnectionReason_getInstance;
|
|
8067
|
+
_.$_$.h6 = GameEngineConfig_instance;
|
|
8068
|
+
_.$_$.i6 = Toggles_instance;
|
|
8069
|
+
_.$_$.j6 = AppEnvironment_getInstance;
|
|
8010
8070
|
//endregion
|
|
8011
8071
|
return _;
|
|
8012
8072
|
}));
|