generated from kidthales/pgmmv-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.js
More file actions
635 lines (584 loc) · 22.7 KB
/
plugin.js
File metadata and controls
635 lines (584 loc) · 22.7 KB
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
/**!
* @file PGMMV Storage Plugin
* @author Tristan Bonsor <kidthales@agogpixel.com>
* @copyright 2026 Tristan Bonsor
* @license {@link https://opensource.org/licenses/MIT MIT License}
* @version 0.1.3
*/
// noinspection ES6ConvertVarToLetConst
(function () {
// noinspection UnnecessaryLocalVariableJS
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkPlugin} */
var plugin = {
setLocale: function () {},
getInfo: function (category) {
switch (category) {
case 'name':
return 'PGMMV Storage Plugin';
case 'description':
return 'Save/load switch and variable values to/from a file.';
case 'author':
return 'Tristan Bonsor <kidthales@agogpixel.com>';
case 'help':
return (
'Values are stored in the "' +
kStorageFilename +
'" file located in the directory specified by the `Agtk.settings.projectPath` value.' +
'\n\n' +
'Values from objects are mapped by object ID.'
);
case 'parameter':
return [];
case 'internal':
// Internal data managed from storage file.
return null;
case 'actionCommand':
return [
saveVariableActionCommand,
loadVariableActionCommand,
saveSwitchActionCommand,
loadSwitchActionCommand
];
case 'linkCondition':
return [];
default:
break;
}
},
initialize: function () {
if (isEditor()) {
return;
}
if (!io) {
io = createIO();
}
if (!window.kt) {
window.kt = {};
}
window.kt.storage = {
saveVariable: saveVariable,
loadVariable: loadVariable,
saveSwitch: saveSwitch,
loadSwitch: loadSwitch
};
},
finalize: function () {
io = undefined;
},
setParamValue: function () {},
setInternal: function () {
// Do nothing; internal data set from storage file.
},
call: function () {},
update: function () {
if (isError) {
if (isShutdownMessageShown) {
return;
}
logError('deactivating plugin');
isShutdownMessageShown = true;
return;
}
io && io.update();
},
execActionCommand: function (actionCommandIndex, parameter, objectId, instanceId) {
/**
* @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkActionCommand}
*/
var actionCommand,
/** @type {Record<number,import("type-fest").JsonValue>} */
np;
if (isError) {
logWarning('plugin deactivated due to previous error - skipping action command');
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
}
actionCommand = plugin.getInfo('actionCommand')[actionCommandIndex];
np = normalizeParameters(parameter, actionCommand.parameter);
switch (actionCommand.id) {
case saveVariableActionCommand.id:
return saveVariable(np[actionCommand.parameter[0].id], np[actionCommand.parameter[1].id], instanceId);
case loadVariableActionCommand.id:
return loadVariable(np[actionCommand.parameter[0].id], np[actionCommand.parameter[1].id], instanceId);
case saveSwitchActionCommand.id:
return saveSwitch(np[actionCommand.parameter[0].id], np[actionCommand.parameter[1].id], instanceId);
case loadSwitchActionCommand.id:
return loadSwitch(np[actionCommand.parameter[0].id], np[actionCommand.parameter[1].id], instanceId);
default:
break;
}
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
}
},
/** @const */
kStorageFilename = 'kt_store.json',
/** @const */
kVariableAccessorType = 0,
/** @const */
kSwitchAccessorType = 1,
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkActionCommand} */
saveVariableActionCommand = {
id: 0,
name: 'Save Variable [PGMMV Storage Plugin]',
description: 'Save variable to storage.',
parameter: [
{
id: 100,
name: 'Variable Source:',
type: 'SwitchVariableObjectId',
option: ['SelfObject', 'ParentObject'],
defaultValue: -1
},
{
id: 0,
name: 'Variable:',
type: 'VariableId',
referenceId: 100,
withNewButton: true,
defaultValue: -1
}
]
},
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkActionCommand} */
loadVariableActionCommand = {
id: 1,
name: 'Load Variable [PGMMV Storage Plugin]',
description: 'Load variable from storage.',
parameter: [
{
id: 100,
name: 'Variable Source:',
type: 'SwitchVariableObjectId',
option: ['SelfObject', 'ParentObject'],
defaultValue: -1
},
{
id: 0,
name: 'Variable:',
type: 'VariableId',
referenceId: 100,
withNewButton: false,
defaultValue: -1
}
]
},
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkActionCommand} */
saveSwitchActionCommand = {
id: 2,
name: 'Save Switch [PGMMV Storage Plugin]',
description: 'Save switch to storage.',
parameter: [
{
id: 100,
name: 'Switch Source:',
type: 'SwitchVariableObjectId',
option: ['SelfObject', 'ParentObject'],
defaultValue: -1
},
{
id: 0,
name: 'Switch:',
type: 'SwitchId',
referenceId: 100,
withNewButton: true,
defaultValue: -1
}
]
},
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkActionCommand} */
loadSwitchActionCommand = {
id: 3,
name: 'Load Switch [PGMMV Storage Plugin]',
description: 'Load switch from storage.',
parameter: [
{
id: 100,
name: 'Switch Source:',
type: 'SwitchVariableObjectId',
option: ['SelfObject', 'ParentObject'],
defaultValue: -1
},
{
id: 0,
name: 'Switch:',
type: 'SwitchId',
referenceId: 100,
withNewButton: false,
defaultValue: -1
}
]
},
/** @type {import("type-fest").JsonValue} */
internalData = {},
/** @type {boolean} */
isInternalDataLoaded = false,
/** @type {boolean} */
isError = false,
/** @type {boolean} */
isShutdownMessageShown = false,
/** @type {{requestSave: () => void; update: () => void;}} */
io,
/**
* @param variableObjectId {
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['SelfObject'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ParentObject']
* }
* @param variableId {number}
* @param instanceId {number}
* @returns {import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorNext']}
*/
saveVariable = function (variableObjectId, variableId, instanceId) {
var source = resolveSwitchVariableObject(variableObjectId, instanceId);
if (source === Agtk.constants.actionCommands.UnsetObject) {
logWarning('save variable: unset variable source');
} else if (variableId < 1) {
logWarning('save variable: invalid variable ID');
} else {
setInternalData(source, variableId, 'variables');
}
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
},
/**
* @param variableObjectId {
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['SelfObject'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ParentObject']
* }
* @param variableId {number}
* @param instanceId {number}
* @returns {
* import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorNext'] |
* import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorBlock']
* }
*/
loadVariable = function (variableObjectId, variableId, instanceId) {
var projectCommon = Agtk.constants.switchVariableObjects.ProjectCommon,
/**
* @type {
* import("pgmmv-types/lib/agtk/object-instances/object-instance").AgtkObjectInstance |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/action-commands").AgtkActionCommands['UnsetObject']
* }
*/
source,
/** @type {string} */
key;
if (!isInternalDataLoaded) {
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorBlock;
}
source = resolveSwitchVariableObject(variableObjectId, instanceId);
if (source === Agtk.constants.actionCommands.UnsetObject) {
logWarning('load variable: unset variable source');
} else if (variableId < 1) {
logWarning('load variable: invalid variable ID');
} else {
key = generateKey(source === projectCommon ? source : source.objectId, kVariableAccessorType, variableId);
if (internalData[key] !== undefined) {
// Load the variable!
if (source === projectCommon) {
Agtk.variables.get(variableId).setValue(internalData[key]);
} else {
source.execCommandSwitchVariableChange({
swtch: false,
variableObjectId: source.objectId,
variableQualifierId: Agtk.constants.qualifier.QualifierWhole,
variableId: variableId,
variableAssignOperator: Agtk.constants.assignments.VariableAssignOperatorSet,
assignValue: internalData[key]
});
}
}
}
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
},
/**
* @param switchObjectId {
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['SelfObject'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ParentObject']
* }
* @param switchId {number}
* @param instanceId {number}
* @returns {import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorNext']}
*/
saveSwitch = function (switchObjectId, switchId, instanceId) {
var source = resolveSwitchVariableObject(switchObjectId, instanceId);
if (source === Agtk.constants.actionCommands.UnsetObject) {
logWarning('save switch: unset switch source');
} else if (switchId < 1) {
logWarning('save switch: invalid switch ID');
} else {
setInternalData(source, switchId, 'switches');
}
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
},
/**
* @param switchObjectId {
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['SelfObject'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ParentObject']
* }
* @param switchId {number}
* @param instanceId {number}
* @returns {
* import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorNext'] |
* import("pgmmv-types/lib/agtk/constants/action-commands/command-behavior").AgtkCommandBehavior['CommandBehaviorBlock']
* }
*/
loadSwitch = function (switchObjectId, switchId, instanceId) {
var projectCommon = Agtk.constants.switchVariableObjects.ProjectCommon,
/**
* @type {
* import("pgmmv-types/lib/agtk/object-instances/object-instance").AgtkObjectInstance |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/action-commands").AgtkActionCommands['UnsetObject']
* }
*/
source,
/** @type {string} */
key;
if (!isInternalDataLoaded) {
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorBlock;
}
source = resolveSwitchVariableObject(switchObjectId, instanceId);
if (source === Agtk.constants.actionCommands.UnsetObject) {
logWarning('load switch: unset switch source');
} else if (switchId < 1) {
logWarning('load switch: invalid switch ID');
} else {
key = generateKey(source === projectCommon ? source : source.objectId, kSwitchAccessorType, switchId);
if (internalData[key] !== undefined) {
// Load the switch!
if (source === projectCommon) {
Agtk.switches.get(switchId).setValue(internalData[key]);
} else {
source.execCommandSwitchVariableChange({
swtch: true,
switchObjectId: source.objectId,
switchQualifierId: Agtk.constants.qualifier.QualifierWhole,
switchId: switchId,
switchValue: internalData[key]
});
}
}
}
return Agtk.constants.actionCommands.commandBehavior.CommandBehaviorNext;
},
/**
* @param switchVariableObjectId {
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['SelfObject'] |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ParentObject']
* }
* @param instanceId {number}
* @returns {
* import("pgmmv-types/lib/agtk/object-instances/object-instance").AgtkObjectInstance |
* import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon'] |
* import("pgmmv-types/lib/agtk/constants/action-commands").AgtkActionCommands['UnsetObject']
* }
*/
resolveSwitchVariableObject = function (switchVariableObjectId, instanceId) {
var instance = Agtk.objectInstances.get(instanceId),
pId;
switch (switchVariableObjectId) {
case Agtk.constants.switchVariableObjects.ProjectCommon:
return switchVariableObjectId;
case Agtk.constants.switchVariableObjects.SelfObject:
return instance;
case Agtk.constants.switchVariableObjects.ParentObject:
pId = instance.variables.get(Agtk.constants.objects.variables.ParentObjectInstanceIDId).getValue();
if (pId !== Agtk.constants.actionCommands.UnsetObject) {
return Agtk.objectInstances.get(pId);
}
break;
default:
break;
}
return Agtk.constants.actionCommands.UnsetObject;
},
/**
* @param switchOrVariableSource {import("pgmmv-types/lib/agtk/object-instances/object-instance").AgtkObjectInstance|import("pgmmv-types/lib/agtk/constants/switch-variable-objects").AgtkSwitchVariableObjects['ProjectCommon']}
* @param switchOrVariableId {number}
* @param type {'variables' | 'switches'}
*/
setInternalData = function (switchOrVariableSource, switchOrVariableId, type) {
var projectCommon = Agtk.constants.switchVariableObjects.ProjectCommon,
key = generateKey(
switchOrVariableSource === projectCommon ? switchOrVariableSource : switchOrVariableSource.objectId,
type === 'switches' ? kSwitchAccessorType : kVariableAccessorType,
switchOrVariableId
),
accessor =
switchOrVariableSource === projectCommon
? Agtk[type].get(switchOrVariableId)
: switchOrVariableSource[type].get(switchOrVariableId);
internalData[key] = accessor.getValue();
io.requestSave();
},
/** @type {(objectId: number, accessorType: number, accessorId: number) => string} */
generateKey = function (objectId, accessorType, accessorId) {
return objectId + ',' + accessorType + ',' + accessorId;
},
/** @type {(string) => void} */
logError = function (msg) {
if (isEditor()) {
return;
}
Agtk.log('[ERROR][' + plugin.getInfo('name') + '] ' + msg);
},
/** @type {(string) => void} */
logWarning = function (msg) {
if (isEditor()) {
return;
}
Agtk.log('[WARNING][' + plugin.getInfo('name') + '] ' + msg);
},
/** @type{() => {requestSave: () => void; update: () => void;}} */
createIO = function () {
// noinspection UnnecessaryLocalVariableJS
/** @type {{requestSave: () => void; update: () => void;}} */
var io = {
requestSave: function () {
isSaveRequested = true;
},
update: function () {
switch (currentState) {
case kInitState:
if (jsb.fileUtils.isFileExist(kStoragePath)) {
jsbResult = jsb.fileUtils.getStringFromFile(kStoragePath);
if (!cc.isString(jsbResult)) {
logError('failed reading data from ' + kStoragePath);
isError = true;
return;
}
try {
internalData = JSON.parse(jsbResult);
} catch (e) {
logError('failed parsing data from ' + kStoragePath);
isError = true;
return;
}
if (!cc.isObject(internalData)) {
logError('invalid data type parsed from ' + kStoragePath);
isError = true;
return;
}
}
isInternalDataLoaded = true; // Load variable/switch action commands will stop blocking.
currentState = kReadyState;
break;
case kReadyState:
if (isSaveRequested) {
isSaveRequested = false;
try {
json = JSON.stringify(internalData);
} catch (e) {
logError('failed encoding data');
isError = true;
return;
}
jsonSize = getStringByteLength(json); // Get byte length of our encoding (for comparison with file size).
fileSize = jsb.fileUtils.getFileSize(kStoragePath);
jsbResult = jsb.fileUtils.writeStringToFile(json, kStoragePath);
if (!jsbResult) {
logError('failed writing data to ' + kStoragePath);
isError = true;
return;
}
currentState = kSaveState;
}
break;
case kSaveState:
// Polling for file write completion.
if (fileSize !== jsonSize) {
// JSON encoding and previous file size does not match - we
// can test for new file size to indicate write completion.
if (jsonSize === jsb.fileUtils.getFileSize(kStoragePath)) {
currentState = kReadyState;
}
} else if (json === jsb.fileUtils.getStringFromFile(kStoragePath)) {
// JSON encoding and previous file size matched so we need to
// compare content directly to indicate write completion.
currentState = kReadyState;
}
break;
default:
break;
}
}
},
/** @const */
kInitState = -1,
/** @const */
kReadyState = 0,
/** @const */
kSaveState = 1,
/** @const */
kStoragePath = Agtk.settings.projectPath + '/' + kStorageFilename,
/** @type {number} */
currentState = kInitState,
/** @type {boolean} */
isSaveRequested = false,
/** @type {string | boolean} */
jsbResult,
/** @type {string} */
json,
/** @type {number} */
fileSize,
/** @type {number} */
jsonSize,
/** @type {(string) => number} */
getStringByteLength = function (str) {
var s = str.length,
i = s - 1,
/** @type {number} */
code;
for (; i >= 0; --i) {
code = str.charCodeAt(i);
if (code > 0x7f && code <= 0x7ff) {
s++;
} else if (code > 0x7ff && code <= 0xffff) {
s += 2;
}
if (code >= 0xdc00 && code <= 0xdfff) {
// Trail surrogate.
i--;
}
}
return s;
};
return io;
},
/**
* @returns {boolean}
*/
isEditor = function () {
return !Agtk || typeof Agtk.log !== 'function';
},
/**
* @param paramValue {import("pgmmv-types/lib/agtk/plugins/plugin").AgtkParameterValue[]} Parameter values to normalize.
* @param defaults {import("pgmmv-types/lib/agtk/plugins/plugin/parameter").AgtkParameter[]} Default parameter values available.
* @returns {Record<number, import("type-fest").JsonValue>}
*/
normalizeParameters = function (paramValue, defaults) {
/** @type {Record<number,import("type-fest").JsonValue>} */
var normalized = {},
/** @type {number} */
len = defaults.length,
/** @type {number} */
i = 0,
/** @type {import("pgmmv-types/lib/agtk/plugins/plugin/parameter").AgtkParameter|import("pgmmv-types/lib/agtk/plugins/plugin").AgtkParameterValue} */
p;
for (; i < len; ++i) {
p = defaults[i];
normalized[p.id] = p.type === 'Json' ? JSON.stringify(p.defaultValue) : p.defaultValue;
}
len = paramValue.length;
for (i = 0; i < len; ++i) {
p = paramValue[i];
normalized[p.id] = p.value;
}
return normalized;
};
return plugin;
})();