raspberry_games_server_game_logic 1.8.433 → 1.8.435
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/Kosi-Kaverit-kaverit.js +56 -56
- package/Kosi-Kodein-kodein-di.js +516 -516
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1384 -1384
- package/Logic_Debertz-ai_module.js +327 -327
- package/Logic_Debertz-core.js +1085 -1085
- package/Logic_Debertz-engine.js +12767 -12546
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +5 -3
- package/Logic_Debertz-game_server.js +1145 -1145
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +8 -8
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
- package/raspberry-cardgame-lib-core.js +122 -109
- package/raspberry-cardgame-lib-core.js.map +1 -1
|
@@ -978,12 +978,13 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
978
978
|
}
|
|
979
979
|
export declare namespace games.jass.logic.data.models.dealer {
|
|
980
980
|
class RandomData {
|
|
981
|
-
constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy);
|
|
981
|
+
constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>);
|
|
982
982
|
get signature(): Nullable<string>;
|
|
983
983
|
get id(): string;
|
|
984
984
|
get indexes(): kotlin.collections.KtList<number>;
|
|
985
985
|
get provider(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
986
|
-
|
|
986
|
+
get cardDeck(): kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>;
|
|
987
|
+
copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck?: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>): games.jass.logic.data.models.dealer.RandomData;
|
|
987
988
|
toString(): string;
|
|
988
989
|
hashCode(): number;
|
|
989
990
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2907,7 +2908,6 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2907
2908
|
}
|
|
2908
2909
|
}
|
|
2909
2910
|
export declare interface GameHelper {
|
|
2910
|
-
getBotRatingRange(league: Nullable<string>): models.BotRatingRange;
|
|
2911
2911
|
filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2912
2912
|
filterLiveDuringGamePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2913
2913
|
filterBotPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|
|
@@ -2963,6 +2963,8 @@ export declare interface ParserHelper {
|
|
|
2963
2963
|
};
|
|
2964
2964
|
}
|
|
2965
2965
|
export declare interface RatingHelper {
|
|
2966
|
+
getBotRatingRange(league: Nullable<string>): models.BotRatingRange;
|
|
2967
|
+
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
2966
2968
|
isValidRatingForLeague(league: games.jass.logic.data.models.leagues.League, rating: number): boolean;
|
|
2967
2969
|
mapRatingToLeague(rating: number): games.jass.logic.data.models.leagues.League;
|
|
2968
2970
|
getLeaguesConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
|