forked from Roll20/roll20-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathState.js
69 lines (60 loc) · 1.59 KB
/
State.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(() => {
'use strict';
/**
* Module for accessing the script's state.
*/
AreasOfEffect.State = class {
/**
* Displays the JSONified state for this script to the chat (and returns it).
* @param {Player} player
* @return {string}
*/
static exportState(player) {
let content = new HtmlBuilder('div');
content.append('div', 'Below is the JSON for this script\'s state. ' +
'Copy-paste it to import it to another campaign.');
let json = AreasOfEffect.State._jsonifyState();
content.append('pre', json);
let menu = new AreasOfEffect.utils.Menu('Export Areas of Effect', content);
menu.show(player);
return json;
}
/**
* Gets this script's state.
* @return {AoEState}
*/
static getState() {
return state.AreasOfEffect;
}
/**
* Imports the state for this script from JSON.
* @param {Player} player
* @param {string} json
*/
static importState(player, json) {
AreasOfEffect.State.initState();
let myState = AreasOfEffect.State.getState();
_.extend(myState, JSON.parse(json));
AreasOfEffect.Wizard.show(player);
}
/**
* Initializes the state of this script.
*/
static initState() {
_.defaults(state, {
AreasOfEffect: {}
});
_.defaults(state.AreasOfEffect, {
saved: {}
});
}
/**
* Converts the script's state to JSON.
* @return {string}
*/
static _jsonifyState() {
let myState = state.AreasOfEffect;
return JSON.stringify(myState);
}
};
})();