forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApngPicture.js
1163 lines (1092 loc) · 36.3 KB
/
ApngPicture.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
/*=============================================================================
ApngPicture.js
----------------------------------------------------------------------------
(C)2019 Triacontane
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
----------------------------------------------------------------------------
Version
2.4.2 2023/10/27 シーンのAPNGに表示スイッチを指定したとき、スイッチがOFFでも一瞬だけ表示されてしまう問題を修正
2.4.1 2023/03/21 GIFファイルを使用する場合のヘルプ文言を分かりやすく修正
2.4.0 2022/12/25 APNG画像のぼかしを除去できる設定を追加
2.3.4 2022/12/15 GIFファイルを選択したとき内部で保持する画像サイズが0になってしまう問題を修正
2.3.3 2022/12/14 サイドビュー用の敵キャラファイルの設定パラメータにgifファイルかどうかのフラグがなかった問題を修正
2.3.2 2022/10/27 1セルのフレーム数を変更したとき、ループ回数の設定が機能しなくなる問題を修正
2.3.1 2022/06/06 apngのフレーム数を指定したとき停止スイッチが機能しない問題を修正
2.3.0 2022/02/06 1セルごとのフレーム数をゲーム側で設定できるパラメータを追加
2.2.1 2021/10/09 AltMenuScreen2MZとの並び順を指定するアノテーションを追加
2.2.0 2021/04/26 2.1.6の修正でGIFファイルが使えなくなっていた問題を修正
GIFファイルの指定方法を変更
2.1.6 2021/03/10 システム画像や敵キャラ画像としてapngを使用するとき、ピクチャにも同名の画像がないとエラーになる問題を修正
2.1.5 2021/02/01 数字のみのファイルをapng指定して起動するとエラーになる問題を修正
2.1.4 2021/01/18 2.1.3の修正でapngでないピクチャや敵キャラを表示しようとするとエラーになる問題を修正
2.1.3 2021/01/17 キャッシュ方針を「あり」にした画像を再表示するとき、フレームを初期化するよう修正
2.1.2 2021/01/13 2.1.1の修正で一度消去したピクチャを再表示しようとするとエラーになる問題を修正
2.1.1 2020/12/11 キャッシュ方針を「キャッシュしない」以外に設定すると消去にエラーが起きる場合がある問題を修正
2.1.0 2020/11/11 APNGのアニメーションを停止、全停止できるスイッチを追加
2.0.1 2020/11/03 プラグイン上でapng画像の高さを正しく取得できるよう修正
2.0.0 2020/10/29 MZで動作するよう全面的に修正
1.6.0 2020/10/24 再生回数を指定したときに最初ではなく最後のフレームでアニメーションが止まる設定を追加
1.5.0 2020/10/17 サイドビューの敵キャラをapng化できるよう修正。機能が不完全であることに変わりはありません。
1.4.3 2020/03/17 ライブラリがpixi5.0対応によるバージョンアップで使用できなくなったのでヘルプの取得元を旧版に変更
1.4.2 2020/03/07 キャッシュしない設定のapngを繰り返し表示、削除し続けるとメモリリークが発生する問題を修正
1.4.1 2020/02/23 英語版のプラグインパラメータの記述が不足していたので修正
1.4.0 2020/02/01 アニメーションのループ回数を指定できる機能を追加
1.3.1 2019/12/31 画像を登録せずゲーム開始するとローディングが完了しない問題を修正
1.3.0 2019/12/31 APNGのキャッシュ機能を追加
1.2.1 2019/12/31 シーン追加画像でgifが表示されない問題を修正
1.2.0 2019/12/31 APNGのみツクール本体の暗号化機能に対応
1.1.0 2019/12/29 シーン追加画像の表示優先度を設定できる機能を追加
1.0.0 2019/12/27 初版
----------------------------------------------------------------------------
[Blog] : https://triacontane.blogspot.jp/
[Twitter]: https://twitter.com/triacontane/
[GitHub] : https://github.com/triacontane/
=============================================================================*/
/*:
* @plugindesc ApngSupportPlugin
* @target MZ
* @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/ApngPicture.js
* @base PluginCommonBase
* @base PixiApngAndGif
* @orderAfter PluginCommonBase
* @orderAfter PixiApngAndGif
* @orderBefore AltMenuScreen2MZ
* @author triacontane
*
* @param PictureList
* @desc List of picture images to be handled as APNG.
* @default []
* @type struct<PictureApngRecord>[]
*
* @param EnemyList
* @desc List of enemy images to be handled as APNG.
* @default []
* @type struct<EnemyApngRecord>[]
*
* @param SideEnemyList
* @desc List of enemy images to be handled as APNG.
* @default []
* @type struct<SideEnemyApngRecord>[]
*
* @param SceneApngList
* @desc This is a list of APNG to be displayed for each scene.
* @default []
* @type struct<SceneApngRecord>[]
*
* @param DefaultLoopTimes
* @desc The number of animation loops. It stops after looping the specified number of times.
* @default 0
* @type number
*
* @param StopLastFrame
* @desc The animation stops at the last frame, not at the beginning.
* @default false
* @type boolean
*
* @param AllStopSwitch
* @desc All animations stop when the specified number switch is ON.
* @default 0
* @type switch
*
* @help ApngPicture.js
*
* Enables handling of APNGs and GIF animations.
* You can add APNGs to pictures, enemy characters, and any scene.
*
* After registering the file as an APNG from the parameters,
* you can add You just need to designate them as pictures and enemy characters,
* just like normal images.
*
* The following libraries are required for use.
* https://github.com/sbfkcel/pixi-apngAndGif
*
* Download
* https://github.com/sbfkcel/pixi-apngAndGif/blob/master/dist/PixiApngAndGif.js
*
* Attention!
* It is not recommended to register a large number of images to
* load the registered images at the start of the game.
* In addition, loading large APNG images may slow down the display.
* If the display is slow, please try GIF animation.
*
* If you want to use GIFs, please note that the editor will not recognize
* files without a GIF extension.
* Please enter the file name with the extension directly in the parameter.
* You can also display the picture from a script or by using
* Please use a dummy png file of the same name to specify it.
* Also, GIFs are not subject to the editor's encryption feature.
*
* This plugin is released under the MIT License.
*/
/*:ja
* @plugindesc APNGピクチャプラグイン
* @target MZ
* @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/ApngPicture.js
* @base PluginCommonBase
* @base PixiApngAndGif
* @orderAfter PluginCommonBase
* @orderAfter PixiApngAndGif
* @orderBefore AltMenuScreen2MZ
* @author トリアコンタン
*
* @param PictureList
* @text APNGのピクチャリスト
* @desc APNGとして扱うピクチャ画像のリストです。GIFを指定したい場合は直接入力してください。
* @default []
* @type struct<PictureApngRecord>[]
*
* @param EnemyList
* @text APNGの敵キャラリスト
* @desc APNGとして扱う敵キャラ画像のリストです。GIFを指定したい場合は直接入力してください。
* @default []
* @type struct<EnemyApngRecord>[]
*
* @param SideEnemyList
* @text APNGのSV敵キャラリスト
* @desc APNGとして扱うSV敵キャラ画像のリストです。サイドビューの画像を使用したい場合はこちらから登録してください。
* @default []
* @type struct<SideEnemyApngRecord>[]
*
* @param SceneApngList
* @text シーンAPNGのリスト
* @desc シーンごとに表示するAPNGのリストです。GIFを指定したい場合は直接入力してください。
* @default []
* @type struct<SceneApngRecord>[]
*
* @param DefaultLoopTimes
* @text デフォルトループ回数
* @desc アニメーションのループ回数です。指定した回数分ループ再生すると止まります。0を指定すると無限にアニメーションします。
* @default 0
* @type number
*
* @param StopLastFrame
* @text 最終フレームで止める
* @desc ループ回数が決まっているアニメーションを再生したとき最初ではなく最後のフレームでアニメーションが止まります。
* @default false
* @type boolean
*
* @param AllStopSwitch
* @text 全停止スイッチ
* @desc 指定した番号スイッチがONのとき全てのアニメーションが停止します。
* @default 0
* @type switch
*
* @param FrameCount
* @text 1セルのフレーム数
* @desc 設定すると1セルごとのフレーム数をゲーム側で固定にできます。
* @default 0
* @type number
*
* @param NoSmooth
* @text ぼかし除去
* @desc 画像拡大時にぼかしが入らなくなります。
* @default false
* @type boolean
*
* @help ApngPicture.js
*
* APNG、もしくはGIFアニメの取り扱いを可能にします。
* ピクチャ、敵キャラのほか任意のシーンにAPNGを追加表示できます。
*
* パラメータからAPNGとしてファイルを登録したら後は
* 通常の画像と同じようにピクチャや敵キャラとして指定するだけです。
*
* 使用には以下のライブラリが必要です。
* https://github.com/sbfkcel/pixi-apngAndGif
*
* ライセンスを確認のうえ以下からダウンロードしてください。
* https://github.com/sbfkcel/pixi-apngAndGif/blob/master/dist/PixiApngAndGif.js
*
* 注意!
* ゲーム開始時に登録した画像を読み込むため大量の画像を登録することは推奨しません。
* また、画像サイズの大きいAPNGを読み込むと、表示が遅くなる場合があります。
* 表示が遅い場合はGIFアニメもお試しください。
*
* GIFを使用したい場合、拡張子がgifのファイルはエディタで認識されないので
* ファイル名が同一のダミーpngファイルを用意して選択してください。
* ただし、GIFはエディタの暗号化機能の対象外となります。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
/*~struct~SceneApngRecord:ja
*
* @param SceneName
* @text 対象シーン
* @desc 画像を追加するシーンです。
* @type select
* @default Scene_Title
* @option タイトル
* @value Scene_Title
* @option ゲームオーバー
* @value Scene_Gameover
* @option バトル
* @value Scene_Battle
* @option メインメニュー
* @value Scene_Menu
* @option アイテム
* @value Scene_Item
* @option スキル
* @value Scene_Skill
* @option 装備
* @value Scene_Equip
* @option ステータス
* @value Scene_Status
* @option オプション
* @value Scene_Options
* @option セーブ
* @value Scene_Save
* @option ロード
* @value Scene_Load
* @option ゲーム終了
* @value Scene_End
* @option ショップ
* @value Scene_Shop
* @option 名前入力
* @value Scene_Name
* @option デバッグ
* @value Scene_Debug
* @option サウンドテスト
* @value Scene_SoundTest
* @option 用語辞典
* @value Scene_Glossary
*
* @param FileName
* @text ファイル名
* @desc 追加するAPNGのファイル名です。
* @default
* @require 1
* @dir img/system/
* @type file
*
* @param Gif
* @text GIFファイル
* @desc 対象がGIFファイルの場合はONにしてください。ファイル名は拡張子なしのファイル名を指定してください。
* @default false
* @type boolean
*
* @param CachePolicy
* @text キャッシュ方針
* @desc 画像のキャッシュ方針です。大量にキャッシュするとメモリ使用量に影響が出る場合があります。
* @default 0
* @type select
* @option キャッシュしない
* @value 0
* @option 初回表示時にキャッシュ
* @value 1
* @option ゲーム起動時にキャッシュ
* @value 2
*
* @param X
* @text X座標
* @desc 追加するAPNGのX座標です。
* @default 0
* @type number
*
* @param Y
* @text Y座標
* @desc 追加するAPNGのY座標です。
* @default 0
* @type number
*
* @param Origin
* @text 原点
* @desc 追加するAPNGの原点です。
* @default 0
* @type select
* @option 左上
* @value 0
* @option 中央
* @value 1
*
* @param Priority
* @text 優先度
* @desc 画像の表示優先度です。最背面は画面上に表示されないことが多いので通常の使用では推奨しません。
* @default 0
* @type select
* @option 最前面
* @value 0
* @option ウィンドウの下
* @value 1
* @option 最背面
* @value 2
*
* @param Switch
* @text 出現条件スイッチ
* @desc 指定したスイッチがONのときのみ表示されます。指定しない場合、常に表示されます。
* @default 0
* @type switch
*
* @param LoopTimes
* @text ループ回数
* @desc アニメーションのループ回数です。0を指定するとデフォルト設定に従います。
* @default 0
* @type number
*
* @param StopSwitch
* @text 停止スイッチ
* @desc 指定した番号スイッチがONのときアニメーションが停止します。
* @default 0
* @type switch
*/
/*~struct~PictureApngRecord:ja
*
* @param FileName
* @text ファイル名
* @desc 追加するAPNGのファイル名です。
* @default
* @require 1
* @dir img/pictures/
* @type file
*
* @param Gif
* @text GIFファイル
* @desc 対象がGIFファイルの場合はONにしてください。ファイル名は拡張子なしのファイル名を指定してください。
* @default false
* @type boolean
*
* @param CachePolicy
* @text キャッシュ方針
* @desc 画像のキャッシュ方針です。大量にキャッシュするとメモリ使用量に影響が出る場合があります。
* @default 0
* @type select
* @option キャッシュしない
* @value 0
* @option 初回表示時にキャッシュ
* @value 1
* @option ゲーム起動時にキャッシュ
* @value 2
*
* @param LoopTimes
* @text ループ回数
* @desc アニメーションのループ回数です。0を指定するとデフォルト設定に従います。
* @default 0
* @type number
*
* @param StopSwitch
* @text 停止スイッチ
* @desc 指定した番号スイッチがONのときアニメーションが停止します。
* @default 0
* @type switch
*/
/*~struct~EnemyApngRecord:ja
*
* @param FileName
* @text ファイル名
* @desc 追加するAPNGのファイル名です。
* @default
* @require 1
* @dir img/enemies/
* @type file
*
* @param Gif
* @text GIFファイル
* @desc 対象がGIFファイルの場合はONにしてください。ファイル名は拡張子なしのファイル名を指定してください。
* @default false
* @type boolean
*
* @param CachePolicy
* @text キャッシュ方針
* @desc 画像のキャッシュ方針です。大量にキャッシュするとメモリ使用量に影響が出る場合があります。
* @default 0
* @type select
* @option キャッシュしない
* @value 0
* @option 初回表示時にキャッシュ
* @value 1
* @option ゲーム起動時にキャッシュ
* @value 2
*
* @param LoopTimes
* @text ループ回数
* @desc アニメーションのループ回数です。0を指定するとデフォルト設定に従います。
* @default 0
* @type number
*
* @param StopSwitch
* @text 停止スイッチ
* @desc 指定した番号スイッチがONのときアニメーションが停止します。
* @default 0
* @type switch
*/
/*~struct~SideEnemyApngRecord:ja
*
* @param FileName
* @text ファイル名
* @desc 追加するAPNGのファイル名です。
* @default
* @require 1
* @dir img/sv_enemies/
* @type file
*
* @param Gif
* @text GIFファイル
* @desc 対象がGIFファイルの場合はONにしてください。ファイル名は拡張子なしのファイル名を指定してください。
* @default false
* @type boolean
*
* @param CachePolicy
* @text キャッシュ方針
* @desc 画像のキャッシュ方針です。大量にキャッシュするとメモリ使用量に影響が出る場合があります。
* @default 0
* @type select
* @option キャッシュしない
* @value 0
* @option 初回表示時にキャッシュ
* @value 1
* @option ゲーム起動時にキャッシュ
* @value 2
*
* @param LoopTimes
* @text ループ回数
* @desc アニメーションのループ回数です。0を指定するとデフォルト設定に従います。
* @default 0
* @type number
*
* @param StopSwitch
* @text 停止スイッチ
* @desc 指定した番号スイッチがONのときアニメーションが停止します。
* @default 0
* @type switch
*/
/*~struct~SceneApngRecord:
*
* @param SceneName
* @desc Target Scene
* @type select
* @default Scene_Title
* @option Scene_Title
* @option Scene_Gameover
* @option Scene_Battle
* @option Scene_Menu
* @option Scene_Item
* @option Scene_Skill
* @option Scene_Equip
* @option Scene_Status
* @option Scene_Options
* @option Scene_Save
* @option Scene_Load
* @option Scene_End
* @option Scene_Shop
* @option Scene_Name
* @option Scene_Debug
* @option Scene_SoundTest
* @option Scene_Glossary
*
* @param FileName
* @desc File name of apng
* @default
* @require 1
* @dir img/system/
* @type file
*
* @param Gif
* @text
* @desc
* @default false
* @type boolean
*
* @param CachePolicy
* @desc Cache policy
* @default 0
* @type select
* @option None
* @value 0
* @option Cache on first display
* @value 1
* @option Cache at game start
* @value 2
*
* @param X
* @desc X of apng
* @default 0
* @type number
*
* @param Y
* @desc Y of apng
* @default 0
* @type number
*
* @param Origin
* @desc Origin of apng
* @default 0
* @type select
* @option Upper left
* @value 0
* @option Center
* @value 1
*
* @param Priority
* @desc Priority of apng
* @default 0
* @type select
* @option Front
* @value 0
* @option Under window
* @value 1
* @option Back
* @value 2
*
* @param Switch
* @desc Displayed only when the specified switch is ON
* @default 0
* @type switch
*
* @param LoopTimes
* @desc The number of animation loops. Specifying 0 follows the default setting.
* @default 0
* @type number
*
* @param StopSwitch
* @desc The animation stops when the specified number switch is turned on.
* @default 0
* @type switch
*/
/*~struct~PictureApngRecord:
*
* @param FileName
* @desc File name of apng
* @default
* @require 1
* @dir img/pictures/
* @type file
*
* @param Gif
* @text
* @desc
* @default false
* @type boolean
*
* @param CachePolicy
* @desc Cache policy
* @default 0
* @type select
* @option None
* @value 0
* @option Cache on first display
* @value 1
* @option Cache at game start
* @value 2
*
* @param LoopTimes
* @desc The number of animation loops. Specifying 0 follows the default setting.
* @default 0
* @type number
*
* @param StopSwitch
* @desc The animation stops when the specified number switch is turned on.
* @default 0
* @type switch
*/
/*~struct~EnemyApngRecord:
*
* @param FileName
* @desc File name of apng
* @default
* @require 1
* @dir img/enemies/
* @type file
*
* @param Gif
* @text
* @desc
* @default false
* @type boolean
*
* @param CachePolicy
* @desc Cache policy
* @default 0
* @type select
* @option None
* @value 0
* @option Cache on first display
* @value 1
* @option Cache at game start
* @value 2
*
* @param LoopTimes
* @desc The number of animation loops. Specifying 0 follows the default setting.
* @default 0
* @type number
*
* @param StopSwitch
* @desc The animation stops when the specified number switch is turned on.
* @default 0
* @type switch
*/
/*~struct~SideEnemyApngRecord:
*
* @param FileName
* @desc File name of apng
* @default
* @require 1
* @dir img/sv_enemies/
* @type file
*
* @param Gif
* @text
* @desc
* @default false
* @type boolean
*
* @param CachePolicy
* @desc Cache policy
* @default 0
* @type select
* @option None
* @value 0
* @option Cache on first display
* @value 1
* @option Cache at game start
* @value 2
*
* @param LoopTimes
* @desc The number of animation loops. Specifying 0 follows the default setting.
* @default 0
* @type number
*
* @param StopSwitch
* @desc The animation stops when the specified number switch is turned on.
* @default 0
* @type switch
*/
(function() {
'use strict';
const script = document.currentScript;
const param = PluginManagerEx.createParameter(script);
/**
* ApngLoader
* APNGもしくはGIF画像を読み込んで保持します。
*/
class ApngLoader {
constructor(folder, paramList) {
this._folder = folder;
this._fileHash = {};
this._cachePolicy = {};
this._options = {};
this._paramList = paramList;
if (this._paramList && this._paramList.length > 0) {
this.addAllImage();
}
this._spriteCache = {};
}
addAllImage() {
const option = this.getLoadOption();
this._paramList.forEach(function(item) {
this.addImage(item, option);
}, this);
PIXI.Loader.shared.onComplete.add(this.cacheStartup.bind(this));
ApngLoader.startLoading();
}
addImage(item, option) {
const name = String(item.FileName) || '';
const ext = this.findExt(item);
const path = name.match(/http:/) ? name : `img/${this._folder}/${name}.${ext}`;
if (!this._fileHash.hasOwnProperty(name)) {
this._fileHash[name] = ApngLoader.convertDecryptExt(path);
this._cachePolicy[name] = item.CachePolicy;
this._options[name] = item;
PIXI.Loader.shared.add(path, option);
}
}
findExt(item) {
if (item.Gif) {
return 'gif'
} else {
return Utils.hasEncryptedImages() ? 'png_' : 'png';
}
};
getLoadOption() {
return {
loadType : PIXI.LoaderResource.LOAD_TYPE.XHR,
xhrType : PIXI.LoaderResource.XHR_RESPONSE_TYPE.BUFFER,
crossOrigin: ''
}
}
createSprite(name) {
if (!this.isApng(name)) {
return null;
}
if (this._isNeedCache(name)) {
if (this._spriteCache[name]) {
return this._spriteCache[name];
}
const sprite = this._createPixiApngAndGif(name);
this._spriteCache[name] = sprite;
return sprite;
} else {
return this._createPixiApngAndGif(name);
}
}
_createPixiApngAndGif(name) {
const pixiApng = new PixiApngAndGif(this._fileHash[name], ApngLoader._resource);
const loopCount = this._options[name].LoopTimes || param.DefaultLoopTimes;
if (loopCount > 0) {
pixiApng.play(loopCount);
}
const sprite = pixiApng.sprite;
sprite.pixiApng = pixiApng;
sprite.pixiApngOption = this._options[name];
if (param.NoSmooth) {
pixiApng.textures.forEach(texture => texture.baseTexture.scaleMode = PIXI.SCALE_MODES.NEAREST);
}
return sprite;
}
_isNeedCache(name) {
return this._cachePolicy[name] > 0;
}
isApng(name) {
return !!this._fileHash[name];
}
cacheStartup() {
Object.keys(this._cachePolicy).forEach(function(name) {
if (this._cachePolicy[name] === 2) {
this.createSprite(name)
}
}, this);
}
static startLoading() {
this._loading = true;
};
static onLoadResource(progress, resource) {
this._resource = resource;
Object.keys(this._resource).forEach(function(key) {
if (this._resource[key].extension === 'png_') {
ApngLoader.decryptResource(key);
}
}, this);
}
static decryptResource(key) {
const resource = this._resource[key];
resource.data = Utils.decryptArrayBuffer(resource.data);
const newKey = ApngLoader.convertDecryptExt(key);
resource.name = newKey;
resource.url = newKey;
resource.extension = 'png';
this._resource[newKey] = resource;
delete this._resource[key];
};
static isReady() {
return !!this._resource || !this._loading;
}
static convertDecryptExt(key) {
return key.replace(/\.png_$/, '.png');
}
}
ApngLoader._resource = null;
const _Scene_Boot_isReady = Scene_Boot.prototype.isReady;
Scene_Boot.prototype.isReady = function() {
const result = _Scene_Boot_isReady.apply(this, arguments);
if (result) {
SceneManager.setupApngLoaderIfNeed();
}
return result && ApngLoader.isReady();
};
const _Scene_Base_create = Scene_Base.prototype.create;
Scene_Base.prototype.create = function() {
_Scene_Base_create.apply(this, arguments);
this.createSceneApng();
};
Scene_Base.prototype.createSceneApng = function() {
this._apngList = this.findSceneApngList().map(function(item) {
return new SpriteSceneApng(item);
}, this);
};
const _Scene_Base_terminate = Scene_Base.prototype.terminate;
Scene_Base.prototype.terminate = function() {
_Scene_Base_terminate.apply(this, arguments);
this.destroySceneApng();
if (this._spriteset) {
this._spriteset.destroyApngPicture();
}
};
Scene_Base.prototype.destroySceneApng = function() {
this._apngList.forEach(function(sprite) {
sprite.destroyApngIfNeed();
})
};
const _Scene_Base_start = Scene_Base.prototype.start;
Scene_Base.prototype.start = function() {
_Scene_Base_start.apply(this, arguments);
this.setApngPriority();
};
Scene_Base.prototype.setApngPriority = function() {
let windowLayerIndex = this._windowLayer ? this.getChildIndex(this._windowLayer) : 0;
this._apngList.forEach(function(sprite) {
switch (sprite.getPriority()) {
case 0:
this.addChild(sprite);
break;
case 1:
this.addChildAt(sprite, windowLayerIndex);
windowLayerIndex++;
break;
default:
this.addChildAt(sprite, 0);
}
}, this);
};
Scene_Base.prototype.findSceneApngList = function() {
const currentSceneName = PluginManagerEx.findClassName(this);
return (param.SceneApngList || []).filter(function(data) {
return data.SceneName === currentSceneName;
}, this);
};
Spriteset_Base.prototype.destroyApngPicture = function() {
this.destroyApngPictureContainer(this._pictureContainer);
// for PicturePriorityCustomize.js
this.destroyApngPictureContainer(this._pictureContainerLower);
this.destroyApngPictureContainer(this._pictureContainerMiddle);
this.destroyApngPictureContainer(this._pictureContainerUpper);
};
Spriteset_Base.prototype.destroyApngPictureContainer = function(container) {
if (!container) {
return;
}
container.children.forEach(function(sprite) {
if (sprite.destroyApngIfNeed) {
sprite.destroyApngIfNeed();
}
});
};
Spriteset_Battle.prototype.destroyApngPicture = function() {
Spriteset_Base.prototype.destroyApngPicture.call(this);
this._enemySprites.forEach(function(sprite) {
sprite.destroyApngIfNeed();
});
};
/**
* SceneManager
* APNGのローダを管理します。
*/
SceneManager.setupApngLoaderIfNeed = function() {
if (this._apngLoaderPicture) {
return;
}
PIXI.Loader.shared.onComplete.add(ApngLoader.onLoadResource.bind(ApngLoader));
this._apngLoaderPicture = new ApngLoader('pictures', param.PictureList);
this._apngLoaderEnemy = new ApngLoader('enemies', param.EnemyList);
this._apngLoaderSideEnemy = new ApngLoader('sv_enemies', param.SideEnemyList);
this._apngLoaderSystem = new ApngLoader('system', param.SceneApngList);
PIXI.Loader.shared.load();
};
SceneManager.tryLoadApngPicture = function(name) {
return this._apngLoaderPicture.createSprite(name);
};
SceneManager.tryLoadApngEnemy = function(name) {
return this._apngLoaderEnemy.createSprite(name);
};
SceneManager.tryLoadApngSideEnemy = function(name) {
return this._apngLoaderSideEnemy.createSprite(name);
};
SceneManager.tryLoadApngSystem = function(name) {
return this._apngLoaderSystem.createSprite(name);
};
/**
* Sprite
* APNGの読み込み処理を追加します。
*/
Sprite.prototype.addApngChild = function(name) {
if (this._apngSprite) {
this.destroyApngIfNeed();
}
this._apngSprite = this.loadApngSprite(name);
if (this._apngSprite) {
if (this.isApngCache()) {
this._apngSprite.pixiApng.jumpToFrame(0);
this._apngSprite.pixiApng.play();
}
this.addChild(this._apngSprite);
const frame = this._apngSprite.pixiApng.textures[0]._frame;
this.bitmap = new Bitmap(frame.width, frame.height);
this.updateApngAnchor();
this.updateApngBlendMode();
}
this._apngLoopCount = 1;
this._apngLoopFrame = 0;
};
Sprite.prototype.destroyApngIfNeed = function() {
if (this._apngSprite) {
if (!this.isApngCache()) {
this.destroyApng();
} else {
this.removeApng();
}
}
};
Sprite.prototype.destroyApng = function() {
const pixiApng = this._apngSprite.pixiApng;
if (pixiApng) {
pixiApng.textures.forEach(function(texture) {
texture.baseTexture.destroy();
texture.destroy();
});
pixiApng.stop();
}
this.removeApng();
};
Sprite.prototype.removeApng = function() {
this.removeChild(this._apngSprite);
this._apngSprite = null;
};
Sprite.prototype.isApngCache = function() {
return this._apngSprite.pixiApngOption.CachePolicy !== 0;
};
Sprite.prototype.loadApngSprite = function() {
return null;
};
Sprite.prototype.updateApngAnchor = function() {
if (this._apngSprite) {
this._apngSprite.anchor.x = this.anchor.x;
this._apngSprite.anchor.y = this.anchor.y;
}
};
Sprite.prototype.updateApngBlendMode = function() {
if (this._apngSprite) {
this._apngSprite.blendMode = this.blendMode;
}