forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCharacterPicture.js
229 lines (210 loc) · 8.11 KB
/
CharacterPicture.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
/*=============================================================================
CharacterPicture.js
----------------------------------------------------------------------------
(C)2023 Triacontane
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
----------------------------------------------------------------------------
Version
1.0.1 2023/05/22 キャラクターではない通常のピクチャ表示でエラーになる問題を修正
1.0.0 2023/05/20 初版
----------------------------------------------------------------------------
[Blog] : https://triacontane.blogspot.jp/
[Twitter]: https://twitter.com/triacontane/
[GitHub] : https://github.com/triacontane/
=============================================================================*/
/*:
* @plugindesc キャラクターのピクチャ表示プラグイン
* @target MZ
* @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/CharacterPicture.js
* @base PluginCommonBase
* @orderAfter PluginCommonBase
* @author トリアコンタン
*
* @command SET_CHARACTER_PICTURE
* @text キャラクターピクチャ指定
* @desc 指定したキャラクターグラフィックをピクチャ表示します。
*
* @arg imageFile
* @text ファイル
* @desc キャラクターグラフィックのファイルパスです。
* @default
* @type file
* @dir img/characters
*
* @arg index
* @text インデックス
* @desc キャラクターグラフィックのファイルインデックスです。(0-7)
* @default 0
* @type number
* @max 7
*
* @arg cell
* @text セル番号
* @desc キャラクターグラフィックのセル番号です。(0-11)
* @default 1
* @type number
* @max 11
*
* @command CHANGE_CELL_NUMBER
* @text セル番号変更
* @desc 指定したIDのキャラクターピクチャのセル番号を変更します。
*
* @arg pictureId
* @text ピクチャID
* @desc 変更するピクチャのIDです。
* @default 1
* @type number
* @min 1
* @max 100
*
* @arg cell
* @text セル番号
* @desc キャラクターグラフィックのセル番号です。(0-11)
* @default 1
* @type number
* @max 11
*
* @help CharacterPicture.js
*
* キャラクターグラフィックをピクチャとして表示できます。
* プラグインコマンドからキャラクターグラフィックを指定後
* ピクチャの表示を空ファイルで表示すると対応するグラフィックが
* ピクチャとして表示されます。
*
* コマンドで指定するセル番号とは、アニメパターンと向きに対応した番号で
* 左上から右下に向かって0~11の番号が割り当てられています。
*
* このプラグインの利用にはベースプラグイン『PluginCommonBase.js』が必要です。
* 『PluginCommonBase.js』は、RPGツクールMZのインストールフォルダ配下の
* 以下のフォルダに格納されています。
* dlc/BasicResources/plugins/official
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(() => {
'use strict';
const script = document.currentScript;
PluginManagerEx.registerCommand(script, 'SET_CHARACTER_PICTURE', args => {
$gameScreen.setCharacterPicture(args.imageFile, args.index, args.cell);
});
PluginManagerEx.registerCommand(script, 'CHANGE_CELL_NUMBER', args => {
const pictureId = args.pictureId;
const cell = args.cell % 12;
$gameScreen.picture(pictureId)?.setCharacterCell(cell);
});
//=============================================================================
// Game_Screen
// 事前設定ピクチャ名を保持します。
//=============================================================================
Game_Screen.prototype.setCharacterPicture = function(imageFile, index, cell) {
this._characterPicture = {
imageFile: imageFile, index: index, cell: cell
}
};
Game_Screen.prototype.getCharacterPicture = function() {
const picture = this._characterPicture;
this._characterPicture = null;
return picture;
};
//=============================================================================
// Game_Picture
// 事前設定ピクチャ名を取得します。
//=============================================================================
const _Game_Picture_show = Game_Picture.prototype.show;
Game_Picture.prototype.show = function(name, origin, x, y, scaleX,
scaleY, opacity, blendMode) {
this._characterInto = null;
if (!name) {
const characterInfo = $gameScreen.getCharacterPicture();
if (characterInfo) {
this._characterInto = characterInfo;
arguments[0] = `CHARACTER[${characterInfo.imageFile}:${characterInfo.index}]`;
this.setCharacterCell(characterInfo.cell);
}
}
_Game_Picture_show.apply(this, arguments);
};
Game_Picture.prototype.characterInfo = function() {
return this._characterInto;
};
Game_Picture.prototype.setCharacterCell = function(number) {
this._characterCell = number;
};
Game_Picture.prototype.getCharacterCell = function() {
return this._characterCell;
}
const _Sprite_Picture_loadBitmap = Sprite_Picture.prototype.loadBitmap;
Sprite_Picture.prototype.loadBitmap = function() {
const picture = this.picture();
const info = picture?.characterInfo();
if (info) {
const fileName = info.imageFile
this.bitmap = ImageManager.loadCharacter(fileName);
this._isBigCharacter = ImageManager.isBigCharacter(fileName);
this._cellNumber = info.cell;
this.updateCharacterFrame();
} else {
this._cellNumber = -1;
this.setFrame(0, 0, 0, 0);
_Sprite_Picture_loadBitmap.apply(this, arguments);
}
};
const _Sprite_Picture_updateOther = Sprite_Picture.prototype.updateOther;
Sprite_Picture.prototype.updateOther = function() {
_Sprite_Picture_updateOther.apply(this, arguments);
const picture = this.picture();
if (picture && picture.characterInfo() && picture.getCharacterCell() !== this._cellNumber) {
this._cellNumber = picture.getCharacterCell();
this.updateCharacterFrame();
}
};
Sprite_Picture.prototype.updateCharacterFrame = function() {
this.bitmap.addLoadListener(() =>{
const pw = this.patternWidth();
const ph = this.patternHeight();
const sx = (this.characterBlockX() + this.characterPatternX()) * pw;
const sy = (this.characterBlockY() + this.characterPatternY()) * ph;
this.setFrame(sx, sy, pw, ph);
});
};
Sprite_Picture.prototype.characterBlockX = function() {
if (this._isBigCharacter) {
return 0;
} else {
const index = this.picture().characterInfo().index;
return (index % 4) * 3;
}
};
Sprite_Picture.prototype.characterBlockY = function() {
if (this._isBigCharacter) {
return 0;
} else {
const index = this.picture().characterInfo().index;
return Math.floor(index / 4) * 4;
}
};
Sprite_Picture.prototype.characterPatternX = function() {
return this._cellNumber % 3;
};
Sprite_Picture.prototype.characterPatternY = function() {
return Math.floor(this._cellNumber / 3);
};
Sprite_Picture.prototype.patternWidth = function() {
if (this._isBigCharacter) {
return this.bitmap.width / 3;
} else {
return this.bitmap.width / 12;
}
};
Sprite_Picture.prototype.patternHeight = function() {
if (this._isBigCharacter) {
return this.bitmap.height / 4;
} else {
return this.bitmap.height / 8;
}
};
})();