mons-web 0.1.102 → 0.1.103
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 +64 -64
- package/mons-web.js +16 -16
- package/mons-web_bg.wasm +0 -0
- package/package.json +1 -1
package/mons-web.d.ts
CHANGED
|
@@ -10,27 +10,27 @@
|
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
13
|
+
export enum SquareModelKind {
|
|
14
|
+
Regular = 0,
|
|
15
|
+
ConsumableBase = 1,
|
|
16
|
+
SupermanaBase = 2,
|
|
17
|
+
ManaBase = 3,
|
|
18
|
+
ManaPool = 4,
|
|
19
|
+
MonBase = 5,
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
*/
|
|
23
|
+
export enum OutputModelKind {
|
|
24
|
+
InvalidInput = 0,
|
|
25
|
+
LocationsToStartFrom = 1,
|
|
26
|
+
NextInputOptions = 2,
|
|
27
|
+
Events = 3,
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
*/
|
|
31
|
+
export enum ManaKind {
|
|
32
|
+
Regular = 0,
|
|
33
|
+
Supermana = 1,
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
*/
|
|
@@ -47,6 +47,12 @@ export enum NextInputKind {
|
|
|
47
47
|
}
|
|
48
48
|
/**
|
|
49
49
|
*/
|
|
50
|
+
export enum Color {
|
|
51
|
+
White = 0,
|
|
52
|
+
Black = 1,
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
*/
|
|
50
56
|
export enum AvailableMoveKind {
|
|
51
57
|
MonMove = 0,
|
|
52
58
|
ManaMove = 1,
|
|
@@ -55,30 +61,50 @@ export enum AvailableMoveKind {
|
|
|
55
61
|
}
|
|
56
62
|
/**
|
|
57
63
|
*/
|
|
58
|
-
export enum
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
64
|
+
export enum ItemModelKind {
|
|
65
|
+
Mon = 0,
|
|
66
|
+
Mana = 1,
|
|
67
|
+
MonWithMana = 2,
|
|
68
|
+
MonWithConsumable = 3,
|
|
69
|
+
Consumable = 4,
|
|
62
70
|
}
|
|
63
71
|
/**
|
|
64
72
|
*/
|
|
65
|
-
export enum
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
export enum EventModelKind {
|
|
74
|
+
MonMove = 0,
|
|
75
|
+
ManaMove = 1,
|
|
76
|
+
ManaScored = 2,
|
|
77
|
+
MysticAction = 3,
|
|
78
|
+
DemonAction = 4,
|
|
79
|
+
DemonAdditionalStep = 5,
|
|
80
|
+
SpiritTargetMove = 6,
|
|
81
|
+
PickupBomb = 7,
|
|
82
|
+
PickupPotion = 8,
|
|
83
|
+
PickupMana = 9,
|
|
84
|
+
MonFainted = 10,
|
|
85
|
+
ManaDropped = 11,
|
|
86
|
+
SupermanaBackToBase = 12,
|
|
87
|
+
BombAttack = 13,
|
|
88
|
+
MonAwake = 14,
|
|
89
|
+
BombExplosion = 15,
|
|
90
|
+
NextTurn = 16,
|
|
91
|
+
GameOver = 17,
|
|
92
|
+
Takeback = 18,
|
|
93
|
+
UsePotion = 19,
|
|
68
94
|
}
|
|
69
95
|
/**
|
|
70
96
|
*/
|
|
71
|
-
export enum
|
|
72
|
-
|
|
73
|
-
|
|
97
|
+
export enum Modifier {
|
|
98
|
+
SelectPotion = 0,
|
|
99
|
+
SelectBomb = 1,
|
|
100
|
+
Cancel = 2,
|
|
74
101
|
}
|
|
75
102
|
/**
|
|
76
103
|
*/
|
|
77
|
-
export enum
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
Events = 3,
|
|
104
|
+
export enum Consumable {
|
|
105
|
+
Potion = 0,
|
|
106
|
+
Bomb = 1,
|
|
107
|
+
BombOrPotion = 2,
|
|
82
108
|
}
|
|
83
109
|
/**
|
|
84
110
|
*/
|
|
@@ -91,32 +117,6 @@ export enum MonKind {
|
|
|
91
117
|
}
|
|
92
118
|
/**
|
|
93
119
|
*/
|
|
94
|
-
export enum Modifier {
|
|
95
|
-
SelectPotion = 0,
|
|
96
|
-
SelectBomb = 1,
|
|
97
|
-
Cancel = 2,
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
*/
|
|
101
|
-
export enum ItemModelKind {
|
|
102
|
-
Mon = 0,
|
|
103
|
-
Mana = 1,
|
|
104
|
-
MonWithMana = 2,
|
|
105
|
-
MonWithConsumable = 3,
|
|
106
|
-
Consumable = 4,
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
*/
|
|
110
|
-
export enum SquareModelKind {
|
|
111
|
-
Regular = 0,
|
|
112
|
-
ConsumableBase = 1,
|
|
113
|
-
SupermanaBase = 2,
|
|
114
|
-
ManaBase = 3,
|
|
115
|
-
ManaPool = 4,
|
|
116
|
-
MonBase = 5,
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
*/
|
|
120
120
|
export class EventModel {
|
|
121
121
|
free(): void;
|
|
122
122
|
/**
|
|
@@ -522,6 +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 winner: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
525
526
|
readonly __wbg_get_mon_color: (a: number) => number;
|
|
526
527
|
readonly __wbg_get_mon_cooldown: (a: number) => number;
|
|
527
528
|
readonly __wbg_get_mon_kind: (a: number) => number;
|
|
@@ -533,7 +534,6 @@ export interface InitOutput {
|
|
|
533
534
|
readonly mon_faint: (a: number) => void;
|
|
534
535
|
readonly mon_is_fainted: (a: number) => number;
|
|
535
536
|
readonly mon_new: (a: number, b: number, c: number) => number;
|
|
536
|
-
readonly winner: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
537
537
|
readonly __wbg_get_location_i: (a: number) => number;
|
|
538
538
|
readonly __wbg_get_location_j: (a: number) => number;
|
|
539
539
|
readonly __wbg_location_free: (a: number) => void;
|
|
@@ -543,7 +543,7 @@ export interface InitOutput {
|
|
|
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_export_2: WebAssembly.Table;
|
|
546
|
-
readonly
|
|
546
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9dbcdfc3f9882a5e: (a: number, b: number) => void;
|
|
547
547
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
548
548
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
549
549
|
readonly __wbindgen_exn_store: (a: number) => void;
|
package/mons-web.js
CHANGED
|
@@ -147,7 +147,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
147
147
|
return real;
|
|
148
148
|
}
|
|
149
149
|
function __wbg_adapter_26(arg0, arg1) {
|
|
150
|
-
wasm.
|
|
150
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9dbcdfc3f9882a5e(arg0, arg1);
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
let cachedUint32Memory0 = null;
|
|
@@ -236,37 +236,37 @@ function __wbg_adapter_151(arg0, arg1, arg2, arg3) {
|
|
|
236
236
|
|
|
237
237
|
/**
|
|
238
238
|
*/
|
|
239
|
-
export const
|
|
239
|
+
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", });
|
|
240
240
|
/**
|
|
241
241
|
*/
|
|
242
|
-
export const
|
|
242
|
+
export const OutputModelKind = Object.freeze({ InvalidInput:0,"0":"InvalidInput",LocationsToStartFrom:1,"1":"LocationsToStartFrom",NextInputOptions:2,"2":"NextInputOptions",Events:3,"3":"Events", });
|
|
243
243
|
/**
|
|
244
244
|
*/
|
|
245
|
-
export const
|
|
245
|
+
export const ManaKind = Object.freeze({ Regular:0,"0":"Regular",Supermana:1,"1":"Supermana", });
|
|
246
246
|
/**
|
|
247
247
|
*/
|
|
248
|
-
export const
|
|
248
|
+
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", });
|
|
249
249
|
/**
|
|
250
250
|
*/
|
|
251
|
-
export const
|
|
251
|
+
export const Color = Object.freeze({ White:0,"0":"White",Black:1,"1":"Black", });
|
|
252
252
|
/**
|
|
253
253
|
*/
|
|
254
|
-
export const
|
|
254
|
+
export const AvailableMoveKind = Object.freeze({ MonMove:0,"0":"MonMove",ManaMove:1,"1":"ManaMove",Action:2,"2":"Action",Potion:3,"3":"Potion", });
|
|
255
255
|
/**
|
|
256
256
|
*/
|
|
257
|
-
export const
|
|
257
|
+
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", });
|
|
258
258
|
/**
|
|
259
259
|
*/
|
|
260
|
-
export const
|
|
260
|
+
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", });
|
|
261
261
|
/**
|
|
262
262
|
*/
|
|
263
263
|
export const Modifier = Object.freeze({ SelectPotion:0,"0":"SelectPotion",SelectBomb:1,"1":"SelectBomb",Cancel:2,"2":"Cancel", });
|
|
264
264
|
/**
|
|
265
265
|
*/
|
|
266
|
-
export const
|
|
266
|
+
export const Consumable = Object.freeze({ Potion:0,"0":"Potion",Bomb:1,"1":"Bomb",BombOrPotion:2,"2":"BombOrPotion", });
|
|
267
267
|
/**
|
|
268
268
|
*/
|
|
269
|
-
export const
|
|
269
|
+
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", });
|
|
270
270
|
|
|
271
271
|
const EventModelFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
272
272
|
? { register: () => {}, unregister: () => {} }
|
|
@@ -1468,14 +1468,14 @@ function __wbg_get_imports() {
|
|
|
1468
1468
|
const ret = OutputModel.__wrap(arg0);
|
|
1469
1469
|
return addHeapObject(ret);
|
|
1470
1470
|
};
|
|
1471
|
-
imports.wbg.__wbg_nextinputmodel_new = function(arg0) {
|
|
1472
|
-
const ret = NextInputModel.__wrap(arg0);
|
|
1473
|
-
return addHeapObject(ret);
|
|
1474
|
-
};
|
|
1475
1471
|
imports.wbg.__wbg_eventmodel_new = function(arg0) {
|
|
1476
1472
|
const ret = EventModel.__wrap(arg0);
|
|
1477
1473
|
return addHeapObject(ret);
|
|
1478
1474
|
};
|
|
1475
|
+
imports.wbg.__wbg_nextinputmodel_new = function(arg0) {
|
|
1476
|
+
const ret = NextInputModel.__wrap(arg0);
|
|
1477
|
+
return addHeapObject(ret);
|
|
1478
|
+
};
|
|
1479
1479
|
imports.wbg.__wbg_location_new = function(arg0) {
|
|
1480
1480
|
const ret = Location.__wrap(arg0);
|
|
1481
1481
|
return addHeapObject(ret);
|
|
@@ -1631,7 +1631,7 @@ function __wbg_get_imports() {
|
|
|
1631
1631
|
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
1632
1632
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1633
1633
|
};
|
|
1634
|
-
imports.wbg.
|
|
1634
|
+
imports.wbg.__wbindgen_closure_wrapper504 = function(arg0, arg1, arg2) {
|
|
1635
1635
|
const ret = makeMutClosure(arg0, arg1, 21, __wbg_adapter_26);
|
|
1636
1636
|
return addHeapObject(ret);
|
|
1637
1637
|
};
|
package/mons-web_bg.wasm
CHANGED
|
Binary file
|