@thegraid/hexlib 1.1.3 → 1.1.5
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/dist/game-setup.d.ts +15 -6
- package/dist/game-setup.d.ts.map +1 -1
- package/dist/game-setup.js +18 -8
- package/dist/game-setup.js.map +1 -1
- package/dist/hex.d.ts +62 -20
- package/dist/hex.d.ts.map +1 -1
- package/dist/hex.js +37 -3
- package/dist/hex.js.map +1 -1
- package/dist/table.d.ts +96 -87
- package/dist/table.d.ts.map +1 -1
- package/dist/table.js +32 -19
- package/dist/table.js.map +1 -1
- package/dist/tile.d.ts +9 -0
- package/dist/tile.d.ts.map +1 -1
- package/dist/tile.js +9 -0
- package/dist/tile.js.map +1 -1
- package/package.json +2 -1
package/dist/table.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Container, DisplayObject, EventDispatcher, Shape, Stage, Text } from "@
|
|
|
6
6
|
import { NamedContainer, NamedObject, type GamePlay } from "./game-play";
|
|
7
7
|
import { Scenario } from "./game-setup";
|
|
8
8
|
import type { GameState } from "./game-state";
|
|
9
|
-
import { Hex, IHex2,
|
|
9
|
+
import { Hex, IHex2, IdHex, RecycleHex, HexM } from "./hex";
|
|
10
10
|
import { XYWH } from "./hex-intfs";
|
|
11
11
|
import { Player } from "./player";
|
|
12
12
|
import { PlayerPanel } from "./player-panel";
|
|
@@ -63,7 +63,7 @@ export declare class Table {
|
|
|
63
63
|
gamePlay: GamePlay;
|
|
64
64
|
stage: Stage;
|
|
65
65
|
bgRect: Shape;
|
|
66
|
-
hexMap:
|
|
66
|
+
hexMap: HexM<IHex2>;
|
|
67
67
|
paramGUIs: ParamGUI[];
|
|
68
68
|
netGUI: ParamGUI;
|
|
69
69
|
/** initial visibility for toggleText */
|
|
@@ -82,7 +82,7 @@ export declare class Table {
|
|
|
82
82
|
*
|
|
83
83
|
* typically: this.hexC = this.hexMap.hexC as Constructor\<IHex2\> */
|
|
84
84
|
hexC: Constructor<IHex2>;
|
|
85
|
-
overlayCont: NamedContainer;
|
|
85
|
+
readonly overlayCont: NamedContainer;
|
|
86
86
|
constructor(stage: Stage);
|
|
87
87
|
/** shows the last 2 start of turn lines */
|
|
88
88
|
turnLog: TextLog;
|
|
@@ -118,7 +118,7 @@ export declare class Table {
|
|
|
118
118
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
119
119
|
tile: Tile | undefined;
|
|
120
120
|
meep: import("./meeple").Meeple | undefined;
|
|
121
|
-
constructorCode: (map:
|
|
121
|
+
constructorCode: (map: HexM<{
|
|
122
122
|
implementsIHex2: boolean;
|
|
123
123
|
readonly cont: import("./hex").HexCont;
|
|
124
124
|
readonly radius: number;
|
|
@@ -178,20 +178,20 @@ export declare class Table {
|
|
|
178
178
|
_district: number | undefined;
|
|
179
179
|
readonly isOnMap: boolean;
|
|
180
180
|
_isLegal: boolean;
|
|
181
|
-
readonly map:
|
|
181
|
+
readonly map: HexM<Hex>;
|
|
182
182
|
readonly row: number;
|
|
183
183
|
readonly col: number;
|
|
184
184
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
185
185
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
186
186
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
187
187
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
188
|
-
forEachLinkHex: (func: (hex:
|
|
188
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
189
189
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
190
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
190
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
191
191
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
192
192
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
193
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
194
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
193
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
194
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
195
195
|
radialDist: (hex: Hex) => number;
|
|
196
196
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
197
197
|
showText: (vis?: boolean) => void;
|
|
@@ -235,20 +235,20 @@ export declare class Table {
|
|
|
235
235
|
_district: number | undefined;
|
|
236
236
|
readonly isOnMap: boolean;
|
|
237
237
|
_isLegal: boolean;
|
|
238
|
-
readonly map:
|
|
238
|
+
readonly map: HexM<Hex>;
|
|
239
239
|
readonly row: number;
|
|
240
240
|
readonly col: number;
|
|
241
241
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
242
242
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
243
243
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
244
244
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
245
|
-
forEachLinkHex: (func: (hex:
|
|
245
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
246
246
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
247
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
247
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
248
248
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
249
249
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
250
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
251
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
250
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
251
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
252
252
|
radialDist: (hex: Hex) => number;
|
|
253
253
|
};
|
|
254
254
|
noRowHex(name: string, crxy: {
|
|
@@ -272,7 +272,7 @@ export declare class Table {
|
|
|
272
272
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
273
273
|
tile: Tile | undefined;
|
|
274
274
|
meep: import("./meeple").Meeple | undefined;
|
|
275
|
-
constructorCode: (map:
|
|
275
|
+
constructorCode: (map: HexM<{
|
|
276
276
|
implementsIHex2: boolean;
|
|
277
277
|
readonly cont: import("./hex").HexCont;
|
|
278
278
|
readonly radius: number;
|
|
@@ -332,20 +332,20 @@ export declare class Table {
|
|
|
332
332
|
_district: number | undefined;
|
|
333
333
|
readonly isOnMap: boolean;
|
|
334
334
|
_isLegal: boolean;
|
|
335
|
-
readonly map:
|
|
335
|
+
readonly map: HexM<Hex>;
|
|
336
336
|
readonly row: number;
|
|
337
337
|
readonly col: number;
|
|
338
338
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
339
339
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
340
340
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
341
341
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
342
|
-
forEachLinkHex: (func: (hex:
|
|
342
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
343
343
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
344
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
344
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
345
345
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
346
346
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
347
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
348
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
347
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
348
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
349
349
|
radialDist: (hex: Hex) => number;
|
|
350
350
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
351
351
|
showText: (vis?: boolean) => void;
|
|
@@ -389,20 +389,20 @@ export declare class Table {
|
|
|
389
389
|
_district: number | undefined;
|
|
390
390
|
readonly isOnMap: boolean;
|
|
391
391
|
_isLegal: boolean;
|
|
392
|
-
readonly map:
|
|
392
|
+
readonly map: HexM<Hex>;
|
|
393
393
|
readonly row: number;
|
|
394
394
|
readonly col: number;
|
|
395
395
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
396
396
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
397
397
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
398
398
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
399
|
-
forEachLinkHex: (func: (hex:
|
|
399
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
400
400
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
401
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
401
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
402
402
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
403
403
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
404
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
405
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
404
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
405
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
406
406
|
radialDist: (hex: Hex) => number;
|
|
407
407
|
};
|
|
408
408
|
/**
|
|
@@ -477,7 +477,7 @@ export declare class Table {
|
|
|
477
477
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
478
478
|
tile: Tile | undefined;
|
|
479
479
|
meep: import("./meeple").Meeple | undefined;
|
|
480
|
-
constructorCode: (map:
|
|
480
|
+
constructorCode: (map: HexM<{
|
|
481
481
|
implementsIHex2: boolean;
|
|
482
482
|
readonly cont: import("./hex").HexCont;
|
|
483
483
|
readonly radius: number;
|
|
@@ -537,20 +537,20 @@ export declare class Table {
|
|
|
537
537
|
_district: number | undefined;
|
|
538
538
|
readonly isOnMap: boolean;
|
|
539
539
|
_isLegal: boolean;
|
|
540
|
-
readonly map:
|
|
540
|
+
readonly map: HexM<Hex>;
|
|
541
541
|
readonly row: number;
|
|
542
542
|
readonly col: number;
|
|
543
543
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
544
544
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
545
545
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
546
546
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
547
|
-
forEachLinkHex: (func: (hex:
|
|
547
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
548
548
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
549
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
549
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
550
550
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
551
551
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
552
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
553
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
552
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
553
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
554
554
|
radialDist: (hex: Hex) => number;
|
|
555
555
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
556
556
|
showText: (vis?: boolean) => void;
|
|
@@ -594,20 +594,20 @@ export declare class Table {
|
|
|
594
594
|
_district: number | undefined;
|
|
595
595
|
readonly isOnMap: boolean;
|
|
596
596
|
_isLegal: boolean;
|
|
597
|
-
readonly map:
|
|
597
|
+
readonly map: HexM<Hex>;
|
|
598
598
|
readonly row: number;
|
|
599
599
|
readonly col: number;
|
|
600
600
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
601
601
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
602
602
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
603
603
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
604
|
-
forEachLinkHex: (func: (hex:
|
|
604
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
605
605
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
606
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
606
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
607
607
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
608
608
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
609
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
610
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
609
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
610
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
611
611
|
radialDist: (hex: Hex) => number;
|
|
612
612
|
};
|
|
613
613
|
/** Params that affect the rules of the game & board
|
|
@@ -629,7 +629,12 @@ export declare class Table {
|
|
|
629
629
|
addDoneButton(actionCont: Container, rh: number): Container;
|
|
630
630
|
/** show player player score on table */
|
|
631
631
|
setPlayerScore(plyr: Player, score: number, rank?: number): void;
|
|
632
|
-
/** update table when a new Game is started.
|
|
632
|
+
/** update table when a new Game is started.
|
|
633
|
+
*
|
|
634
|
+
* default: [allTiles.makeDragable(); setNextPlayer(gamePlay.turnNumber)]
|
|
635
|
+
*
|
|
636
|
+
* A Tile or class of Tile may stopDragging() due to noLegalTargets().
|
|
637
|
+
*/
|
|
633
638
|
startGame(scenario: Scenario): void;
|
|
634
639
|
makeDragable(tile: DisplayObject): void;
|
|
635
640
|
hexUnderObj(dragObj: DisplayObject, legalOnly?: boolean): {
|
|
@@ -650,7 +655,7 @@ export declare class Table {
|
|
|
650
655
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
651
656
|
tile: Tile | undefined;
|
|
652
657
|
meep: import("./meeple").Meeple | undefined;
|
|
653
|
-
constructorCode: (map:
|
|
658
|
+
constructorCode: (map: HexM<{
|
|
654
659
|
implementsIHex2: boolean;
|
|
655
660
|
readonly cont: import("./hex").HexCont;
|
|
656
661
|
readonly radius: number;
|
|
@@ -710,20 +715,20 @@ export declare class Table {
|
|
|
710
715
|
_district: number | undefined;
|
|
711
716
|
readonly isOnMap: boolean;
|
|
712
717
|
_isLegal: boolean;
|
|
713
|
-
readonly map:
|
|
718
|
+
readonly map: HexM<Hex>;
|
|
714
719
|
readonly row: number;
|
|
715
720
|
readonly col: number;
|
|
716
721
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
717
722
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
718
723
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
719
724
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
720
|
-
forEachLinkHex: (func: (hex:
|
|
725
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
721
726
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
722
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
727
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
723
728
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
724
729
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
725
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
726
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
730
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
731
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
727
732
|
radialDist: (hex: Hex) => number;
|
|
728
733
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
729
734
|
showText: (vis?: boolean) => void;
|
|
@@ -767,20 +772,20 @@ export declare class Table {
|
|
|
767
772
|
_district: number | undefined;
|
|
768
773
|
readonly isOnMap: boolean;
|
|
769
774
|
_isLegal: boolean;
|
|
770
|
-
readonly map:
|
|
775
|
+
readonly map: HexM<Hex>;
|
|
771
776
|
readonly row: number;
|
|
772
777
|
readonly col: number;
|
|
773
778
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
774
779
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
775
780
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
776
781
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
777
|
-
forEachLinkHex: (func: (hex:
|
|
782
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
778
783
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
779
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
784
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
780
785
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
781
786
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
782
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
783
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
787
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
788
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
784
789
|
radialDist: (hex: Hex) => number;
|
|
785
790
|
} | undefined;
|
|
786
791
|
dragContext: DragContext;
|
|
@@ -813,7 +818,7 @@ export declare class Table {
|
|
|
813
818
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
814
819
|
tile: Tile | undefined;
|
|
815
820
|
meep: import("./meeple").Meeple | undefined;
|
|
816
|
-
constructorCode: (map:
|
|
821
|
+
constructorCode: (map: HexM<{
|
|
817
822
|
implementsIHex2: boolean;
|
|
818
823
|
readonly cont: import("./hex").HexCont;
|
|
819
824
|
readonly radius: number;
|
|
@@ -873,20 +878,20 @@ export declare class Table {
|
|
|
873
878
|
_district: number | undefined;
|
|
874
879
|
readonly isOnMap: boolean;
|
|
875
880
|
_isLegal: boolean;
|
|
876
|
-
readonly map:
|
|
881
|
+
readonly map: HexM<Hex>;
|
|
877
882
|
readonly row: number;
|
|
878
883
|
readonly col: number;
|
|
879
884
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
880
885
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
881
886
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
882
887
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
883
|
-
forEachLinkHex: (func: (hex:
|
|
888
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
884
889
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
885
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
890
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
886
891
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
887
892
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
888
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
889
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
893
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
894
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
890
895
|
radialDist: (hex: Hex) => number;
|
|
891
896
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
892
897
|
showText: (vis?: boolean) => void;
|
|
@@ -930,20 +935,20 @@ export declare class Table {
|
|
|
930
935
|
_district: number | undefined;
|
|
931
936
|
readonly isOnMap: boolean;
|
|
932
937
|
_isLegal: boolean;
|
|
933
|
-
readonly map:
|
|
938
|
+
readonly map: HexM<Hex>;
|
|
934
939
|
readonly row: number;
|
|
935
940
|
readonly col: number;
|
|
936
941
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
937
942
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
938
943
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
939
944
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
940
|
-
forEachLinkHex: (func: (hex:
|
|
945
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
941
946
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
942
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
947
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
943
948
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
944
949
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
945
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
946
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
950
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
951
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
947
952
|
radialDist: (hex: Hex) => number;
|
|
948
953
|
} | undefined): void;
|
|
949
954
|
/** invoke dragShift callback if shift state changes */
|
|
@@ -985,7 +990,7 @@ export declare class Table {
|
|
|
985
990
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
986
991
|
tile: Tile | undefined;
|
|
987
992
|
meep: import("./meeple").Meeple | undefined;
|
|
988
|
-
constructorCode: (map:
|
|
993
|
+
constructorCode: (map: HexM<{
|
|
989
994
|
implementsIHex2: boolean;
|
|
990
995
|
readonly cont: import("./hex").HexCont;
|
|
991
996
|
readonly radius: number;
|
|
@@ -1045,20 +1050,20 @@ export declare class Table {
|
|
|
1045
1050
|
_district: number | undefined;
|
|
1046
1051
|
readonly isOnMap: boolean;
|
|
1047
1052
|
_isLegal: boolean;
|
|
1048
|
-
readonly map:
|
|
1053
|
+
readonly map: HexM<Hex>;
|
|
1049
1054
|
readonly row: number;
|
|
1050
1055
|
readonly col: number;
|
|
1051
1056
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1052
1057
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1053
1058
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
1054
1059
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
1055
|
-
forEachLinkHex: (func: (hex:
|
|
1060
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
1056
1061
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
1057
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
1062
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
1058
1063
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
1059
1064
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
1060
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
1061
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
1065
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
1066
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
1062
1067
|
radialDist: (hex: Hex) => number;
|
|
1063
1068
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
1064
1069
|
showText: (vis?: boolean) => void;
|
|
@@ -1102,30 +1107,32 @@ export declare class Table {
|
|
|
1102
1107
|
_district: number | undefined;
|
|
1103
1108
|
readonly isOnMap: boolean;
|
|
1104
1109
|
_isLegal: boolean;
|
|
1105
|
-
readonly map:
|
|
1110
|
+
readonly map: HexM<Hex>;
|
|
1106
1111
|
readonly row: number;
|
|
1107
1112
|
readonly col: number;
|
|
1108
1113
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1109
1114
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1110
1115
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
1111
1116
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
1112
|
-
forEachLinkHex: (func: (hex:
|
|
1117
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
1113
1118
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
1114
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
1119
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
1115
1120
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
1116
1121
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
1117
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
1118
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
1122
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
1123
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
1119
1124
|
radialDist: (hex: Hex) => number;
|
|
1120
1125
|
} | undefined): void;
|
|
1121
1126
|
/** synthesize dragStart(tile), tile.dragFunc0(hex), dropFunc(tile); */
|
|
1122
1127
|
dragStartAndDrop(tile: Tile, toHex: Hex): void;
|
|
1123
|
-
|
|
1128
|
+
/** the Tile being dragged or undefined. */
|
|
1129
|
+
protected get isDragging(): DisplayObject;
|
|
1124
1130
|
/** Force this.dragger to drop the current drag object on given target Hex.
|
|
1125
1131
|
*
|
|
1126
1132
|
* without checking isLegalTarget();
|
|
1133
|
+
* @param targetHex where to drop Tile [this.dragContext.tile.fromHex]
|
|
1127
1134
|
*/
|
|
1128
|
-
stopDragging(
|
|
1135
|
+
stopDragging(targetHex?: {
|
|
1129
1136
|
implementsIHex2: boolean;
|
|
1130
1137
|
readonly cont: import("./hex").HexCont;
|
|
1131
1138
|
readonly radius: number;
|
|
@@ -1143,7 +1150,7 @@ export declare class Table {
|
|
|
1143
1150
|
setUnit: (unit: Tile, meep?: boolean) => void;
|
|
1144
1151
|
tile: Tile | undefined;
|
|
1145
1152
|
meep: import("./meeple").Meeple | undefined;
|
|
1146
|
-
constructorCode: (map:
|
|
1153
|
+
constructorCode: (map: HexM<{
|
|
1147
1154
|
implementsIHex2: boolean;
|
|
1148
1155
|
readonly cont: import("./hex").HexCont;
|
|
1149
1156
|
readonly radius: number;
|
|
@@ -1203,20 +1210,20 @@ export declare class Table {
|
|
|
1203
1210
|
_district: number | undefined;
|
|
1204
1211
|
readonly isOnMap: boolean;
|
|
1205
1212
|
_isLegal: boolean;
|
|
1206
|
-
readonly map:
|
|
1213
|
+
readonly map: HexM<Hex>;
|
|
1207
1214
|
readonly row: number;
|
|
1208
1215
|
readonly col: number;
|
|
1209
1216
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1210
1217
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1211
1218
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
1212
1219
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
1213
|
-
forEachLinkHex: (func: (hex:
|
|
1220
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
1214
1221
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
1215
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
1222
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
1216
1223
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
1217
1224
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
1218
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
1219
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
1225
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
1226
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
1220
1227
|
radialDist: (hex: Hex) => number;
|
|
1221
1228
|
}>, row: number, col: number, name?: string | undefined) => void;
|
|
1222
1229
|
showText: (vis?: boolean) => void;
|
|
@@ -1260,28 +1267,29 @@ export declare class Table {
|
|
|
1260
1267
|
_district: number | undefined;
|
|
1261
1268
|
readonly isOnMap: boolean;
|
|
1262
1269
|
_isLegal: boolean;
|
|
1263
|
-
readonly map:
|
|
1270
|
+
readonly map: HexM<Hex>;
|
|
1264
1271
|
readonly row: number;
|
|
1265
1272
|
readonly col: number;
|
|
1266
1273
|
readonly links: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1267
1274
|
metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
|
|
1268
1275
|
readonly linkDirs: import("./hex-intfs").HexDir[];
|
|
1269
1276
|
readonly linkHexes: (import("./hex").Hex2 | undefined)[];
|
|
1270
|
-
forEachLinkHex: (func: (hex:
|
|
1277
|
+
forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
|
|
1271
1278
|
findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
|
|
1272
|
-
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex:
|
|
1279
|
+
findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
|
|
1273
1280
|
hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
|
|
1274
1281
|
forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
|
|
1275
|
-
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) =>
|
|
1276
|
-
lastHex: (ds: import("./hex-intfs").HexDir) =>
|
|
1282
|
+
nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
|
|
1283
|
+
lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
|
|
1277
1284
|
radialDist: (hex: Hex) => number;
|
|
1278
1285
|
} | undefined): void;
|
|
1279
|
-
/**
|
|
1280
|
-
*
|
|
1281
|
-
* @param
|
|
1286
|
+
/**
|
|
1287
|
+
* if (isDragging) stopDragging(targetHex); else startDragging(dragObj);
|
|
1288
|
+
* @param dragObj a DisplayObject to start dragging with dragTarget
|
|
1282
1289
|
* @param xy offset from target to mouse pointer
|
|
1283
1290
|
*/
|
|
1284
|
-
dragTarget(
|
|
1291
|
+
dragTarget(dragObj?: DisplayObject, xy?: XY): void;
|
|
1292
|
+
startDragging(dragObj: DisplayObject, xy?: XY): void;
|
|
1285
1293
|
logCurPlayer(plyr: Player): void;
|
|
1286
1294
|
showRedoUndoCount(): void;
|
|
1287
1295
|
showNextPlayer(log?: boolean): void;
|
|
@@ -1312,6 +1320,7 @@ export declare class Table {
|
|
|
1312
1320
|
* @param bindkeys true if there's a GUI/user/keyboard
|
|
1313
1321
|
*/
|
|
1314
1322
|
makeScaleCont(bindKeys: boolean): ScaleableContainer2;
|
|
1323
|
+
bindKeys(): void;
|
|
1315
1324
|
/** put a Rectangle Shape at (0,0) with XYWH bounds as given */
|
|
1316
1325
|
setBackground(parent: Container, bounds: XYWH, bgColor?: string): RectShape & NamedObject;
|
|
1317
1326
|
zoom(z?: number): void;
|
package/dist/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAAqB,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAgB,QAAQ,EAAgB,kBAAkB,EAAS,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC9K,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,eAAe,EAAwB,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAC/H,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,KAAK,QAAQ,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":";;;AAAA,OAAO,EAAqB,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAgB,QAAQ,EAAgB,kBAAkB,EAAS,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC9K,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,eAAe,EAAwB,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAC/H,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,KAAK,QAAQ,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,KAAK,EAAU,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAe,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACxE,OAAO,EAAE,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAC7E,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAM3C,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,CAAC;AAC7E,MAAM,WAAW,YAAa,SAAQ,SAAS;IAAG,OAAO,EAAE,OAAO,CAAC;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC,CAAA;CAAE;AAExI,MAAM,WAAW,QAAQ;IACvB,SAAS,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW,GAAG,IAAI,CAAC;IAC9C,SAAS,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW,GAAG,IAAI,CAAC;CAC/C;AAED,qBAAqB;AACrB,cAAM,YAAY;gBACJ,QAAQ,EAAE,QAAQ;CAC/B;AAOD,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,KAAK,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,cAAM,OAAQ,SAAQ,cAAc;IACY,IAAI,EAAE,MAAM;IAAc,IAAI;gBAAhE,KAAK,EAAE,MAAM,EAAE,MAAM,SAAI,EAAS,IAAI,GAAE,MAAW,EAAS,IAAI,SAAI;IAOhF,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,QAAQ,SAAM;IACd,KAAK,SAAK;IAEV,MAAM,CAAC,CAAC,SAAoB;IAI5B,KAAK;IAKL,OAAO,CAAC,OAAO;IAOf,OAAO,CAAC,UAAU;IAIlB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,SAAK,EAAE,SAAS,UAAO;CAe9C;AAED;;;GAGG;AACH,qBAAa,KAAK;IAChB,MAAM,CAAC,KAAK,EAAE,KAAK,CAAA;IACnB,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE,aAAa;IAIpC,IAAI,EAAE,eAAe,CAAkC;IACvD,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,GAAG,EAAE,UAAU,UAAQ;IAK5I,QAAQ,EAAE,QAAQ,CAAC;IACnB,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,EAAE,KAAK,CAAA;IACb,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;IAEpB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,MAAM,EAAE,QAAQ,CAAC;IACjB,wCAAwC;IACxC,UAAU,UAAS;IAEnB,QAAQ,EAAE,SAAS,CAAkC;IACrD,SAAS,EAAE,KAAK,CAAe;IAC/B,SAAS,EAAE,KAAK,CAAe;IAC/B,SAAS,EAAE,KAAK,CAAe;IAC/B,QAAQ,EAAE,IAAI,CAAgC;IAC9C,QAAQ,EAAE,IAAI,CAAgC;IAC9C,OAAO,EAAE,IAAI,CAAwC;IACrD,OAAO,EAAE,KAAK,CAAyF;IAEvG,OAAO,EAAE,OAAO,CAAA;IAChB;;;yEAGqE;IACrE,IAAI,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC;IAEzB,QAAQ,CAAC,WAAW,iBAAiC;gBACzC,KAAK,EAAE,KAAK;IASxB,2CAA2C;IAC3C,OAAO,UAA6B;IACpC,8CAA8C;IAC9C,OAAO,UAA2C;IAElD,OAAO,CAAC,IAAI,EAAE,MAAM;IAGpB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,SAAK;IAQ/B,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,SAAI,EAAE,GAAG,SAAK;IAiC5F,WAAW,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,KAAK,SAAU;IAMzC,kBAAkB,CAAC,EAAE,SAAK,EAAE,IAAI,YAAgB;IAuBhD,SAAS,UAAS;IAClB,SAAS,UAAS;IAClB,4DAA4D;IAC5D,UAAU,CAAC,GAAG,CAAC,EAAE,OAAO;IASxB,SAAS,CAAC,KAAK,SAAa,EAAE,EAAE,SAAM,EAAE,GAAG,SAAK;IAgChD,+CAA+C;IAC/C,QAAQ,EAAE,KAAK,EAAE,CAAM;IACvB,OAAO,CAAC,GAAG,oBAAI,EAAE,GAAG,oBAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,GAAE,WAAW,CAAC,KAAK,CAAa,EAAE,EAAE,SAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUpF,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,EAAE,IAAI,CAAC,EAAE,WAAW,CAAC,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMpF;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,SAAK,EAAE,EAAE,SAAK,EAAE,EAAE,SAAK,EAAE,EAAE,SAAI,EAAE,EAAE,SAAI,EAAE,EAAE,SAAI;;;;;;IAkBxD;;;OAGG;IACH,WAAW,CAAC,QAAQ,EAAE,QAAQ;IA4B9B,aAAa,CAAC,IAAI,SAAI,EAAE,IAAI,SAAM;IAWlC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM;;;;IAM9C,YAAY;IAGZ,MAAM,CAAC,OAAO,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,SAAI,EAAE,CAAC,SAAI;IAYrG;;;;;;OAMG;IACH,QAAQ;IAcR,IAAI,WAAW,WAA2C;IAC1D,IAAI,WAAW,WAA4B;IAE3C;;;;OAIG;IACH,YAAY;IAUZ,6DAA6D;IAC7D,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,SAAwC,EAAE,IAAI,aAAsB;IAM/F,QAAQ,CAAC,eAAe,EAAE,WAAW,EAAE,CAAM;IAC7C,gDAAgD;IAChD,aAAa;IAYb,iDAAiD;IACjD,WAAW,CAAC,IAAI,EAAE,SAAS,EAAE,GAAG,SAAI,EAAE,GAAG,SAAI,EAAE,OAAO,YAA8B;IAapF,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK;IAMhD,gBAAgB,CAAC,KAAK,SAAU,EAAE,GAAG,SAAK,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,SAAK;IAa/D,gBAAgB,CAAC,KAAK,oBAAU,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,SAAK;IAYjE,cAAc,CAAC,GAAG,SAAkB,EAAE,GAAG,SAAI,EAAE,IAAI,oBAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAchE;;;;;OAKG;IACH,YAAY,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,SAAI,EAAE,CAAC,SAAI;IAiB5C,+BAA+B;IAC/B,aAAa,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,SAAI,EAAE,CAAC,SAAI;IAY7C,QAAQ,EAAE,MAAM,CAA0B;IAC1C,QAAQ,EAAE,aAAa,CAA0B;IACjD,iDAAiD;IACjD,cAAc,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,SAAI,EAAE,CAAC,SAAI;IA0B9C,gBAAgB,CAAC,UAAU,SAAkB;IAM7C,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,SAAU,GAAG,UAGvB;IAED,aAAa,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM;IAqB/C,wCAAwC;IACxC,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM;IAGzD;;;;;OAKG;IACH,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAU5B,YAAY,CAAC,IAAI,EAAE,aAAa;IAMhC,WAAW,CAAC,OAAO,EAAE,aAAa,EAAE,SAAS,UAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIpD,WAAW,EAAE,WAAW,CAAC;IACzB,yFAAyF;IACzF,QAAQ,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE,QAAQ;IAK7C;;;;;;;;OAQG;IACH,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,QAAQ,EAAE,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAyB;IAkCnE,uDAAuD;IACvD,UAAU,CAAC,GAAG,EAAE,KAAK,GAAG,SAAS,EAAE,GAAG,EAAE,WAAW;IAYnD;;;;;;;;;;;;;;OAcG;IACH,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,WAAW;IA0BtC,wEAAwE;IACxE,SAAS,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,EAAE,QAAQ,EAAE,OAAO,GAAG,SAAS,EAAE,GAAG,EAAE,WAAW;IAIjF,kEAAkE;IAClE,QAAQ,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE,QAAQ,EAAE,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAyB;IAU3E,wEAAwE;IACxE,gBAAgB,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG;IAQvC,2CAA2C;IAC3C,SAAS,KAAK,UAAU,kBAAkD;IAE1E;;;;OAIG;IACH,YAAY,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAkC;IAUxD;;;;OAIG;IACH,UAAU,CAAC,OAAO,CAAC,EAAE,aAAa,EAAE,EAAE,GAAE,EAA2C;IASnF,aAAa,CAAC,OAAO,EAAE,aAAa,EAAE,EAAE,GAAE,EAAmB;IAI7D,YAAY,CAAC,IAAI,EAAE,MAAM;IAOzB,iBAAiB;IAIjB,cAAc,CAAC,GAAG,GAAE,OAAc;IAMlC,aAAa,EAAE,YAAY,CAAA;IAC3B,IAAI,YAAY,iBAGf;IACD;;;;;OAKG;IACH,WAAW,CAAC,IAAI,EAAE,KAAK;IAEvB,kDAAkD;IAClD,cAAc,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,WAAW;IAM3C,+BAA+B;IAC/B,OAAO,EAAE,MAAM,CAAO;IACtB,8CAA8C;IAC9C,OAAO,CAAC,IAAI,EAAE,SAAS,EAAE,KAAK,SAAe;IAG7C,WAAW;;;;;;MAA0E;IAErF,QAAQ,CAAC,SAAS,EAAE,mBAAmB,CAAC;IACxC;;OAEG;IACH,aAAa,CAAC,QAAQ,EAAE,OAAO;IAgB/B,QAAQ;IAMR,+DAA+D;IAC/D,aAAa,CAAC,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,SAAa;IAQnE,IAAI,CAAC,CAAC,SAAM;IAUZ,GAAG,CAAC,EAAE,EAAE,EAAE;IAMV;;;;;;;OAOG;IAEH,eAAe,CAAC,MAAM,EAAE,mBAAmB,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,SAAK;CAwCjG;AAED,cAAM,mBAAoB,SAAQ,kBAAkB;CAEnD"}
|