forked from Roll20/roll20-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.js
205 lines (178 loc) · 5.83 KB
/
Commands.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
(() => {
'use strict';
const CHECK_OBJECT_CMD = '!CheckItOut_CheckObject';
const COPY_PROPS_CMD = '!CheckItOut_CopyPropertiesToTargetObject';
const DISPLAY_WIZARD_CMD = '!CheckItOut_GMWizard_showMenu';
const MODIFY_CORE_PROPERTY_CMD = '!CheckItOut_GMWizard_setPropertyCore';
const MODIFY_THEME_PROPERTY_CMD = '!CheckItOut_GMWizard_setPropertyTheme';
_.extend(CheckItOut, {
commands: {
CHECK_OBJECT_CMD,
COPY_PROPS_CMD,
DISPLAY_WIZARD_CMD,
MODIFY_CORE_PROPERTY_CMD,
MODIFY_THEME_PROPERTY_CMD
}
});
/**
* Executes a command to have a character check an object.
* @param {Message} msg
*/
function doCheckObjectCmd(msg) {
let player = getObj('player', msg.playerid);
if (!player)
throw new Error(`Could not find player ID ${msg.playerid}.`);
// Validate arguments.
let argv = bshields.splitArgs(msg.content);
if (argv.length !== 3) {
log(argv);
throw new Error(`Incorrect # arguments.`);
}
// Get the character's token.
let charTokenID = argv[1];
let charToken = getObj('graphic', charTokenID);
if (charToken) {
// Get the character who is checking the object.
let charID = charToken.get('represents');
let character = getObj('character', charID);
if (!character)
throw new Error('The selected token must represent a character.');
// Get the object being checked.
let targetID = argv[2];
if (!targetID)
throw new Error('targetID argument not specified.');
let checkedObj = getObj('graphic', targetID);
// Have the character check the object.
if (checkedObj)
CheckItOut.checkObject(player, character, checkedObj);
else
throw new Error('The checked object does not exist.');
}
else {
throw new Error('A character token must be selected.');
}
}
/**
* Exectures a command to copy the properties of one object to another.
* @param {Message} msg
*/
function doCopyPropsCmd(msg) {
// Validate arguments.
let argv = bshields.splitArgs(msg.content);
if (argv.length !== 3) {
log(argv);
throw new Error(`Incorrect # arguments.`);
}
// Get the object to copy properties from.
let fromID = argv[1];
let fromObj = getObj('graphic', fromID);
if (!fromObj)
throw new Error('fromObj does not exist.');
// Get the object to copy properties to.
let toID = argv[2];
let toObj = getObj('graphic', toID);
if (!toObj)
throw new Error('toObj does not exist.');
CheckItOut.ObjProps.copy(fromObj, toObj);
}
/**
* Executes a command to modify a core property of an object.
* @param {Message} msg
*/
function doModifyCoreProperty(msg) {
let {targetObj, propID, propParams, player} = _getModifyPropertyArgs(msg);
// Modify the specified property and then show the updated wizard.
let wizard = new CheckItOut.GMWizard(targetObj);
wizard.modifyProperty(propID, propParams);
wizard.show(player);
}
/**
* Executes a command to modify a theme-specific property of an object.
* @param {Message} msg
*/
function doModifyThemeProperty(msg) {
let {targetObj, propID, propParams, player} = _getModifyPropertyArgs(msg);
let theme = CheckItOut.getTheme();
// Modify the specified property and then show the updated wizard.
theme.modifyWizardProperty(targetObj, propID, propParams);
let wizard = new CheckItOut.GMWizard(targetObj);
wizard.show(player);
}
/**
* Executes a command to show the GM wizard.
* @param {Message} msg
*/
function doShowGMWizard(msg) {
let graphic = getSelectedOne(msg);
if (!graphic)
throw new Error('An object must be selected.');
let player = getObj('player', msg.playerid);
if (!player)
throw new Error(`Player for ID ${msg.playerid} does not exist.`);
let wizard = new CheckItOut.GMWizard(graphic);
wizard.show(player);
}
/**
* Parses and validates the arguments for MODIFY_CORE_PROPERTY_CMD and
* MODIFY_THEME_PROPERTY_CMD.
* @param {Message} msg
*/
function _getModifyPropertyArgs(msg) {
let argv = bshields.splitArgs(msg.content);
if (argv.length < 4) {
log(argv);
throw new Error(`Incorrect # arguments.`);
}
// Resolve the object being modified.
let targetID = argv[1];
let targetObj = getObj('graphic', targetID);
if (!targetObj)
throw new Error(`Target object must be specified as first parameter.`);
// Resolve the property being modified and its parameters.
let propID = argv[2];
let propParams = argv.slice(3).join(' ').split('&&');
// Resolve the player object for the GM.
let playerID = msg.playerid;
let player = getObj('player', playerID);
if (!player)
throw new Error(`Player for ID ${msg.playerid} does not exist.`);
if (!playerIsGM(playerID))
throw new Error(`Player "${player._displayname}" is not a GM.`);
return {
targetObj,
propID,
propParams,
player
};
}
/**
* Gets a singular selected object from a Message.
* @param {Message} msg
* @return {Graphic|Path}
*/
function getSelectedOne(msg) {
if (msg.selected && msg.selected.length > 0) {
let first = msg.selected[0];
return getObj(first._type, first._id);
}
else
return undefined;
}
on('chat:message', msg => {
try {
if (msg.content.startsWith(CHECK_OBJECT_CMD))
doCheckObjectCmd(msg);
if (msg.content.startsWith(COPY_PROPS_CMD))
doCopyPropsCmd(msg);
if (msg.content.startsWith(DISPLAY_WIZARD_CMD))
doShowGMWizard(msg);
if (msg.content.startsWith(MODIFY_CORE_PROPERTY_CMD))
doModifyCoreProperty(msg);
if (msg.content.startsWith(MODIFY_THEME_PROPERTY_CMD))
doModifyThemeProperty(msg);
}
catch (err) {
CheckItOut.utils.Chat.error(err);
}
});
})();