forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BigEnemy.js
110 lines (101 loc) · 4.56 KB
/
BigEnemy.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
//=============================================================================
// BigEnemy.js
// ----------------------------------------------------------------------------
// (C) 2016 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 2.0.2 2018/10/05 連続回数が2以上のダメージを表示する際、一瞬だけおかしな位置に表示される問題を修正
// 2.0.1 2017/03/16 2.0.0で巨大サイズ以外の敵に対するポップアップが表示されなくなっていた問題を修正
// 2.0.0 2017/01/05 アニメーションの表示位置を補正
// 1.0.1 2016/11/17 YEP_CoreEngine.jsで画面サイズを変更すると、位置の不整合が起きる現象に対応
// 1.0.0 2016/10/27 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc BigEnemyPlugin
* @author triacontane
*
* @help フロントビューで巨大モンスターを表示可能にするプラグインです。
* 具体的にはY座標を強制的に画面の下端に設定します。
*
* 敵キャラのメモ欄を以下の通り設定してください。
* <BE有効>
* <BEValid>
*
* このプラグインにはプラグインコマンドはありません。
*
* This plugin is released under the MIT License.
*/
/*:ja
* @plugindesc 巨大モンスタープラグイン
* @author トリアコンタン
*
* @help フロントビューで巨大モンスターを表示可能にするプラグインです。
* 具体的には画像の下端が画面の下端に強制的に合わせられます。
*
* 敵キャラのメモ欄を以下の通り設定してください。
* <BE有効>
* <BEValid>
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function() {
'use strict';
var metaTagPrefix = 'BE';
var getMetaValue = function(object, name) {
var metaTagName = metaTagPrefix + (name ? name : '');
return object.meta.hasOwnProperty(metaTagName) ? object.meta[metaTagName] : undefined;
};
var getMetaValues = function(object, names) {
if (!Array.isArray(names)) return getMetaValue(object, names);
for (var i = 0, n = names.length; i < n; i++) {
var value = getMetaValue(object, names[i]);
if (value !== undefined) return value;
}
return undefined;
};
//=============================================================================
// Game_Enemy
// 巨大モンスター判定を行います。
//=============================================================================
Game_Enemy.prototype.isBigEnemy = function() {
return getMetaValues(this.enemy(), ['有効', 'Valid']);
};
//=============================================================================
// Sprite_Enemy
// 必要に応じて敵キャラの位置を調整します。
//=============================================================================
var _Sprite_Enemy_updatePosition = Sprite_Enemy.prototype.updatePosition;
Sprite_Enemy.prototype.updatePosition = function() {
_Sprite_Enemy_updatePosition.apply(this, arguments);
if (this._enemy.isBigEnemy() && this.bitmap) {
this._originalY = this.y;
this.y = Graphics.boxHeight;
}
};
var _Sprite_Battler_setupDamagePopup = Sprite_Enemy.prototype.setupDamagePopup;
Sprite_Enemy.prototype.setupDamagePopup = function() {
var requested = this._battler.isDamagePopupRequested();
if (_Sprite_Battler_setupDamagePopup) {
_Sprite_Battler_setupDamagePopup.apply(this, arguments);
} else {
Sprite_Battler.prototype.setupDamagePopup.apply(this, arguments);
}
if (requested && this._enemy.isBigEnemy()) this.adjustDamagePopup();
};
Sprite_Enemy.prototype.adjustDamagePopup = function() {
if (this._damages.length > 0) {
this._damages[this._damages.length - 1].y -= (this.y - this._originalY);
}
};
})();