-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAbilitySystem.js
1562 lines (1324 loc) · 49.5 KB
/
AbilitySystem.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
/*:
@target MZ
@plugindesc Skill replacement system v1.5.0
@author unagi ootoro
@url https://raw.githubusercontent.com/unagiootoro/RPGMZ/master/AbilitySystem.js
@help
It is a plug-in that introduces a system that allows you to change skills.
By introducing this plug-in, you can give each actor skills
You can introduce a system that allows you to select and equip some of them.
It is also possible to add cost to the skill.
【How to use】
・ Give actors skills
In the memo field of the skill you want to be able to replace
<AbilitySkill>
Please describe. After that, by acquiring the skill with the event command
You can give the actor skills.
・Equip skills
By opening the skill equipment scene from the menu, you can equip the skill that the actor has.
・Set a maximum cost value for an actor or class
In the memo field of the actor or class
<MaxCost: Cost value>
You can set the maximum cost value for an actor or class by stating.
Set the cost value to an integer greater than or equal to 0.
* 1 To reflect the maximum cost set for each class, it is also necessary to set the plug-in parameter "Cost management by classes".
* 2 The maximum cost set for each class is managed for each class.
・Set a cost value for the skill
In the skill memo field
<AbilityCost: Cost value>
You can set the cost value for the skill by writing.
Set the cost value to an integer greater than or equal to 0.
・Temporarily increase costs with equipment
In the memo field of the weapon or armor
<AddCost: Cost value>
By stating, you can temporarily increase the cost while equipping the corresponding weapon / armor.
Set the cost value to an integer greater than or equal to 0.
If the maximum cost is reduced by removing the corresponding weapon / armor,
The skill for the cost over is automatically removed according to the maximum cost after the reduction.
・Skill automatic equipment when acquiring skills
When the switch specified in "Skill automatic equipment activation switch ID" is turned on
If there is an empty equipment slot when acquiring the skill, the skill will be automatically equipped.
* If you want to include the initial ability skill in the automatic equipment target,
you need to set "Skill automatic equipment activation switch initial value" to true.
【License】
This plugin is available under the terms of the MIT license.
@param EnabledAbilitySystemSwitchId
@text Ability menu activation switch ID
@type switch
@default 0
@desc
Specify the switch ID that determines whether the menu ability management screen is valid or invalid.
@param EnableAutoEquipSkillSwitchId
@text Skill automatic equipment activation switch ID
@type switch
@default 0
@desc
Specify the switch ID that enables automatic equipment when acquiring skills.
@param EnableUsableAllSkillsByMapSceneSwitchId
@text Map scene All skills available Activation switch ID
@type switch
@default 0
@desc
When enabled, specify a switch ID that will enable all available skills in the map scene.
@param EnableAutoEquipSkillSwitchInitValue
@text Skill automatic equipment activation switch initial value
@type boolean
@default true
@desc
Set the initial value of the skill automatic equipment activation switch.
@param MaxEquipAbilities
@text Maximum number of abilities that can be equipped
@type number
@default 4
@desc
Specifies the number of abilities that can be equipped.
@param EnableCost
@text Skill cost activation
@type boolean
@default true
@desc
Activate the cost of the skill.
@param CostManagementByClasses
@text Cost management by classes
@type boolean
@default false
@desc
Try to manage costs by classes by actor.
@param EquipAbilitySe
@text Ability Equipment SE
@type struct <SE>
@default {"FileName": "Skill1", "Volume": "90", "Pitch": "100", "Pan": "0"}
@desc
Specify the SE to play when the ability is equipped.
@param WindowSize
@text window size
@type struct <WindowSize>
@default {"StatusAbilityWindowWidth": "300", "StatusAbilityWindowHeight": "200"}
@desc
Set the size of various windows.
@param Text
@text Display text
@type struct <Text>
@default {"MenuAbilitySystemText": "Ability", "CostText": "Cost:", "EmptySlotText": "------"}
@desc
Sets the text used in the game.
@param BackgroundImage
@text Background image
@type struct<BackgroundImage>
@desc
Specify the background image of the quest scene in the menu.
@command StartAbilityScene
@text Ability scene start
@desc
Start the ability scene.
@command ChangeEquipAbilitySkill
@text Equipment ability skill change
@desc
Change the equipped ability skill.
@arg ActorId
@text Actor ID
@type actor
@desc
Specifies the actor whose ability skill is to be changed.
@arg SlotIndex
@text slot index
@type number
@desc
Specifies the index of the slot for which you want to change the ability skill. If -1 is specified, it will be set to an empty frame.
@arg SkillId
@text Skill ID
@type skill
@desc
Specify the skill to be changed. Please specify the skill that can be equipped. Specifying 0 removes the skill.
@command GetMaxCost
@text Get maximum cost
@desc
Gets the maximum cost of the specified actor and stores it in a variable.
@arg ActorId
@text Actor ID
@type actor
@desc
Specifies the actor to get the maximum cost.
@arg VariableId
@text variable ID
@type variable
@desc
Specify the variable ID that stores the maximum cost obtained.
@command SetMaxCost
@text Maximum cost setting
@desc
Sets the maximum cost for the specified actor.
@arg ActorId
@text Actor ID
@type actor
@desc
Specify the actor for which you want to set the maximum cost.
@arg VariableId
@text variable ID
@type variable
@desc
Specifies the variable ID that stores the value that sets the maximum cost.
@arg Value
@text Maximum cost value
@type number
@desc
Specifies the value that sets the maximum cost. If a variable ID is set, that will take precedence.
*/
/*~struct~SE:
@param FileName
@text SE filename
@type file
@dir audio / se
@ default Skill1
@desc
Specify the file name of the SE to play.
@param Volume
@text SE volume
@type number
@default 90
@desc
Specify the volume of SE to be played.
@param Pitch
@text SE pitch
@type number
@default 100
@desc
Specify the pitch of the SE to play.
@param Pan
@text SE phase
@type number
@default 0
@desc
Specify the pan of the SE to play.
*/
/*~struct~WindowSize:
@param StatusAbilityWindowWidth
@text Status window width
@type number
@default 300
@desc
Specifies the width of the status window.
@param StatusAbilityWindowHeight
@text Status window height
@type number
@default 200
@desc
Specifies the height of the status window.
*/
/*~struct~Text:
@param MenuAbilitySystemText
@text Menu display text
@type string
@default ability
@desc
Specify the name of the ability management screen to be added to the menu.
@param CostText
@text cost text
@type string
@default cost:
@desc
Specify the cost wording to be displayed on the ability management screen.
@param EmptySlotText
@text Ability release text
@type string
@default ------
@desc Specify a blank text.
*/
/*~struct~BackgroundImage:
@param FileName
@type file
@default {"FileName": "", "BackgroundImage2": "[]", "BackgroundImage2XOfs": "240", "BackgroundImage2YOfs": "300"}
@dir img
@desc
Specify the file name of the background image of the scene.
@param BackgroundImage2
@type struct <BackgroundImage2> []
@default []
@dir img
@desc
Specify the file name of the image to be added to the background image of the scene.
@param BackgroundImage2XOfs
@type number
@ default 240
@desc
Specifies the X coordinate offset of the image to add to the background image of the scene.
@param BackgroundImage2YOfs
@type number
@default 300
@desc
Specifies the Y coordinate offset of the image to add to the background image of the scene.
*/
/*~struct~BackgroundImage2:
@param FileName
@type file
@dir img
@desc
Specify the file name of the background image of the scene.
@param ActorId
@type actor
@desc
Specify the actor ID.
*/
/*:ja
@target MZ
@plugindesc スキル付け替えシステム v1.5.0
@author うなぎおおとろ
@url https://raw.githubusercontent.com/unagiootoro/RPGMZ/master/AbilitySystem.js
@help
スキルを付け替えられるシステムを導入するプラグインです。
このプラグインを導入することで、アクターごとにスキルを持たせておいて、
その中からいくつか選んで装備するというようなシステムを導入することができます。
また、スキルにコストを持たせることも可能です。
【使用方法】
・アクターにスキルを持たせる
付け替えられるようにしたいスキルのメモ欄に
<AbilitySkill>
と記載してください。その上でイベントコマンドで当該スキルを取得することで
アクターにスキルを持たせることができます。
・スキルを装備する
スキル装備シーンをメニューから開くことによって、アクターが持っているスキルを装備することができます。
・アクターまたは職業に最大コスト値を設定する
アクターまたは職業のメモ欄に
<MaxCost: コスト値>
と記載することで、アクターまたは職業に最大コスト値を設定することができます。
コスト値には0以上の整数を設定してください。
※1 職業に設定した最大コストを反映するにはプラグインパラメータ「職業別コスト管理」の設定も合わせて必要になります。
※2 職業に設定した最大コストはアクターごとの職業ごとに管理されます。
・スキルにコスト値を設定する
スキルのメモ欄に
<AbilityCost: コスト値>
と記載することで、スキルにコスト値を設定することができます。
コスト値には0以上の整数を設定してください。
・装備で一時的にコストを増やす
武器または防具のメモ欄に
<AddCost: コスト値>
と記載することで、該当の武器/防具を装備中は一時的にコストを増やすことができます。
コスト値には0以上の整数を設定してください。
なお、該当の武器/防具を外したことによって最大コストが減った場合、
減った後の最大コストに合わせて自動的にコストオーバー分のスキルを外します。
・スキル取得時のスキル自動装備
「スキル自動装備有効化スイッチID」で指定したスイッチをONにすると
スキル取得時に空いている装備スロットがあればスキルを自動で装備するようになります。
※初期アビリティスキルを自動装備対象に含める場合は「スキル自動装備有効化スイッチ初期値」をtrueに設定する必要があります。
【ライセンス】
このプラグインは、MITライセンスの条件の下で利用可能です。
@param EnabledAbilitySystemSwitchId
@text アビリティメニュー有効化スイッチID
@type switch
@default 0
@desc
メニューのアビリティ管理画面の有効/無効を判定するスイッチIDを指定します。0の場合は常に有効となります。
@param EnableAutoEquipSkillSwitchId
@text スキル自動装備有効化スイッチID
@type switch
@default 0
@desc
スキル取得時の自動装備を有効化するスイッチIDを指定します。0の場合は常に無効となります。
@param EnableUsableAllSkillsByMapSceneSwitchId
@text マップシーン全スキル使用可能有効化スイッチID
@type switch
@default 0
@desc
有効にするとマップシーンでは装備可能な全スキルが使用可能になるスイッチIDを指定します。0の場合は常に有効となります。
@param EnableAutoEquipSkillSwitchInitValue
@text スキル自動装備有効化スイッチ初期値
@type boolean
@default true
@desc
スキル自動装備有効化スイッチの初期値を設定します。
@param MaxEquipAbilities
@text 最大装備可能アビリティ数
@type number
@default 4
@desc
装備可能なアビリティの数を指定します。
@param EnableCost
@text スキルコスト有効化
@type boolean
@default true
@desc
スキルのコストを有効化します。
@param CostManagementByClasses
@text 職業別コスト管理
@type boolean
@default false
@desc
コストをアクターごとの職業ごとに管理するようにします。
@param EquipAbilitySe
@text アビリティ装備SE
@type struct<SE>
@default {"FileName":"Skill1","Volume":"90","Pitch":"100","Pan":"0"}
@desc
アビリティ装備時に再生するSEを指定します。
@param WindowSize
@text ウィンドウサイズ
@type struct<WindowSize>
@default {"StatusAbilityWindowWidth":"300","StatusAbilityWindowHeight":"200"}
@desc
各種ウィンドウのサイズを設定します。
@param Text
@text 表示テキスト
@type struct<Text>
@default {"MenuAbilitySystemText":"アビリティ","CostText":"コスト:","EmptySlotText":"------"}
@desc
ゲーム中で使用されるテキストを設定します。
@param BackgroundImage
@text メニュー背景画像
@type struct<BackgroundImage>
@desc
シーンの背景画像を指定します。
@command StartAbilityScene
@text アビリティシーン開始
@desc
アビリティシーンを開始します。
@command ChangeEquipAbilitySkill
@text 装備アビリティスキル変更
@desc
装備しているアビリティスキルを変更します。
@arg ActorId
@text アクターID
@type actor
@desc
アビリティスキルを変更するアクターを指定します。
@arg SlotIndex
@text スロットインデックス
@type number
@min -1
@desc
アビリティスキルを変更するスロットのインデックスを指定します。-1を指定すると空いている枠に設定します。
@arg SkillId
@text スキルID
@type skill
@desc
変更対象のスキルを指定します。スキルは装備可能なものを指定してください。0を指定するとスキルを外します。
@command GetMaxCost
@text 最大コスト取得
@desc
指定したアクターの最大コストを取得し、変数に格納します。
@arg ActorId
@text アクターID
@type actor
@desc
最大コストを取得するアクターを指定します。
@arg ClassId
@text 職業ID
@type class
@desc
最大コスト取得対象の職業IDを指定します。アクター単位でコストを管理する場合は0を指定してください。
@arg VariableId
@text 変数ID
@type variable
@desc
取得した最大コストを格納する変数IDを指定します。
@command SetMaxCost
@text 最大コスト設定
@desc
指定したアクターの最大コストを設定します。
@arg ActorId
@text アクターID
@type actor
@desc
最大コストを設定するアクターを指定します。
@arg ClassId
@text 職業ID
@type class
@desc
最大コスト設定対象の職業IDを指定します。アクター単位でコストを管理する場合は0を指定してください。
@arg VariableId
@text 変数ID
@type variable
@desc
最大コストを設定する値が格納された変数IDを指定します。
@arg Value
@text 最大コスト値
@type number
@desc
最大コストを設定する値を指定します。変数IDが設定されている場合はそちらが優先されます。
*/
/*~struct~SE:ja
@param FileName
@text SEファイル名
@type file
@dir audio/se
@default Skill1
@desc
再生するSEのファイル名を指定します。
@param Volume
@text SE音量
@type number
@default 90
@desc
再生するSEのvolumeを指定します。
@param Pitch
@text SEピッチ
@type number
@default 100
@desc
再生するSEのpitchを指定します。
@param Pan
@text SE位相
@type number
@default 0
@desc
再生するSEのpanを指定します。
*/
/*~struct~WindowSize:ja
@param StatusAbilityWindowWidth
@text ステータスウィンドウ横幅
@type number
@default 300
@desc
ステータスウィンドウの横幅を指定します。
@param StatusAbilityWindowHeight
@text ステータスウィンドウ縦幅
@type number
@default 200
@desc
ステータスウィンドウの縦幅を指定します。
*/
/*~struct~Text:ja
@param MenuAbilitySystemText
@text メニュー表示テキスト
@type string
@default アビリティ
@desc
メニューに追加するアビリティ管理画面の名称を指定します。
@param CostText
@text コストテキスト
@type string
@default コスト:
@desc
アビリティ管理画面で表示するコストの文言を指定します。
@param EmptySlotText
@text アビリティ解除テキスト
@type string
@default ------
@desc 空欄のテキストを指定します。
*/
/*~struct~BackgroundImage:
@param FileName
@type file
@default {"FileName":"","BackgroundImage2":"[]","BackgroundImage2XOfs":"240","BackgroundImage2YOfs":"300"}
@dir img
@desc
シーンの背景画像のファイル名を指定します。
@param BackgroundImage2
@type struct<BackgroundImage2>[]
@default []
@dir img
@desc
シーンの背景画像に追加する画像のファイル名を指定します。
@param BackgroundImage2XOfs
@type number
@default 240
@desc
シーンの背景画像に追加する画像のX座標オフセットを指定します。
@param BackgroundImage2YOfs
@type number
@default 300
@desc
シーンの背景画像に追加する画像のY座標オフセットを指定します。
*/
/*~struct~BackgroundImage2:
@param FileName
@type file
@dir img
@desc
シーンの背景画像のファイル名を指定します。
@param ActorId
@type actor
@desc
アクターIDを指定します。
*/
const AbilitySystemPluginName = document.currentScript.src.match(/^.*\/(.+)\.js$/)[1];
const AbilitySystemClassAlias = (() => {
"use strict";
class PluginParamsParser {
static parse(params, typeData, predictEnable = true) {
return new PluginParamsParser(predictEnable).parse(params, typeData);
}
constructor(predictEnable = true) {
this._predictEnable = predictEnable;
}
parse(params, typeData, loopCount = 0) {
if (++loopCount > 255) throw new Error("endless loop error");
const result = {};
for (const name in typeData) {
if (params[name] === "" || params[name] === undefined) {
result[name] = null;
} else {
result[name] = this.convertParam(params[name], typeData[name], loopCount);
}
}
if (!this._predictEnable) return result;
if (typeof params === "object" && !(params instanceof Array)) {
for (const name in params) {
if (result[name]) continue;
const param = params[name];
const type = this.predict(param);
result[name] = this.convertParam(param, type, loopCount);
}
}
return result;
}
convertParam(param, type, loopCount) {
if (typeof type === "string") {
return this.cast(param, type);
} else if (typeof type === "object" && type instanceof Array) {
const aryParam = JSON.parse(param);
if (type[0] === "string") {
return aryParam.map(strParam => this.cast(strParam, type[0]));
} else {
return aryParam.map(strParam => this.parse(JSON.parse(strParam), type[0]), loopCount);
}
} else if (typeof type === "object") {
return this.parse(JSON.parse(param), type, loopCount);
} else {
throw new Error(`${type} is not string or object`);
}
}
cast(param, type) {
switch(type) {
case "any":
if (!this._predictEnable) throw new Error("Predict mode is disable");
return this.cast(param, this.predict(param));
case "string":
return param;
case "number":
if (param.match(/^\-?\d+\.\d+$/)) return parseFloat(param);
return parseInt(param);
case "boolean":
return param === "true";
default:
throw new Error(`Unknow type: ${type}`);
}
}
predict(param) {
if (param.match(/^\-?\d+$/) || param.match(/^\-?\d+\.\d+$/)) {
return "number";
} else if (param === "true" || param === "false") {
return "boolean";
} else {
return "string";
}
}
}
// Parse plugin parameters.
const typeDefine = {
EquipAbilitySe: {},
WindowSize: {},
Text: {},
BackgroundImage: {
BackgroundImage2: [{}]
},
};
const params = PluginParamsParser.parse(PluginManager.parameters(AbilitySystemPluginName), typeDefine);
const EnabledAbilitySystemSwitchId = params.EnabledAbilitySystemSwitchId;
const EnableAutoEquipSkillSwitchId = params.EnableAutoEquipSkillSwitchId;
const EnableUsableAllSkillsByMapSceneSwitchId = params.EnableUsableAllSkillsByMapSceneSwitchId;
const EnableAutoEquipSkillSwitchInitValue = params.EnableAutoEquipSkillSwitchInitValue;
const MaxEquipAbilities = params.MaxEquipAbilities;
const EnableCost = params.EnableCost;
const CostManagementByClasses = params.CostManagementByClasses;
const EquipAbilitySe = params.EquipAbilitySe;
const WindowSize = params.WindowSize;
const Text = params.Text;
const BackgroundImage = params.BackgroundImage;
const FACE_HEIGHT_WHEN_ENABLE_CONST = 80;
const FACE_HEIGHT_WHEN_DISABLE_CONST = 120;
class AbilitySystemUtils {
static isAbilitySkill(skillData) {
return skillData.meta.AbilitySkill;
}
static getSkillCost(skillId) {
const skill = $dataSkills[skillId];
if (!skill) throw new Error(`Unknow skill id ${skillId}`);
if (skill.meta.AbilityCost) {
return parseInt(skill.meta.AbilityCost);
}
return 0;
}
static getMaxCostByActorId(actorId) {
const actorData = $dataActors[actorId];
if (!actorData) throw new Error(`Unknow actor id ${actorId}`);
if (actorData.meta.MaxCost) {
return parseInt(actorData.meta.MaxCost);
}
return 0;
}
static getMaxCostByClassId(classId) {
const classData = $dataClasses[classId];
if (!classData) throw new Error(`Unknow class id ${classId}`);
if (classData.meta.MaxCost) {
return parseInt(classData.meta.MaxCost);
}
return 0;
}
static getAddCost(actor) {
const equipAddCosts = actor.equips().map(equip => {
if (!equip) return 0;
return equip.meta.AddCost ? parseInt(equip.meta.AddCost) : 0;
});
return equipAddCosts.reduce((total, cost) => total + cost, 0);
}
static isAutoEquipSkill() {
if (EnableAutoEquipSkillSwitchId > 0) return $gameSwitches.value(EnableAutoEquipSkillSwitchId);
return false;
}
static isEnableUsableAllSkillsByMapScene() {
if (EnableUsableAllSkillsByMapSceneSwitchId > 0 && $gameSwitches.value(EnableUsableAllSkillsByMapSceneSwitchId)) {
if (!(SceneManager._scene instanceof Scene_Battle)) {
return true;
}
}
return false;
}
}
class Scene_Ability extends Scene_MenuBase {
create() {
super.create();
this.createHelpWindow();
this.createEquipAbilitiesWindow();
this.createHasAbilitiesWindow();
this.createStatusAbilityWindow();
}
isReady() {
const result = super.isReady();
if (!result) return false;
if (BackgroundImage) {
if (BackgroundImage.FileName) {
const backgroundImage1 = ImageManager.loadBitmap("img/", BackgroundImage.FileName);
if (!backgroundImage1.isReady()) return false;
}
if (BackgroundImage.BackgroundImage2) {
for (const img2 of BackgroundImage.BackgroundImage2) {
if (img2.FileName) {
const backgroundImage2 = ImageManager.loadBitmap("img/", img2.FileName);
if (!backgroundImage2.isReady()) return false;
}
}
}
}
return true;
}
start() {
super.start();
this.updateActor();
this.restart();
}
restart() {
this._windowEquipAbilities.setActor(this.actor());
this._windowHasAbilities.setActor(this.actor());
this._windowStatusAbility.setActor(this.actor());
this._windowEquipAbilities.refresh();
this._windowHasAbilities.refresh();
this._windowStatusAbility.refresh();
this._windowEquipAbilities.show();
this._windowHasAbilities.show();
this._windowStatusAbility.show();
this._windowEquipAbilities.activate();
this._windowEquipAbilities.select(0);
this._windowHasAbilities.deactivate();
this._windowHasAbilities.deselect();
}
createBackground() {
this._backgroundSprite = new Sprite();
if (BackgroundImage && BackgroundImage.FileName) {
const bitmap1 = ImageManager.loadBitmap("img/", BackgroundImage.FileName);
this._backgroundSprite.bitmap = bitmap1;
const sprite = new Sprite();
sprite.x = BackgroundImage.BackgroundImage2XOfs;
sprite.y = BackgroundImage.BackgroundImage2YOfs;
this._backgroundSprite.addChild(sprite);
this._backgroundSprite2 = sprite;
this.addChild(this._backgroundSprite);
} else {
this._backgroundFilter = new PIXI.filters.BlurFilter();
this._backgroundSprite.bitmap = SceneManager.backgroundBitmap();
this._backgroundSprite.filters = [this._backgroundFilter];
this.addChild(this._backgroundSprite);
this.setBackgroundOpacity(192);
}
}
getBackgroundImage2(actorId) {
if (BackgroundImage.BackgroundImage2) {
const img2 = BackgroundImage.BackgroundImage2.find(img2 => img2.ActorId === actorId);
if (img2) return ImageManager.loadBitmap("img/", img2.FileName);
}
return null;
}
updateActor() {
super.updateActor();
this.updateBackgroundImage2();
}
updateBackgroundImage2() {
if (!this._backgroundSprite2) return;
const backgroundImage2 = this.getBackgroundImage2($gameParty.menuActor().actorId());
if (backgroundImage2) {
this._backgroundSprite2.bitmap = backgroundImage2;
} else {
this._backgroundSprite2.bitmap = null;
}
}
createEquipAbilitiesWindow() {
const rect = this.equipAbilitiesWindowRect();
this._windowEquipAbilities = new Window_EquipAbilities(rect);
this._windowEquipAbilities.setHelpWindow(this._helpWindow);
this._windowEquipAbilities.setHandler("ok", this.onEquipAbilitiesOk.bind(this));
this._windowEquipAbilities.setHandler("cancel", this.onEquipAbilitiesCancel.bind(this));
this._windowEquipAbilities.setHandler("select", this.onEquipAbilitiesSelect.bind(this));
this._windowEquipAbilities.setHandler("pagedown", this.nextActor.bind(this));
this._windowEquipAbilities.setHandler("pageup", this.previousActor.bind(this));
this.addWindow(this._windowEquipAbilities);
}
createHasAbilitiesWindow() {
const rect = this.hasAbilitiesWindowRect();
this._windowHasAbilities = new Window_HasAbilities(rect);
this._windowHasAbilities.setHelpWindow(this._helpWindow);
this._windowHasAbilities.setHandler("ok", this.onHasAbilitiesOk.bind(this));
this._windowHasAbilities.setHandler("cancel", this.onHasAbilitiesCancel.bind(this));
this.addWindow(this._windowHasAbilities);
}
createStatusAbilityWindow() {
const rect = this.statusAbilityWindowRect();
this._windowStatusAbility = new Window_StatusAbility(rect);
this.addWindow(this._windowStatusAbility);
}
statusAbilityWindowRect() {
const x = 0;
const y = this.mainAreaTop();
const w = WindowSize.StatusAbilityWindowWidth;
const h = WindowSize.StatusAbilityWindowHeight;
return new Rectangle(x, y, w, h);
}
equipAbilitiesWindowRect() {
const statusAbilityWindowRect = this.statusAbilityWindowRect();
const x = statusAbilityWindowRect.width;
const y = statusAbilityWindowRect.y;
const w = Graphics.boxWidth - x;
const h = statusAbilityWindowRect.height;
return new Rectangle(x, y, w, h);
}
hasAbilitiesWindowRect() {
const equipAbilitiesWindowRect = this.equipAbilitiesWindowRect();
const x = 0;
const y = equipAbilitiesWindowRect.y + equipAbilitiesWindowRect.height;
const w = Graphics.boxWidth;
const h = this.mainAreaBottom() - equipAbilitiesWindowRect.y - equipAbilitiesWindowRect.height;
return new Rectangle(x, y, w, h);
}
needsPageButtons() {
return true;
}
onActorChange() {
super.onActorChange();
this.restart();
}
// Define window handlers
onEquipAbilitiesOk() {
this._windowHasAbilities.select(0);
this.change_EquipAbilitiesWindow_To_HasAbilitiesWindow();
}
onEquipAbilitiesCancel() {
this.popScene();
}
onEquipAbilitiesSelect() {
this._windowHasAbilities.setEquipSlot(this._windowEquipAbilities.index());
this._windowHasAbilities.refresh();
}
onHasAbilitiesOk() {
const targetSkill = this.actor().hasAbilitySkill(this._windowHasAbilities.index());
const targetSkillId = (targetSkill ? targetSkill.id : null);
const changed = this.actor().changeEquipAbilitySkill(this._windowEquipAbilities.index(), targetSkillId);
if (changed) {
this._windowHasAbilities.select(-1);
this._windowStatusAbility.refresh();
this.change_HasAbilitiesWindow_To_EquipAbilitiesWindow();
} else {
this._windowHasAbilities.activate();
}
}
onHasAbilitiesCancel() {
this.change_HasAbilitiesWindow_To_EquipAbilitiesWindow();