-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTMGreedShop.js
745 lines (681 loc) · 24.7 KB
/
TMGreedShop.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
//=============================================================================
// TMPlugin - 欲張りショップ
// バージョン: 2.2.0
// 最終更新日: 2018/07/17
// 配布元 : http://hikimoki.sakura.ne.jp/
//-----------------------------------------------------------------------------
// Copyright (c) 2016 tomoaky
// Released under the MIT license.
// http://opensource.org/licenses/mit-license.php
//=============================================================================
/*:
* @plugindesc お金以外にアイテムも要求されるショップ機能を追加します。
*
* @author tomoaky (http://hikimoki.sakura.ne.jp/)
*
* @param materialWindowPosition
* @type select
* @option 商品名の下
* @value 0
* @option 商品名の右
* @value 1
* @option 購入ウィンドウの下
* @value 2
* @desc 素材ウィンドウの表示位置
* @default 0
*
* @param materialWindowWidth
* @type number
* @desc 素材ウィンドウの幅
* 初期値: 408
* @default 408
*
* @param buyWindowWidth
* @type number
* @desc 購入ウィンドウの幅
* 初期値: 456
* @default 456
*
* @param buyWindowHeight
* @type number
* @desc 購入ウィンドウの高さ
* 0なら自動で決定
* @default 0
*
* @param materialMax
* @type number
* @desc 設定できる素材の最大数。
* 初期値: 5
* @default 5
*
* @param fontRate
* @type number
* @decimals 2
* @desc 素材情報のフォント倍率
* @default 0.8
*
* @param greedCommand
* @desc 欲張りショップの購入コマンド名。
* 初期値: 購入する
* @default 購入する
*
* @param needText
* @desc 素材一覧のトップに表示するテキスト
* ( 何も設定しなければ省略 )
* @default 必要なもの
*
* @param showSellCommand
* @type boolean
* @desc 購入のみの場合にも売却コマンドを表示する。
* @default true
*
* @param showMaterialWindow
* @type boolean
* @desc 素材ウィンドウを表示する。
* @default true
*
* @param overlaid
* @type boolean
* @desc 素材ウィンドウを他のウィンドウと違うレイヤーに表示する。
* 四隅が欠ける問題は解決しますが、可読性は低下します。
* @default true
*
* @param backOpacity
* @type number
* @desc 素材ウィンドウの背景の不透明度
* @default 192
*
* @param showMaterialFromNumberWindow
* @type boolean
* @desc 個数選択ウィンドウに素材情報を表示する。
* @default true
*
* @param showPrice
* @type boolean
* @desc 商品ウィンドウに価格を表示する。
* @default true
*
* @param seGreedBuy
* @type struct<SoundEffect>
* @desc 欲張りショップで購入時に鳴らす効果音
* @default {"name":"Shop1","volume":"90","pitch":"100","pan":"0"}
*
* @help
* TMPlugin - 欲張りショップ ver2.2.0
*
* 使い方:
*
* アイテム、武器、防具にメモ欄タグ(後述)を使って素材を設定します。
*
* イベントコマンド『プラグインコマンド』で greedShop を実行し、
* 直後にイベントコマンド『ショップの処理』で、素材を設定したアイテムを
* 商品として販売してください。
*
* このプラグインは RPGツクールMV Version 1.6.1 で動作確認をしています。
*
*
* プラグインコマンド:
*
* greedShop
* このコマンドが実行された直後にショップの処理を
* 実行することで欲張りショップになります。
*
* greedCommand 買っちゃう
* 欲張りショップの購入コマンド名を『買っちゃう』に変更します。
* この変更はセーブデータには保存されません。
*
*
* メモ欄タグ(アイテム、武器、防具):
*
* <mat1:I1*3>
* お金以外にアイテム1番が3個必要になります。
* mat2, mat3... と素材を追加していくことができます。
* I の部分が W なら武器、A なら防具になります。
*
* <matKey:1>
* mat1 タグに設定されている素材をキー素材として扱います。
* キー素材を所持していない場合、商品リストから除外されます。
* <matKey:1 2> というように半角スペースで区切り、複数のキー素材を
* 設定することもできます。(この場合、mat1 と mat2 がキー素材になる)
* このタグを使うことで、レシピを所持していないと
* ショップに並ばない商品などを表現することができます。
*
* <matG:50>
* 価格を50に設定します、この設定は欲張りショップが
* 有効になっている場合にのみ購入価格として反映されます。
*
*
* メモ欄タグ(武器、防具):
*
* <noConsume>
* このタグを指定した武器、防具は素材として設定しても
* 消費されなくなります。
*
* 消耗設定が『しない』になっているアイテムを素材にした場合、
* 消耗しないが必要なものとして機能します。
*/
/*~struct~SoundEffect:
*
* @param name
* @type file
* @dir audio/se/
* @desc 効果音のファイル名
* @default
* @require 1
*
* @param volume
* @type number
* @max 100
* @desc 効果音の音量
* 初期値: 90
* @default 90
*
* @param pitch
* @type number
* @min 50
* @max 150
* @desc 効果音のピッチ
* 初期値: 100
* @default 100
*
* @param pan
* @type number
* @min -100
* @max 100
* @desc 効果音の位相
* 初期値: 0
* @default 0
*
*/
var Imported = Imported || {};
Imported.TMGreedShop = true;
(function() {
var parameters = PluginManager.parameters('TMGreedShop');
var materialWindowPosition = +(parameters['materialWindowPosition'] || 0);
var materialWindowWidth = +(parameters['materialWindowWidth'] || 408);
var buyWindowWidth = +(parameters['buyWindowWidth'] || 456);
var buyWindowHeight = +(parameters['buyWindowHeight'] || 0);
var materialMax = +(parameters['materialMax'] || 5);
var fontRate = +(parameters['fontRate'] || 0.8);
var greedCommand = parameters['greedCommand'] || '購入する';
var needText = parameters['needText'] || '';
var showSellCommand = JSON.parse(parameters['showSellCommand'] || 'true');
var showMaterialWindow = JSON.parse(parameters['showMaterialWindow'] || 'true');
var overlaid = JSON.parse(parameters['overlaid'] || 'true');
var backOpacity = +(parameters['backOpacity'] || 192);
var showMaterialFromNumberWindow = JSON.parse(parameters['showMaterialFromNumberWindow'] || 'true');
var showPrice = JSON.parse(parameters['showPrice'] || 'true');
var seGreedBuy = JSON.parse(parameters['seGreedBuy'] || '{}');
//-----------------------------------------------------------------------------
// DataManager
//
DataManager.getGreedShopMaterials = function(item) {
result = [];
if (item) {
var re = /(i|w|a)(\d+)\*(\d+)/i;
for (var i = 1; i <= materialMax; i++) {
var key = 'mat' + i;
if (item.meta[key]) {
var match = re.exec(item.meta[key]);
if (match) {
var material = {};
material.type = match[1];
material.id = +match[2];
material.need = +match[3];
result.push(material);
}
}
}
}
return result;
};
DataManager.materialToItem = function(material) {
var type = material.type.toUpperCase();
if (type === 'I') {
return $dataItems[material.id];
} else if (type === 'W') {
return $dataWeapons[material.id];
} else if (type === 'A') {
return $dataArmors[material.id];
}
return null;
};
DataManager.isConsumableMaterial = function(item) {
return item.consumable || (!this.isItem(item) && !item.meta.noConsume);
};
//-----------------------------------------------------------------------------
// Game_Temp
//
Game_Temp.prototype.setGreedShop = function(flag) {
this._greedShop = flag;
};
Game_Temp.prototype.isGreedShop = function() {
return this._greedShop;
};
Game_Temp.prototype.setGreedCommand = function(text) {
this._greedCommand = text;
};
Game_Temp.prototype.greedCommand = function() {
return this._greedCommand || greedCommand;
};
//-----------------------------------------------------------------------------
// Game_Interpreter
//
var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
_Game_Interpreter_pluginCommand.call(this, command, args);
if (command === 'greedShop') {
$gameTemp.setGreedShop(true);
} else if (command === 'greedCommand') {
$gameTemp.setGreedCommand(args[0]);
}
};
//-----------------------------------------------------------------------------
// Window_Base
//
// 素材リストの描画
Window_Base.prototype.drawGreedMaterials = function(x, y, item, amount, rate) {
var materials = DataManager.getGreedShopMaterials(item);
this.resetFontSettings();
this.contents.fontSize = Math.floor(this.contents.fontSize * rate);
if (needText) {
y = this.drawGreedNeedText(y, rate);
}
for (var i = 0; i < materials.length; i++) {
y = this.drawGreedMaterial(x, y, materials[i], amount, rate);
}
if (this._price) {
this.drawGreedPrice(y, amount, rate);
}
this.resetFontSettings();
};
// 素材リストの見出し(初期設定:必要なもの)描画
Window_Base.prototype.drawGreedNeedText = function(y, rate) {
var lh = Math.floor(this.lineHeight() * rate);
this.changeTextColor(this.systemColor());
this.contents.drawText(needText, 0, y, this.contents.width, lh, 'center');
return y + lh;
};
// 素材の描画
Window_Base.prototype.drawGreedMaterial = function(x, y, material, amount, rate) {
var x2 = x + Math.floor((Window_Base._iconWidth + 4) * rate);
var lh = Math.floor(this.lineHeight() * rate);
var materialItem = DataManager.materialToItem(material);
var need = material.need * amount;
var n = $gameParty.numItems(materialItem);
var text = DataManager.isConsumableMaterial(materialItem) ? '' + n + '/' : '--/';
text += (' ' + need).substr(-3);
this.drawStretchIcon(x, y, materialItem.iconIndex, rate);
this.changeTextColor(this.normalColor());
this.contents.drawText(materialItem.name, x2, y, 312, lh);
this.contents.drawText(text, x, y, this.contents.width - this.textPadding(), lh, 'right');
return y + lh;
};
// 拡大率を指定したアイコン描画
Window_Base.prototype.drawStretchIcon = function(x, y, index, rate) {
var bitmap = ImageManager.loadSystem('IconSet');
var pw = Window_Base._iconWidth;
var ph = Window_Base._iconHeight;
var sx = index % 16 * pw;
var sy = Math.floor(index / 16) * ph;
var dw = Math.floor(pw * rate);
var dh = Math.floor(ph * rate);
this.contents.blt(bitmap, sx, sy, pw, ph, x, y, dw, dh);
};
// 価格の描画
Window_Base.prototype.drawGreedPrice = function(y, amount, rate) {
var x = this.textPadding();
var lh = Math.floor(this.lineHeight() * rate);
var width = this.contents.width - x * 2;
var unitWidth = Math.min(80, this.textWidth(TextManager.currencyUnit));
this.resetTextColor();
this.contents.drawText(this._price * amount, x, y, width - unitWidth - 6, lh, 'right');
this.changeTextColor(this.systemColor());
this.contents.drawText(TextManager.currencyUnit, x + width - unitWidth, y, unitWidth, lh, 'right');
};
//-----------------------------------------------------------------------------
// Window_ShopCommand
//
// 売却コマンドを表示するかどうかで列数を変更する
var _Window_ShopCommand_maxCols = Window_ShopCommand.prototype.maxCols;
Window_ShopCommand.prototype.maxCols = function() {
return (showSellCommand || !this._purchaseOnly) ? _Window_ShopCommand_maxCols.call(this) : 2;
};
// 欲張りショップならば専用のコマンドリストを作成する
var _Window_ShopCommand_makeCommandList = Window_ShopCommand.prototype.makeCommandList;
Window_ShopCommand.prototype.makeCommandList = function() {
if ($gameTemp.isGreedShop()) {
this.addCommand($gameTemp.greedCommand(), 'buy');
if (showSellCommand || !this._purchaseOnly) {
this.addCommand(TextManager.sell, 'sell', !this._purchaseOnly);
}
this.addCommand(TextManager.cancel, 'cancel');
} else {
_Window_ShopCommand_makeCommandList.call(this);
}
};
//-----------------------------------------------------------------------------
// Window_ShopBuy
//
var _Window_ShopBuy_initialize = Window_ShopBuy.prototype.initialize;
Window_ShopBuy.prototype.initialize = function(x, y, height, shopGoods) {
if ($gameTemp.isGreedShop() && +buyWindowHeight > 0) {
height = +buyWindowHeight;
}
_Window_ShopBuy_initialize.call(this, x, y, height, shopGoods);
};
var _Window_ShopBuy_windowWidth = Window_ShopBuy.prototype.windowWidth;
Window_ShopBuy.prototype.windowWidth = function() {
if ($gameTemp.isGreedShop()) {
return buyWindowWidth;
}
return _Window_ShopBuy_windowWidth.call(this);
};
var _Window_ShopBuy_price = Window_ShopBuy.prototype.price;
Window_ShopBuy.prototype.price = function(item) {
if ($gameTemp.isGreedShop() && (item && item.meta.matG)) {
return +item.meta.matG;
}
return _Window_ShopBuy_price.call(this, item);
};
var _Window_ShopBuy_isEnabled = Window_ShopBuy.prototype.isEnabled;
Window_ShopBuy.prototype.isEnabled = function(item) {
var result = _Window_ShopBuy_isEnabled.call(this, item);
if (result && $gameTemp.isGreedShop()) {
var materials = DataManager.getGreedShopMaterials(item);
for (var i = 0; i < materials.length; i++) {
var material = materials[i];
var matItem = DataManager.materialToItem(material);
if ($gameParty.numItems(matItem) < material.need) {
return false;
}
}
}
return result;
};
var _Window_ShopBuy_update = Window_ShopBuy.prototype.update;
Window_ShopBuy.prototype.update = function() {
_Window_ShopBuy_update.call(this);
if (this.active && this._materialWindow) {
this._materialWindow.setShopItem(this.item(), this.price(this.item()));
this.setMaterialWindowPosition();
}
};
Window_ShopBuy.prototype.setMaterialWindowPosition = function() {
switch (materialWindowPosition) {
case 0: // 商品名の下
var x = this.x + this.width / 2;
var y = this.y + this.padding;
var lineHeight = this.lineHeight();
y += (this.index() - this.topRow() + 1) * lineHeight;
this._materialWindow.x = x - this._materialWindow.width / 2;
this._materialWindow.y = y;
if (this._materialWindow.y + this._materialWindow.height > Graphics.boxHeight) {
this._materialWindow.y = y - this._materialWindow.height - lineHeight;
}
break;
case 1: // 商品名の右
var x = this.x + this.width - this.padding;
var y = this.y + this.padding;
var lineHeight = this.lineHeight();
y += (this.index() - this.topRow()) * lineHeight;
this._materialWindow.x = x;
this._materialWindow.y = y;
if (this._materialWindow.y + this._materialWindow.height > Graphics.boxHeight) {
this._materialWindow.y = Graphics.boxHeight - this._materialWindow.height;
}
if (this._materialWindow.x + this._materialWindow.width > Graphics.boxWidth) {
this._materialWindow.x = Graphics.boxWidth - this._materialWindow.width;
}
break;
case 2: // 購入ウィンドウの下
this._materialWindow.x = this.x;
this._materialWindow.y = this.y + this.height;
if (this._materialWindow.y + this._materialWindow.height > Graphics.boxHeight) {
this._materialWindow.y = Graphics.boxHeight - this._materialWindow.height;
}
break;
}
};
// キー素材を所持していない場合は商品リストから除外する
var _Window_ShopBuy_makeItemList = Window_ShopBuy.prototype.makeItemList;
Window_ShopBuy.prototype.makeItemList = function() {
_Window_ShopBuy_makeItemList.call(this);
for (var i = this._data.length - 1; i >= 0; i--) {
var item = this._data[i];
if (item && item.meta.matKey) {
var materials = DataManager.getGreedShopMaterials(item);
var keys = item.meta.matKey.split(' ').map(Number);
for (var j = 0; j < keys.length; j++) {
var material = materials[keys[j] - 1];
var matItem = DataManager.materialToItem(material);
if (!$gameParty.hasItem(matItem, false)) {
this._data.splice(i, 1);
this._price.splice(i, 1);
break;
}
}
}
}
};
var _Window_ShopBuy_drawItem = Window_ShopBuy.prototype.drawItem;
Window_ShopBuy.prototype.drawItem = function(index) {
if ($gameTemp.isGreedShop() && !showPrice) {
var item = this._data[index];
var rect = this.itemRect(index);
rect.width -= this.textPadding();
this.changePaintOpacity(this.isEnabled(item));
this.drawItemName(item, rect.x, rect.y, rect.width);
this.changePaintOpacity(true);
} else {
_Window_ShopBuy_drawItem.call(this, index);
}
};
Window_ShopBuy.prototype.setMaterialWindow = function(materialWindow) {
this._materialWindow = materialWindow;
};
//-----------------------------------------------------------------------------
// Window_ShopNumber
//
var _Window_ShopNumber_windowWidth = Window_ShopNumber.prototype.windowWidth;
Window_ShopNumber.prototype.windowWidth = function() {
if ($gameTemp.isGreedShop()) {
return buyWindowWidth;
}
return _Window_ShopNumber_windowWidth.call(this);
};
var _Window_ShopNumber_refresh = Window_ShopNumber.prototype.refresh;
Window_ShopNumber.prototype.refresh = function() {
_Window_ShopNumber_refresh.call(this);
if ($gameTemp.isGreedShop() && showMaterialFromNumberWindow) {
this.drawGreedMaterials(0, this.lineHeight() * 2, this._item, this._number, fontRate);
}
};
// 欲張りショップの場合は価格表示を素材リストに任せる
var _Window_ShopNumber_drawTotalPrice = Window_ShopNumber.prototype.drawTotalPrice;
Window_ShopNumber.prototype.drawTotalPrice = function() {
if (!$gameTemp.isGreedShop()) {
_Window_ShopNumber_drawTotalPrice.call(this);
}
};
var _Window_ShopNumber_itemY = Window_ShopNumber.prototype.itemY;
Window_ShopNumber.prototype.itemY = function() {
if ($gameTemp.isGreedShop() && showMaterialFromNumberWindow) {
return 0;
}
return _Window_ShopNumber_itemY.call(this);
};
var _Window_ShopNumber_priceY = Window_ShopNumber.prototype.priceY;
Window_ShopNumber.prototype.priceY = function() {
if ($gameTemp.isGreedShop() && showMaterialFromNumberWindow) {
return this.lineHeight() * 1.5;
}
return _Window_ShopNumber_priceY.call(this);
};
var _Window_ShopNumber_buttonY = Window_ShopNumber.prototype.buttonY;
Window_ShopNumber.prototype.buttonY = function() {
if ($gameTemp.isGreedShop() && showMaterialFromNumberWindow) {
return Math.min(this.priceY() + this.lineHeight() * (materialMax + 3),
this.contents.height - this.lineHeight());
}
return _Window_ShopNumber_buttonY.call(this);
};
//-----------------------------------------------------------------------------
// Window_Material
//
function Window_Material() {
this.initialize.apply(this, arguments);
}
Window_Material.prototype = Object.create(Window_Base.prototype);
Window_Material.prototype.constructor = Window_Material;
Window_Material.prototype.initialize = function() {
this._materials = [];
var width = this.windowWidth();
var height = this.windowHeight();
Window_Base.prototype.initialize.call(this, 0, 0, width, height);
this.hide();
};
Window_Material.prototype.windowWidth = function() {
return materialWindowWidth;
};
Window_Material.prototype.windowHeight = function() {
var n = this._materials.length;
if (needText) {
n += 1;
}
if (this._price) {
n += 1;
}
return Math.floor(this.fittingHeight(n) * fontRate);
};
Window_Material.prototype.standardBackOpacity = function() {
return backOpacity;
};
var _Window_Material_show = Window_Material.prototype.show;
Window_Material.prototype.show = function() {
_Window_Material_show.call(this);
if (this._materials.length === 0) {
this.visible = false;
}
};
Window_Material.prototype.materials = function() {
return this._materials;
};
Window_Material.prototype.setShopItem = function(item, price) {
if (this._shopItem !== item) {
this._shopItem = item;
this._price = price;
this._materials = DataManager.getGreedShopMaterials(item);
if (this._materials.length > 0) {
this.refresh();
}
if (showMaterialWindow) {
this.show();
}
}
};
Window_Material.prototype.refresh = function() {
this.move(this.x, this.y, this.width, this.windowHeight());
this.createContents();
this.drawGreedMaterials(0, 0, this._shopItem, 1, fontRate);
/* for (var i = 0; i < this._materials.length; i++) {
var material = this._materials[i];
var item = DataManager.materialToItem(material);
var need = material.need;
var n = $gameParty.numItems(item);
this.changePaintOpacity(n >= need);
this.drawItemName(item, 0, this.lineHeight() * i);
var text = DataManager.isConsumableMaterial(item) ? '' + n + '/' : '--/';
text += (' ' + need).substr(-3);
this.drawText(text, 0, this.lineHeight() * i, this.contents.width, 'right');
}*/
};
//-----------------------------------------------------------------------------
// Scene_Shop
//
var _Scene_Shop_terminate = Scene_Shop.prototype.terminate;
Scene_Shop.prototype.terminate = function() {
_Scene_Shop_terminate.call(this);
$gameTemp.setGreedShop(false);
};
var _Scene_Shop_create = Scene_Shop.prototype.create;
Scene_Shop.prototype.create = function() {
_Scene_Shop_create.call(this);
if ($gameTemp.isGreedShop()) {
this.createMaterialWindow();
}
};
Scene_Shop.prototype.createMaterialWindow = function() {
this._materialWindow = new Window_Material();
this._buyWindow.setMaterialWindow(this._materialWindow);
if (overlaid) {
this.addChild(this._materialWindow);
} else {
this.addWindow(this._materialWindow);
}
};
var _Scene_Shop_onBuyOk = Scene_Shop.prototype.onBuyOk;
Scene_Shop.prototype.onBuyOk = function() {
_Scene_Shop_onBuyOk.call(this);
if (this._materialWindow) {
this._materialWindow.hide();
}
};
var _Scene_Shop_onBuyCancel = Scene_Shop.prototype.onBuyCancel;
Scene_Shop.prototype.onBuyCancel = function() {
_Scene_Shop_onBuyCancel.call(this);
if (this._materialWindow) {
this._materialWindow.setShopItem(null);
}
};
var _Scene_Shop_onNumberOk = Scene_Shop.prototype.onNumberOk;
Scene_Shop.prototype.onNumberOk = function() {
if ($gameTemp.isGreedShop() && this._commandWindow.currentSymbol() === 'buy') {
AudioManager.playSe(seGreedBuy);
this.doBuy(this._numberWindow.number());
this.endNumberInput();
this._goldWindow.refresh();
this._statusWindow.refresh();
} else {
_Scene_Shop_onNumberOk.call(this);
}
};
var _Scene_Shop_doBuy = Scene_Shop.prototype.doBuy;
Scene_Shop.prototype.doBuy = function(number) {
_Scene_Shop_doBuy.call(this, number);
if (this._materialWindow) {
var materials = this._materialWindow.materials();
for (var i = 0; i < materials.length; i++) {
var material = materials[i];
var item = DataManager.materialToItem(material);
if (DataManager.isConsumableMaterial(item)) {
$gameParty.loseItem(item, material.need * number);
}
}
this._materialWindow.refresh();
}
};
var _Scene_Shop_maxBuy = Scene_Shop.prototype.maxBuy;
Scene_Shop.prototype.maxBuy = function() {
var result = _Scene_Shop_maxBuy.call(this);
if (this._materialWindow) {
var materials = this._materialWindow.materials();
for (var i = 0; i < materials.length; i++) {
var material = materials[i];
var item = DataManager.materialToItem(material);
if (DataManager.isConsumableMaterial(item)) {
var n = $gameParty.numItems(item);
result = Math.min(result, Math.floor(n / material.need));
}
}
}
return result;
};
var _Scene_Shop_endNumberInput = Scene_Shop.prototype.endNumberInput;
Scene_Shop.prototype.endNumberInput = function() {
_Scene_Shop_endNumberInput.call(this);
if (this._materialWindow && showMaterialWindow) {
this._materialWindow.show();
}
};
})();