-
Notifications
You must be signed in to change notification settings - Fork 7
/
SelfVariable.js
1466 lines (1278 loc) · 53 KB
/
SelfVariable.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
"use strict";
/*:
@target MV MZ
@plugindesc Self variable v1.5.1
@author unagiootoro
@url https://raw.githubusercontent.com/unagiootoro/RPGMZ/master/SelfVariable.js
@help
A plugin that introduces self variables.
【How to use】
■ Basic usage
If you prefix the variable name with "$", the variable is treated as a self variable.
Setting example: $ Self variable
self variables are managed on an event-by-event basis, similar to self switching.
You can get and set the value of a self variable on the editor in the same way as a normal variable.
You can do it.
In addition to variables, switches can also be treated as extended self switches by adding "$"
to the beginning of the switch name.
■ Using common event variables
A variable name prefixed with "%" will be treated as a common event variable.
Setting example: %Common event variable
Common event variables are variables that can only be used within common events.
The value is initialized to 0 to call common events.
If you call a common event within a common event,
Values are not shared between common events.
■ Using Decimal Variables
Prefixing a variable name with "#" treats it as a decimal variable.
Setting example: # decimal variable
A variable set to a decimal variable retains its value as a decimal even if a decimal value is assigned to it.
For the setting of the decimal, in "Variable operation" of the event command,
This can be done by entering a decimal value in the script field.
Also, if a description such as "#$" is attached to the beginning, the variable is treated as a self variable and a decimal variable.
can be handled. Either "#" or "$" can be written first.
Setting example: #$ decimal self variable
■ Manipulate self variables from plug-in commands
"Get self variable value" and "Set self variable value" of the plug-in command
By using self variables from one event to another
It is also possible to operate.
Similarly for the extended self switch, you can operate the extended self switch from the outside
by using "extended self switch value acquisition" and "extended self switch setting".
Plugin commands can only be used when running on MZ.
In the case of MV, by using the function to operate self variables from the script
The same can be achieved.
When specifying "map ID" in the plug-in command, "map ID"
If 0 is specified, the ID of the current map is applied.
Also, if 0 is specified for "Event ID" when specifying "Event ID",
The ID of the event that executed the plugin command is applied.
When clearing the self variable/extended self switch with the plugin command,
if the argument "whether event is specified" is ON,
the event specified by the event ID or variable will be cleared. When set to OFF,
all events on the map will be cleared.
■ Batch setting of self variables/extended self switches using event tags
If you set an event tag to an event, the plug-in command "Set self variable value by event tag" will be displayed.
Or with the event tag specified by "Extended self switch value setting by event tag"
Self variables or extended self switches can be set for all events.
Multiple event tags can be set.
When setting an event tag, please describe it as follows in the first annotation of page 0 of the event.
<et: event tag>
Example: When setting event tags "ET1" and "ET2"
<et: ET1>
<et: ET2>
■ Manipulate self variables from scripts
・Acquisition of self variables
Example: To get the self variable of ID3 of the map of ID1 and the event of ID2
$gameVariables.selfVariableValue([1, 2, 3]);
・Self variable setting
Example: If you want to set the self variable for ID3 to 100 for the event for ID2 in the map for ID1.
$gameVariables.selfVariableValue([1, 2, 3], 100);
・Acquisition of extended self switch
Example: To get ID3's extended self switch for ID2's event of ID1's map
$gameSwitches.exSelfSwitchValue([1, 2, 3]);
・Extended self switch settings
Example: When setting ON for the ID3 extended self switch of the ID2 event in the ID1 map
$gameVariables.setExSelfSwitchValue([1, 2, 3], true);
Also, for those who understand the script to some extent, in Game_Event
The following methods are defined, so by using these,
It is possible to manipulate self variables more easily.
・Game_Event#selfVariableValue(variableId)
Gets the self variable specified by variableId for the target event.
・Game_Event#setSelfVariableValue(variableId, value)
Stores the value in the self variable specified by variableId for the target event.
・Game_Event#exSelfSwitchValue(switchId)
Gets the extended self switch specified by switchId for the target event.
・Game_Event#setExSelfSwitchValue(switchId, value)
Stores the value in the extended self switch specified by switchId for the target event.
【Important point】
-Do not manipulate self variables from battle events on the editor.
Self variables are linked to map events, so from other than map events
If the variable is accessed via the event command, it will not operate normally.
-The following functions do not work properly due to specifications.
When using these functions, store them in normal variables once
Please move the value to the self variable.
- \v in text display
- Numerical input processing
【License】
This plugin is available under the terms of the MIT license.
@command GetSelfVariableValue
@text Self variable value acquisition
@desc Gets the value of a self variable.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg SelfVariableId
@type variable
@text Self variable ID
@default 1
@desc Specifies the self variable ID.
@arg DestVariableId
@type variable
@text Storage variable ID
@default 2
@desc Specify the variable ID that stores the acquired self variable value.
@command SetSelfVariableValue
@text Self variable value setting
@desc Set the value of the self variable.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg SelfVariableId
@type variable
@text Self variable ID
@default 1
@desc Specifies the self variable ID.
@arg Value
@type number
@text setting value
@default 0
@desc Specifies the value to set for the self variable.
@arg SrcVariableId
@type variable
@text Setting value storage variable ID
@default 0
@desc Specify the variable ID that stores the value to be set in the self variable. If you specify a direct value, specify 0 for this parameter.
@command SetSelfVariableValueByEventTags
@text Self variable value setting by event tag
@desc Sets the value of the self variable to all events with the specified event tag.
@arg EventTags
@type string[]
@text Event tag
@default []
@desc Specify the target event tag.
@arg SelfVariableId
@type variable
@text Self variable ID
@default 1
@desc Specifies the self variable ID.
@arg Value
@type number
@text setting value
@default 0
@desc Specifies the value to set for the self variable.
@arg SrcVariableId
@type variable
@text Setting value storage variable ID
@default 0
@desc Specify the variable ID that stores the value to be set in the self variable. If you specify a direct value, specify 0 for this parameter.
@command ClearSelfVariables
@text self variable clear
@desc Sets all self variables corresponding to the specified map ID and event ID to 0.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventSpecification
@type boolean
@text Whether or not event is specified
@default true
@desc When ON is specified, the target event is specified.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg SelfVariableId
@type variable
@text self variable id
@default 0
@desc If specified, only that self variable will be cleared.
@command GetExSelfSwitchValue
@text get extended self switch value
@desc Gets the extended self switch value.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg ExSelfSwitchId
@type switch
@text extended self switch ID
@default 1
@desc Specifies an extended self switch ID.
@arg DestSwitchId
@type switch
@text Destination switch ID
@default 2
@desc Specifies the switch ID that stores the acquired extended self switch value.
@command SetExSelfVariableValue
@text extended self switch value setting
@desc Sets the extended self switch value.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg ExSelfSwitchId
@type switch
@text extended self switch ID
@default 1
@desc Specifies an extended self switch ID.
@arg Value
@type boolean
@text setting value
@default true
@desc Specifies the value to set for the extended self switch.
@arg SrcSwitchId
@type switch
@text Setting value storage switch ID
@default 0
@desc Specifies the switch ID that stores the value to be set in the extended self switch. When specifying a value directly, specify 0 for this parameter.
@command SetExSelfSwitchValueByEventTags
@text Extended self switch value setting by event tag
@desc Sets the value of the self variable to all events with the specified event tag.
@arg EventTags
@type string[]
@text Event tag
@default []
@desc Specify the target event tag.
@arg ExSelfSwitchId
@type switch
@text extended self switch ID
@default 1
@desc Specifies an extended self switch ID.
@arg Value
@type boolean
@text setting value
@default true
@desc Specifies the value to set for the extended self switch.
@arg SrcSwitchId
@type switch
@text Setting value storage switch ID
@default 0
@desc Specifies the switch ID that stores the value to be set in the extended self switch. When specifying a value directly, specify 0 for this parameter.
@command ClearExSelfSwitches
@text extended self switch clear
@desc Turns off all extended self switches corresponding to the specified map ID and event ID.
@arg MapId
@type number
@text map ID
@default 1
@desc Specify the map ID. If 0 is specified, the current map ID will be applied.
@arg MapIdByVariable
@type variable
@text Map ID (variable specification)
@default 0
@desc Specify the map ID with a variable. If you set the map ID value directly, specify 0 for this parameter.
@arg EventSpecification
@type boolean
@text Whether or not event is specified
@default true
@desc When ON is specified, the target event is specified.
@arg EventId
@type number
@text Event ID
@default 1
@desc Specify the event ID. If you set the event ID value directly, specify 0 for this parameter.
@arg EventIdByVariable
@type variable
@text Event ID (variable specification)
@default 0
@desc Specify the event ID with a variable. If you set the event ID value directly, specify 0 for this parameter.
@arg ExSelfSwitchId
@type switch
@text extended self switch ID
@default 0
@desc If specified, only that extended self switch will be cleared.
@param SelfVariablePrefix
@type string
@text self variable or extend self switch prefix
@default $
@desc Specifies the variable name prefix used to identify self variables or extend self switches.
@param CommonVariablePrefix
@type string
@text common variable/common switch prefix
@default %
@desc Specifies the variable/switch name prefix used to identify common variables/switches.
@param FloatVariablePrefix
@type string
@text decimal variable prefix
@default #
@desc Specifies the variable name prefix used to identify decimal variables.
@param ErrorLanguage
@text Error message language
@type select
@option english
@value en
@option Japanese
@value ja
@default en
@desc Specifies the language for displaying errors. Normally you do not need to change this parameter.
*/
/*:ja
@target MV MZ
@plugindesc セルフ変数 v1.5.1
@author うなぎおおとろ
@url https://raw.githubusercontent.com/unagiootoro/RPGMZ/master/SelfVariable.js
@help
セルフ変数を導入するプラグインです。
【使用方法】
■ 基本的な使用法
変数名の先頭に「$」を付けると、その変数はセルフ変数として扱われます。
設定例: $セルフ変数
セルフ変数はセルフスイッチと同じようにイベントごとに管理されます。
セルフ変数の値の取得や設定は通常の変数と同じようにエディタ上で
行うことができます。
また、変数だけでなくスイッチについてもスイッチ名の先頭に「$」をつけることで
拡張セルフスイッチとして扱うことができるようになります。
■ コモンイベント変数の使用
変数名の先頭に「%」を付けると、その変数はコモンイベント変数として扱われます。
設定例: %コモンイベント変数
コモンイベント変数はコモンイベント内だけで使用可能な変数です。
コモンイベントを呼び出すために値が0に初期化されます。
コモンイベント内でコモンイベントを呼び出した場合、
コモンイベント間で値は共有されません。
■ 小数変数の使用
変数名の先頭に「#」を付けると、その変数は小数変数として扱われます。
設定例: #小数変数
小数変数に設定した変数は、小数値を代入した場合でも小数としての値が保持されるようになります。
小数の設定については、イベントコマンドの「変数の操作」にて、
スクリプト欄に小数の値を入力することで行うことが可能です。
また、「#$」のような記載を先頭につけた場合、その変数はセルフ変数かつ小数変数として
扱うことが可能です。「#」と「$」はどちらを先に記載してもかまいません。
設定例: #$小数セルフ変数
■ プラグインコマンドからセルフ変数を操作する
プラグインコマンドの「セルフ変数値取得」「セルフ変数値設定」を
使用することで、あるイベントから他のイベントのセルフ変数を
操作することも可能です。
拡張セルフスイッチについても同じように「拡張セルフスイッチ値取得」
「拡張セルフスイッチ設定」を使用することで、外部からの拡張セルフスイッチの
操作が可能になります。
プラグインコマンドはMZで動作させる場合のみ使用できます。
MVの場合はスクリプトからセルフ変数を操作させる機能を使用することで
同様のことが実現可能です。
プラグインコマンドで「マップID」を指定するときに「マップID」に
0を指定した場合は、現在のマップのIDが適用されます。
また「イベントID」を指定するときに「イベントID」に0を指定した場合は、
プラグインコマンドを実行したイベントのIDが適用されます。
プラグインコマンドでセルフ変数/拡張セルフスイッチをクリアする場合、
引数「イベント指定有無」をONにした場合、イベントIDまたは変数で指定したイベントを
対象にクリアを行います。OFFにした場合、マップ上の全てのイベントに対してクリアを行います。
■ イベントタグによるセルフ変数/拡張セルフスイッチの一括設定
イベントにイベントタグを設定するとプラグインコマンド「イベントタグによるセルフ変数値設定」
または「イベントタグによる拡張セルフスイッチ値設定」によって指定したイベントタグを持つ
イベント全てに対してセルフ変数または拡張セルフスイッチを設定することができます。
イベントタグは複数設定することも可能です。
イベントタグを設定する場合、イベントの0ページ目の最初の注釈に以下のように記載してください。
<et: イベントタグ>
例: イベントタグ"ET1"と"ET2"を設定する場合
<et: ET1>
<et: ET2>
■ スクリプトからセルフ変数を操作する
・セルフ変数の取得
例: ID1のマップの、ID2のイベントの、ID3のセルフ変数を取得する場合
$gameVariables.selfVariableValue([1, 2, 3]);
・セルフ変数の設定
例: ID1のマップの、ID2のイベントの、ID3のセルフ変数に100を設定する場合
$gameVariables.selfVariableValue([1, 2, 3], 100);
・拡張セルフスイッチの取得
例: ID1のマップの、ID2のイベントの、ID3の拡張セルフスイッチを取得する場合
$gameSwitches.exSelfSwitchValue([1, 2, 3]);
・拡張セルフスイッチの設定
例: ID1のマップの、ID2のイベントの、ID3の拡張セルフスイッチにONを設定する場合
$gameVariables.setExSelfSwitchValue([1, 2, 3], true);
また、ある程度スクリプトが分かる人向けですが、Game_Eventに
以下のメソッドを定義していますので、これらを使用することで
より簡単にセルフ変数を操作することが可能です。
・Game_Event#selfVariableValue(variableId)
対象のイベントについてvariableIdで指定したセルフ変数を取得します。
・Game_Event#setSelfVariableValue(variableId, value)
対象のイベントについてvariableIdで指定したセルフ変数にvalueを格納します。
・Game_Event#exSelfSwitchValue(switchId)
対象のイベントについてswitchIdで指定した拡張セルフスイッチを取得します。
・Game_Event#setExSelfSwitchValue(switchId, value)
対象のイベントについてswitchIdで指定した拡張セルフスイッチにvalueを格納します。
【注意点】
・エディタ上で戦闘イベントからセルフ変数を操作しないでください。
セルフ変数はマップイベントに紐づいていますので、マップイベント以外から
イベントコマンド経由で変数にアクセスした場合、正常に動作しなくなります。
・以下の機能については仕様の都合上、正常に動作しません。
これらの機能を使用する際は一旦通常の変数に格納してから
セルフ変数に値を移すようにしてください。
- 文章表示における\v
- 数値入力の処理
【ライセンス】
このプラグインは、MITライセンスの条件の下で利用可能です。
@command GetSelfVariableValue
@text セルフ変数値取得
@desc セルフ変数の値を取得します。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg SelfVariableId
@type variable
@text セルフ変数ID
@default 1
@desc セルフ変数IDを指定します。
@arg DestVariableId
@type variable
@text 格納先変数ID
@default 2
@desc 取得したセルフ変数の値を格納する変数IDを指定します。
@command SetSelfVariableValue
@text セルフ変数値設定
@desc セルフ変数の値を設定します。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg SelfVariableId
@type variable
@text セルフ変数ID
@default 1
@desc セルフ変数IDを指定します。
@arg Value
@type number
@text 設定値
@default 0
@desc セルフ変数に設定する値を指定します。
@arg SrcVariableId
@type variable
@text 設定値格納変数ID
@default 0
@desc セルフ変数に設定する値を格納した変数IDを指定します。直接値を指定する場合、このパラメータは0を指定してください。
@command SetSelfVariableValueByEventTags
@text イベントタグによるセルフ変数値設定
@desc 指定したイベントタグを持つイベント全てにセルフ変数の値を設定します。
@arg EventTags
@type string[]
@text イベントタグ
@default []
@desc 対象となるイベントタグを指定します。
@arg SelfVariableId
@type variable
@text セルフ変数ID
@default 1
@desc セルフ変数IDを指定します。
@arg Value
@type number
@text 設定値
@default 0
@desc セルフ変数に設定する値を指定します。
@arg SrcVariableId
@type variable
@text 設定値格納変数ID
@default 0
@desc セルフ変数に設定する値を格納した変数IDを指定します。直接値を指定する場合、このパラメータは0を指定してください。
@command ClearSelfVariables
@text セルフ変数クリア
@desc 指定したマップIDとイベントIDに該当する全てのセルフ変数を0にします。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventSpecification
@type boolean
@text イベント指定有無
@default true
@desc ONを指定すると対象のイベントを指定します。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg SelfVariableId
@type variable
@text セルフ変数ID
@default 0
@desc 指定した場合、そのセルフ変数のみクリアの対象とします。
@command GetExSelfSwitchValue
@text 拡張セルフスイッチ値取得
@desc 拡張セルフスイッチの値を取得します。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg ExSelfSwitchId
@type switch
@text 拡張セルフスイッチID
@default 1
@desc 拡張セルフスイッチIDを指定します。
@arg DestSwitchId
@type switch
@text 格納先スイッチID
@default 2
@desc 取得した拡張セルフスイッチの値を格納するスイッチIDを指定します。
@command SetExSelfVariableValue
@text 拡張セルフスイッチ値設定
@desc 拡張セルフスイッチの値を設定します。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg ExSelfSwitchId
@type switch
@text 拡張セルフスイッチID
@default 1
@desc 拡張セルフスイッチIDを指定します。
@arg Value
@type boolean
@text 設定値
@default true
@desc 拡張セルフスイッチに設定する値を指定します。
@arg SrcSwitchId
@type switch
@text 設定値格納スイッチID
@default 0
@desc 拡張セルフスイッチに設定する値を格納したスイッチIDを指定します。直接値を指定する場合、このパラメータは0を指定してください。
@command SetExSelfSwitchValueByEventTags
@text イベントタグによる拡張セルフスイッチ値設定
@desc 指定したイベントタグを持つイベント全てにセルフ変数の値を設定します。
@arg EventTags
@type string[]
@text イベントタグ
@default []
@desc 対象となるイベントタグを指定します。
@arg ExSelfSwitchId
@type switch
@text 拡張セルフスイッチID
@default 1
@desc 拡張セルフスイッチIDを指定します。
@arg Value
@type boolean
@text 設定値
@default true
@desc 拡張セルフスイッチに設定する値を指定します。
@arg SrcSwitchId
@type switch
@text 設定値格納スイッチID
@default 0
@desc 拡張セルフスイッチに設定する値を格納したスイッチIDを指定します。直接値を指定する場合、このパラメータは0を指定してください。
@command ClearExSelfSwitches
@text 拡張セルフスイッチクリア
@desc 指定したマップIDとイベントIDに該当する全ての拡張セルフスイッチをOFFにします。
@arg MapId
@type number
@text マップID
@default 1
@desc マップIDを指定します。
@arg MapIdByVariable
@type variable
@text マップID(変数指定)
@default 0
@desc マップIDを変数で指定します。直接マップID値を設定した場合は本パラメータは0を指定してください。
@arg EventSpecification
@type boolean
@text イベント指定有無
@default true
@desc ONを指定すると対象のイベントを指定します。
@arg EventId
@type number
@text イベントID
@default 1
@desc イベントIDを指定します。
@arg EventIdByVariable
@type variable
@text イベントID(変数指定)
@default 0
@desc イベントIDを変数で指定します。直接イベントID値を設定した場合は本パラメータは0を指定してください。
@arg ExSelfSwitchId
@type switch
@text 拡張セルフスイッチID
@default 0
@desc 指定した場合、その拡張セルフスイッチのみクリアの対象とします。
@param SelfVariablePrefix
@type string
@text セルフ変数/拡張セルフスイッチプレフィックス
@default $
@desc セルフ変数/拡張セルフスイッチの識別に使用する変数/スイッチ名のプレフィックスを指定します。
@param CommonVariablePrefix
@type string
@text コモン変数/コモンスイッチプレフィックス
@default %
@desc コモン変数/コモンスイッチの識別に使用する変数/スイッチ名のプレフィックスを指定します。
@param FloatVariablePrefix
@type string
@text 小数変数プレフィックス
@default #
@desc 小数変数の識別に使用する変数名のプレフィックスを指定します。
@param ErrorLanguage
@text エラーメッセージ言語
@type select
@option 英語
@value en
@option 日本語
@value ja
@default ja
@desc エラー表示の言語を指定します。通常このパラメータを変更する必要はありません。
*/
const SelfVariablePluginName = document.currentScript ? decodeURIComponent(document.currentScript.src.match(/^.*\/(.+)\.js$/)[1]) : "SelfVariable";
var globalActiveInterpreter;
var globalActiveEvent;
var SelfVariable;
(function (SelfVariable) {
const PP = PluginManager.parameters(SelfVariablePluginName);
const SelfVariablePrefix = PP.SelfVariablePrefix;
const FloatVariablePrefix = PP.FloatVariablePrefix;
const CommonVariablePrefix = PP.CommonVariablePrefix;
const ErrorLanguage = PP.ErrorLanguage;
/* static class PluginManager */
if (typeof PluginManager.registerCommand !== "undefined") {
function getMapId(interpreter, args) {
const mapIdByVariable = parseInt(args.MapIdByVariable);
let mapId = mapIdByVariable > 0 ? $gameVariables.value(mapIdByVariable) : parseInt(args.MapId);
if (mapId === 0)
return interpreter.mapId();
return mapId;
}
function getEventId(interpreter, args) {
const eventIdByVariable = parseInt(args.EventIdByVariable);
let eventId = eventIdByVariable > 0 ? $gameVariables.value(eventIdByVariable) : parseInt(args.EventId);
if (eventId === 0) {
if (interpreter.eventId() === 0) {
throw ErrorManager.invalidThisEvent();
}
else {
return interpreter.eventId();
}
}
return eventId;
}
PluginManager.registerCommand(SelfVariablePluginName, "GetSelfVariableValue", function (args) {
const mapId = getMapId(this, args);
const eventId = getEventId(this, args);
const selfVariableId = parseInt(args.SelfVariableId);
const destVariableId = parseInt(args.DestVariableId);
const key = [mapId, eventId, selfVariableId];
const value = $gameVariables.selfVariableValue(key);
$gameVariables.setValue(destVariableId, value);
});
PluginManager.registerCommand(SelfVariablePluginName, "SetSelfVariableValue", function (args) {
const mapId = getMapId(this, args);
const eventId = getEventId(this, args);
const selfVariableId = parseInt(args.SelfVariableId);
let value = parseInt(args.Value);
const srcVariableId = parseInt(args.SrcVariableId);
const key = [mapId, eventId, selfVariableId];
if (srcVariableId > 0) {
value = $gameVariables.value(srcVariableId);
}
$gameVariables.setSelfVariableValue(key, value);
});
PluginManager.registerCommand(SelfVariablePluginName, "SetSelfVariableValueByEventTags", function (args) {
const eventTags = JSON.parse(args.EventTags);
const selfVariableId = parseInt(args.SelfVariableId);
let value = parseInt(args.Value);
const srcVariableId = parseInt(args.SrcVariableId);
if (srcVariableId > 0) {
value = $gameVariables.value(srcVariableId);
}
$gameVariables.setSelfVariableValueByEventTags(eventTags, selfVariableId, value);
});
PluginManager.registerCommand(SelfVariablePluginName, "ClearSelfVariables", function (args) {
const mapId = getMapId(this, args);