-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTMActorBattle.js
282 lines (245 loc) · 8.75 KB
/
TMActorBattle.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
//=============================================================================
// TMPlugin - アクターバトル
// バージョン: 0.1.0a
// 最終更新日: 2019/02/08
// 配布元 : https://hikimoki.sakura.ne.jp/
//-----------------------------------------------------------------------------
// Copyright (c) 2019 tomoaky
// Released under the MIT license.
// http://opensource.org/licenses/mit-license.php
//=============================================================================
/*:
* @plugindesc アクター同士のバトル(サイドビュー限定)を追加します。
*
* @author tomoaky (https://hikimoki.sakura.ne.jp/)
*
* @help
* TMPlugin - アクターバトル ver0.1.0a
*
* 使い方:
*
* トループ名に <actorBattle:2,3> というタグがあれば、アクターバトルが
* 有効になり、2番と3番のアクターがエネミーの代わりに出現します。
* パーティ内にいるアクターをエネミーにすることはできません。
*
* このプラグインは RPGツクールMV Version 1.6.1 で動作確認をしています。
*
* このプラグインはMITライセンスのもとに配布しています、商用利用、
* 改造、再配布など、自由にお使いいただけます。
*/
var Imported = Imported || {};
Imported.TMActorBattle = true;
(function () {
//-----------------------------------------------------------------------------
// BattleManager
//
// エネミー側アクターをバトル参加者扱いにする。
var _BattleManager_getNextSubject = BattleManager.getNextSubject;
BattleManager.getNextSubject = function () {
if ($gameTroop.isActorBattle()) {
for (; ;) {
var battler = this._actionBattlers.shift();
if (!battler) {
return null;
}
var flag = battler.isBattleMember() || $gameTroop.members().indexOf(battler) >= 0;
if (flag && battler.isAlive()) {
return battler;
}
}
} else {
return _BattleManager_getNextSubject.call(this);
}
};
//-----------------------------------------------------------------------------
// Game_Action
//
// アクションの行動者がエネミー側アクターである目印を付ける。
Game_Action.prototype.setEnemyActorFlag = function () {
this._enemyActorFlag = true;
};
// 行動者がエネミー側アクターなら敵味方を逆にする。
var _Game_Action_friendsUnit = Game_Action.prototype.friendsUnit;
Game_Action.prototype.friendsUnit = function () {
if (this._enemyActorFlag) {
return this.subject().opponentsUnit();
}
return _Game_Action_friendsUnit.call(this);
};
// 行動者がエネミー側アクターなら敵味方を逆にする。
var _Game_Action_opponentsUnit = Game_Action.prototype.opponentsUnit;
Game_Action.prototype.opponentsUnit = function () {
if (this._enemyActorFlag) {
return this.subject().friendsUnit();
}
return _Game_Action_opponentsUnit.call(this);
};
//-----------------------------------------------------------------------------
// Game_Actor
//
// Game_EnemyにあってActorにないもの、『○○たちが出現!』で使ったりする。
Game_Actor.prototype.originalName = function () {
return this.name();
};
// アクターからは経験値をもらえない。
Game_Actor.prototype.exp = function () {
return 0;
};
// アクターからはお金ももらえない。
Game_Actor.prototype.gold = function () {
return 0;
};
// アクターは何もドロップしない。
Game_Actor.prototype.makeDropItems = function () {
return [];
};
// アクターバトル用の行動生成。
Game_Actor.prototype.makeEnemyActorActions = function () {
Game_Battler.prototype.makeActions.call(this);
if (this.isConfused()) {
this.makeEnemyActorConfusionActions();
} else {
this.makeEnemyActorAutoBattleActions();
}
};
// アクションに行動者がエネミー側アクターである目印を付ける。
Game_Actor.prototype.makeEnemyActorAutoBattleActions = function () {
for (var i = 0; i < this.numActions(); i++) {
var list = this.makeActionList();
var maxValue = Number.MIN_VALUE;
for (var j = 0; j < list.length; j++) {
list[j].setEnemyActorFlag();
var value = list[j].evaluate();
if (value > maxValue) {
maxValue = value;
this.setAction(i, list[j]);
}
}
}
this.setActionState('waiting');
};
// アクションに行動者がエネミー側アクターである目印を付ける。
Game_Actor.prototype.makeEnemyActorConfusionActions = function () {
for (var i = 0; i < this.numActions(); i++) {
this.action(i).setEnemyActorFlag();
this.action(i).setConfusion();
}
this.setActionState('waiting');
};
//-----------------------------------------------------------------------------
// Game_Troop
//
// トループがアクターバトルならtrueを返す。
Game_Troop.prototype.isActorBattle = function () {
return this._enemyActorIds ? true : false;
};
// アクターバトル用のトループならエネミーの代わりにアクターをセットする。
var _Game_Troop_setup = Game_Troop.prototype.setup;
Game_Troop.prototype.setup = function (troopId) {
this.setupActorBattle(troopId);
if (this.isActorBattle()) {
this.clear();
this._troopId = troopId;
this._enemies = [];
this._enemyActorIds.forEach(function (actorId) {
var actor = $gameActors.actor(actorId);
if (actor) {
this._enemies.push(actor);
}
}, this);
} else {
_Game_Troop_setup.call(this, troopId);
}
};
// トループ名からアクターバトルのパラメータを取得する。
Game_Troop.prototype.setupActorBattle = function (troopId) {
this._enemyActorIds = null;
var troop = $dataTroops[troopId];
if (!troop) {
return false;
}
var re = /<actorBattle:([^>]*)>/g;
var match = re.exec(troop.name);
if (match) {
this._enemyActorIds = match[1].split(',').map(Number);
}
};
// アクターバトルならエネミー側アクター用の行動生成をする。
var _Game_Troop_makeActions = Game_Troop.prototype.makeActions;
Game_Troop.prototype.makeActions = function () {
if (this.isActorBattle()) {
this.members().forEach(function (member) {
member.makeEnemyActorActions();
});
} else {
_Game_Troop_makeActions.call(this);
}
}
//-----------------------------------------------------------------------------
// Sprite_EnemyActor
//
// エネミー側用のアクタースプライト、移動演出などのX座標を反転。
function Sprite_EnemyActor() {
this.initialize.apply(this, arguments);
}
Sprite_EnemyActor.prototype = Object.create(Sprite_Actor.prototype);
Sprite_EnemyActor.prototype.constructor = Sprite_EnemyActor;
Sprite_EnemyActor.prototype.createMainSprite = function () {
Sprite_Actor.prototype.createMainSprite.call(this);
this._mainSprite.scale.x = -1;
};
Sprite_EnemyActor.prototype.createWeaponSprite = function () {
Sprite_Actor.prototype.createWeaponSprite.call(this);
this._weaponSprite.scale.x = -1;
this._weaponSprite.x = 16;
};
Sprite_EnemyActor.prototype.moveToStartPosition = function () {
this.startMove(-300, 0, 0);
};
Sprite_EnemyActor.prototype.setActorHome = function (index) {
index = $gameTroop.members().indexOf(this._actor);
this.setHome(216 - index * 32, 280 + index * 48);
};
Sprite_EnemyActor.prototype.stepForward = function () {
this.startMove(48, 0, 12);
};
Sprite_EnemyActor.prototype.retreat = function () {
this.startMove(-300, 0, 30);
};
Sprite_EnemyActor.prototype.damageOffsetX = function () {
return 0;
};
//-----------------------------------------------------------------------------
// Spriteset_Battle
//
// アクターバトルならSprite_Enemyの代わりにSprite_EnemyActorを使う。
var _Spriteset_Battle_createEnemies = Spriteset_Battle.prototype.createEnemies;
Spriteset_Battle.prototype.createEnemies = function () {
if ($gameTroop.isActorBattle()) {
var enemies = $gameTroop.members();
var sprites = [];
for (var i = 0; i < enemies.length; i++) {
sprites[i] = new Sprite_EnemyActor();
sprites[i].setBattler(enemies[i]);
}
sprites.sort(this.compareEnemySprite.bind(this));
for (var j = 0; j < sprites.length; j++) {
this._battleField.addChild(sprites[j]);
}
this._enemySprites = sprites;
} else {
_Spriteset_Battle_createEnemies.call(this);
}
};
//-----------------------------------------------------------------------------
// Window_BattleEnemy
//
// エネミー側アクターのインデックスを正しく取得する。
var _Window_BattleEnemy_enemyIndex = Window_BattleEnemy.prototype.enemyIndex;
Window_BattleEnemy.prototype.enemyIndex = function () {
if ($gameTroop.isActorBattle()) {
return $gameTroop.members().indexOf(this.enemy());
}
return _Window_BattleEnemy_enemyIndex.call(this);
};
})();