-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPHO_RandomTitleScreen.js
635 lines (635 loc) · 23.1 KB
/
APHO_RandomTitleScreen.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
//==========================================
// APHO_RandomTitleScreen.js
//==========================================
/*:
* @title Random Title Screen
* @author Apho
* @plugindesc v1.0 Allows for customising and randomising various aspects of the Title Screen
*
* @param UseTitle
* @text Use Title?
* @type boolean
* @desc Use the title features provided by this plugin?
* @default true
*
* @param TitleList
* @parent UseTitle
* @text Title List
* @type string[]
* @desc Pool of strings that will be used for the title.
*
* @param TitleY
* @parent UseTitle
* @text Title y position
* @type string
* @desc Y position of the title. This is an eval.
(Default: Graphics.height / 4)
* @default Graphics.height / (3.5 + Math.random())
*
* @param TitleFontSize
* @parent UseTitle
* @text Title Font Size
* @type string
* @desc Font size of the title. This is an eval. (Default: 72)
* @default 67 + Math.randomInt(11)
*
* @param TitleFontOutlineWidth
* @parent UseTitle
* @text Title Font Outline Width
* @type string
* @desc Outline width of the title. This is an eval. (Default: 8)
* @default 7 + Math.randomInt(3)
*
* @param TitleFontColourList
* @parent UseTitle
* @text Title Font Colour List
* @type string[]
* @require 1
* @desc Pool of colours that will be used for the title.
* @default ["#FFFFFF", "#FFF0F5", "#F0FFF0", "#F0FFFF"]
*
* @param TitleOutlineColourList
* @parent UseTitle
* @text Title Outline Colour List
* @type string[]
* @require 1
* @desc Pool of colours that will be used for the title's outline.
* @default ["'black'", "#36454F"]
*
* @param TitleFontList
* @parent UseTitle
* @text Title Font List
* @type string[]
* @require 1
* @desc Pool of fonts that will be used for the title. This will require another plugin to preload fonts other than GameFont.
* @default ["GameFont"]
*
* @param UseSubtitle
* @text Use Subtitle?
* @type boolean
* @desc Add a subtitle below your title?
* @default false
*
* @param SubtitleList
* @parent UseSubtitle
* @text Subtitle List
* @type string[]
* @desc Pool of strings that will be used for the subtitle.
*
* @param SubtitleSpacing
* @parent UseSubtitle
* @text Title-subtitle spacing
* @type string
* @desc The spacing between the subtitle and title.
* @default -5 - Math.randomInt(5)
*
* @param SubtitleFontSize
* @parent UseSubtitle
* @text Subtitle Font Size
* @type string
* @desc Font size of the subtitle. This is an eval. For title size, use this._gameTitleSprite.bitmap.fontSize
* @default Math.round(this._gameTitleSprite.bitmap.fontSize * (0.45 + Math.random() * 0.1))
*
* @param SubtitleFontOutlineWidth
* @parent UseSubtitle
* @text Subtitle Font Outline Width
* @type string
* @desc Outline width of the subtitle. This is an eval. For title outline width, use this._gameTitleSprite.bitmap.outlineWidth
* @default 4 + Math.randomInt(3)
*
* @param UseTitleFontColour
* @parent UseSubtitle
* @text Use Title's Font Colour?
* @type boolean
* @desc Use the same font colour as the title? Otherwise, draw from below pool.
* @default false
*
* @param SubtitleFontColourList
* @parent UseSubtitle
* @text Subtitle Font Colour List
* @type string[]
* @require 1
* @desc Pool of colours that will be used for the subtitle.
* @default ["#FFFFFF", "#FFF0F5", "#F0FFF0", "#F0FFFF"]
*
* @param UseTitleOutlineColour
* @parent UseSubtitle
* @text Use Title's Outline Colour?
* @type boolean
* @desc Use the same outline colour as the title? Otherwise, draw from below pool.
* @default false
*
* @param SubtitleOutlineColourList
* @parent UseSubtitle
* @text Subtitle Outline Colour List
* @type string[]
* @require 1
* @desc Pool of colours that will be used for the subtitle's outline.
* @default ["'black'", "#36454F"]
*
* @param UseTitleFont
* @parent UseSubtitle
* @text Use Title's Font?
* @type boolean
* @desc Use the same font as the title? Otherwise, draw from below pool.
* @default false
*
* @param SubtitleFontList
* @parent UseSubtitle
* @text Subtitle Font List
* @type string[]
* @require 1
* @desc Pool of fonts that will be used for the subtitle. This will require another plugin to preload fonts other than GameFont.
* @default ["GameFont"]
*
* @param BGTitles1List
* @text Titles1 List (Background)
* @type file[]
* @dir img/titles1
* @desc Pool of title1 images for the title screen. This will be drawn in the background.
*
* @param BGTitles1HueMin
* @parent BGTitles1List
* @text Minimum hue
* @type number
* @desc Minimum hue adjustment for the title1 background image.
* @min -360
* @default -15
*
* @param BGTitles1HueMax
* @parent BGTitles1List
* @text Maximum hue
* @type number
* @desc Maximum hue adjustment for the title1 background image.
* @min -360
* @default 15
*
* @param BGTitles1RerollFreq
* @parent BGTitles1List
* @text Reroll Frequency
* @type select
* @option Once only
* @value 0
* @option After game
* @value 1
* @option Always
* @value 2
* @desc How often should titles1 (background) be rerolled?
* @default 2
*
* @param BGTitles2List
* @text Titles2 List (Background)
* @type file[]
* @dir img/titles2
* @desc Pool of title2 images for the title screen. This will be drawn in the background.
*
* @param BGTitles2HueMin
* @parent BGTitles2List
* @text Minimum hue
* @type number
* @desc Minimum hue adjustment for the title2 image.
* @min -360
* @default -180
*
* @param BGTitles2HueMax
* @parent BGTitles2List
* @text Maximum hue
* @type number
* @desc Maximum hue adjustment for the title2 image.
* @min -360
* @default 180
*
* @param BGTitles2RerollFreq
* @parent BGTitles2List
* @text Reroll Frequency
* @type select
* @option Once only
* @value 0
* @option After game
* @value 1
* @option Always
* @value 2
* @desc How often should titles2 (background) be rerolled?
* @default 2
*
* @param FGTitles2List
* @text Titles2 List (Foreground)
* @type file[]
* @dir img/titles2
* @desc Pool of title2 images for the title screen. This will be drawn in the foreground.
*
* @param FGTitles2HueMin
* @parent FGTitles2List
* @text Minimum hue
* @type number
* @desc Minimum hue adjustment for the title2 image.
* @min -360
* @default -180
*
* @param FGTitles2HueMax
* @parent FGTitles2List
* @text Maximum hue
* @type number
* @desc Maximum hue adjustment for the title2 image.
* @min -360
* @default 180
*
* @param FGTitles2RerollFreq
* @parent FGTitles2List
* @text Reroll Frequency
* @type select
* @option Once only
* @value 0
* @option After game
* @value 1
* @option Always
* @value 2
* @desc How often should titles2 (foreground) be rerolled?
* @default 2
*
* @param TitleBGMList
* @text Title BGM List
* @type file[]
* @dir audio/bgm
* @desc Pool of BGMs for the title screen.
*
* @param TitleBGMVolume
* @parent TitleBGMList
* @text Volume
* @type number
* @desc Volume of the title BGM.
* @default 90
*
* @param TitleBGMPitchMin
* @parent TitleBGMList
* @text Minimum pitch
* @type number
* @desc Minimum pitch of the title BGM.
* @default 100
*
* @param TitleBGMPitchMax
* @parent TitleBGMList
* @text Maximum pitch
* @type number
* @desc Maximum pitch of the title BGM.
* @default 110
*
* @param TitleBGMRerollFreq
* @parent TitleBGMList
* @text Reroll Frequency
* @type select
* @option Once only
* @value 0
* @option After game
* @value 1
* @option Always
* @value 2
* @desc How often should the BGM be rerolled?
* @default 1
*
* @param TitleBGSList
* @text Title BGS List
* @type file[]
* @dir audio/bgs
* @desc Pool of BGSs for the title screen.
*
* @param TitleBGSVolume
* @parent TitleBGSList
* @text Volume
* @type number
* @desc Volume of the title BGS.
* @default 30
*
* @param TitleBGSPitchMin
* @parent TitleBGSList
* @text Minimum pitch
* @type number
* @desc Minimum pitch of the title BGS.
* @default 100
*
* @param TitleBGSPitchMax
* @parent TitleBGSList
* @text Maximum pitch
* @type number
* @desc Maximum pitch of the title BGS.
* @default 110
*
* @param TitleBGSRerollFreq
* @parent TitleBGSList
* @text Reroll Frequency
* @type select
* @option Once only
* @value 0
* @option After game
* @value 1
* @option Always
* @value 2
* @desc How often should the BGS be rerolled?
* @default 2
*
* @help
* Adjust the parameters as you see fit.
* Most of them should be pretty self-explanatory, but there are a few new
* features added by this plugin.
*
* Subtitle
* Allows for an optional subtitle to be placed beneath your title.
* To use this, you must have "Draw Game Title" enabled.
* The subtitle may either copy the title's colours, or draw from its own pool.
*
* Hue min/max
* Allows for setting a minimum and maximum hue adjustment that will be applied
* at random to the title1/title2 image.
*
* Titles2 (Foreground)
* By default, MV draws titles1 and titles2 images on the background layer.
* This allows you to draw another image from titles2 on the foreground layer, in
* addition to the default background titles2 image.
*
* Title BGS
* Allows you to include an optional BGS to play alongside the title BGM.
*
* Pitch min/max
* Allows for setting a minimum and maximum pitch that will be applied at random
* to the BGM/BGS
*
* Reroll Frequency
* This allows you to determine how often the images or BGM/BGS will be rerolled.
* Once only - Roll once, upon booting up the game.
* (restarting the game via F5 also counts as booting up the game)
* After game - Reroll after entering and exiting a playthrough
* (i.e. game over / game end / return to title)
* Always - Reroll every time the title screen is entered
* (i.e. after adjusting options from the title screen, or if you have custom
* scenes accessible from the title)
*
* TERMS OF USE
* - Free for commercial and non-commercial use, as long as I get a free copy
* of the game.
* - Edits allowed for personal use.
* - Do not repost or claim as your own, even if edited.
*
* VERSION HISTORY
* v1.0 - 2023/7/8 - Initial release.
*/
(function(){
var parameters = PluginManager.parameters('APHO_RandomTitleScreen');
var TitleOutlineColourList = JSON.parse(parameters['TitleOutlineColourList']);
var TitleFontColourList = JSON.parse(parameters['TitleFontColourList']);
var TitleFontList = JSON.parse(parameters['TitleFontList']);
var UseTitle = JSON.parse(parameters['UseTitle']);
if(UseTitle)
{
if(parameters['TitleList'] != '' && parameters['TitleList'] != '[]')var TitleList = JSON.parse(parameters['TitleList']);
}
var UseSubtitle = JSON.parse(parameters['UseSubtitle']);
if(UseSubtitle)
{
var UseTitleFontColour = JSON.parse(parameters['UseTitleFontColour']);
if(!UseTitleFontColour)var SubtitleFontColourList = JSON.parse(parameters['SubtitleFontColourList']);
var UseTitleOutlineColour = JSON.parse(parameters['UseTitleOutlineColour']);
if(!UseTitleOutlineColour)var SubtitleOutlineColourList = JSON.parse(parameters['SubtitleOutlineColourList']);
var UseTitleFont = JSON.parse(parameters['UseTitleFont']);
if(!UseTitleFont)var SubtitleFontList = JSON.parse(parameters['SubtitleFontList']);
var SubtitleList = JSON.parse(parameters['SubtitleList']);
}
if(UseTitle || UseSubtitle)
{
Scene_Title.prototype.drawGameTitle = function() {
var x = 20;
var maxWidth = Graphics.width - x * 2;
if(UseTitle)
{
var y = Function("return " + parameters['TitleY'])();
var text = TitleList ? TitleList[Math.randomInt(TitleList.length)] : $dataSystem.gameTitle;
this._gameTitleSprite.bitmap.textColor = TitleFontColourList[Math.randomInt(TitleFontColourList.length)];
this._gameTitleSprite.bitmap.outlineColor = TitleOutlineColourList[Math.randomInt(TitleOutlineColourList.length)];
this._gameTitleSprite.bitmap.outlineWidth = eval(parameters['TitleFontOutlineWidth']);
this._gameTitleSprite.bitmap.fontSize = eval(parameters['TitleFontSize']);
this._gameTitleSprite.bitmap.fontFace = TitleFontList[Math.randomInt(TitleFontList.length)];
}else
{
var y = Graphics.height / 4;
var text = $dataSystem.gameTitle;
this._gameTitleSprite.bitmap.outlineColor = 'black';
this._gameTitleSprite.bitmap.outlineWidth = 8;
this._gameTitleSprite.bitmap.fontSize = 72;
this._gameTitleSprite.bitmap.drawText(text, x, y, maxWidth, 48, 'center');
}
this._gameTitleSprite.bitmap.drawText(text, x, y, maxWidth, 48, 'center');
if(UseSubtitle)
{
this._Subtitle = new Sprite(new Bitmap(Graphics.width, Graphics.height))
this.addChild(this._Subtitle);
this._Subtitle.bitmap.fontSize = eval(parameters['SubtitleFontSize']);
this._Subtitle.bitmap.outlineWidth = eval(parameters['SubtitleFontOutlineWidth']);
this._Subtitle.bitmap.textColor = UseTitleFontColour ? this._gameTitleSprite.bitmap.textColor : SubtitleFontColourList[Math.randomInt(SubtitleFontColourList.length)];
this._Subtitle.bitmap.outlineColor = UseTitleOutlineColour ? this._gameTitleSprite.bitmap.outlineColor : SubtitleOutlineColourList[Math.randomInt(SubtitleOutlineColourList.length)];
this._Subtitle.bitmap.fontFace = UseTitleFont ? this._gameTitleSprite.bitmap.fontFace : SubtitleFontList[Math.randomInt(SubtitleFontList.length)];
let SubtitleY = y + this._gameTitleSprite.bitmap.fontSize + Function("return " + parameters['SubtitleSpacing'])();
this._Subtitle.bitmap.drawText(SubtitleList[Math.randomInt(SubtitleList.length)], x, SubtitleY, maxWidth, 48,'center');
}
};
}
if(parameters['BGTitles1List'] != '' && parameters['BGTitles1List'] != '[]')
{
var BGTitles1List = JSON.parse(parameters['BGTitles1List']);
var BGTitles1HueRange = Math.max(parseInt(parameters['BGTitles1HueMax']) - parseInt(parameters['BGTitles1HueMin']), 0);
var BGTitles1Hue, BGTitles1;
function RerollBGTitles1(){
BGTitles1Hue = parseInt(parameters['BGTitles1HueMin']) + Math.randomInt(BGTitles1HueRange + 1);
BGTitles1 = BGTitles1List[Math.randomInt(BGTitles1List.length)];
}
RerollBGTitles1();
var BGTitles1RerollFreq = parseInt(parameters['BGTitles1RerollFreq']);
if(BGTitles1RerollFreq == 1)
{
const GameEnd_commandToTitle = Scene_GameEnd.prototype.commandToTitle;
Scene_GameEnd.prototype.commandToTitle = function(){
RerollBGTitles1();
GameEnd_commandToTitle.call(this);
}
const Scene_Gameover_gotoTitle = Scene_Gameover.prototype.gotoTitle;
Scene_Gameover.prototype.gotoTitle = function(){
RerollBGTitles1();
Scene_Gameover_gotoTitle.call(this);
}
const Game_Interpreter_command354 = Game_Interpreter.prototype.command354;
Game_Interpreter.prototype.command354 = function(){
RerollBGTitles1();
Game_Interpreter_command354.call(this);
}
}
}
if(parameters['BGTitles2List'] != '' && parameters['BGTitles2List'] != '[]')
{
var BGTitles2List = JSON.parse(parameters['BGTitles2List']);
var BGTitles2HueRange = Math.max(parseInt(parameters['BGTitles2HueMax']) - parseInt(parameters['BGTitles2HueMin']), 0);
var BGTitles2Hue, BGTitles2;
function RerollBGTitles2(){
BGTitles2Hue = parseInt(parameters['BGTitles2HueMin']) + Math.randomInt(BGTitles2HueRange + 1);
BGTitles2 = BGTitles2List[Math.randomInt(BGTitles2List.length)];
}
RerollBGTitles2();
var BGTitles2RerollFreq = parseInt(parameters['BGTitles2RerollFreq']);
if(BGTitles2RerollFreq == 1)
{
const GameEnd_commandToTitle = Scene_GameEnd.prototype.commandToTitle;
Scene_GameEnd.prototype.commandToTitle = function(){
RerollBGTitles2();
GameEnd_commandToTitle.call(this);
}
const Scene_Gameover_gotoTitle = Scene_Gameover.prototype.gotoTitle;
Scene_Gameover.prototype.gotoTitle = function(){
RerollBGTitles2();
Scene_Gameover_gotoTitle.call(this);
}
const Game_Interpreter_command354 = Game_Interpreter.prototype.command354;
Game_Interpreter.prototype.command354 = function(){
RerollBGTitles2();
Game_Interpreter_command354.call(this);
}
}
}
Scene_Title.prototype.createBackground = function() {
if(BGTitles1)
{
if(BGTitles1RerollFreq == 2)RerollBGTitles1();
this._backSprite1 = new Sprite(ImageManager.loadBitmap('img/titles1/', BGTitles1, BGTitles1Hue, false));
}else
{
this._backSprite1 = new Sprite(ImageManager.loadTitle1($dataSystem.title1Name));
}
if(BGTitles2)
{
if(BGTitles2RerollFreq == 2)RerollBGTitles2();
this._backSprite2 = new Sprite(ImageManager.loadBitmap('img/titles2/', BGTitles2, BGTitles2Hue, false));
}else
{
this._backSprite2 = new Sprite(ImageManager.loadTitle2($dataSystem.title2Name));
}
this.addChild(this._backSprite1);
this.addChild(this._backSprite2);
};
if(parameters['FGTitles2List'] != '' && parameters['FGTitles2List'] != '[]')
{
var FGTitles2List = JSON.parse(parameters['FGTitles2List']);
var FGTitles2HueRange = Math.max(parseInt(parameters['FGTitles2HueMax']) - parseInt(parameters['FGTitles2HueMin']), 0);
var FGTitles2Hue, FGTitles2;
function RerollFGTitles2(){
FGTitles2Hue = parseInt(parameters['FGTitles2HueMin']) + Math.randomInt(FGTitles2HueRange + 1);
FGTitles2 = FGTitles2List[Math.randomInt(FGTitles2List.length)];
}
RerollFGTitles2();
var FGTitles2RerollFreq = parseInt(parameters['FGTitles2RerollFreq']);
if(FGTitles2RerollFreq == 1)
{
const GameEnd_commandToTitle = Scene_GameEnd.prototype.commandToTitle;
Scene_GameEnd.prototype.commandToTitle = function(){
RerollFGTitles2();
GameEnd_commandToTitle.call(this);
}
const Scene_Gameover_gotoTitle = Scene_Gameover.prototype.gotoTitle;
Scene_Gameover.prototype.gotoTitle = function(){
RerollFGTitles2();
Scene_Gameover_gotoTitle.call(this);
}
const Game_Interpreter_command354 = Game_Interpreter.prototype.command354;
Game_Interpreter.prototype.command354 = function(){
RerollFGTitles2();
Game_Interpreter_command354.call(this);
}
}
const Scene_Title_createForeground = Scene_Title.prototype.createForeground;
Scene_Title.prototype.createForeground = function(){
if(FGTitles2RerollFreq == 2)RerollFGTitles2();
this._backSprite = new Sprite(ImageManager.loadBitmap('img/titles2/', FGTitles2, FGTitles2Hue, false));
this.addChild(this._backSprite);
Scene_Title_createForeground.call(this);
}
}
if(parameters['TitleBGMList'] != '' && parameters['TitleBGMList'] != '[]')
{
var TitleBGMList = JSON.parse(parameters['TitleBGMList']);
var TitleBGMVolume = parseInt(parameters['TitleBGMVolume']);
var TitleBGMPitchRange = Math.max(parseInt(parameters['TitleBGMPitchMax']) - parseInt(parameters['TitleBGMPitchMin']), 0);
var TitleBGM;
function RerollTitleBGM(){
let Pitch = parseInt(parameters['TitleBGMPitchMin']) + Math.randomInt(TitleBGMPitchRange + 1);
TitleBGM =
{
name: TitleBGMList[Math.randomInt(TitleBGMList.length)],
volume: TitleBGMVolume,
pitch: Pitch,
pan: 0
}
}
RerollTitleBGM();
var TitleBGMRerollFreq = parseInt(parameters['TitleBGMRerollFreq']);
if(TitleBGMRerollFreq == 1)
{
const GameEnd_commandToTitle = Scene_GameEnd.prototype.commandToTitle;
Scene_GameEnd.prototype.commandToTitle = function(){
RerollTitleBGM();
GameEnd_commandToTitle.call(this);
}
const Scene_Gameover_gotoTitle = Scene_Gameover.prototype.gotoTitle;
Scene_Gameover.prototype.gotoTitle = function(){
RerollTitleBGM();
Scene_Gameover_gotoTitle.call(this);
}
const Game_Interpreter_command354 = Game_Interpreter.prototype.command354;
Game_Interpreter.prototype.command354 = function(){
RerollTitleBGM();
Game_Interpreter_command354.call(this);
}
}
}
if(parameters['TitleBGSList'] != '' && parameters['TitleBGSList'] != '[]')
{
var TitleBGSList = JSON.parse(parameters['TitleBGSList']);
var TitleBGSVolume = parseInt(parameters['TitleBGSVolume']);
var TitleBGSPitchRange = Math.max(parseInt(parameters['TitleBGSPitchMax']) - parseInt(parameters['TitleBGSPitchMin']), 0);
var TitleBGS;
function RerollTitleBGS(){
let Pitch = parseInt(parameters['TitleBGSPitchMin']) + Math.randomInt(TitleBGSPitchRange + 1);
TitleBGS =
{
name: TitleBGSList[Math.randomInt(TitleBGSList.length)],
volume: TitleBGSVolume,
pitch: Pitch,
pan: 0
}
}
RerollTitleBGS();
var TitleBGSRerollFreq = parseInt(parameters['TitleBGSRerollFreq']);
if(TitleBGSRerollFreq == 1)
{
const GameEnd_commandToTitle = Scene_GameEnd.prototype.commandToTitle;
Scene_GameEnd.prototype.commandToTitle = function(){
RerollTitleBGS();
GameEnd_commandToTitle.call(this);
}
const Scene_Gameover_gotoTitle = Scene_Gameover.prototype.gotoTitle;
Scene_Gameover.prototype.gotoTitle = function(){
RerollTitleBGS();
Scene_Gameover_gotoTitle.call(this);
}
const Game_Interpreter_command354 = Game_Interpreter.prototype.command354;
Game_Interpreter.prototype.command354 = function(){
RerollTitleBGS();
Game_Interpreter_command354.call(this);
}
}
}
if(TitleBGM || TitleBGS)
{
Scene_Title.prototype.playTitleMusic = function() {
if(TitleBGMRerollFreq == 2)RerollTitleBGM();
if(TitleBGSRerollFreq == 2)RerollTitleBGS();
TitleBGM ? AudioManager.playBgm(TitleBGM) : AudioManager.playBgm($dataSystem.titleBgm);
TitleBGS ? AudioManager.playBgs(TitleBGS) : AudioManager.stopBgs();
AudioManager.stopMe();
};
}
})();