mons-web 0.1.114 → 0.1.115
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/mons-web.d.ts +70 -70
- package/mons-web.js +13 -13
- package/mons-web_bg.wasm +0 -0
- package/package.json +1 -1
package/mons-web.d.ts
CHANGED
|
@@ -10,31 +10,56 @@
|
|
|
10
10
|
export function winner(fen_w: string, fen_b: string, flat_moves_string_w: string, flat_moves_string_b: string): string;
|
|
11
11
|
/**
|
|
12
12
|
*/
|
|
13
|
-
export enum
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
export enum NextInputKind {
|
|
14
|
+
MonMove = 0,
|
|
15
|
+
ManaMove = 1,
|
|
16
|
+
MysticAction = 2,
|
|
17
|
+
DemonAction = 3,
|
|
18
|
+
DemonAdditionalStep = 4,
|
|
19
|
+
SpiritTargetCapture = 5,
|
|
20
|
+
SpiritTargetMove = 6,
|
|
21
|
+
SelectConsumable = 7,
|
|
22
|
+
BombAttack = 8,
|
|
18
23
|
}
|
|
19
24
|
/**
|
|
20
25
|
*/
|
|
21
|
-
export enum
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
export enum SquareModelKind {
|
|
27
|
+
Regular = 0,
|
|
28
|
+
ConsumableBase = 1,
|
|
29
|
+
SupermanaBase = 2,
|
|
30
|
+
ManaBase = 3,
|
|
31
|
+
ManaPool = 4,
|
|
32
|
+
MonBase = 5,
|
|
25
33
|
}
|
|
26
34
|
/**
|
|
27
35
|
*/
|
|
28
|
-
export enum
|
|
29
|
-
|
|
30
|
-
|
|
36
|
+
export enum EventModelKind {
|
|
37
|
+
MonMove = 0,
|
|
38
|
+
ManaMove = 1,
|
|
39
|
+
ManaScored = 2,
|
|
40
|
+
MysticAction = 3,
|
|
41
|
+
DemonAction = 4,
|
|
42
|
+
DemonAdditionalStep = 5,
|
|
43
|
+
SpiritTargetMove = 6,
|
|
44
|
+
PickupBomb = 7,
|
|
45
|
+
PickupPotion = 8,
|
|
46
|
+
PickupMana = 9,
|
|
47
|
+
MonFainted = 10,
|
|
48
|
+
ManaDropped = 11,
|
|
49
|
+
SupermanaBackToBase = 12,
|
|
50
|
+
BombAttack = 13,
|
|
51
|
+
MonAwake = 14,
|
|
52
|
+
BombExplosion = 15,
|
|
53
|
+
NextTurn = 16,
|
|
54
|
+
GameOver = 17,
|
|
55
|
+
Takeback = 18,
|
|
56
|
+
UsePotion = 19,
|
|
31
57
|
}
|
|
32
58
|
/**
|
|
33
59
|
*/
|
|
34
|
-
export enum
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
BombOrPotion = 2,
|
|
60
|
+
export enum ManaKind {
|
|
61
|
+
Regular = 0,
|
|
62
|
+
Supermana = 1,
|
|
38
63
|
}
|
|
39
64
|
/**
|
|
40
65
|
*/
|
|
@@ -47,32 +72,26 @@ export enum MonKind {
|
|
|
47
72
|
}
|
|
48
73
|
/**
|
|
49
74
|
*/
|
|
50
|
-
export enum
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
MonBase = 5,
|
|
75
|
+
export enum ItemModelKind {
|
|
76
|
+
Mon = 0,
|
|
77
|
+
Mana = 1,
|
|
78
|
+
MonWithMana = 2,
|
|
79
|
+
MonWithConsumable = 3,
|
|
80
|
+
Consumable = 4,
|
|
57
81
|
}
|
|
58
82
|
/**
|
|
59
83
|
*/
|
|
60
|
-
export enum
|
|
61
|
-
|
|
62
|
-
|
|
84
|
+
export enum Modifier {
|
|
85
|
+
SelectPotion = 0,
|
|
86
|
+
SelectBomb = 1,
|
|
87
|
+
Cancel = 2,
|
|
63
88
|
}
|
|
64
89
|
/**
|
|
65
90
|
*/
|
|
66
|
-
export enum
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
DemonAction = 3,
|
|
71
|
-
DemonAdditionalStep = 4,
|
|
72
|
-
SpiritTargetCapture = 5,
|
|
73
|
-
SpiritTargetMove = 6,
|
|
74
|
-
SelectConsumable = 7,
|
|
75
|
-
BombAttack = 8,
|
|
91
|
+
export enum Consumable {
|
|
92
|
+
Potion = 0,
|
|
93
|
+
Bomb = 1,
|
|
94
|
+
BombOrPotion = 2,
|
|
76
95
|
}
|
|
77
96
|
/**
|
|
78
97
|
*/
|
|
@@ -84,36 +103,17 @@ export enum AvailableMoveKind {
|
|
|
84
103
|
}
|
|
85
104
|
/**
|
|
86
105
|
*/
|
|
87
|
-
export enum
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
MonWithMana = 2,
|
|
91
|
-
MonWithConsumable = 3,
|
|
92
|
-
Consumable = 4,
|
|
106
|
+
export enum Color {
|
|
107
|
+
White = 0,
|
|
108
|
+
Black = 1,
|
|
93
109
|
}
|
|
94
110
|
/**
|
|
95
111
|
*/
|
|
96
|
-
export enum
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
DemonAction = 4,
|
|
102
|
-
DemonAdditionalStep = 5,
|
|
103
|
-
SpiritTargetMove = 6,
|
|
104
|
-
PickupBomb = 7,
|
|
105
|
-
PickupPotion = 8,
|
|
106
|
-
PickupMana = 9,
|
|
107
|
-
MonFainted = 10,
|
|
108
|
-
ManaDropped = 11,
|
|
109
|
-
SupermanaBackToBase = 12,
|
|
110
|
-
BombAttack = 13,
|
|
111
|
-
MonAwake = 14,
|
|
112
|
-
BombExplosion = 15,
|
|
113
|
-
NextTurn = 16,
|
|
114
|
-
GameOver = 17,
|
|
115
|
-
Takeback = 18,
|
|
116
|
-
UsePotion = 19,
|
|
112
|
+
export enum OutputModelKind {
|
|
113
|
+
InvalidInput = 0,
|
|
114
|
+
LocationsToStartFrom = 1,
|
|
115
|
+
NextInputOptions = 2,
|
|
116
|
+
Events = 3,
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
119
119
|
*/
|
|
@@ -522,12 +522,7 @@ export interface InitOutput {
|
|
|
522
522
|
readonly __wbg_get_nextinputmodel_location: (a: number) => number;
|
|
523
523
|
readonly __wbg_squaremodel_free: (a: number) => void;
|
|
524
524
|
readonly __wbg_set_nextinputmodel_location: (a: number, b: number) => void;
|
|
525
|
-
readonly
|
|
526
|
-
readonly __wbg_get_location_j: (a: number) => number;
|
|
527
|
-
readonly __wbg_location_free: (a: number) => void;
|
|
528
|
-
readonly __wbg_set_location_i: (a: number, b: number) => void;
|
|
529
|
-
readonly __wbg_set_location_j: (a: number, b: number) => void;
|
|
530
|
-
readonly location_new: (a: number, b: number) => number;
|
|
525
|
+
readonly winner: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
531
526
|
readonly __wbg_get_mon_color: (a: number) => number;
|
|
532
527
|
readonly __wbg_get_mon_cooldown: (a: number) => number;
|
|
533
528
|
readonly __wbg_get_mon_kind: (a: number) => number;
|
|
@@ -539,7 +534,12 @@ export interface InitOutput {
|
|
|
539
534
|
readonly mon_faint: (a: number) => void;
|
|
540
535
|
readonly mon_is_fainted: (a: number) => number;
|
|
541
536
|
readonly mon_new: (a: number, b: number, c: number) => number;
|
|
542
|
-
readonly
|
|
537
|
+
readonly __wbg_get_location_i: (a: number) => number;
|
|
538
|
+
readonly __wbg_get_location_j: (a: number) => number;
|
|
539
|
+
readonly __wbg_location_free: (a: number) => void;
|
|
540
|
+
readonly __wbg_set_location_i: (a: number, b: number) => void;
|
|
541
|
+
readonly __wbg_set_location_j: (a: number, b: number) => void;
|
|
542
|
+
readonly location_new: (a: number, b: number) => number;
|
|
543
543
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
544
544
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
545
545
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
package/mons-web.js
CHANGED
|
@@ -198,37 +198,37 @@ function handleError(f, args) {
|
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
*/
|
|
201
|
-
export const
|
|
201
|
+
export const NextInputKind = Object.freeze({ MonMove:0,"0":"MonMove",ManaMove:1,"1":"ManaMove",MysticAction:2,"2":"MysticAction",DemonAction:3,"3":"DemonAction",DemonAdditionalStep:4,"4":"DemonAdditionalStep",SpiritTargetCapture:5,"5":"SpiritTargetCapture",SpiritTargetMove:6,"6":"SpiritTargetMove",SelectConsumable:7,"7":"SelectConsumable",BombAttack:8,"8":"BombAttack", });
|
|
202
202
|
/**
|
|
203
203
|
*/
|
|
204
|
-
export const
|
|
204
|
+
export const SquareModelKind = Object.freeze({ Regular:0,"0":"Regular",ConsumableBase:1,"1":"ConsumableBase",SupermanaBase:2,"2":"SupermanaBase",ManaBase:3,"3":"ManaBase",ManaPool:4,"4":"ManaPool",MonBase:5,"5":"MonBase", });
|
|
205
205
|
/**
|
|
206
206
|
*/
|
|
207
|
-
export const
|
|
207
|
+
export const EventModelKind = Object.freeze({ MonMove:0,"0":"MonMove",ManaMove:1,"1":"ManaMove",ManaScored:2,"2":"ManaScored",MysticAction:3,"3":"MysticAction",DemonAction:4,"4":"DemonAction",DemonAdditionalStep:5,"5":"DemonAdditionalStep",SpiritTargetMove:6,"6":"SpiritTargetMove",PickupBomb:7,"7":"PickupBomb",PickupPotion:8,"8":"PickupPotion",PickupMana:9,"9":"PickupMana",MonFainted:10,"10":"MonFainted",ManaDropped:11,"11":"ManaDropped",SupermanaBackToBase:12,"12":"SupermanaBackToBase",BombAttack:13,"13":"BombAttack",MonAwake:14,"14":"MonAwake",BombExplosion:15,"15":"BombExplosion",NextTurn:16,"16":"NextTurn",GameOver:17,"17":"GameOver",Takeback:18,"18":"Takeback",UsePotion:19,"19":"UsePotion", });
|
|
208
208
|
/**
|
|
209
209
|
*/
|
|
210
|
-
export const
|
|
210
|
+
export const ManaKind = Object.freeze({ Regular:0,"0":"Regular",Supermana:1,"1":"Supermana", });
|
|
211
211
|
/**
|
|
212
212
|
*/
|
|
213
213
|
export const MonKind = Object.freeze({ Demon:0,"0":"Demon",Drainer:1,"1":"Drainer",Angel:2,"2":"Angel",Spirit:3,"3":"Spirit",Mystic:4,"4":"Mystic", });
|
|
214
214
|
/**
|
|
215
215
|
*/
|
|
216
|
-
export const
|
|
216
|
+
export const ItemModelKind = Object.freeze({ Mon:0,"0":"Mon",Mana:1,"1":"Mana",MonWithMana:2,"2":"MonWithMana",MonWithConsumable:3,"3":"MonWithConsumable",Consumable:4,"4":"Consumable", });
|
|
217
217
|
/**
|
|
218
218
|
*/
|
|
219
|
-
export const
|
|
219
|
+
export const Modifier = Object.freeze({ SelectPotion:0,"0":"SelectPotion",SelectBomb:1,"1":"SelectBomb",Cancel:2,"2":"Cancel", });
|
|
220
220
|
/**
|
|
221
221
|
*/
|
|
222
|
-
export const
|
|
222
|
+
export const Consumable = Object.freeze({ Potion:0,"0":"Potion",Bomb:1,"1":"Bomb",BombOrPotion:2,"2":"BombOrPotion", });
|
|
223
223
|
/**
|
|
224
224
|
*/
|
|
225
225
|
export const AvailableMoveKind = Object.freeze({ MonMove:0,"0":"MonMove",ManaMove:1,"1":"ManaMove",Action:2,"2":"Action",Potion:3,"3":"Potion", });
|
|
226
226
|
/**
|
|
227
227
|
*/
|
|
228
|
-
export const
|
|
228
|
+
export const Color = Object.freeze({ White:0,"0":"White",Black:1,"1":"Black", });
|
|
229
229
|
/**
|
|
230
230
|
*/
|
|
231
|
-
export const
|
|
231
|
+
export const OutputModelKind = Object.freeze({ InvalidInput:0,"0":"InvalidInput",LocationsToStartFrom:1,"1":"LocationsToStartFrom",NextInputOptions:2,"2":"NextInputOptions",Events:3,"3":"Events", });
|
|
232
232
|
|
|
233
233
|
const EventModelFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
234
234
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -1409,10 +1409,6 @@ function __wbg_get_imports() {
|
|
|
1409
1409
|
const ret = OutputModel.__wrap(arg0);
|
|
1410
1410
|
return addHeapObject(ret);
|
|
1411
1411
|
};
|
|
1412
|
-
imports.wbg.__wbg_nextinputmodel_new = function(arg0) {
|
|
1413
|
-
const ret = NextInputModel.__wrap(arg0);
|
|
1414
|
-
return addHeapObject(ret);
|
|
1415
|
-
};
|
|
1416
1412
|
imports.wbg.__wbg_location_new = function(arg0) {
|
|
1417
1413
|
const ret = Location.__wrap(arg0);
|
|
1418
1414
|
return addHeapObject(ret);
|
|
@@ -1421,6 +1417,10 @@ function __wbg_get_imports() {
|
|
|
1421
1417
|
const ret = EventModel.__wrap(arg0);
|
|
1422
1418
|
return addHeapObject(ret);
|
|
1423
1419
|
};
|
|
1420
|
+
imports.wbg.__wbg_nextinputmodel_new = function(arg0) {
|
|
1421
|
+
const ret = NextInputModel.__wrap(arg0);
|
|
1422
|
+
return addHeapObject(ret);
|
|
1423
|
+
};
|
|
1424
1424
|
imports.wbg.__wbg_verbosetrackingentitymodel_new = function(arg0) {
|
|
1425
1425
|
const ret = VerboseTrackingEntityModel.__wrap(arg0);
|
|
1426
1426
|
return addHeapObject(ret);
|
package/mons-web_bg.wasm
CHANGED
|
Binary file
|