forked from Roll20/roll20-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckItOut.js
2300 lines (2021 loc) · 63.2 KB
/
CheckItOut.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @typedef {object} ObjProps
* @property {string} id The ID of the Graphic these properties are for.
* @property {string} description Descriptive text about the object. This will
* be displayed any time that the object is checked.
*/
var CheckItOut = (() => {
'use strict';
// A cache for lazy instantiation.
const CACHE = {
theme: undefined
};
const PIX_PER_UNIT = 70;
/**
* Make a character check out an object. The results will be displayed in
* the chat in a stylized panel.
* @param {Player} player The player who requested to check the object.
* @param {Character} character The player's character.
* @param {Graphic} checkedObj The object being checked.
*/
function checkObject(player, character, checkedObj) {
if (closeEnoughToCheck(character, checkedObj))
_checkObject(player, character, checkedObj);
else {
let charName = character.get('name');
let who = player.get('_displayname');
CheckItOut.utils.Chat.whisper(who, `${charName} is not close enough ` +
`to examine that.`);
}
}
/**
* Helper for checkObject.
* @param {Player} player The player who requested to check the object.
* @param {Character} character The player's character.
* @param {Graphic} checkedObj The object being checked.
* @return {Promise}
*/
function _checkObject(player, character, checkedObj) {
let theme = getTheme();
let userOpts = CheckItOut.State.getUserOpts();
let objProps = CheckItOut.ObjProps.getReadOnly(checkedObj);
let charName = character.get('name');
let objName = checkedObj.get('name');
// Let the GM know that the character is checking out the object.
CheckItOut.utils.Chat.whisperGM(
`${charName} is checking out ${objName}`);
let coreParagraphs = [objProps.core.description || userOpts.defaultDescription];
// Check the object with the script's character sheet theme.
return theme.checkObject(character, checkedObj)
.then(themeParagraphs => {
return [
...coreParagraphs,
...themeParagraphs
];
})
// Present the panel that contains the object's description.
.then(paragraphs => {
let content = new HtmlBuilder('div');
_.each(paragraphs, para => {
content.append('p', para);
});
let menu = new CheckItOut.utils.Menu(`Checking out ${objName}:`, content);
menu.show(player);
})
// Play the object's sound if it has one.
.then(() => {
let soundName = objProps.core.sound;
if (soundName) {
let sound = findObjs({
_type: 'jukeboxtrack',
title: soundName
})[0];
if (sound) {
sound.set('playing', true);
sound.set('softstop', false);
}
else
throw new Error(`Jukebox track with title ${soundName} does not exist.`);
}
});
}
/**
* Determines if a character is close enough to examine some object.
* @param {Character} character
* @param {Graphic} checkedObj
* @return {boolean}
*/
function closeEnoughToCheck(character, checkedObj) {
let objProps = CheckItOut.ObjProps.getReadOnly(checkedObj);
let pageID = checkedObj.get('_pageid');
let page = getObj('page', pageID);
// If the maxDist property is defined, check if the character's token
// is within that range of the object.
if (objProps.core.maxDist) {
// Get the character's token.
let charToken = findObjs({
_type: 'graphic',
_pageid: pageID,
represents: character.get('_id')
})[0];
if (!charToken) {
throw new Error(`No token representing ${character.get('name')} is ` +
`on the same page as ${checkedObj.get('name')}.`);
}
// Get the pixel distance between the character and the object.
let pt1 = [
charToken.get('left'),
charToken.get('top')
];
let pt2 = [
checkedObj.get('left'),
checkedObj.get('top')
];
let r1 = charToken.get('width')/2;
let r2 = checkedObj.get('width')/2;
let pixDist = Math.max(VecMath.dist(pt1, pt2) - (r1 + r2), 0);
// Get the unit distance between the character and the object.
let scaleNumber = page.get('scale_number');
let snapInc = page.get('snapping_increment');
let unitDist = (pixDist/PIX_PER_UNIT)*(scaleNumber/snapInc);
return unitDist <= objProps.core.maxDist;
}
else
return true;
}
/**
* Gets the configured CheckItOutTheme used for system-specific
* behavior for investigating things.
* @return {CheckItOutTheme}
*/
function getTheme() {
if (!CACHE.theme) {
let themeName = CheckItOut.State.getState().themeName;
setTheme(themeName);
}
return CACHE.theme;
}
/**
* Sets the theme used for system-specific behavior for investigating things.
* @param {string} themeName The name of a registered theme.
*/
function setTheme(themeName) {
let state = CheckItOut.State.getState();
state.themeName = themeName;
let themeClz = CheckItOut.themes.getRegisteredTheme(themeName) ||
CheckItOut.themes.impl.DefaultTheme;
CACHE.theme = new themeClz();
}
on('ready', () => {
CheckItOut.State.initializeState();
// Show initialization log.
let theme = getTheme();
let version = '1.2'; // This will be filled in by Grunt.
log(`*** Initialized Check It Out v${version} using theme ` +
`'${theme.name}' ***`);
});
return {
checkObject,
closeEnoughToCheck,
getTheme,
setTheme
};
})();
(() => {
'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);
}
});
})();
(() => {
'use strict';
/**
* Delete the persisted properties for an object if it is destroyed.
*/
on('destroy:graphic', obj => {
CheckItOut.ObjProps.delete(obj);
//log(CheckItOut.State.getState());
});
})();
/**
* This module installs the player and GM macros for using the script.
*/
(() => {
'use strict';
/**
* Installs the Check It Out macro for a player, allowing them to
* investigate a nearby object.
* @param {Player} player
*/
function _installMacroCheckObject(player) {
let playerID = player.get('_id');
let macroName = 'CheckItOut';
let macro = findObjs({
_type: 'macro',
_playerid: playerID,
name: macroName
})[0];
// Install the macro if it doesn't already exist.
if (!macro) {
createObj('macro', {
_playerid: playerID,
name: macroName,
action: `${CheckItOut.commands.CHECK_OBJECT_CMD} @{selected|token_id} @{target|token_id}`
});
}
}
/**
* Installs the Check It Out menu macro for a GM.
* @private
* @param {Player} player A player who is a GM.
*/
function _installMacroGmMenu(player) {
let playerID = player.get('_id');
let macroName = 'CheckItOut_GM_Wizard';
let macro = findObjs({
_type: 'macro',
_playerid: playerID,
name: macroName
})[0];
// If this doesn't have the macro, install it for them.
if (!macro) {
createObj('macro', {
_playerid: playerID,
name: macroName,
action: CheckItOut.commands.DISPLAY_WIZARD_CMD,
istokenaction: true
});
}
}
on('ready', () => {
try {
// Get the lists of players and GMs.
let players = findObjs({
_type: 'player'
});
let gms = _.filter(players, player => {
return playerIsGM(player.get('_id'));
});
// Install the Check Object macro for all players.
_.each(players, player => {
_installMacroCheckObject(player);
});
// Install the GM Wizard macro for all GMs.
_.each(gms, gm => {
_installMacroGmMenu(gm);
});
}
catch(err) {
log('CheckItOutGMWizard - Error while installing macros: ' + err.message);
log(err.stack);
}
});
})();
(() => {
'use strict';
/**
* A module for managing the persisted properties of
* objects for this script.
*/
CheckItOut.ObjProps = class {
/**
* Copies the persisted properties from one object to another. This
* overwrites any existing properties on the receiving object.
* @param {Graphic} fromObj
* @param {Graphic} toObj
*/
static copy(fromObj, toObj) {
let fromProps = CheckItOut.ObjProps.create(fromObj);
let toProps = CheckItOut.ObjProps.create(toObj);
let clone = CheckItOut.utils.deepCopy(fromProps);
_.extend(toProps, clone);
}
/**
* Creates new persisted properties for an object. If the object already
* has persisted properties, the existing properties are returned.
* @param {Graphic} obj
* @return {ObjProps}
*/
static create(obj) {
let objID = obj.get('_id');
// If properties for the object exist, return those. Otherwise
// create blank persisted properties for it.
let existingProps = CheckItOut.State.getState().graphics[objID];
if (existingProps)
return existingProps;
else {
let newProps = {
id: objID
};
let defaults = CheckItOut.ObjProps.getDefaults();
_.defaults(newProps, defaults
);
CheckItOut.State.getState().graphics[objID] = newProps;
return newProps;
}
}
/**
* Deletes the persisted properties for an object.
* @param {Graphic} obj
*/
static delete(obj) {
let objID = obj.get('_id');
let state = CheckItOut.State.getState();
let props = state.graphics[objID];
if (props)
delete state.graphics[objID];
}
/**
* Gets the persisted properties for an object. Returns undefined if
* they don't exist.
* @param {Graphic} obj
* @return {ObjProps}
*/
static get(obj) {
let objID = obj.get('_id');
return CheckItOut.State.getState().graphics[objID];
}
/**
* Produces an empty object properties structure.
* @return {ObjProps}
*/
static getDefaults() {
return {
core: {},
theme: {}
};
}
/**
* Gets an immutable copy an object's persisted properties. If the object
* has no persisted properties, a default properties structure is provided.
* @param {Graphic} obj
* @return {ObjProps}
*/
static getReadOnly(obj) {
let existingProps = CheckItOut.ObjProps.get(obj);
// If the properties exist, return a deep copy of them.
if (existingProps)
return CheckItOut.utils.deepCopy(existingProps);
else
return CheckItOut.ObjProps.getDefaults();
}
};
})();
(() => {
'use strict';
/**
* The ItsATrap state data.
* @typedef {object} CheckItOutState
* @property {map<string, CheckedInfo>} graphics
* A mapping of Graphic object IDs to information about the object's
* persisted properties.
*/
const DEFAULT_DESCRIPTION = 'No problem here.';
/**
* An interface for initializing and accessing the script's persisted
* state data.
*/
CheckItOut.State = class {
/**
* Updates the state when migrating from one version of this script to a
* newer one.
*/
static _doUpdates() {
let curVersion = state.CheckItOut.version;
if (curVersion === '1.0') {
CheckItOut.State._updateTo_1_1();
curVersion = '1.1';
}
// Set the state's version to the latest.
state.CheckItOut.version = 'SCRIPT_VERSION';
}
/**
* Get the script's persisted state.
* @return {CheckItOutState}
*/
static getState() {
return state.CheckItOut;
}
/**
* Get the script's user options.
* @return {object}
*/
static getUserOpts() {
return CheckItOut.State.getState().userOptions;
}
/**
* Initializes the script's state.
*/
static initializeState() {
// Set the default values for the script's state.
_.defaults(state, {
CheckItOut: {}
});
_.defaults(state.CheckItOut, {
graphics: {},
themeName: 'default',
userOptions: {},
version: '1.0'
});
// Do any work necessary to migrate the state's data to the
// latest version.
CheckItOut.State._doUpdates();
// Add useroptions to the state.
let userOptions = globalconfig && globalconfig.checkitout;
if (userOptions)
_.extend(state.CheckItOut.userOptions, userOptions);
// Set default values for the unspecificed useroptions.
_.defaults(state.CheckItOut.userOptions, {
defaultDescription: DEFAULT_DESCRIPTION
});
}
/**
* Update from version 1.0 to 1.1.
*/
static _updateTo_1_1() {
let theme = CheckItOut.getTheme();
if (theme instanceof CheckItOut.themes.impl.D20System) {
let defaultSkill= theme.skillNames[0];
// Migrate "investigation" theme properties to their appropriate
// default skill property.
_.each(state.CheckItOut.graphics, objProps => {
let themeProps = objProps.theme;
themeProps['skillCheck_' + defaultSkill] = themeProps.investigation;
delete themeProps.investigation;
});
}
}
};
})();
/**
* This module provides the GM wizard for setting properties on objects via
* a chat menu.
*/
(() => {
'use strict';
/**
* The GM wizard menu.
*/
CheckItOut.GMWizard = class {
/**
* @param {Graphic} target The object that the wizard displays and
* modifies properties for.
*/
constructor(target) {
this._target = target;
}
/**
* Gets the global script properties.
* @return {WizardProperty[]}
*/
getGlobalProperties() {
let state = CheckItOut.State.getState();
return [
{
id: 'globalTheme',
name: 'Theme',
desc: 'The theme used to handle system-specific rules for examining objects, specific to the character sheet used in your campaign.',
value: state.themeName,
options: (() => {
return [
'default',
...CheckItOut.themes.getRegisteredThemeNames()
];
})()
}
];
}
/**
* Gets the basic wizard properties for the selected object.
* @return {WizardProperty[]}
*/
getProperties() {
let objInfo = CheckItOut.ObjProps.getReadOnly(this._target);
return [
{
id: 'name',
name: 'Name',
desc: 'The name of the object.',
value: this._target.get('name')
},
{
id: 'description',
name: 'Description',
desc: 'The description shown for the object when it is checked.',
value: objInfo.core.description
},
{
id: 'maxDist',
name: 'Max Distance',
desc: 'Characters must be within this distance of the object ' +
'in order to examine it. This is measured in whatever units ' +
'are used for the object\'s page.',
value: objInfo.core.maxDist || 'infinity'
},
{
id: 'sound',
name: 'Sound effect',
desc: 'A sound effect that is played when the object is checked.',
value: objInfo.core.sound
}
];
}
/**
* Modifies a core property of the wizard's object.
* @param {string} propID The ID of the property being modified.
* @param {string[]} params The new parameters for the modified property.
*/
modifyProperty(propID, params) {
let objProps = CheckItOut.ObjProps.create(this._target);
//log(`Modifying ${propID}.`);
// global properties
if (propID === 'globalTheme')
CheckItOut.setTheme(params[0]);
// object properties
if (propID === 'name')
this._target.set('name', params[0]);
if (propID === 'description')
objProps.core.description = params[0];
if (propID === 'maxDist')
objProps.core.maxDist = parseFloat(params[0]);
if (propID === 'sound')
objProps.core.sound = params[0];
}
/**
* Produces the HTML content for a group of WizardProperties.
* @param {string} modCmd The command invoked when the properties' buttons
* are pressed
*/
_renderProps(modCmd, properties) {
let objID = this._target.get('_id');
let table = new HtmlBuilder('table.propsTable');
_.each(properties, prop => {
let row = table.append('tr', undefined, {
title: prop.desc
});
if (prop.isButton) {
let prompt = '';
if (prop.prompt) {
prompt = '?{Are you sure?|yes|no}';
}
row.append('td', `[${prop.name}](${modCmd} ${objID} ${prop.id} ${prompt})`, {
colspan: 2,
style: { 'font-size': '0.8em' }
});
}
else {
// Construct the list of parameter prompts.
let params = [];
let paramProperties = prop.properties || [prop];
_.each(paramProperties, item => {
let options = '';
if(item.options)
options = '|' + item.options.join('|');
params.push(`?{${item.name} ${item.desc} ${options}}`);
});
row.append('td', `[${prop.name}](${modCmd} ${objID} ${prop.id} ${params.join('&&')})`, {
style: {
'font-size': '0.8em',
'vertical-align': 'top'
}
});
row.append('td', `${prop.value || ''}`, {
style: { 'font-size': '0.8em' }
});
}
});
return table;
}
/**
* Shows the wizard menu to a GM.
* @param {string} player The player the wizard is being shown for.
*/
show(player) {
let content = new HtmlBuilder('div');
// Add core properties.
content.append('h3', 'Core properties');
let coreProperties = this.getProperties();
let coreContent = this._renderProps(
CheckItOut.commands.MODIFY_CORE_PROPERTY_CMD, coreProperties);
content.append(coreContent);
// Add theme properties.
let theme = CheckItOut.getTheme();
let themeProperties = theme.getWizardProperties(this._target);
if (themeProperties.length > 0) {
content.append('h3', 'Theme-specific properties');
let themeContent = this._renderProps(
CheckItOut.commands.MODIFY_THEME_PROPERTY_CMD, themeProperties);
content.append(themeContent);
}
// Add global properties
content.append('h3', 'Global properties');
let globalProperties = this.getGlobalProperties();
let globalContent = this._renderProps(
CheckItOut.commands.MODIFY_CORE_PROPERTY_CMD, globalProperties);
content.append(globalContent);
// Add copy button
let objID = this._target.get('_id');
content.append('div', `[Copy properties to...]` +
`(${CheckItOut.commands.COPY_PROPS_CMD} ${objID} ` +
`@{target|token_id})`, {
title: 'Copy the properties from this object to another one.'
});
// Show the menu to the GM who requested it.
let menu = new CheckItOut.utils.Menu('Object Properties', content);
menu.show(player);
}
};
})();
/**
* Initialize the CheckItOut.themes package.
*/
(() => {
'use strict';
/**
* Gets the class for a registered concrete theme implementation.
* @param {string} name The name of the theme.
*/
function getRegisteredTheme(name) {
return CheckItOut.themes.registeredImplementations[name];
}
/**
* Gets the names of the registered concrete theme implementations.
*/
function getRegisteredThemeNames() {
let names = _.keys(CheckItOut.themes.registeredImplementations);
names.sort();
return names;
}
/**
* Registers a concrete theme implementation with the script's
* runtime environement.
* @param {class} clz The class for the theme implementation.
*/
function register(clz) {
let instance = new clz();
let name = instance.name;
CheckItOut.themes.registeredImplementations[name] = clz;
log('Registered CheckItOut theme: ' + name);
}
CheckItOut.themes = {
getRegisteredTheme,
getRegisteredThemeNames,
register,
registeredImplementations: {}
};
})();
(() => {
'use strict';
CheckItOut.themes.impl = {};
/**
* The base class for system-specific themes used by the Check It Out script.
* @abstract
*/
CheckItOut.themes.CheckItOutTheme = class {
/**
* The name of the theme.
* @type {string}
*/
get name() {
throw new Error('Not implemented.');
}
constructor() {}
/**
* Have a character check out some object, using any applicable system-
* specific rules.
* @param {Character} character The character who is checking the object.
* @param {Graphic} checkedObj The graphic for the object being checked.
* @return {Promise<string[]>}
*/
checkObject(character, checkedObj) {
_.noop(character, checkedObj);
throw new Error('Not implemented');
}
/**
* Get a list of the system-specific properties of an object to display
* in the GM wizard.
* @abstract
* @param {Graphic} checkedObj
* @return {WizardProperty[]}
*/
getWizardProperties(checkedObj) {
_.noop(checkedObj);
throw new Error('Not implemented');
}
/**
* Modifies a theme-specific property for an object.
* @abstract
* @param {Graphic} checkedObj
* @param {string} prop The ID of the property being modified.
* @param {string[]} params The parameters given for the new property value.
*/
modifyWizardProperty(checkedObj, prop, params) {
_.noop(checkedObj, prop, params);
throw new Error('Not implemented.');
}
};