raspberry_games_server_game_logic 1.8.378 → 1.8.380
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 +9671 -9649
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +17 -10
- package/Logic_Debertz-game_server.js +866 -783
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +9 -9
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -875,7 +875,7 @@ export declare namespace games.jass.logic.data.models {
|
|
|
875
875
|
}
|
|
876
876
|
export declare namespace games.jass.logic.data.models.config {
|
|
877
877
|
class RatingConfig {
|
|
878
|
-
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean);
|
|
878
|
+
constructor(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean, ffaMaxRatingDecreaseFraction?: number);
|
|
879
879
|
get defaultFactor(): number;
|
|
880
880
|
get eloScaleH2H(): number;
|
|
881
881
|
get eloScaleFfa(): number;
|
|
@@ -883,7 +883,8 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
883
883
|
get ffaMovEnabled(): boolean;
|
|
884
884
|
get botNativeUpdatesRating(): boolean;
|
|
885
885
|
get replacementForcedDecrease(): boolean;
|
|
886
|
-
|
|
886
|
+
get ffaMaxRatingDecreaseFraction(): number;
|
|
887
|
+
copy(defaultFactor?: number, eloScaleH2H?: number, eloScaleFfa?: number, h2hCloseLossThresholdRatio?: number, ffaMovEnabled?: boolean, botNativeUpdatesRating?: boolean, replacementForcedDecrease?: boolean, ffaMaxRatingDecreaseFraction?: number): games.jass.logic.data.models.config.RatingConfig;
|
|
887
888
|
toString(): string;
|
|
888
889
|
hashCode(): number;
|
|
889
890
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2809,6 +2810,7 @@ export declare namespace games.jass.logic.server.data.models.config {
|
|
|
2809
2810
|
}
|
|
2810
2811
|
export declare namespace games.jass.logic.server.data.models.serializable {
|
|
2811
2812
|
interface ServerStateUpdateDto {
|
|
2813
|
+
readonly roomId: string;
|
|
2812
2814
|
readonly __doNotUseOrImplementIt: {
|
|
2813
2815
|
readonly "games.jass.logic.server.data.models.serializable.ServerStateUpdateDto": unique symbol;
|
|
2814
2816
|
};
|
|
@@ -2823,9 +2825,10 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2823
2825
|
}
|
|
2824
2826
|
}
|
|
2825
2827
|
class TableStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
2826
|
-
constructor(table: string);
|
|
2828
|
+
constructor(roomId: string, table: string);
|
|
2829
|
+
get roomId(): string;
|
|
2827
2830
|
get table(): string;
|
|
2828
|
-
copy(table?: string): games.jass.logic.server.data.models.serializable.TableStateUpdateDto;
|
|
2831
|
+
copy(roomId?: string, table?: string): games.jass.logic.server.data.models.serializable.TableStateUpdateDto;
|
|
2829
2832
|
toString(): string;
|
|
2830
2833
|
hashCode(): number;
|
|
2831
2834
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2847,9 +2850,10 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2847
2850
|
}
|
|
2848
2851
|
}
|
|
2849
2852
|
class ActionsStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
2850
|
-
constructor(actions: string);
|
|
2853
|
+
constructor(roomId: string, actions: string);
|
|
2854
|
+
get roomId(): string;
|
|
2851
2855
|
get actions(): string;
|
|
2852
|
-
copy(actions?: string): games.jass.logic.server.data.models.serializable.ActionsStateUpdateDto;
|
|
2856
|
+
copy(roomId?: string, actions?: string): games.jass.logic.server.data.models.serializable.ActionsStateUpdateDto;
|
|
2853
2857
|
toString(): string;
|
|
2854
2858
|
hashCode(): number;
|
|
2855
2859
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2873,14 +2877,16 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
2873
2877
|
}
|
|
2874
2878
|
export declare namespace games.jass.logic.server.data.models.state {
|
|
2875
2879
|
interface ServerStateUpdate {
|
|
2880
|
+
readonly roomId: string;
|
|
2876
2881
|
readonly __doNotUseOrImplementIt: {
|
|
2877
2882
|
readonly "games.jass.logic.server.data.models.state.ServerStateUpdate": unique symbol;
|
|
2878
2883
|
};
|
|
2879
2884
|
}
|
|
2880
2885
|
class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2881
|
-
constructor(table: games.jass.logic.data.models.table.JassTable);
|
|
2886
|
+
constructor(roomId: string, table: games.jass.logic.data.models.table.JassTable);
|
|
2887
|
+
get roomId(): string;
|
|
2882
2888
|
get table(): games.jass.logic.data.models.table.JassTable;
|
|
2883
|
-
copy(table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
2889
|
+
copy(roomId?: string, table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
2884
2890
|
toString(): string;
|
|
2885
2891
|
hashCode(): number;
|
|
2886
2892
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2891,9 +2897,10 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2891
2897
|
const constructor: abstract new () => TableStateUpdate;
|
|
2892
2898
|
}
|
|
2893
2899
|
class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2894
|
-
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
|
|
2900
|
+
constructor(roomId: string, actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
|
|
2901
|
+
get roomId(): string;
|
|
2895
2902
|
get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
|
|
2896
|
-
copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
2903
|
+
copy(roomId?: string, actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
2897
2904
|
toString(): string;
|
|
2898
2905
|
hashCode(): number;
|
|
2899
2906
|
equals(other: Nullable<any>): boolean;
|