raspberry_games_engine_helpers 1.8.475 → 1.8.476

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.
@@ -380,7 +380,7 @@
380
380
  function addFormatStructureForTime(structure) {
381
381
  this.x1b(structure);
382
382
  }
383
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
383
+ initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
384
384
  initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
385
385
  initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
386
386
  function set_fractionOfSecond(value) {
@@ -237,7 +237,7 @@
237
237
  initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
238
238
  //endregion
239
239
  function GameEngineConfig() {
240
- this.version = '1.8.475';
240
+ this.version = '1.8.476';
241
241
  }
242
242
  protoOf(GameEngineConfig).u16 = function () {
243
243
  return this.version;
@@ -1710,6 +1710,7 @@ export declare namespace games.jass.logic.data.models.rules {
1710
1710
  debertzCommon(): games.jass.logic.data.models.rules.Rules;
1711
1711
  belot(): games.jass.logic.data.models.rules.Rules;
1712
1712
  beloteFrancaise(): games.jass.logic.data.models.rules.Rules;
1713
+ beloteLaTourne(): games.jass.logic.data.models.rules.Rules;
1713
1714
  coinche(): games.jass.logic.data.models.rules.Rules;
1714
1715
  baloot(): games.jass.logic.data.models.rules.Rules;
1715
1716
  pilotta(): games.jass.logic.data.models.rules.Rules;
@@ -1751,24 +1752,28 @@ export declare namespace games.jass.logic.data.models.rules {
1751
1752
  get name(): "beloteFrancaise";
1752
1753
  get ordinal(): 6;
1753
1754
  };
1755
+ static get beloteLaTourne(): games.jass.logic.data.models.rules.RulesSetType & {
1756
+ get name(): "beloteLaTourne";
1757
+ get ordinal(): 7;
1758
+ };
1754
1759
  static get coinche(): games.jass.logic.data.models.rules.RulesSetType & {
1755
1760
  get name(): "coinche";
1756
- get ordinal(): 7;
1761
+ get ordinal(): 8;
1757
1762
  };
1758
1763
  static get baloot(): games.jass.logic.data.models.rules.RulesSetType & {
1759
1764
  get name(): "baloot";
1760
- get ordinal(): 8;
1765
+ get ordinal(): 9;
1761
1766
  };
1762
1767
  static get pilotta(): games.jass.logic.data.models.rules.RulesSetType & {
1763
1768
  get name(): "pilotta";
1764
- get ordinal(): 9;
1769
+ get ordinal(): 10;
1765
1770
  };
1766
1771
  static get custom(): games.jass.logic.data.models.rules.RulesSetType & {
1767
1772
  get name(): "custom";
1768
- get ordinal(): 10;
1773
+ get ordinal(): 11;
1769
1774
  };
1770
- get name(): "debertzKharkiv" | "debertzSaltivka" | "debertzCommon" | "klabor" | "belot" | "belotBulgarian" | "beloteFrancaise" | "coinche" | "baloot" | "pilotta" | "custom";
1771
- get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
1775
+ get name(): "debertzKharkiv" | "debertzSaltivka" | "debertzCommon" | "klabor" | "belot" | "belotBulgarian" | "beloteFrancaise" | "beloteLaTourne" | "coinche" | "baloot" | "pilotta" | "custom";
1776
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
1772
1777
  get value(): string;
1773
1778
  getRules(): games.jass.logic.data.models.rules.Rules;
1774
1779
  get isCustom(): boolean;
@@ -2501,15 +2506,18 @@ export declare namespace games.jass.logic.data.models.table.history {
2501
2506
  }
2502
2507
  export declare namespace games.jass.logic.data.models.table.round {
2503
2508
  class Round {
2504
- constructor(roundNumber: number, numberOfBribe: Nullable<number>, trump: Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */);
2509
+ constructor(roundNumber: number, numberOfBribe: Nullable<number>, trump: Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */, contractType: Nullable<games.jass.logic.data.models.player.state.RoundContractType>);
2505
2510
  get roundNumber(): number;
2506
2511
  get numberOfBribe(): Nullable<number>;
2507
2512
  get trump(): Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */;
2513
+ get contractType(): Nullable<games.jass.logic.data.models.player.state.RoundContractType>;
2508
2514
  get isInitial(): boolean;
2509
2515
  get selectedTrump(): any/* io.raspberryapps.card_game.core.data.models.cards.Suit */;
2516
+ get isNoTrumps(): boolean;
2517
+ get isAllTrumps(): boolean;
2510
2518
  get numberOfBribeOrZero(): number;
2511
2519
  get nextBribeNumber(): number;
2512
- copy(roundNumber?: number, numberOfBribe?: Nullable<number>, trump?: Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */): games.jass.logic.data.models.table.round.Round;
2520
+ copy(roundNumber?: number, numberOfBribe?: Nullable<number>, trump?: Nullable<any>/* Nullable<io.raspberryapps.card_game.core.data.models.cards.Suit> */, contractType?: Nullable<games.jass.logic.data.models.player.state.RoundContractType>): games.jass.logic.data.models.table.round.Round;
2513
2521
  toString(): string;
2514
2522
  hashCode(): number;
2515
2523
  equals(other: Nullable<any>): boolean;
@@ -2527,6 +2535,7 @@ export declare namespace games.jass.logic.data.models.table.round {
2527
2535
  namespace $metadata$ {
2528
2536
  abstract class constructor {
2529
2537
  initial(): games.jass.logic.data.models.table.round.Round;
2538
+ finished(roundNumber: number): games.jass.logic.data.models.table.round.Round;
2530
2539
  private constructor();
2531
2540
  }
2532
2541
  }
@@ -3140,7 +3149,7 @@ export declare interface ParserHelper {
3140
3149
  decodeFullGameHistoryToTableLite(json: string, round: Nullable<number>): games.jass.logic.data.models.table.JassTableLite;
3141
3150
  encodeGameToRoomTransition(transition: games.jass.logic.redux.actions.mechanic.GameTransition): string;
3142
3151
  decodeGameToRoomTransition(json: string): games.jass.logic.redux.actions.mechanic.GameTransition;
3143
- decodeTableStateWithActions(json: string): games.jass.logic.data.models.table.TableStateWithActions;
3152
+ decodeTableStateWithActions(jsonTable: string, jsonActions: kotlin.collections.KtList<string>): games.jass.logic.data.models.table.TableStateWithActions;
3144
3153
  encodeTableStateWithActions(table: games.jass.logic.data.models.table.TableStateWithActions): string;
3145
3154
  readonly __doNotUseOrImplementIt: {
3146
3155
  readonly ParserHelper: unique symbol;