-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTMItemRestriction.js
199 lines (169 loc) · 6.37 KB
/
TMItemRestriction.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
//=============================================================================
// TMPlugin - アイテム制約拡張
// バージョン: 1.0.1
// 最終更新日: 2017/02/14
// 配布元 : http://hikimoki.sakura.ne.jp/
//-----------------------------------------------------------------------------
// Copyright (c) 2017 tomoaky
// Released under the MIT license.
// http://opensource.org/licenses/mit-license.php
//=============================================================================
/*:
* @plugindesc アイテムの対象アクターに関する制約を追加します。
*
* @author tomoaky (http://hikimoki.sakura.ne.jp/)
*
* @help
* TMPlugin - アイテム制約拡張 ver1.0.1
*
* 使い方:
*
* アイテムのメモ欄にタグをつけることで対象として選択できるアクターを
* 制限できるようになります。
*
* このプラグインは RPGツクールMV Version 1.3.4 で動作確認をしています。
*
*
* メモ欄タグ (アイテム):
*
* <justOnce>
* メモ欄にこのタグがついているアイテムは、同じアクターに対して 1 回しか
* 使えなくなります。
*
* <targetActor:1 2>
* メモ欄にこのタグがついているアイテムは、1 番と 2 番のアクターにのみ
* 使用できるようになります。
*
*
* プラグインコマンド:
*
* clearItemRestriction 1
* アクター 1 番のアイテム使用履歴を初期化し、<justOnce> タグのついた
* アイテムを再び使用できる状態にします。
*/
var Imported = Imported || {};
Imported.TMItemRestriction = true;
var TMPlugin = TMPlugin || {};
if (!TMPlugin.InterpreterBase) {
TMPlugin.InterpreterBase = true;
(function() {
Game_Interpreter.prototype.convertEscapeCharactersTM = function(text) {
text = text.replace(/\\/g, '\x1b');
text = text.replace(/\x1b\x1b/g, '\\');
text = text.replace(/\x1bV\[(\d+)\]/gi, function() {
return $gameVariables.value(parseInt(arguments[1]));
}.bind(this));
text = text.replace(/\x1bV\[(\d+)\]/gi, function() {
return $gameVariables.value(parseInt(arguments[1]));
}.bind(this));
text = text.replace(/\x1bN\[(\d+)\]/gi, function() {
return this.actorNameTM(parseInt(arguments[1]));
}.bind(this));
text = text.replace(/\x1bP\[(\d+)\]/gi, function() {
return this.partyMemberNameTM(parseInt(arguments[1]));
}.bind(this));
text = text.replace(/\x1bG/gi, TextManager.currencyUnit);
return text;
};
Game_Interpreter.prototype.actorNameTM = function(n) {
var actor = n >= 1 ? $gameActors.actor(n) : null;
return actor ? actor.name() : '';
};
Game_Interpreter.prototype.partyMemberNameTM = function(n) {
var actor = n >= 1 ? $gameParty.members()[n - 1] : null;
return actor ? actor.name() : '';
};
})();
} // TMPlugin.InterpreterBase
(function() {
//-----------------------------------------------------------------------------
// Game_BattlerBase
//
Game_BattlerBase.prototype.clearItemRestriction = function() {
this._alreadyUsed = [];
};
Game_BattlerBase.prototype.alreadyUsed = function() {
if (this._alreadyUsed == null) this.clearItemRestriction();
return this._alreadyUsed;
};
Game_BattlerBase.prototype.isAlreadyUsed = function(item) {
return this.alreadyUsed().contains(item.id);
};
Game_BattlerBase.prototype.setAlreadyUsed = function(item) {
this.alreadyUsed().push(item.id);
};
//-----------------------------------------------------------------------------
// Game_Actor
//
var _Game_Actor_setup = Game_Actor.prototype.setup;
Game_Actor.prototype.setup = function(actorId) {
_Game_Actor_setup.call(this, actorId);
this.clearItemRestriction();
};
//-----------------------------------------------------------------------------
// Game_Action
//
var _Game_Action_testApply = Game_Action.prototype.testApply;
Game_Action.prototype.testApply = function(target) {
if (this.isAlreadyUsed(target)) return false;
if (!this.isTargetActorValid(target)) return false;
return _Game_Action_testApply.call(this, target);
};
Game_Action.prototype.isAlreadyUsed = function(target) {
var item = this.item();
return this.isItem() && item.meta.justOnce && target.isAlreadyUsed(item);
};
Game_Action.prototype.isTargetActorValid = function(target) {
if (target.isActor() && this.isItem()) {
var item = this.item();
if (item.meta.targetActor) {
var targetActors = item.meta.targetActor.split(' ').map(Number);
return targetActors.contains(target.actorId());
}
}
return true;
};
var _Game_Action_apply = Game_Action.prototype.apply;
Game_Action.prototype.apply = function(target) {
_Game_Action_apply.call(this, target);
if (target.result().isHit()) this.setAlreadyUsed(target);
};
Game_Action.prototype.setAlreadyUsed = function(target) {
var item = this.item();
if (this.isItem() && item.meta.justOnce) target.setAlreadyUsed(item);
};
//-----------------------------------------------------------------------------
// 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 === 'clearItemRestriction') {
var arr = args.map(this.convertEscapeCharactersTM, this);
var actor = $gameActors.actor(+arr[0]);
if (actor) actor.clearItemRestriction();
}
};
//-----------------------------------------------------------------------------
// Window_BattleActor
//
Window_BattleActor.prototype.playOkSound = function() {
};
Window_BattleActor.prototype.playBuzzerSound = function() {
};
//-----------------------------------------------------------------------------
// Scene_Battle
//
var _Scene_Battle_onActorOk = Scene_Battle.prototype.onActorOk;
Scene_Battle.prototype.onActorOk = function() {
var action = BattleManager.inputtingAction();
var actor = this._actorWindow.actor();
if (action.isAlreadyUsed(actor) || !action.isTargetActorValid(actor)) {
SoundManager.playBuzzer();
this._actorWindow.activate();
} else {
SoundManager.playOk();
_Scene_Battle_onActorOk.call(this);
}
};
})();