forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CustomizeConfigItem.js
744 lines (690 loc) · 26.5 KB
/
CustomizeConfigItem.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
//=============================================================================
// CustomizeConfigItem.js
// ----------------------------------------------------------------------------
// Copyright (c) 2015 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 2.1.0 2017/12/15 追加項目のデフォルト項目を含めた並び順を自由に設定できる機能を追加
// 項目名称を日本語化
// 2.0.1 2017/10/15 2.0.0の修正によりスイッチ項目を有効にしたときにゲーム開始するとエラーになる問題を修正
// 2.0.0 2017/09/10 ツクールの型指定機能に対応し、各オプション項目を任意の数だけ追加できる機能を追加
// 1.2.3 2017/06/08 1.2.2の修正により起動できなくなっていた問題を修正
// 1.2.2 2017/05/27 競合の可能性のある記述(Objectクラスへのプロパティ追加)をリファクタリング
// 1.2.1 2016/12/08 1.2.0の機能追加以降、デフォルト項目で決定ボタンを押すとエラーになっていた現象を修正
// 1.2.0 2016/12/02 各項目で決定ボタンを押したときに実行されるスクリプトを設定できる機能を追加
// 1.1.1 2016/08/14 スイッチ項目、音量項目の初期値が無効になっていた問題を修正
// 1.1.0 2016/04/29 項目をクリックしたときに項目値が循環するよう修正
// 1.0.0 2016/01/17 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc オプション任意項目作成プラグイン
* @author トリアコンタン
*
* @param 数値項目
* @desc 追加する数値項目のオプション項目情報です。
* @default
* @type struct<NumberData>[]
*
* @param 文字項目
* @desc 追加する文字項目のオプション項目情報です。
* @default
* @type struct<StringData>[]
*
* @param スイッチ項目
* @desc 追加するスイッチ項目のオプション項目情報です。
* @default
* @type struct<BooleanData>[]
*
* @param 音量項目
* @desc 追加する音量項目のオプション項目情報です。
* @default
* @type struct<VolumeData>[]
*
* @help オプション画面に任意の項目を追加します。
* 項目の種類は、以下の四種類があります。
* 不要な項目は値を空に設定してください。
*
* ・スイッチ項目:
* ON/OFFを選択する項目です。指定した番号のスイッチと値が同期されます。
* オプションから値を設定すれば、それがスイッチに反映され、
* スイッチを変更すれば、オプションの値に反映されます。
* さらに、値はセーブデータ間で共有されます。
* 隠しフラグを設定すると、オプション画面に表示されなくなります。
* ゲームを進めないと出現しない項目などに利用できます。
* 隠しフラグはプラグインコマンドから解除できます。
*
* スクリプトは上級者向け項目です。対象にカーソルを合わせて決定ボタンを
* 押下すると指定したJavaScriptを実行できます。
* 主に専用の設定画面などの遷移に使用します。
*
* ・数値項目:
* 数値を選択する項目です。指定した番号の変数と値が同期されます。
* スイッチ項目で指定した内容に加えて、
* 最小値と最大値および一回の入力で変化する値を指定します。
*
* ・音量項目:
* 音量を選択する項目です。BGMボリュームなどと同じ仕様で
* キャラクターごとのボイス音量等に使ってください。
*
* ・文字項目:
* 文字を選択する項目です。指定した文字の配列から項目を選択します。
* 選択した文字のインデックス(開始位置は0)が変数に設定されます。
* 初期値に設定する値もインデックスです。
*
* プラグインコマンド詳細
* イベントコマンド「プラグインコマンド」から実行。
* (パラメータの間は半角スペースで区切る)
*
* CC_UNLOCK or
* オプション任意項目の隠し解除 [項目名]
* 指定した項目の隠しフラグを解除します。
* 使用例:CC_UNLOCK 数値項目1
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
/*~struct~NumberData:
* @param Name
* @text 項目名称
* @desc 項目の名称です。
* @default 数値項目1
*
* @param DefaultValue
* @text 初期値
* @desc 項目の初期値です。
* @default 0
* @type number
*
* @param VariableID
* @text 変数番号
* @desc 項目の設定内容が格納される変数番号です。
* @default 0
* @type variable
*
* @param HiddenFlag
* @text 隠しフラグ
* @desc 項目がデフォルトで隠されるようになります。プラグインコマンドの実行で表示されます。
* @default false
* @type boolean
*
* @param Script
* @text スクリプト
* @desc 項目を決定したときに実行されるスクリプトです。
* @default
*
* @param NumberMin
* @text 最小値
* @desc 項目の最小値です。
* @default 0
* @type number
*
* @param NumberMax
* @text 最大値
* @desc 項目の最大値です。
* @default 100
* @type number
*
* @param NumberStep
* @text 変化値
* @desc 項目を操作したときの数値の変化量です。
* @default 20
* @type number
*
* @param AddPosition
* @text 追加位置
* @desc 項目を追加する位置です。指定した項目の上に追加されます。
* @default
* @type select
* @option 末尾に追加
* @value
* @option 常時ダッシュ
* @value alwaysDash
* @option コマンド記憶
* @value commandRemember
* @option BGM 音量
* @value bgmVolume
* @option BGS 音量
* @value bgsVolume
* @option ME 音量
* @value meVolume
* @option SE 音量
* @value seVolume
*/
/*~struct~BooleanData:
* @param Name
* @text 項目名称
* @desc 項目の名称です。
* @default スイッチ項目1
*
* @param DefaultValue
* @text 初期値
* @desc 項目の初期値です。
* @default false
* @type boolean
*
* @param SwitchID
* @text スイッチ番号
* @desc 項目の設定内容が格納されるスイッチ番号です。
* @default 0
* @type switch
*
* @param HiddenFlag
* @text 隠しフラグ
* @desc 項目がデフォルトで隠されるようになります。プラグインコマンドの実行で表示されます。
* @default false
* @type boolean
*
* @param Script
* @text スクリプト
* @desc 項目を決定したときに実行されるスクリプトです。
* @default
*
* @param AddPosition
* @text 追加位置
* @desc 項目を追加する位置です。指定した項目の上に追加されます。
* @default
* @type select
* @option 末尾に追加
* @value
* @option 常時ダッシュ
* @value alwaysDash
* @option コマンド記憶
* @value commandRemember
* @option BGM 音量
* @value bgmVolume
* @option BGS 音量
* @value bgsVolume
* @option ME 音量
* @value meVolume
* @option SE 音量
* @value seVolume
*/
/*~struct~StringData:
* @param Name
* @text 項目名称
* @desc 項目の名称です。
* @default 文字列項目1
*
* @param DefaultValue
* @text 初期値
* @desc 項目の初期値です。インデックスの数値を指定します。
* @default 0
* @type number
*
* @param VariableID
* @text 変数番号
* @desc 項目の設定内容が格納される変数番号です。
* @default 0
* @type variable
*
* @param HiddenFlag
* @text 隠しフラグ
* @desc 項目がデフォルトで隠されるようになります。プラグインコマンドの実行で表示されます。
* @default false
* @type boolean
*
* @param Script
* @text スクリプト
* @desc 項目を決定したときに実行されるスクリプトです。
* @default
*
* @param StringItems
* @text 内容の配列
* @desc 項目の設定内容の配列です。
* @default
* @type string[]
*
* @param AddPosition
* @text 追加位置
* @desc 項目を追加する位置です。指定した項目の上に追加されます。
* @default
* @type select
* @option 末尾に追加
* @value
* @option 常時ダッシュ
* @value alwaysDash
* @option コマンド記憶
* @value commandRemember
* @option BGM 音量
* @value bgmVolume
* @option BGS 音量
* @value bgsVolume
* @option ME 音量
* @value meVolume
* @option SE 音量
* @value seVolume
*/
/*~struct~VolumeData:
* @param Name
* @text 項目名称
* @desc 項目の名称です。
* @default 音量項目1
*
* @param DefaultValue
* @text 初期値
* @desc 項目の初期値です。
* @default 0
* @type number
*
* @param VariableID
* @text 変数番号
* @desc 項目の設定内容が格納される変数番号です。
* @default 0
* @type variable
*
* @param HiddenFlag
* @text 隠しフラグ
* @desc 項目がデフォルトで隠されるようになります。プラグインコマンドの実行で表示されます。
* @default false
* @type boolean
*
* @param Script
* @text スクリプト
* @desc 項目を決定したときに実行されるスクリプトです。
* @default
*
* @param AddPosition
* @text 追加位置
* @desc 項目を追加する位置です。指定した項目の上に追加されます。
* @default
* @type select
* @option 末尾に追加
* @value
* @option 常時ダッシュ
* @value alwaysDash
* @option コマンド記憶
* @value commandRemember
* @option BGM 音量
* @value bgmVolume
* @option BGS 音量
* @value bgsVolume
* @option ME 音量
* @value meVolume
* @option SE 音量
* @value seVolume
*/
(function() {
'use strict';
var pluginName = 'CustomizeConfigItem';
var getParamString = function(paramNames) {
var value = getParamOther(paramNames);
return value == null ? '' : value;
};
var getParamOther = function(paramNames) {
if (!Array.isArray(paramNames)) paramNames = [paramNames];
for (var i = 0; i < paramNames.length; i++) {
var name = PluginManager.parameters(pluginName)[paramNames[i]];
if (name) return name;
}
return null;
};
var getParamArrayJson = function(paramNames, defaultValue) {
var value = getParamString(paramNames) || null;
try {
value = JSON.parse(value);
if (value === null) {
value = defaultValue;
} else {
value = value.map(function(valueData) {
return JSON.parse(valueData);
});
}
} catch (e) {
alert(`!!!Plugin param is wrong.!!!\nPlugin:${pluginName}.js\nName:[${paramNames}]\nValue:${value}`);
value = defaultValue;
}
return value;
};
var getCommandName = function(command) {
return (command || '').toUpperCase();
};
var getArgNumber = function(arg, min, max) {
if (arguments.length < 2) min = -Infinity;
if (arguments.length < 3) max = Infinity;
return (parseInt(arg) || 0).clamp(min, max);
};
var getArgBoolean = function(arg) {
return (arg || '').toUpperCase() === 'TRUE';
};
var getArgJson = function(arg, defaultValue) {
try {
arg = JSON.parse(arg || null);
if (arg === null) {
arg = defaultValue;
}
} catch (e) {
alert(`!!!Plugin param is wrong.!!!\nPlugin:${pluginName}.js\nValue:${arg}`);
arg = defaultValue;
}
return arg;
};
var iterate = function(that, handler) {
Object.keys(that).forEach(function(key, index) {
handler.call(that, key, that[key], index);
});
};
//=============================================================================
// パラメータの取得と整形
//=============================================================================
var param = {};
param.numberOptions = getParamArrayJson(['NumberOptions', '数値項目'], []);
param.stringOptions = getParamArrayJson(['StringOptions', '文字項目'], []);
param.switchOptions = getParamArrayJson(['SwitchOptions', 'スイッチ項目'], []);
param.volumeOptions = getParamArrayJson(['VolumeOptions', '音量項目'], []);
var localOptionWindowIndex = 0;
//=============================================================================
// Game_Interpreter
// プラグインコマンドを追加定義します。
//=============================================================================
var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
_Game_Interpreter_pluginCommand.call(this, command, args);
this.pluginCommandCustomizeConfigItem(command, args);
};
Game_Interpreter.prototype.pluginCommandCustomizeConfigItem = function(command, args) {
switch (getCommandName(command)) {
case 'CC_UNLOCK' :
case 'オプション任意項目の隠し解除' :
ConfigManager.customParamUnlock(args[0]);
break;
}
};
//=============================================================================
// ConfigManager
// 追加項目の設定値や初期値を管理します。
//=============================================================================
ConfigManager.customParams = null;
ConfigManager.hiddenInfo = {};
ConfigManager._symbolNumber = 'Number';
ConfigManager._symbolBoolean = 'Boolean';
ConfigManager._symbolString = 'String';
ConfigManager._symbolVolume = 'Volume';
ConfigManager.getCustomParams = function() {
if (this.customParams) {
return this.customParams;
}
this.customParams = {};
param.numberOptions.forEach(function(optionItem, index) {
this.makeNumberOption(optionItem, index);
}, this);
param.stringOptions.forEach(function(optionItem, index) {
this.makeStringOption(optionItem, index);
}, this);
param.switchOptions.forEach(function(optionItem, index) {
this.makeSwitchOption(optionItem, index);
}, this);
param.volumeOptions.forEach(function(optionItem, index) {
this.makeVolumeOption(optionItem, index);
}, this);
return this.customParams;
};
ConfigManager.makeNumberOption = function(optionItem, index) {
var data = this.makeCommonOption(optionItem, index, this._symbolNumber);
data.min = getArgNumber(optionItem.NumberMin);
data.max = getArgNumber(optionItem.NumberMax);
data.offset = getArgNumber(optionItem.NumberStep);
this.pushOptionData(data);
};
ConfigManager.makeStringOption = function(optionItem, index) {
var data = this.makeCommonOption(optionItem, index, this._symbolString);
data.values = getArgJson(optionItem.StringItems, ['no item']);
data.min = 0;
data.max = data.values.length - 1;
this.pushOptionData(data);
};
ConfigManager.makeSwitchOption = function(optionItem, index) {
var data = this.makeCommonOption(optionItem, index, this._symbolBoolean);
data.initValue = getArgBoolean(optionItem.DefaultValue);
data.variable = getArgNumber(optionItem.SwitchID);
this.pushOptionData(data);
};
ConfigManager.makeVolumeOption = function(optionItem, index) {
var data = this.makeCommonOption(optionItem, index, this._symbolVolume);
this.pushOptionData(data);
};
ConfigManager.makeCommonOption = function(optionItem, index, type) {
var data = {};
data.symbol = `${type}${index + 1}`;
data.name = optionItem.Name;
data.hidden = getArgBoolean(optionItem.HiddenFlag);
data.script = optionItem.Script;
data.initValue = getArgNumber(optionItem.DefaultValue);
data.variable = getArgNumber(optionItem.VariableID, 0);
data.addPotion = optionItem.AddPosition;
return data;
};
ConfigManager.pushOptionData = function(data) {
this.customParams[data.symbol] = data;
};
var _ConfigManager_makeData = ConfigManager.makeData;
ConfigManager.makeData = function() {
var config = _ConfigManager_makeData.apply(this, arguments);
config.hiddenInfo = {};
iterate(this.getCustomParams(), function(symbol) {
config[symbol] = this[symbol];
config.hiddenInfo[symbol] = this.hiddenInfo[symbol];
}.bind(this));
return config;
};
var _ConfigManager_applyData = ConfigManager.applyData;
ConfigManager.applyData = function(config) {
_ConfigManager_applyData.apply(this, arguments);
iterate(this.getCustomParams(), function(symbol, item) {
if (symbol.contains(this._symbolBoolean)) {
this[symbol] = this.readFlagCustom(config, symbol, item);
} else if (symbol.contains(this._symbolVolume)) {
this[symbol] = this.readVolumeCustom(config, symbol, item);
} else {
this[symbol] = this.readOther(config, symbol, item);
}
this.hiddenInfo[symbol] = (config.hiddenInfo ? config.hiddenInfo[symbol] : item.hidden);
}.bind(this));
};
ConfigManager.customParamUnlock = function(name) {
iterate(this.getCustomParams(), function(symbol, item) {
if (item.name === name) this.hiddenInfo[symbol] = false;
}.bind(this));
this.save();
};
ConfigManager.readOther = function(config, name, item) {
var value = config[name];
if (value !== undefined) {
return Number(value).clamp(item.min, item.max);
} else {
return item.initValue;
}
};
ConfigManager.readFlagCustom = function(config, name, item) {
if (config[name] !== undefined) {
return this.readFlag(config, name);
} else {
return item.initValue;
}
};
ConfigManager.readVolumeCustom = function(config, name, item) {
if (config[name] !== undefined) {
return this.readVolume(config, name);
} else {
return item.initValue;
}
};
ConfigManager.exportCustomParams = function() {
if (!$gameVariables || !$gameSwitches) return;
iterate(this.getCustomParams(), function(symbol, item) {
if (item.variable > 0) {
if (symbol.contains(this._symbolBoolean)) {
$gameSwitches.setValue(item.variable, !!this[symbol]);
} else {
$gameVariables.setValue(item.variable, this[symbol]);
}
}
}.bind(this));
};
ConfigManager.importCustomParams = function() {
if (!$gameVariables || !$gameSwitches) return;
iterate(this.getCustomParams(), function(symbol, item) {
if (item.variable > 0) {
if (symbol.contains(this._symbolBoolean)) {
this[symbol] = $gameSwitches.value(item.variable);
} else if (symbol.contains(this._symbolVolume)) {
this[symbol] = $gameVariables.value(item.variable).clamp(0, 100);
} else {
this[symbol] = $gameVariables.value(item.variable).clamp(item.min, item.max);
}
}
}.bind(this));
};
var _ConfigManager_save = ConfigManager.save;
ConfigManager.save = function() {
_ConfigManager_save.apply(this, arguments);
this.exportCustomParams();
};
//=============================================================================
// Game_Map
// リフレッシュ時にオプション値を同期します。
//=============================================================================
var _Game_Map_refresh = Game_Map.prototype.refresh;
Game_Map.prototype.refresh = function() {
_Game_Map_refresh.apply(this, arguments);
ConfigManager.importCustomParams();
};
//=============================================================================
// DataManager
// セーブ時とロード時にオプション値を同期します。
//=============================================================================
var _DataManager_setupNewGame = DataManager.setupNewGame;
DataManager.setupNewGame = function() {
_DataManager_setupNewGame.apply(this, arguments);
ConfigManager.exportCustomParams();
};
var _DataManager_loadGameWithoutRescue = DataManager.loadGameWithoutRescue;
DataManager.loadGameWithoutRescue = function(savefileId) {
var result = _DataManager_loadGameWithoutRescue.apply(this, arguments);
ConfigManager.exportCustomParams();
return result;
};
//=============================================================================
// Window_Options
// 追加項目を描画します。
//=============================================================================
var _Window_Options_initialize = Window_Options.prototype.initialize;
Window_Options.prototype.initialize = function() {
this._customParams = ConfigManager.getCustomParams();
_Window_Options_initialize.apply(this, arguments);
this.select(localOptionWindowIndex);
localOptionWindowIndex = 0;
};
var _Window_Options_makeCommandList = Window_Options.prototype.makeCommandList;
Window_Options.prototype.makeCommandList = function() {
_Window_Options_makeCommandList.apply(this, arguments);
this.addCustomOptions();
};
Window_Options.prototype.addCustomOptions = function() {
iterate(this._customParams, function(key, item) {
if (!ConfigManager.hiddenInfo[key]) {
this.addCommand(item.name, key);
if (item.addPotion) {
this.shiftCustomOptions(item.addPotion);
}
}
}.bind(this));
};
Window_Options.prototype.shiftCustomOptions = function(addPotion) {
var targetCommand = this._list.filter(function(command) {
return command.symbol === addPotion;
})[0];
if (!targetCommand) {
return;
}
var targetIndex = this._list.indexOf(targetCommand);
var newCommand = this._list.pop();
this._list.splice(targetIndex, 0, newCommand);
};
var _Window_Options_statusText = Window_Options.prototype.statusText;
Window_Options.prototype.statusText = function(index) {
var result = _Window_Options_statusText.apply(this, arguments);
var symbol = this.commandSymbol(index);
var value = this.getConfigValue(symbol);
if (this.isNumberSymbol(symbol)) {
result = this.numberStatusText(value);
} else if (this.isStringSymbol(symbol)) {
result = this.stringStatusText(value, symbol);
}
return result;
};
Window_Options.prototype.isNumberSymbol = function(symbol) {
return symbol.contains(ConfigManager._symbolNumber);
};
Window_Options.prototype.isStringSymbol = function(symbol) {
return symbol.contains(ConfigManager._symbolString);
};
Window_Options.prototype.isCustomSymbol = function(symbol) {
return !!this._customParams[symbol];
};
Window_Options.prototype.numberStatusText = function(value) {
return value;
};
Window_Options.prototype.stringStatusText = function(value, symbol) {
return this._customParams[symbol].values[value];
};
var _Window_Options_processOk = Window_Options.prototype.processOk;
Window_Options.prototype.processOk = function() {
if (!this._shiftValue(1, true)) _Window_Options_processOk.apply(this, arguments);
this.execScript();
};
var _Window_Options_cursorRight = Window_Options.prototype.cursorRight;
Window_Options.prototype.cursorRight = function(wrap) {
if (!this._shiftValue(1, false)) _Window_Options_cursorRight.apply(this, arguments);
};
var _Window_Options_cursorLeft = Window_Options.prototype.cursorLeft;
Window_Options.prototype.cursorLeft = function(wrap) {
if (!this._shiftValue(-1, false)) _Window_Options_cursorLeft.apply(this, arguments);
};
Window_Options.prototype._shiftValue = function(sign, loopFlg) {
var symbol = this.commandSymbol(this.index());
var value = this.getConfigValue(symbol);
if (this.isNumberSymbol(symbol)) {
value += this.numberOffset(symbol) * sign;
this.changeValue(symbol, this._clampValue(value, symbol, loopFlg));
return true;
}
if (this.isStringSymbol(symbol)) {
value += sign;
this.changeValue(symbol, this._clampValue(value, symbol, loopFlg));
return true;
}
return false;
};
Window_Options.prototype.execScript = function() {
var symbol = this.commandSymbol(this.index());
if (!this.isCustomSymbol(symbol)) return;
var script = this._customParams[symbol].script;
if (script) eval(script);
localOptionWindowIndex = this.index();
};
Window_Options.prototype._clampValue = function(value, symbol, loopFlg) {
var maxValue = this._customParams[symbol].max;
var minValue = this._customParams[symbol].min;
if (loopFlg) {
if (value > maxValue) value = minValue;
if (value < minValue) value = maxValue;
}
return value.clamp(this._customParams[symbol].min, this._customParams[symbol].max);
};
Window_Options.prototype.numberOffset = function(symbol) {
var value = this._customParams[symbol].offset;
if (Input.isPressed('shift')) value *= 10;
return value;
};
Window_Options.prototype.windowHeight = function() {
return this.fittingHeight(Math.min(this.numVisibleRows(), 14));
};
})();