client_plugin_logic_deb 1.8.322 → 1.8.325
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-client_plugin.d.ts +12 -5
- package/Logic_Debertz-client_plugin.js +11 -11
- package/Logic_Debertz-core.js +54 -42
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +211 -124
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +48 -50
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +31 -20
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlinx-coroutines-core.js +8 -8
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -252,12 +252,16 @@ export declare namespace com.logic.data.models {
|
|
|
252
252
|
get name(): "NO_ACTIVE_PLAYERS";
|
|
253
253
|
get ordinal(): 3;
|
|
254
254
|
};
|
|
255
|
+
static get REVENGED(): com.logic.data.models.GameFinishedReason.Reason & {
|
|
256
|
+
get name(): "REVENGED";
|
|
257
|
+
get ordinal(): 4;
|
|
258
|
+
};
|
|
255
259
|
static get GAME_NOT_EXISTS(): com.logic.data.models.GameFinishedReason.Reason & {
|
|
256
260
|
get name(): "GAME_NOT_EXISTS";
|
|
257
|
-
get ordinal():
|
|
261
|
+
get ordinal(): 5;
|
|
258
262
|
};
|
|
259
|
-
get name(): "DEPLOY" | "PLAYER_DELETED" | "FINISHED" | "NO_ACTIVE_PLAYERS" | "GAME_NOT_EXISTS";
|
|
260
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
263
|
+
get name(): "DEPLOY" | "PLAYER_DELETED" | "FINISHED" | "NO_ACTIVE_PLAYERS" | "REVENGED" | "GAME_NOT_EXISTS";
|
|
264
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
261
265
|
static values(): Array<com.logic.data.models.GameFinishedReason.Reason>;
|
|
262
266
|
static valueOf(value: string): com.logic.data.models.GameFinishedReason.Reason;
|
|
263
267
|
static get Companion(): {
|
|
@@ -1860,7 +1864,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1860
1864
|
}
|
|
1861
1865
|
/* @ts-ignore: https://github.com/microsoft/TypeScript/issues/4628 */
|
|
1862
1866
|
class FinishingGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.TerminatedAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing {
|
|
1863
|
-
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, transition
|
|
1867
|
+
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, sessionAnalytics?: Nullable<games.jass.logic.data.models.GameSessionAnalytics>, gameHistory?: Nullable<games.jass.logic.data.models.table.history.GameHistory>, isRoundHistorySaved?: boolean, aid?: Nullable<string>);
|
|
1864
1868
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1865
1869
|
get isGameFinished(): boolean;
|
|
1866
1870
|
get transition(): Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>;
|
|
@@ -1876,7 +1880,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1876
1880
|
notValidateWhenFinishing(): boolean;
|
|
1877
1881
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"];
|
|
1878
1882
|
static get Companion(): {
|
|
1879
|
-
|
|
1883
|
+
fromTableWithAnalytics(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, table: Nullable<games.jass.logic.data.models.table.JassTable>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1884
|
+
fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1880
1885
|
};
|
|
1881
1886
|
}
|
|
1882
1887
|
class FinishGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, games.jass.logic.redux.actions.mechanic.TerminatedAction {
|
|
@@ -1964,6 +1969,7 @@ export declare interface GameHelper {
|
|
|
1964
1969
|
getRulesByType(rulesSetType: games.jass.logic.data.models.rules.RulesSetType): games.jass.logic.data.models.rules.Rules;
|
|
1965
1970
|
getRulesByString(name: string): games.jass.logic.data.models.rules.Rules;
|
|
1966
1971
|
mapRulesSetType(name: string): games.jass.logic.data.models.rules.RulesSetType;
|
|
1972
|
+
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
1967
1973
|
readonly __doNotUseOrImplementIt: {
|
|
1968
1974
|
readonly GameHelper: unique symbol;
|
|
1969
1975
|
};
|
|
@@ -2001,6 +2007,7 @@ export declare interface RatingHelper {
|
|
|
2001
2007
|
isValidRatingForLeague(league: games.jass.logic.data.models.leagues.League, rating: number): boolean;
|
|
2002
2008
|
mapRatingToLeague(rating: number): games.jass.logic.data.models.leagues.League;
|
|
2003
2009
|
getLeaguesConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
2010
|
+
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
2004
2011
|
readonly __doNotUseOrImplementIt: {
|
|
2005
2012
|
readonly RatingHelper: unique symbol;
|
|
2006
2013
|
};
|
|
@@ -110,10 +110,10 @@
|
|
|
110
110
|
var mapFromDto_6 = kotlin_io_raspberryapps_game_engine_core.$_$.c1;
|
|
111
111
|
var PluginGeneratedSerialDescriptor = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.c2;
|
|
112
112
|
var $serializer_getInstance = kotlin_io_raspberryapps_game_engine_game_client.$_$.j3;
|
|
113
|
-
var $serializer_getInstance_0 = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
114
|
-
var $serializer_getInstance_1 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
115
|
-
var $serializer_getInstance_2 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
116
|
-
var $serializer_getInstance_3 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
113
|
+
var $serializer_getInstance_0 = kotlin_io_raspberryapps_game_engine_core.$_$.t5;
|
|
114
|
+
var $serializer_getInstance_1 = kotlin_io_raspberryapps_game_engine_engine.$_$.ca;
|
|
115
|
+
var $serializer_getInstance_2 = kotlin_io_raspberryapps_game_engine_engine.$_$.ea;
|
|
116
|
+
var $serializer_getInstance_3 = kotlin_io_raspberryapps_game_engine_engine.$_$.da;
|
|
117
117
|
var $serializer_getInstance_4 = kotlin_io_raspberryapps_game_engine_game_client.$_$.k3;
|
|
118
118
|
var UnknownFieldException_init_$Create$ = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.f;
|
|
119
119
|
var StringSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.u;
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
var contentEquals = kotlin_kotlin.$_$.w6;
|
|
135
135
|
var contentHashCode = kotlin_kotlin.$_$.x6;
|
|
136
136
|
var IntSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.s;
|
|
137
|
-
var $serializer_getInstance_5 = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
137
|
+
var $serializer_getInstance_5 = kotlin_io_raspberryapps_game_engine_core.$_$.q5;
|
|
138
138
|
var ArrayListSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.v1;
|
|
139
|
-
var $serializer_getInstance_6 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
139
|
+
var $serializer_getInstance_6 = kotlin_io_raspberryapps_game_engine_engine.$_$.v9;
|
|
140
140
|
var Module_init_$Create$ = kotlin_org_kodein_di_kodein_di.$_$.a;
|
|
141
141
|
var UserRatingInteractor = kotlin_io_raspberryapps_game_engine_engine.$_$.j4;
|
|
142
142
|
var Json = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_json.$_$.d;
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
var ClientStatisticsInteractor = kotlin_io_raspberryapps_game_engine_game_client.$_$.r2;
|
|
178
178
|
var ClientAppSavedState = kotlin_io_raspberryapps_game_engine_game_client.$_$.m2;
|
|
179
179
|
var PersistentTableState = kotlin_io_raspberryapps_game_engine_game_client.$_$.n2;
|
|
180
|
-
var GameEngineConfig_instance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
180
|
+
var GameEngineConfig_instance = kotlin_io_raspberryapps_game_engine_core.$_$.b6;
|
|
181
181
|
var get_versionOrDefault = kotlin_io_raspberryapps_game_engine_core.$_$.l4;
|
|
182
182
|
var PersistentAppStateInteractor = kotlin_io_raspberryapps_game_engine_game_client.$_$.s2;
|
|
183
183
|
var LoggerOutputDataDto = kotlin_io_raspberryapps_game_engine_core.$_$.o3;
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
var FileLoggerOutput = kotlin_io_raspberryapps_game_engine_engine.$_$.m8;
|
|
188
188
|
var FileLoggerOutputImpl = kotlin_io_raspberryapps_game_engine_engine.$_$.l8;
|
|
189
189
|
var dealerModule = kotlin_io_raspberryapps_game_engine_core.$_$.i4;
|
|
190
|
-
var Companion_instance_0 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
190
|
+
var Companion_instance_0 = kotlin_io_raspberryapps_game_engine_engine.$_$.oa;
|
|
191
191
|
var GameClient = kotlin_io_raspberryapps_game_engine_game_client.$_$.i3;
|
|
192
192
|
var Flow = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.s;
|
|
193
193
|
var KtList = kotlin_kotlin.$_$.y5;
|
|
@@ -196,9 +196,9 @@
|
|
|
196
196
|
var valueOf = kotlin_io_raspberryapps_game_engine_core.$_$.n3;
|
|
197
197
|
var copyToArray = kotlin_kotlin.$_$.j7;
|
|
198
198
|
var emptyFlow = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.z;
|
|
199
|
-
var AppEnvironment_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
200
|
-
var AppEnvironmentValue_DEVELOPMENT_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
201
|
-
var AppEnvironmentValue_PRODUCTION_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
199
|
+
var AppEnvironment_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.d6;
|
|
200
|
+
var AppEnvironmentValue_DEVELOPMENT_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.j5;
|
|
201
|
+
var AppEnvironmentValue_PRODUCTION_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.k5;
|
|
202
202
|
var PlayersRatingInputDto = kotlin_io_raspberryapps_game_engine_engine.$_$.z2;
|
|
203
203
|
var mapFromDto_7 = kotlin_io_raspberryapps_game_engine_engine.$_$.o1;
|
|
204
204
|
var mapToDto = kotlin_io_raspberryapps_game_engine_engine.$_$.q1;
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
413
413
|
//endregion
|
|
414
414
|
function GameEngineConfig() {
|
|
415
|
-
this.version = '1.8.
|
|
415
|
+
this.version = '1.8.325';
|
|
416
416
|
}
|
|
417
417
|
protoOf(GameEngineConfig).l33 = function () {
|
|
418
418
|
return this.version;
|
|
@@ -973,9 +973,10 @@
|
|
|
973
973
|
var Reason_PLAYER_DELETED_instance;
|
|
974
974
|
var Reason_FINISHED_instance;
|
|
975
975
|
var Reason_NO_ACTIVE_PLAYERS_instance;
|
|
976
|
+
var Reason_REVENGED_instance;
|
|
976
977
|
var Reason_GAME_NOT_EXISTS_instance;
|
|
977
978
|
function values() {
|
|
978
|
-
return [Reason_DEPLOY_getInstance(), Reason_PLAYER_DELETED_getInstance(), Reason_FINISHED_getInstance(), Reason_NO_ACTIVE_PLAYERS_getInstance(), Reason_GAME_NOT_EXISTS_getInstance()];
|
|
979
|
+
return [Reason_DEPLOY_getInstance(), Reason_PLAYER_DELETED_getInstance(), Reason_FINISHED_getInstance(), Reason_NO_ACTIVE_PLAYERS_getInstance(), Reason_REVENGED_getInstance(), Reason_GAME_NOT_EXISTS_getInstance()];
|
|
979
980
|
}
|
|
980
981
|
function valueOf(value) {
|
|
981
982
|
switch (value) {
|
|
@@ -987,6 +988,8 @@
|
|
|
987
988
|
return Reason_FINISHED_getInstance();
|
|
988
989
|
case 'NO_ACTIVE_PLAYERS':
|
|
989
990
|
return Reason_NO_ACTIVE_PLAYERS_getInstance();
|
|
991
|
+
case 'REVENGED':
|
|
992
|
+
return Reason_REVENGED_getInstance();
|
|
990
993
|
case 'GAME_NOT_EXISTS':
|
|
991
994
|
return Reason_GAME_NOT_EXISTS_getInstance();
|
|
992
995
|
default:
|
|
@@ -1028,7 +1031,8 @@
|
|
|
1028
1031
|
Reason_PLAYER_DELETED_instance = new Reason('PLAYER_DELETED', 1);
|
|
1029
1032
|
Reason_FINISHED_instance = new Reason('FINISHED', 2);
|
|
1030
1033
|
Reason_NO_ACTIVE_PLAYERS_instance = new Reason('NO_ACTIVE_PLAYERS', 3);
|
|
1031
|
-
|
|
1034
|
+
Reason_REVENGED_instance = new Reason('REVENGED', 4);
|
|
1035
|
+
Reason_GAME_NOT_EXISTS_instance = new Reason('GAME_NOT_EXISTS', 5);
|
|
1032
1036
|
Companion_getInstance_6();
|
|
1033
1037
|
}
|
|
1034
1038
|
var $ENTRIES;
|
|
@@ -1051,6 +1055,10 @@
|
|
|
1051
1055
|
Reason_initEntries();
|
|
1052
1056
|
return Reason_NO_ACTIVE_PLAYERS_instance;
|
|
1053
1057
|
}
|
|
1058
|
+
function Reason_REVENGED_getInstance() {
|
|
1059
|
+
Reason_initEntries();
|
|
1060
|
+
return Reason_REVENGED_instance;
|
|
1061
|
+
}
|
|
1054
1062
|
function Reason_GAME_NOT_EXISTS_getInstance() {
|
|
1055
1063
|
Reason_initEntries();
|
|
1056
1064
|
return Reason_GAME_NOT_EXISTS_instance;
|
|
@@ -5583,14 +5591,15 @@
|
|
|
5583
5591
|
var stateTrigger = MutableSharedFlow(1, VOID, BufferOverflow_DROP_OLDEST_getInstance());
|
|
5584
5592
|
var currentReducer = {_v: reducer};
|
|
5585
5593
|
var currentState = {_v: preloadedState};
|
|
5586
|
-
createStore$dispatch(currentState, currentReducer, stateTrigger, logger, INIT_getInstance());
|
|
5587
|
-
return new createStore$2(currentState, currentReducer, stateTrigger, logger);
|
|
5594
|
+
createStore$dispatch(lock, currentState, currentReducer, stateTrigger, logger, INIT_getInstance());
|
|
5595
|
+
return new createStore$2(currentState, lock, currentReducer, stateTrigger, logger);
|
|
5588
5596
|
}
|
|
5589
5597
|
function createStore$getState(currentState) {
|
|
5590
5598
|
return currentState._v;
|
|
5591
5599
|
}
|
|
5592
|
-
function createStore$dispatch(currentState, currentReducer, stateTrigger, $logger, action) {
|
|
5600
|
+
function createStore$dispatch($lock, currentState, currentReducer, stateTrigger, $logger, action) {
|
|
5593
5601
|
try {
|
|
5602
|
+
// Inline function 'kotlinx.atomicfu.locks.ReentrantLock.lock' call
|
|
5594
5603
|
currentState._v = currentReducer._v.j6q(currentState._v, action);
|
|
5595
5604
|
stateTrigger.g1c(Unit_instance);
|
|
5596
5605
|
} catch ($p) {
|
|
@@ -5602,11 +5611,12 @@
|
|
|
5602
5611
|
}
|
|
5603
5612
|
}
|
|
5604
5613
|
finally {
|
|
5614
|
+
// Inline function 'kotlinx.atomicfu.locks.ReentrantLock.unlock' call
|
|
5605
5615
|
}
|
|
5606
5616
|
}
|
|
5607
|
-
function createStore$replaceReducer(currentReducer, currentState, stateTrigger, $logger, nextReducer) {
|
|
5617
|
+
function createStore$replaceReducer(currentReducer, $lock, currentState, stateTrigger, $logger, nextReducer) {
|
|
5608
5618
|
currentReducer._v = nextReducer;
|
|
5609
|
-
createStore$dispatch(currentState, currentReducer, stateTrigger, $logger, REPLACE_getInstance());
|
|
5619
|
+
createStore$dispatch($lock, currentState, currentReducer, stateTrigger, $logger, REPLACE_getInstance());
|
|
5610
5620
|
}
|
|
5611
5621
|
function createStore$lambda($logger) {
|
|
5612
5622
|
return function (r, initialState, _unused_var__etf5q3) {
|
|
@@ -5742,15 +5752,15 @@
|
|
|
5742
5752
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).hashCode = function () {
|
|
5743
5753
|
return hashCode(this.t3());
|
|
5744
5754
|
};
|
|
5745
|
-
function createStore$o$dispatch$lambda($currentState, $currentReducer, $stateTrigger, $logger) {
|
|
5755
|
+
function createStore$o$dispatch$lambda($lock, $currentState, $currentReducer, $stateTrigger, $logger) {
|
|
5746
5756
|
return function (action) {
|
|
5747
|
-
createStore$dispatch($currentState, $currentReducer, $stateTrigger, $logger, action);
|
|
5757
|
+
createStore$dispatch($lock, $currentState, $currentReducer, $stateTrigger, $logger, action);
|
|
5748
5758
|
return Unit_instance;
|
|
5749
5759
|
};
|
|
5750
5760
|
}
|
|
5751
|
-
function createStore$o$replaceReducer$lambda($currentReducer, $currentState, $stateTrigger, $logger) {
|
|
5761
|
+
function createStore$o$replaceReducer$lambda($currentReducer, $lock, $currentState, $stateTrigger, $logger) {
|
|
5752
5762
|
return function (nextReducer) {
|
|
5753
|
-
createStore$replaceReducer($currentReducer, $currentState, $stateTrigger, $logger, nextReducer);
|
|
5763
|
+
createStore$replaceReducer($currentReducer, $lock, $currentState, $stateTrigger, $logger, nextReducer);
|
|
5754
5764
|
return Unit_instance;
|
|
5755
5765
|
};
|
|
5756
5766
|
}
|
|
@@ -5767,14 +5777,14 @@
|
|
|
5767
5777
|
protoOf(_no_name_provided__qut3iv_1).n17 = function (collector, $completion) {
|
|
5768
5778
|
return this.s18(collector, $completion);
|
|
5769
5779
|
};
|
|
5770
|
-
function createStore$2($currentState, $currentReducer, $stateTrigger, $logger) {
|
|
5780
|
+
function createStore$2($currentState, $lock, $currentReducer, $stateTrigger, $logger) {
|
|
5771
5781
|
this.o6r_1 = $currentState;
|
|
5772
5782
|
this.p6r_1 = $stateTrigger;
|
|
5773
5783
|
this.l6r_1 = this;
|
|
5774
5784
|
var tmp = this;
|
|
5775
|
-
tmp.m6r_1 = createStore$o$dispatch$lambda($currentState, $currentReducer, $stateTrigger, $logger);
|
|
5785
|
+
tmp.m6r_1 = createStore$o$dispatch$lambda($lock, $currentState, $currentReducer, $stateTrigger, $logger);
|
|
5776
5786
|
var tmp_0 = this;
|
|
5777
|
-
tmp_0.n6r_1 = createStore$o$replaceReducer$lambda($currentReducer, $currentState, $stateTrigger, $logger);
|
|
5787
|
+
tmp_0.n6r_1 = createStore$o$replaceReducer$lambda($currentReducer, $lock, $currentState, $stateTrigger, $logger);
|
|
5778
5788
|
}
|
|
5779
5789
|
protoOf(createStore$2).q6r = function () {
|
|
5780
5790
|
return this.l6r_1;
|
|
@@ -7785,6 +7795,7 @@
|
|
|
7785
7795
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'PLAYER_DELETED', Reason_PLAYER_DELETED_getInstance);
|
|
7786
7796
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'FINISHED', Reason_FINISHED_getInstance);
|
|
7787
7797
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'NO_ACTIVE_PLAYERS', Reason_NO_ACTIVE_PLAYERS_getInstance);
|
|
7798
|
+
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'REVENGED', Reason_REVENGED_getInstance);
|
|
7788
7799
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'GAME_NOT_EXISTS', Reason_GAME_NOT_EXISTS_getInstance);
|
|
7789
7800
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'Companion', Companion_getInstance_6);
|
|
7790
7801
|
$com$logic$data$models.GameErrorReason = GameErrorReason;
|
|
@@ -8009,33 +8020,34 @@
|
|
|
8009
8020
|
_.$_$.z4 = Reason_WRONG_PLAYER_TURN_getInstance;
|
|
8010
8021
|
_.$_$.a5 = Reason_DEPLOY_getInstance;
|
|
8011
8022
|
_.$_$.b5 = Reason_FINISHED_getInstance;
|
|
8012
|
-
_.$_$.c5 =
|
|
8013
|
-
_.$_$.d5 =
|
|
8014
|
-
_.$_$.e5 =
|
|
8015
|
-
_.$_$.f5 =
|
|
8016
|
-
_.$_$.g5 =
|
|
8017
|
-
_.$_$.h5 =
|
|
8018
|
-
_.$_$.i5 =
|
|
8019
|
-
_.$_$.j5 =
|
|
8020
|
-
_.$_$.k5 =
|
|
8021
|
-
_.$_$.l5 =
|
|
8022
|
-
_.$_$.m5 =
|
|
8023
|
-
_.$_$.n5 =
|
|
8024
|
-
_.$_$.o5 =
|
|
8025
|
-
_.$_$.p5 = $
|
|
8026
|
-
_.$_$.q5 = $
|
|
8027
|
-
_.$_$.r5 = $
|
|
8028
|
-
_.$_$.s5 = $
|
|
8029
|
-
_.$_$.t5 =
|
|
8030
|
-
_.$_$.u5 =
|
|
8031
|
-
_.$_$.v5 =
|
|
8032
|
-
_.$_$.w5 =
|
|
8033
|
-
_.$_$.x5 =
|
|
8034
|
-
_.$_$.y5 =
|
|
8035
|
-
_.$_$.z5 =
|
|
8036
|
-
_.$_$.a6 =
|
|
8037
|
-
_.$_$.b6 =
|
|
8038
|
-
_.$_$.c6 =
|
|
8023
|
+
_.$_$.c5 = Reason_REVENGED_getInstance;
|
|
8024
|
+
_.$_$.d5 = TimerType_DELAY_getInstance;
|
|
8025
|
+
_.$_$.e5 = LogType_DEBUG_getInstance;
|
|
8026
|
+
_.$_$.f5 = LogType_ERROR_getInstance;
|
|
8027
|
+
_.$_$.g5 = LogType_INFO_getInstance;
|
|
8028
|
+
_.$_$.h5 = LogType_VERBOSE_getInstance;
|
|
8029
|
+
_.$_$.i5 = LogType_WARN_getInstance;
|
|
8030
|
+
_.$_$.j5 = AppEnvironmentValue_DEVELOPMENT_getInstance;
|
|
8031
|
+
_.$_$.k5 = AppEnvironmentValue_PRODUCTION_getInstance;
|
|
8032
|
+
_.$_$.l5 = Companion_instance_8;
|
|
8033
|
+
_.$_$.m5 = Companion_getInstance_9;
|
|
8034
|
+
_.$_$.n5 = Companion_instance_11;
|
|
8035
|
+
_.$_$.o5 = Companion_getInstance_10;
|
|
8036
|
+
_.$_$.p5 = $serializer_getInstance_7;
|
|
8037
|
+
_.$_$.q5 = $serializer_getInstance_8;
|
|
8038
|
+
_.$_$.r5 = $serializer_getInstance_10;
|
|
8039
|
+
_.$_$.s5 = $serializer_getInstance_11;
|
|
8040
|
+
_.$_$.t5 = $serializer_getInstance_1;
|
|
8041
|
+
_.$_$.u5 = ProcessingReasonDto_getInstance;
|
|
8042
|
+
_.$_$.v5 = Companion_getInstance_13;
|
|
8043
|
+
_.$_$.w5 = Companion_getInstance_1;
|
|
8044
|
+
_.$_$.x5 = Companion_instance_5;
|
|
8045
|
+
_.$_$.y5 = ProcessingReason_getInstance;
|
|
8046
|
+
_.$_$.z5 = RestartGameReason_getInstance;
|
|
8047
|
+
_.$_$.a6 = WaitingForConnectionReason_getInstance;
|
|
8048
|
+
_.$_$.b6 = GameEngineConfig_instance;
|
|
8049
|
+
_.$_$.c6 = Toggles_instance;
|
|
8050
|
+
_.$_$.d6 = AppEnvironment_getInstance;
|
|
8039
8051
|
//endregion
|
|
8040
8052
|
return _;
|
|
8041
8053
|
}));
|