forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CharacterFreeze.js
212 lines (197 loc) · 8.36 KB
/
CharacterFreeze.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
//=============================================================================
// CharacterFreeze.js
// ----------------------------------------------------------------------------
// Copyright (c) 2015-2017 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 1.1.0 2017/03/03 停止中にピクチャを表示する機能、BGMの音量を変化する機能を追加
// 1.0.0 2017/03/01 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc CharacterFreezePlugin
* @author triacontane
*
* @param FreezeSwitchId
* @desc キャラクターを全停止されるトリガーになるスイッチIDです。
* @default
* @type switch
*
* @param FreezePictureId
* @desc 停止中にピクチャを表示する場合のピクチャ番号です。
* @default 0
* @type number
*
* @param FreezePictureName
* @desc 停止中に表示するピクチャファイル名です。
* @default
* @require 1
* @dir img/pictures/
* @type file
*
* @param FreezeBgmVolume
* @desc 停止中のBGM音量です。もとのBGMの音量も考慮されます。
* @default 100
* @type number
*
* @help イベントの自律移動とアニメーションを全停止します。
* 同時にプレイヤーも動けなくなります。
* パラメータで指定したスイッチをONにすると停止、OFFにすると再開します。
*
* また停止中に専用のピクチャを表示したり、BGMの音量を調整したりできます。
* 主にイベント実装のメニューや戦闘への移行に使用します。
* ピクチャの不透明度および合成方法を変更したい場合は、コードの「ユーザ定義領域」を
* 変更してください。
*
* このプラグインにはプラグインコマンドはありません。
*
* This plugin is released under the MIT License.
*/
/*:ja
* @plugindesc キャラクター停止プラグイン
* @author トリアコンタン
*
* @param 停止スイッチID
* @desc キャラクターを全停止されるトリガーになるスイッチIDです。
* @default
* @type switch
*
* @param 停止中ピクチャID
* @desc 停止中にピクチャを表示する場合のピクチャ番号です。
* @default 0
* @type number
*
* @param 停止中ピクチャ名
* @desc 停止中に表示するピクチャファイル名です。
* @default
* @require 1
* @dir img/pictures/
* @type file
*
* @param 停止中BGM音量
* @desc 停止中のBGM音量の倍率です。もとの音量に対して乗算されます。
* @default 100
* @type number
*
* @help イベントの自律移動とアニメーションを全停止します。
* 同時にプレイヤーも動けなくなります。
* パラメータで指定したスイッチをONにすると停止、OFFにすると再開します。
*
* また停止中に専用のピクチャを表示したり、BGMの音量を調整したりできます。
* 主にイベント実装のメニューや戦闘への移行に使用します。
* ピクチャの不透明度および合成方法を変更したい場合は、コードの「ユーザ定義領域」を
* 変更してください。
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function() {
'use strict';
var pluginName = 'CharacterFreeze';
//=============================================================================
// ユーザ定義領域
//=============================================================================
var userSetting = {
pictureInfo: {
opacity : 255,
blendMode: 0
}
};
//=============================================================================
// ローカル関数
// プラグインパラメータやプラグインコマンドパラメータの整形やチェックをします
//=============================================================================
var getParamString = 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 '';
};
var getParamNumber = function(paramNames, min, max) {
var value = getParamString(paramNames);
if (arguments.length < 2) min = -Infinity;
if (arguments.length < 3) max = Infinity;
return (parseInt(value) || 0).clamp(min, max);
};
//=============================================================================
// パラメータの取得と整形
//=============================================================================
var param = {};
param.freezeSwitchId = getParamNumber(['FreezeSwitchId', '停止スイッチID']);
param.freezePictureId = getParamNumber(['FreezePictureId', '停止中ピクチャID']);
param.freezePictureName = getParamString(['FreezePictureName', '停止中ピクチャ名']);
param.freezeBgmVolume = getParamNumber(['FreezeBgmVolume', '停止中BGM音量']);
//=============================================================================
// Game_Map
// フリーズ時に専用のピクチャを表示します。
//=============================================================================
var _Game_Map_update = Game_Map.prototype.update;
Game_Map.prototype.update = function(sceneActive) {
_Game_Map_update.apply(this, arguments);
this.updateFreeze();
};
Game_Map.prototype.updateFreeze = function() {
if (this.isFreeze() && !this._lastFreeze) {
this.startFreeze();
}
if (!this.isFreeze() && this._lastFreeze) {
this.finishFreeze();
}
this._lastFreeze = this.isFreeze();
};
Game_Map.prototype.startFreeze = function() {
if (param.freezePictureId) {
var info = userSetting.pictureInfo;
$gameScreen.showPicture(param.freezePictureId, param.freezePictureName,
0, 0, 0, 100, 100, info.opacity, info.blendMode);
}
if (param.freezeBgmVolume) {
var oldBgm = AudioManager.saveBgm();
var freezeVolume = oldBgm.volume * param.freezeBgmVolume / 100;
var freezeBgm = {name:oldBgm.name, volume:freezeVolume, pitch:oldBgm.pitch, pan:oldBgm.pan};
AudioManager.playBgm(freezeBgm);
this._preFreezeVolume = oldBgm.volume;
}
};
Game_Map.prototype.finishFreeze = function() {
if (param.freezePictureId) {
$gameScreen.erasePicture(param.freezePictureId);
}
if (param.freezeBgmVolume) {
var bgm = AudioManager.saveBgm();
bgm.volume = this._preFreezeVolume;
AudioManager.playBgm(bgm);
this._preFreezeVolume = null;
}
};
Game_Map.prototype.isFreeze = function() {
return $gameSwitches.value(param.freezeSwitchId);
};
//=============================================================================
// Game_CharacterBase
// フリーズ時にイベントとプレイヤーの動きを止めます。
//=============================================================================
Game_CharacterBase.prototype.isFreeze = function() {
return $gameMap.isFreeze();
};
var _Game_CharacterBase_update = Game_CharacterBase.prototype.update;
Game_CharacterBase.prototype.update = function() {
if (this.isFreeze()) return;
_Game_CharacterBase_update.apply(this, arguments);
};
var _Game_Player_canMove = Game_Player.prototype.canMove;
Game_Player.prototype.canMove = function() {
return !this.isFreeze() && _Game_Player_canMove.apply(this, arguments);
};
})();