pure-white-gf/js/plugins/NRP_MessagePicture.js
2024-10-30 22:27:55 -05:00

1862 lines
57 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//=============================================================================
// NRP_MessagePicture.js
//=============================================================================
/*:
* @target MZ
* @plugindesc v1.071 Display a picture when showing text.
* @author Takeshi Sunagawa (http://newrpg.seesaa.net/)
* @url http://newrpg.seesaa.net/article/489210228.html
*
* @help Display a picture when showing text.
* It is possible to display a picture automatically
* by referring to the string in the name box.
*
* The image is designed to be replaced with a difference.
* It is also possible to replace only the differences
* in costumes and facial expressions.
*
* It does not have advanced features comparable to existing plugins,
* such as multiple picture display or animation.
* I am aiming for simplicity.
*
* -------------------------------------------------------------------
* [Automatic recognition in the name box]
* -------------------------------------------------------------------
* Set the condition name in "TargetString" of "PictureList"
* and link the pictures.
*
* Example of TargetString: Reid, \n[1]
*
* ※Control Characters and names converted from Control Characters
* are also valid.
*
* This is all you need to do.
* The specified picture will be displayed during Show Text.
*
* The coordinates for showing pictures
* and other parameters can be set by plugin parameters.
* You can also adjust these parameters on a picture-by-picture basis.
*
* -------------------------------------------------------------------
* [Specify by RegistId]
* -------------------------------------------------------------------
* If the character cannot be identified by name,
* it can be specified by ID.
* (For example, a first-time character whose name is not known.)
*
* First, specify "ResistId" for "PictureList".
* The format can be a number or a string.
*
* After that, just specify ResistId
* in the Control Character in the name box.
*
* If ResistId is A, then "\MP[A]".
*
* ※The Control Character (MP) part can be changed.
* ※Any case is acceptable. "\mp[A]" is also valid.
*
* To display a name, you can also add it before or
* after the display name, such as "Mystery Boy\MP[A]".
*
* -------------------------------------------------------------------
* [Don't show picture]
* -------------------------------------------------------------------
* If you do not want the picture to be displayed automatically,
* specify 0 as in "Reid\MP[0]" to hide the picture.
*
* It can also be hidden forever by turning on "DisableSwitch".
*
* -------------------------------------------------------------------
* [Show Difference]
* -------------------------------------------------------------------
* Open "DifferenceList" in "PictureList"
* and link "DiffId" to the picture for difference.
*
* If the target string is "Reid" and DiffId is "sad",
* set the Name box to "Reid\MPD[sad]".
* The difference picture will be displayed.
*
* Also, as for \MPD[], it is valid within the text.
* You can use it when you want
* to change the expression many times in a sentence.
*
* -------------------------------------------------------------------
* [Show Attached Pictures]
* -------------------------------------------------------------------
* AttachedPictures allows you to layer additional pictures
* on top of the base picture.
*
* For example, in combination with a switch, a character's costume
* during a conversation can be changed depending on the situation.
*
* AttachedPictures can be set
* to either "PictureList" or "DifferenceList".
* In particular, in the case of "DifferenceList",
* only AttachedPictures can be changed
* if the base picture is left blank.
*
* -------------------------------------------------------------------
* [Terms]
* -------------------------------------------------------------------
* There are no restrictions.
* Modification, redistribution freedom, commercial availability,
* and rights indication are also optional.
* The author is not responsible,
* but will deal with defects to the extent possible.
*
* @------------------------------------------------------------------
* @ Plugin Parameters
* @------------------------------------------------------------------
*
* @param PictureList
* @type struct<Picture>[]
* @desc List of pictures to be displayed.
*
* @param <PictureSetting>
*
* @param PictureId
* @parent <PictureSetting>
* @type number @min 0
* @default 101
* @desc The number to be used for the picture.
* AttachedPictures will be sequential numbers following this.
*
* @param Origin
* @parent <PictureSetting>
* @type select
* @option 0:Left-Upper @value 0
* @option 1:Center @value 1
* @default 1
* @desc The origin to display the picture.
*
* @param X
* @parent <PictureSetting>
* @type number
* @default 700
* @desc The X coordinate at which the picture is to be displayed.
*
* @param Y
* @parent <PictureSetting>
* @type number
* @default 300
* @desc The Y coordinate at which the picture is to be displayed.
*
* @param ScaleX
* @parent <PictureSetting>
* @type number
* @default 100
* @desc Horizontal scale rate.
* Set the value based on 100.
*
* @param ScaleY
* @parent <PictureSetting>
* @type number
* @default 100
* @desc Vertical scale rate.
* Set the value based on 100.
*
* @param Opacity
* @parent <PictureSetting>
* @type number @min 0 @max 255
* @default 255
* @desc The opacity of the picture.
* 255 makes it completely opaque.
*
* @param BlendMode
* @parent <PictureSetting>
* @type select
* @option 0:Normal @value 0
* @option 1:Additive @value 1
* @option 2:Multiply @value 2
* @option 3:Screen @value 3
* @default 0
* @desc This is a blend mode of drawing a picture.
*
* @param <Control>
*
* @param ControlCharacterPicture
* @parent <Control>
* @type string
* @default MP
* @desc Control character for displaying picture.
* By default, it is used like \MP[RegistId].
*
* @param ControlCharacterDifference
* @parent <Control>
* @type string
* @default MPD
* @desc Control Character for displaying picture differences.
* By default, it is used like \MPD[DiffId].
*
* @param DisableSwitch
* @parent <Control>
* @type switch
* @desc This switch disables the display of pictures.
*/
//-----------------------------------------------------------------------------
// Picture
//-----------------------------------------------------------------------------
/*~struct~Picture:
* @param TargetString
* @type string
* @desc Target string.
* If this exists in the name box. Display picture.
*
* @param ResistId
* @type string
* @desc ID for manual recall of a picture.
* Invoke it like \MP[ResistId].
*
* @param Picture
* @type file
* @dir img/pictures
* @desc This is the base picture for the display.
*
* @param AttachedPictures
* @type file[]
* @dir img/pictures
* @desc A picture that is overlaid on top of a picture.
*
* @param Switch
* @type switch
* @desc Switch to enable display.
* The highest setting among the conditions is displayed.
*
* @param DifferenceList
* @type struct<Difference>[]
* @desc List of picture differences.
*
* @param <PictureSetting>
*
* @param Origin
* @parent <PictureSetting>
* @type select
* @option 0:Left-Upper @value 0
* @option 1:Center @value 1
* @desc The origin to display the picture.
*
* @param AdjustX
* @parent <PictureSetting>
* @type number @min -9999 @max 9999
* @desc X-coordinate adjustment value.
*
* @param AdjustY
* @parent <PictureSetting>
* @type number @min -9999 @max 9999
* @desc Y-coordinate adjustment value.
*
* @param ScaleX
* @parent <PictureSetting>
* @type number
* @desc Horizontal scale rate.
* Set the value based on 100.
*
* @param ScaleY
* @parent <PictureSetting>
* @type number
* @desc Vertical scale rate.
* Set the value based on 100.
*
* @param Opacity
* @parent <PictureSetting>
* @type number @min 0 @max 255
* @desc The opacity of the picture.
* 255 makes it completely opaque.
*
* @param BlendMode
* @parent <PictureSetting>
* @type select
* @option 0:Normal @value 0
* @option 1:Additive @value 1
* @option 2:Multiply @value 2
* @option 3:Screen @value 3
* @desc This is a blend mode of drawing a picture.
*/
//-----------------------------------------------------------------------------
// Difference
//-----------------------------------------------------------------------------
/*~struct~Difference:
* @param DiffId
* @type string
* @desc ID to be targeted for diff.
* \MP[RegistId]\MPD[DiffId] to call it.
*
* @param Picture
* @type file
* @dir img/pictures
* @desc This is the base picture for the display.
*
* @param AttachedPictures
* @type file[]
* @dir img/pictures
* @desc A picture that is overlaid on top of a picture.
*
* @param Switch
* @type switch
* @desc Switch to enable display.
* The highest setting among the conditions is displayed.
*
* @param Origin
* @parent <PictureSetting>
* @type select
* @option 0:Left-Upper @value 0
* @option 1:Center @value 1
* @desc The origin to display the picture.
*
* @param AdjustX
* @parent <PictureSetting>
* @type number @min -9999 @max 9999
* @desc X-coordinate adjustment value.
*
* @param AdjustY
* @parent <PictureSetting>
* @type number @min -9999 @max 9999
* @desc Y-coordinate adjustment value.
*
* @param ScaleX
* @parent <PictureSetting>
* @type number
* @desc Horizontal scale rate.
* Set the value based on 100.
*
* @param ScaleY
* @parent <PictureSetting>
* @type number
* @desc Vertical scale rate.
* Set the value based on 100.
*
* @param Opacity
* @parent <PictureSetting>
* @type number @min 0 @max 255
* @desc The opacity of the picture.
* 255 makes it completely opaque.
*
* @param BlendMode
* @parent <PictureSetting>
* @type select
* @option 0:Normal @value 0
* @option 1:Additive @value 1
* @option 2:Multiply @value 2
* @option 3:Screen @value 3
* @desc This is a blend mode of drawing a picture.
*
* @param FadeInDuration
* @parent <PictureSetting>
* @type number
* @desc The fade-in time of the picture.
* 60 corresponds to one second.
*
* @param ShowAboveWindow
* @parent <PictureSetting>
* @type boolean
* @default false
* @desc Displays the picture above the message window.
*
* @param LimitMessageWidth
* @parent <PictureSetting>
* @type number
* @desc Limit the width of the message to the specified value when displaying a picture. Text is automatically reduced in size.
*
* @param ShowBelowMessages
* @parent <PictureSetting>
* @type boolean
* @default false
* @desc If "ShowAboveWindow" is on, the picture is displayed below the message.
*
* @param AdjustMessageX
* @parent ShowBelowMessages
* @type number
* @default 16
* @desc Adjust the X coordinate of messages when "ShowBelowMessages" is on.
*
* @param AdjustMessageY
* @parent ShowBelowMessages
* @type number
* @default 20
* @desc Adjust the Y coordinate of messages when "ShowBelowMessages" is on.
*/
/*:ja
* @target MZ
* @plugindesc v1.071 文章の表示時に立ち絵を表示する。
* @author 砂川赳http://newrpg.seesaa.net/
* @url http://newrpg.seesaa.net/article/489210228.html
*
* @help 文章の表示時に立ち絵となるピクチャを表示します。
* 名前欄の文字列を参照し、自動で表示することが可能です。
*
* また、差分なども想定した作りになっています。
* 衣装や表情などの差分だけを差し替えることも可能です。
*
* ピクチャの複数表示やアニメーションといった
* 既存のプラグインに匹敵するような高度な機能はありません。
* あくまでシンプルなものを目指しています。
*
* -------------------------------------------------------------------
* ■名前欄で自動認識
* -------------------------------------------------------------------
* 『ピクチャリスト』の『対象文字列』に条件とする名前を設定し、
* ピクチャを紐づけてください。
*
* 対象文字列の例:リード、\n[1]
* ※制御文字や制御文字を変換した名前も有効です。
*
* これだけでOKです。
* 文章の表示時に指定したピクチャが表示されるようになります。
*
* なお、ピクチャを表示する座標などはプラグインパラメータで設定できます。
* ピクチャ毎に調整することも可能です。
*
* -------------------------------------------------------------------
* ■登録IDで指定
* -------------------------------------------------------------------
* 名前で識別できない場合はIDで指定することもできます。
* (例えば、名前が判明していない初登場のキャラクターなど。)
*
* まずピクチャリストに『登録ID』を指定してください。
* 形式は数値でも文字列でも構いません。
*
* 後は名前欄の制御文字で登録IDを指定すればOKです。
* 登録がAならば
*
* - \MP[A]
*
* となります。
*
* ※制御文字MPの部分は変更できます。
* ※大文字小文字は問いません。\mp[A]も有効です。
*
* 名前を表示する場合も、
*
* - 謎の少年\MP[A]
*
* というように表示名の前後に付ければOKです。
*
* -------------------------------------------------------------------
* ■ピクチャを表示しない
* -------------------------------------------------------------------
* ピクチャを自動表示したくない場合は、
*
* - リード\MP[0]
*
* というように0を指定すれば、ピクチャが非表示になります。
*
* また『ピクチャ無効スイッチ』をオンにすれば、ずっと非表示にできます。
*
* -------------------------------------------------------------------
* ■差分の表示
* -------------------------------------------------------------------
* 『ピクチャリスト』内の『差分リスト』を開き、
* 『差分ID』と差分用のピクチャを紐づけてください。
*
* 対象文字列がリードで差分が『sad』とすると、
* 名前欄を
*
* - リード\MPD[sad]
*
* とすれば、差分が表示されます。
*
* また、\MPD[]に関しては本文内でも有効です。
* 文章内で何度も表情を変えたい場合などに使えます。
*
* -------------------------------------------------------------------
* ■付属ピクチャの表示
* -------------------------------------------------------------------
* 付属ピクチャを指定すれば、
* ベースとなるピクチャの上にさらにピクチャを重ねられます。
*
* 例えば、スイッチと組み合わせれば、
* 状況によって会話時のキャラクターの衣装を変更できます。
*
* 付属ピクチャは『ピクチャリスト』『差分リスト』のいずれにも設定できます。
* 特に『差分リスト』の場合は、ベースとなるピクチャを空欄にすれば、
* 付属ピクチャのみを変更できます。
*
* -------------------------------------------------------------------
* ■利用規約
* -------------------------------------------------------------------
* 特に制約はありません。
* 改変、再配布自由、商用可、権利表示も任意です。
* 作者は責任を負いませんが、不具合については可能な範囲で対応します。
*
* @------------------------------------------------------------------
* @ プラグインパラメータ
* @------------------------------------------------------------------
*
* @param PictureList
* @text ピクチャリスト
* @type struct<Picture>[]
* @desc 立ち絵の表示を行うピクチャの一覧です。
*
* @param <PictureSetting>
* @text <ピクチャ設定>
*
* @param PictureId
* @parent <PictureSetting>
* @text ピクチャ番号
* @type number @min 0
* @default 101
* @desc 立ち絵のピクチャに使用する番号です。
* 付属ピクチャはこれに続く連番となります。
*
* @param Origin
* @parent <PictureSetting>
* @text 原点
* @type select
* @option 0:左上 @value 0
* @option 1:中央 @value 1
* @default 1
* @desc ピクチャを表示する原点です。
*
* @param X
* @parent <PictureSetting>
* @text X座標
* @type number
* @default 700
* @desc ピクチャを表示するX座標です。
*
* @param Y
* @parent <PictureSetting>
* @text Y座標
* @type number
* @default 300
* @desc ピクチャを表示するY座標です。
*
* @param ScaleX
* @parent <PictureSetting>
* @text 拡大率(幅)
* @type number
* @default 100
* @desc 横方向の拡大率です。
* 100を基準に設定してください。
*
* @param ScaleY
* @parent <PictureSetting>
* @text 拡大率(縦)
* @type number
* @default 100
* @desc 縦方向の拡大率です。
* 100を基準に設定してください。
*
* @param Opacity
* @parent <PictureSetting>
* @text 不透明度
* @type number @min 0 @max 255
* @default 255
* @desc ピクチャの不透明度です。
* 255で完全な不透明になります。
*
* @param BlendMode
* @parent <PictureSetting>
* @text 合成方法
* @type select
* @option 0:通常 @value 0
* @option 1:加算 @value 1
* @option 2:乗算 @value 2
* @option 3:スクリーン @value 3
* @default 0
* @desc ピクチャを描画する合成方法です。
*
* @param FadeInDuration
* @parent <PictureSetting>
* @text フェードイン時間
* @type number
* @desc ピクチャのフェードイン時間です。
* 60が一秒に相当します。
*
* @param ShowAboveWindow
* @parent <PictureSetting>
* @text ウィンドウより上に表示
* @type boolean
* @default false
* @desc ピクチャをメッセージウィンドウより上に表示します。
*
* @param LimitMessageWidth
* @parent <PictureSetting>
* @text 文章の横幅制限
* @type number
* @desc ピクチャ表示時、文章の横幅を指定した値に制限します。文字は自動的に縮小されます。
*
* @param ShowBelowMessages
* @parent <PictureSetting>
* @text 文章より下に表示
* @type boolean
* @default false
* @desc 『ウィンドウより上に表示』がオンの場合に、ピクチャを文章より下に表示します。
*
* @param AdjustMessageX
* @parent ShowBelowMessages
* @text 文章のX座標調整
* @type number
* @default 16
* @desc 『文章より下に表示』がオンの場合に、文章のX座標を調整します。
*
* @param AdjustMessageY
* @parent ShowBelowMessages
* @text 文章のY座標調整
* @type number
* @default 20
* @desc 『文章より下に表示』がオンの場合に、文章のY座標を調整します。
*
* @param <Control>
* @text <制御>
*
* @param ControlCharacterPicture
* @parent <Control>
* @text ピクチャ用制御文字
* @type string
* @default MP
* @desc ピクチャ表示用の制御文字です。
* デフォルトでは、\MP[登録ID]のように使います。
*
* @param ControlCharacterDifference
* @parent <Control>
* @text 差分用制御文字
* @type string
* @default MPD
* @desc ピクチャの差分表示用の制御文字です。
* デフォルトでは、\MPD[差分ID]のように使います。
*
* @param DisableSwitch
* @parent <Control>
* @text ピクチャ無効スイッチ
* @type switch
* @desc ピクチャの表示を無効化するスイッチです。
*/
//-----------------------------------------------------------------------------
// Picture
//-----------------------------------------------------------------------------
/*~struct~Picture:ja
* @param TargetString
* @text 対象文字列
* @type string
* @desc 対象とする文字列です。
* これが名前欄に存在する場合に画像を表示します。
*
* @param ResistId
* @text 登録ID
* @type string
* @desc ピクチャを手動で呼び出す場合のIDです。
* \MP[登録ID]のようにして呼び出します。
*
* @param Picture
* @text ピクチャ
* @type file
* @dir img/pictures
* @desc 表示のベースとなるピクチャです。
*
* @param AttachedPictures
* @text 付属ピクチャ
* @type file[]
* @dir img/pictures
* @desc ピクチャの上にさらに重ねて表示されるピクチャです。
*
* @param Switch
* @text スイッチ
* @type switch
* @desc 表示を有効にするスイッチです。
* 条件を満たした中で最も上の設定が表示されます。
*
* @param DifferenceList
* @text 差分リスト
* @type struct<Difference>[]
* @desc 立ち絵の差分の一覧です。
*
* @param <PictureSetting>
* @text <ピクチャ設定>
*
* @param Origin
* @parent <PictureSetting>
* @text 原点
* @type select
* @option 0:左上 @value 0
* @option 1:中央 @value 1
* @desc ピクチャを表示する原点です。
*
* @param AdjustX
* @parent <PictureSetting>
* @text X座標調整
* @type number @min -9999 @max 9999
* @desc X座標の調整値です。
*
* @param AdjustY
* @parent <PictureSetting>
* @text Y座標調整
* @type number @min -9999 @max 9999
* @desc Y座標の調整値です。
*
* @param ScaleX
* @parent <PictureSetting>
* @text 拡大率(幅)
* @type number
* @desc 横方向の拡大率です。
* 100を基準に設定してください。
*
* @param ScaleY
* @parent <PictureSetting>
* @text 拡大率(縦)
* @type number
* @desc 縦方向の拡大率です。
* 100を基準に設定してください。
*
* @param Opacity
* @parent <PictureSetting>
* @text 不透明度
* @type number @min 0 @max 255
* @desc ピクチャの不透明度です。
* 255で完全な不透明になります。
*
* @param BlendMode
* @parent <PictureSetting>
* @text 合成方法
* @type select
* @option 0:通常 @value 0
* @option 1:加算 @value 1
* @option 2:乗算 @value 2
* @option 3:スクリーン @value 3
* @desc ピクチャを描画する合成方法です。
*/
//-----------------------------------------------------------------------------
// Difference
//-----------------------------------------------------------------------------
/*~struct~Difference:ja
* @param DiffId
* @text 差分ID
* @type string
* @desc 差分用の対象とするIDです。
* \MP[登録ID]\MPD[差分ID]のようにして呼び出します。
*
* @param Picture
* @text ピクチャ
* @type file
* @dir img/pictures
* @desc 表示のベースとなるピクチャです。
*
* @param AttachedPictures
* @text 付属ピクチャ
* @type file[]
* @dir img/pictures
* @desc ピクチャの上にさらに重ねて表示されるピクチャです。
*
* @param Switch
* @text スイッチ
* @type switch
* @desc 表示を有効にするスイッチです。
* 条件を満たした中で最も上の設定が表示されます。
*
* @param Origin
* @text 原点
* @type select
* @option 0:左上 @value 0
* @option 1:中央 @value 1
* @desc ピクチャを表示する原点です。
*
* @param AdjustX
* @text X座標調整
* @type number @min -9999 @max 9999
* @desc X座標の調整値です。
*
* @param AdjustY
* @text Y座標調整
* @type number @min -9999 @max 9999
* @desc Y座標の調整値です。
*
* @param ScaleX
* @text 拡大率(幅)
* @type number
* @desc 横方向の拡大率です。
* 100を基準に設定してください。
*
* @param ScaleY
* @text 拡大率(縦)
* @type number
* @desc 縦方向の拡大率です。
* 100を基準に設定してください。
*
* @param Opacity
* @text 不透明度
* @type number @min 0 @max 255
* @desc ピクチャの不透明度です。
* 255で完全な不透明になります。
*
* @param BlendMode
* @text 合成方法
* @type select
* @option 0:通常 @value 0
* @option 1:加算 @value 1
* @option 2:乗算 @value 2
* @option 3:スクリーン @value 3
* @desc ピクチャを描画する合成方法です。
*/
(function () {
"use strict";
function toBoolean(str, def) {
if (str === true || str === "true") {
return true;
} else if (str === false || str === "false") {
return false;
}
return def;
}
function toNumber(str, def) {
if (str == undefined || str == "") {
return def;
}
return isNaN(str) ? def : +(str || def);
}
/**
* ●構造体二重配列をJSで扱えるように変換
*/
function parseStruct2(arg) {
var ret = [];
if (arg) {
JSON.parse(arg).forEach(function (str) {
ret.push(JSON.parse(str));
});
}
return ret;
}
const PLUGIN_NAME = "NRP_MessagePicture";
const parameters = PluginManager.parameters(PLUGIN_NAME);
const pPictureList = parseStruct2(parameters["PictureList"]);
let pPictureId = toNumber(parameters["PictureId"]);
const pOrigin = parameters["Origin"];
const pX = parameters["X"];
const pY = parameters["Y"];
const pScaleX = parameters["ScaleX"];
const pScaleY = parameters["ScaleY"];
const pOpacity = parameters["Opacity"];
const pBlendMode = parameters["BlendMode"];
const pFadeInDuration = toNumber(parameters["FadeInDuration"]);
const pShowAboveWindow = toBoolean(parameters["ShowAboveWindow"]);
const pLimitMessageWidth = toNumber(parameters["LimitMessageWidth"]);
const pShowBelowMessages = toBoolean(parameters["ShowBelowMessages"]);
const pAdjustMessageX = toNumber(parameters["AdjustMessageX"], 0);
const pAdjustMessageY = toNumber(parameters["AdjustMessageY"], 0);
const pControlCharacterPicture =
parameters["ControlCharacterPicture"].toUpperCase(); // 大文字化
const pControlCharacterDifference =
parameters["ControlCharacterDifference"].toUpperCase(); // 大文字化
const pDisableSwitch = toNumber(parameters["DisableSwitch"]);
// ----------------------------------------------------------------------------
// ピクチャをウィンドウより上に表示する場合は別コンテナとなるので、
// 番号も適当に別のものを振る。
// ----------------------------------------------------------------------------
if (pShowAboveWindow) {
pPictureId = 9999;
}
// ----------------------------------------------------------------------------
// Game_Interpreter
// ----------------------------------------------------------------------------
// ピクチャIDを保持(削除用)
let mPictureId = null;
// 現在表示中のピクチャデータ(差分なし)
let mPictureData = null;
// 付属ピクチャの最大数
let mMaxAttachedPictures = getMaxAttachedPictures();
/**
* ●付属ピクチャの最大数を取得
*/
function getMaxAttachedPictures() {
// 付属ピクチャの最大数を取得
let diffMax = 0;
// 全ピクチャのリストをループし、一致する情報を取得
for (const pictureData of pPictureList) {
// 差分を取得
const differenceList = parseStruct2(pictureData.DifferenceList);
for (const diff of differenceList) {
if (diff.AttachedPictures) {
const attachedPictures = JSON.parse(diff.AttachedPictures);
diffMax = Math.max(diffMax, attachedPictures.length);
}
}
}
return diffMax;
}
/**
* ●文章の表示
*/
const _Game_Interpreter_command101 = Game_Interpreter.prototype.command101;
Game_Interpreter.prototype.command101 = function (params) {
// 禁止スイッチがオンの場合は無効
if (pDisableSwitch && $gameSwitches.value(pDisableSwitch)) {
return _Game_Interpreter_command101.apply(this, arguments);
}
// 名前欄を取得
const name = params[4];
if (!name) {
erasePicture();
return _Game_Interpreter_command101.apply(this, arguments);
}
// 名前欄に一致するピクチャ設定を取得
let pictureData = getMatchPictureData(name);
if (!pictureData) {
erasePicture();
return _Game_Interpreter_command101.apply(this, arguments);
}
// 差分情報を反映
pictureData = getMatchDifferenceData(name, pictureData);
// ピクチャを表示
showPicture(pictureData);
// 現在表示中のピクチャデータ(付属込)を保持
mPictureData = pictureData;
return _Game_Interpreter_command101.apply(this, arguments);
};
/**
* ●ピクチャを表示する。
*/
function showPicture(pictureData) {
// ピクチャを生成
const pictureParams = getPictureParams(pictureData);
// 削除用にピクチャIDを保持
mPictureId = pictureParams[0];
// 位置を取得
const point = Game_Interpreter.prototype.picturePoint(pictureParams);
// ピクチャの表示
showPictureAndMove(
pictureParams[0],
pictureParams[1],
pictureParams[1],
pictureParams[2],
point.x,
point.y,
pictureParams[6],
pictureParams[7],
pictureParams[8],
pictureParams[9]
);
// 付属ピクチャがあれば生成
if (pictureData.attachedPictures) {
const attachedPictures = pictureData.attachedPictures;
let pictureId = pictureParams[0];
// 先に差分を削除
for (let i = 0; i < mMaxAttachedPictures; i++) {
$gameScreen.erasePicture(mPictureId + i + 1);
}
for (const diffPicture of attachedPictures) {
// 追加の数だけピクチャIDを加算
pictureId++;
// 付属ピクチャの表示
if (diffPicture) {
showPictureAndMove(
pictureId,
pictureParams[1],
diffPicture,
pictureParams[2],
point.x,
point.y,
pictureParams[6],
pictureParams[7],
pictureParams[8],
pictureParams[9]
);
}
}
// なければ削除
} else {
// 差分も削除
for (let i = 0; i < mMaxAttachedPictures; i++) {
$gameScreen.erasePicture(mPictureId + i + 1);
}
}
// リフレッシュが必要かの判定
if (needsRefresh(mPictureData, pictureData)) {
const spriteset = getSpriteset();
// 立絵画像毎に更新
for (const picture of spriteset.getMessagePictures()) {
picture.update();
picture.updateBitmap();
// 非表示にしておく。
picture.visible = false;
}
}
}
/**
* ●ピクチャを表示および移動する
* ※フェードインなども考慮
*/
function showPictureAndMove(
pictureId,
basePicture,
picture,
origin,
x,
y,
scaleX,
scaleY,
opacity,
blendMode
) {
let fadeFlag = false;
// フェードイン時間が設定されている場合
if (pFadeInDuration) {
// ピクチャが表示中ではない。
// または、ベースピクチャに変化がある場合
if (!mPictureData || mPictureData.Picture != basePicture) {
fadeFlag = true;
}
}
// フェードインする場合
if (fadeFlag) {
// ピクチャの表示
// pictureId, name, origin, x, y, scaleX, scaleY, opacity, blendMode
$gameScreen.showPicture(
pictureId,
picture,
origin,
x,
y,
scaleX,
scaleY,
0,
blendMode
);
// pictureId, origin, x, y, scaleX, scaleY, opacity, blendMode, duration, easingType
$gameScreen.movePicture(
pictureId,
origin,
x,
y,
scaleX,
scaleY,
opacity,
blendMode,
pFadeInDuration,
0
);
// 瞬間表示
} else {
// ピクチャの表示
// pictureId, name, origin, x, y, scaleX, scaleY, opacity, blendMode
$gameScreen.showPicture(
pictureId,
picture,
origin,
x,
y,
scaleX,
scaleY,
opacity,
blendMode
);
}
}
/**
* ●スイッチが有効かどうか?
*/
function isSwitchOk(targetSwitch) {
// スイッチの指定がない場合は常にOK
if (!targetSwitch) {
return true;
}
return $gameSwitches.value(targetSwitch);
}
/**
* ●ピクチャスプライトを取得
*/
function getPictureSprite(spriteset, pictureId) {
return spriteset
.getMessagePictureContainer()
.children.find((p) => p._pictureId == pictureId);
}
/**
* ●表示中のピクチャを消去する。
*/
function erasePicture() {
if (mPictureId) {
$gameScreen.erasePicture(mPictureId);
// 差分も削除
for (let i = 0; i < mMaxAttachedPictures; i++) {
$gameScreen.erasePicture(mPictureId + i + 1);
}
// 変数クリア
mPictureId = null;
mPictureData = null;
}
}
/**
* ●変更検知
* ※描画更新用の調整が必要かの判定
*  位置や拡大率が変更された際、前の画像のまま
*  一瞬だけ新しい設定で描画されてしまう問題への対処。
*/
function needsRefresh(oldData, newData) {
// データが存在しないならば処理不要
if (!oldData) {
return false;
}
// 原点、位置、拡大率、不透明度、合成方法が変更された時
if (
oldData.Origin != newData.Origin ||
oldData.AdjustX != newData.AdjustX ||
oldData.AdjustY != newData.AdjustY ||
oldData.DiffAdjustX != newData.DiffAdjustX ||
oldData.DiffAdjustY != newData.DiffAdjustY ||
oldData.ScaleX != newData.ScaleX ||
oldData.ScaleY != newData.ScaleY ||
oldData.Opacity != newData.Opacity ||
oldData.BlendMode != newData.BlendMode
) {
return true;
}
return false;
}
/**
* ●一致するピクチャ情報を取得する。
*/
function getMatchPictureData(name) {
// 戻るピクチャ情報
let retPicture = null;
// 大文字変換
const upperName = name.toUpperCase();
// 変換後の名前も取得(例:\n[1]→リード)
const convertName = convertEscapeCharacters(upperName);
// 名前欄に指定されている登録ID
let nameResistId = null;
// マッチしたかどうか?
let isMatch = false;
// 名前欄に対する\MP[登録ID]の一致状況を取得
const matchStrs = upperName.match(
".*\\" + pControlCharacterPicture + "\\[(.*?)\\].*"
);
if (matchStrs) {
// 登録IDを抜き出す。
nameResistId = matchStrs[1];
isMatch = true;
// 全ピクチャのリストをループし、一致する情報を取得
for (const picture of pPictureList) {
// スイッチが有効でない場合は飛ばす
if (!isSwitchOk(picture.Switch)) {
continue;
}
// 0の場合は非表示と見なす。
if (!nameResistId || nameResistId == "0") {
return null;
}
if (picture.ResistId) {
// 大文字変換
const resistId = picture.ResistId.toUpperCase();
// 名前欄に指定されているIDと一致
if (nameResistId == resistId) {
// 一致するピクチャを返す。
retPicture = picture;
break;
}
}
}
// 名前欄で自動認識する場合
} else {
// 全ピクチャのリストをループし、一致する情報を取得
for (const picture of pPictureList) {
// スイッチが有効でない場合は飛ばす
if (!isSwitchOk(picture.Switch)) {
continue;
}
if (picture.TargetString) {
// 大文字変換
const targetString = picture.TargetString.toUpperCase();
// 部分一致
if (upperName.indexOf(targetString) >= 0) {
retPicture = picture;
break;
// 変換後の名前欄でも確認
} else if (convertName.indexOf(targetString) >= 0) {
retPicture = picture;
break;
}
}
}
}
// ピクチャがあった場合
if (retPicture) {
// 初期値を設定しておく。
retPicture.DiffAdjustX = 0;
retPicture.DiffAdjustY = 0;
// ※元の値を上書きしないように{...}で複製
return { ...retPicture };
}
// 一致がない場合はnullを返す。
return null;
}
/**
* ●一致する差分情報を取得する。
*/
function getMatchDifferenceData(name, pictureData) {
// 大文字変換
const upperName = name.toUpperCase();
// 名前欄に指定されている差分ID
let nameDiffId = null;
// 名前欄に対する\MPD[差分ID]の一致状況を取得
const matchStrs = upperName.match(
".*\\" + pControlCharacterDifference + "\\[(.*)\\].*"
);
if (matchStrs) {
// 差分IDを抜き出す。
nameDiffId = matchStrs[1];
// さらに差分を取得
return setDifferenceData(pictureData, nameDiffId);
}
// 差分なしなら、そのまま返す
return pictureData;
}
/**
* ●差分情報を反映する。
*/
function setDifferenceData(pictureData, setDiffId) {
// 大文字変換しておく。
setDiffId = setDiffId.toUpperCase();
// 元の値は変更したくないので複製
const newData = { ...pictureData };
// 差分を取得
const differenceList = parseStruct2(pictureData.DifferenceList);
for (const diff of differenceList) {
if (diff.DiffId) {
// 大文字変換
const diffId = diff.DiffId.toUpperCase();
// 名前欄に指定されているIDと一致
// かつ、スイッチが有効
if (setDiffId == diffId && isSwitchOk(diff.Switch)) {
// 差分情報を元にピクチャデータを補正&上書
newData.Picture = getNewValue(pictureData.Picture, diff.Picture);
newData.Switch = diff.Switch;
newData.Origin = getNewValue(pictureData.Origin, diff.Origin);
newData.ScaleX = getNewValue(pictureData.ScaleX, diff.ScaleX);
newData.ScaleY = getNewValue(pictureData.ScaleY, diff.ScaleY);
newData.Opacity = getNewValue(pictureData.Opacity, diff.Opacity);
newData.BlendMode = getNewValue(
pictureData.BlendMode,
diff.BlendMode
);
// 調整座標だけは別計算にする。
newData.DiffAdjustX = toNumber(diff.AdjustX, 0);
newData.DiffAdjustY = toNumber(diff.AdjustY, 0);
// 付属ピクチャ
let attachedPictures = [];
// まずは基本側の付属情報を取得
if (pictureData.AttachedPictures) {
attachedPictures = JSON.parse(pictureData.AttachedPictures);
}
// 付属側の付属情報と比較し、指定のある項目のみ差分側を反映
if (diff.AttachedPictures) {
const diffAttachedPictures = JSON.parse(diff.AttachedPictures);
for (let i = 0; i < mMaxAttachedPictures; i++) {
attachedPictures[i] = getNewValue(
attachedPictures[i],
diffAttachedPictures[i]
);
}
}
newData.attachedPictures = attachedPictures;
break;
}
}
}
// 加工した値を返す。
return newData;
}
/**
* ●ピクチャの表示に渡すパラメータを設定
* ・params[0]:ピクチャ番号
* ・params[1]:ファイル名
* ・params[2]:原点
* ・params[3]0:直接指定 or 1:変数指定
* ・params[4]:X座標またはX座標の変数
* ・params[5]:Y座標またはY座標の変数
* ・params[6]:拡大率(幅)
* ・params[7]:拡大率(高さ)
* ・params[8]:不透明度
* ・params[9]:合成方法
*/
function getPictureParams(data) {
const params = [];
params[0] = pPictureId;
params[1] = data.Picture;
params[2] = eval(getNewValue(pOrigin, data.Origin)); // 右側の値がある場合は優先
params[3] = 0;
params[4] =
eval(pX) + toNumber(data.AdjustX, 0) + toNumber(data.DiffAdjustX, 0);
params[5] =
eval(pY) + toNumber(data.AdjustY, 0) + toNumber(data.DiffAdjustY, 0);
params[6] = eval(getNewValue(pScaleX, data.ScaleX));
params[7] = eval(getNewValue(pScaleY, data.ScaleY));
params[8] = eval(getNewValue(pOpacity, data.Opacity));
params[9] = eval(getNewValue(pBlendMode, data.BlendMode));
return params;
}
/**
* ●新しい値が存在する場合は優先する。
*/
function getNewValue(oldValue, newValue) {
if (newValue != null && newValue != "") {
return newValue;
}
return oldValue;
}
// ----------------------------------------------------------------------------
// Sprite_Picture
// ----------------------------------------------------------------------------
const _Sprite_Picture_updateBitmap = Sprite_Picture.prototype.updateBitmap;
Sprite_Picture.prototype.updateBitmap = function () {
// 立絵の場合
if (this.isMessagePicture()) {
const spriteset = getSpriteset();
if (!spriteset) {
_Sprite_Picture_updateBitmap.apply(this, arguments);
return;
}
// 他に読込未完了のピクチャがあるなら停止
if (!spriteset._isMessgePicturesReady) {
// 非表示にしておく。
this.visible = false;
return;
}
}
_Sprite_Picture_updateBitmap.apply(this, arguments);
};
/**
* 【独自】立絵を構成するピクチャかどうかを判定
*/
Sprite_Picture.prototype.isMessagePicture = function () {
const pictureId = this._pictureId;
const maxPictureId = pPictureId + mMaxAttachedPictures;
// ピクチャが立絵の対象の場合
if (pictureId >= pPictureId && pictureId <= maxPictureId) {
return true;
}
return false;
};
// ----------------------------------------------------------------------------
// Spriteset_Base
// ----------------------------------------------------------------------------
/**
* ●更新処理
*/
const _Spriteset_Base_update = Spriteset_Base.prototype.update;
Spriteset_Base.prototype.update = function () {
this._isMessgePicturesReady = this.checkMessgePicturesReady();
_Spriteset_Base_update.apply(this, arguments);
};
/**
* 【独自】メッセージ用ピクチャの読込が完了しているか?
*/
Spriteset_Base.prototype.checkMessgePicturesReady = function () {
// ピクチャの配列を取得
// ※NRP_PicturePriorityなどでピクチャの参照場所が変わるので考慮
const pictures = this.getMessagePictures();
// ピクチャ毎にループ
for (const spritePicture of pictures) {
if (!spritePicture || !spritePicture.bitmap) {
continue;
}
const bitmap = spritePicture.bitmap;
// 読込状況をチェック
if (bitmap && !bitmap.isReady()) {
// 未完了ならばfalse
return false;
}
}
return true;
};
/**
* 【独自】立絵ピクチャの配列を取得
*/
Spriteset_Base.prototype.getMessagePictures = function () {
const container = this.getMessagePictureContainer();
return container.children.filter((p) => p.isMessagePicture());
};
/**
* 【独自】立絵ピクチャのコンテナを取得
*/
Spriteset_Base.prototype.getMessagePictureContainer = function () {
// 独自コンテナがある場合はそちらを優先
if (this._messagePictureContainer) {
return this._messagePictureContainer;
}
return this._pictureContainer;
};
// ----------------------------------------------------------------------------
// Window_Base
// ----------------------------------------------------------------------------
/**
* ●制御文字(一つずつの処理)
*/
const _Window_Base_processEscapeCharacter =
Window_Base.prototype.processEscapeCharacter;
Window_Base.prototype.processEscapeCharacter = function (code, textState) {
let id;
switch (code) {
case pControlCharacterPicture:
id = obtainEscapeParamEx(textState);
break;
case pControlCharacterDifference:
id = obtainEscapeParamEx(textState);
// メッセージかつデータがある場合のみ処理
if (this instanceof Window_Message && mPictureData) {
// 差分を反映
const pictureData = setDifferenceData(mPictureData, id);
// ピクチャを表示
showPicture(pictureData);
}
break;
default:
_Window_Base_processEscapeCharacter.apply(this, arguments);
break;
}
};
/**
* ●パラメータの中身を入手
*/
function obtainEscapeParamEx(textState) {
// const regExp = /^\[\d+\]/;
const regExp = /^\[\w+\]/; // 文字列もOKとなるように修正
const arr = regExp.exec(textState.text.slice(textState.index));
if (arr) {
textState.index += arr[0].length;
return arr[0].slice(1).replace("]", "");
// return parseInt(arr[0].slice(1));
} else {
return "";
}
}
// ----------------------------------------------------------------------------
// Window_Message
// ----------------------------------------------------------------------------
/**
* ●メッセージを閉じる際の確認
* ※terminateMessageはウィンドウを閉じない場合でも、
*  毎回呼び出されるっぽいのでこちらに実装
*/
const _Window_Message_checkToNotClose =
Window_Message.prototype.checkToNotClose;
Window_Message.prototype.checkToNotClose = function () {
// isOpenからisClosingに転じたタイミングで処理
if (this.isOpen()) {
_Window_Message_checkToNotClose.apply(this, arguments);
// 表示するメッセージがないなら、メッセージ終了と判断してピクチャを削除
if (this.isClosing() && !$gameMessage.hasText()) {
erasePicture();
}
return;
}
_Window_Message_checkToNotClose.apply(this, arguments);
};
// ----------------------------------------------------------------------------
// Window_NameBox
// ----------------------------------------------------------------------------
/**
* ●ウィンドウの横幅設定
* ※当プラグインにより、名前欄に非表示の制御文字だけを入力する可能性が発生する。
*  その場合に、名前欄が表示されないようにするための処置。
*/
const _Window_NameBox_windowWidth = Window_NameBox.prototype.windowWidth;
Window_NameBox.prototype.windowWidth = function () {
// 実際の表示サイズが0なら非表示
if (this._name && this.textSizeEx(this._name).width == 0) {
return 0;
}
return _Window_NameBox_windowWidth.apply(this, arguments);
};
// ----------------------------------------------------------------------------
// Game_Screen
// ----------------------------------------------------------------------------
/**
* ●ウィンドウより上に表示がオンの場合は、
*  独立したコンテナを使うため拡張しない。
*/
if (!pShowAboveWindow) {
/**
* ●ピクチャの最大値
*/
const _Game_Screen_maxPictures = Game_Screen.prototype.maxPictures;
Game_Screen.prototype.maxPictures = function () {
// 101以上のピクチャを使う場合は領域を増やしておく。
return Math.max(
pPictureId + mMaxAttachedPictures,
_Game_Screen_maxPictures.apply(this, arguments)
);
};
}
// ----------------------------------------------------------------------------
// ピクチャをウィンドウより上に表示
// ----------------------------------------------------------------------------
if (pShowAboveWindow) {
// const _Scene_Base_createWindowLayer = Scene_Base.prototype.createWindowLayer;
// Scene_Base.prototype.createWindowLayer = function() {
// _Scene_Base_createWindowLayer.apply(this, arguments);
// // シーン直下にメッセージ用コンテナを追加
// if (this._spriteset) {
// this.addChild(this._spriteset._messagePictureContainer);
// }
// };
/**
* ●各表示オブジェクトの生成
*/
const _Scene_Map_createDisplayObjects =
Scene_Map.prototype.createDisplayObjects;
Scene_Map.prototype.createDisplayObjects = function () {
_Scene_Map_createDisplayObjects.apply(this, arguments);
// シーン直下にメッセージ用コンテナを追加
if (this._spriteset) {
this.addChild(this._spriteset._messagePictureContainer);
}
};
/**
* ●各表示オブジェクトの生成
*/
const _Scene_Battle_createDisplayObjects =
Scene_Battle.prototype.createDisplayObjects;
Scene_Battle.prototype.createDisplayObjects = function () {
_Scene_Battle_createDisplayObjects.apply(this, arguments);
// シーン直下にメッセージ用コンテナを追加
if (this._spriteset) {
this.addChild(this._spriteset._messagePictureContainer);
}
};
/**
* ●ピクチャの生成
*/
const _Spriteset_Base_createPictures =
Spriteset_Base.prototype.createPictures;
Spriteset_Base.prototype.createPictures = function () {
_Spriteset_Base_createPictures.apply(this, arguments);
const rect = this.pictureContainerRect();
this._messagePictureContainer = new Sprite();
this._messagePictureContainer.setFrame(
rect.x,
rect.y,
rect.width,
rect.height
);
this._messagePictureContainer.addChild(new Sprite_Picture(pPictureId));
// 自動的に差分の最大数を取得して拡張
for (let i = 0; i < mMaxAttachedPictures; i++) {
this._messagePictureContainer.addChild(
new Sprite_Picture(pPictureId + i + 1)
);
}
};
/**
* ●画像の読み込み
* ※DP_MapZoom.jsMNKR_DP_MapZoomMZ.jsとの競合対処
*/
const _Sprite_Picture_loadBitmap = Sprite_Picture.prototype.loadBitmap;
Sprite_Picture.prototype.loadBitmap = function () {
_Sprite_Picture_loadBitmap.apply(this, arguments);
// 対象のピクチャならばズーム対応無効
if (this.isMessagePicture()) {
this._dp_fix = false;
}
};
// -----------------------------------------------------------------------
// ピクチャ表示時、文章の横幅を制限
// -----------------------------------------------------------------------
if (pLimitMessageWidth) {
// サイズ調整
let mTextScale = null;
/**
* ●メッセージ開始
*/
const _Window_Message_startMessage =
Window_Message.prototype.startMessage;
Window_Message.prototype.startMessage = function () {
// 初期化
mTextScale = null;
// 表示中のピクチャがない場合は即終了
if (!mPictureData) {
_Window_Message_startMessage.apply(this, arguments);
return;
} else if (
mPictureData.Picture == "" &&
mPictureData.DifferenceList == ""
) {
_Window_Message_startMessage.apply(this, arguments);
return;
}
// 文章情報を取得
const text = $gameMessage.allText();
const textState = this.createTextState(text, 0, 0, 0);
// 全行を確認して最大の横幅を求める。
let maxWidth = 0;
const lineTexts = textState.text.split("\n");
for (const lineText of lineTexts) {
maxWidth = Math.max(
maxWidth,
this.contents.measureTextWidth(lineText)
);
}
// 文章の横幅を元に縮小率を求める。
if (maxWidth > pLimitMessageWidth) {
mTextScale = pLimitMessageWidth / maxWidth;
}
_Window_Message_startMessage.apply(this, arguments);
};
// Window_Message.prototype.processNewLine = function(textState) {
// this._lineShowFast = false;
// Window_Base.prototype.processNewLine.call(this, textState);
// if (this.needsNewPage(textState)) {
// this.startPause();
// }
// };
/*
* Window_Message.prototype.textWidthが未定義の場合は事前に定義
* ※これをしておかないと以後のWindow_Base側への追記が反映されない。
*/
if (
Window_Message.prototype.textWidth == Window_Base.prototype.textWidth
) {
Window_Message.prototype.textWidth = function (text) {
return Window_Base.prototype.textWidth.apply(this, arguments);
};
}
/**
* ●文章の横幅を取得
*/
const _Window_Message_textWidth = Window_Message.prototype.textWidth;
Window_Message.prototype.textWidth = function (text) {
let width = _Window_Message_textWidth.apply(this, arguments);
if (mTextScale) {
return width * mTextScale;
}
return width;
};
}
}
// ----------------------------------------------------------------------------
// ピクチャをメッセージより下に表示
// ----------------------------------------------------------------------------
if (pShowAboveWindow && pShowBelowMessages) {
// /**
// * ●ウィンドウ生成
// */
// const _Scene_Message_createMessageWindow = Scene_Message.prototype.createMessageWindow;
// Scene_Message.prototype.createMessageWindow = function() {
// _Scene_Message_createMessageWindow.apply(this, arguments);
// // メッセージ用のスプライトをシーン直下に追加
// this.addChild(this._messageWindow._contentsSprite);
// };
/**
* ●各表示オブジェクトの生成
*/
const _Scene_Map_createMessageWindow2 =
Scene_Map.prototype.createDisplayObjects;
Scene_Map.prototype.createDisplayObjects = function () {
_Scene_Map_createMessageWindow2.apply(this, arguments);
// メッセージ用のスプライトをシーン直下に追加
this.addChild(this._messageWindow._contentsSprite);
};
/**
* ●各表示オブジェクトの生成
*/
const _Scene_Battle_createMessageWindow2 =
Scene_Battle.prototype.createDisplayObjects;
Scene_Battle.prototype.createDisplayObjects = function () {
_Scene_Battle_createMessageWindow2.apply(this, arguments);
// メッセージ用のスプライトをシーン直下に追加
this.addChild(this._messageWindow._contentsSprite);
};
/**
* ●配置更新
*/
const _Window_Message_updatePlacement =
Window_Message.prototype.updatePlacement;
Window_Message.prototype.updatePlacement = function () {
_Window_Message_updatePlacement.apply(this, arguments);
// シーンが戦闘とマップ以外の場合は対象外
// ※外部プラグインから両シーン以外からメッセージが呼び出されることを想定
if (
!(SceneManager._scene instanceof Scene_Battle) &&
!(SceneManager._scene instanceof Scene_Map)
) {
return;
}
// メッセージ用スプライトも移動
this._contentsSprite.x = this.x + pAdjustMessageX;
this._contentsSprite.y = this.y + pAdjustMessageY;
};
/*
* Window_Message.prototype.closeが未定義の場合は事前に定義
* ※これをしておかないと以後のWindow_Base側への追記が反映されない。
*/
if (Window_Message.prototype.close == Window_Base.prototype.close) {
Window_Message.prototype.close = function () {
Window_Base.prototype.close.apply(this, arguments);
};
}
/**
* ●ウィンドウを閉じる。
*/
const _Window_Message_close = Window_Message.prototype.close;
Window_Message.prototype.close = function () {
_Window_Message_close.apply(this, arguments);
// メッセージ用スプライトもクリア。
this.contents.clear();
};
}
// ----------------------------------------------------------------------------
// 共通関数
// ----------------------------------------------------------------------------
/**
* ●Window_Baseの関数を切り離し
*/
function convertEscapeCharacters(originalText) {
let tmpText = originalText;
/* eslint no-control-regex: 0 */
tmpText = tmpText.replace(/\\/g, "\x1b");
tmpText = tmpText.replace(/\x1b\x1b/g, "\\");
tmpText = tmpText.replace(/\x1bV\[(\d+)\]/gi, (_, p1) =>
$gameVariables.value(parseInt(p1))
);
tmpText = tmpText.replace(/\x1bV\[(\d+)\]/gi, (_, p1) =>
$gameVariables.value(parseInt(p1))
);
tmpText = tmpText.replace(/\x1bN\[(\d+)\]/gi, (_, p1) =>
actorName(parseInt(p1))
);
tmpText = tmpText.replace(/\x1bP\[(\d+)\]/gi, (_, p1) =>
partyMemberName(parseInt(p1))
);
tmpText = tmpText.replace(/\x1bG/gi, TextManager.currencyUnit);
return tmpText;
}
/**
* ●Window_Baseの関数を切り離し
*/
function actorName(n) {
const actor = n >= 1 ? $gameActors.actor(n) : null;
return actor ? actor.name() : "";
}
/**
* ●Window_Baseの関数を切り離し
*/
function partyMemberName(n) {
const actor = n >= 1 ? $gameParty.members()[n - 1] : null;
return actor ? actor.name() : "";
}
/**
* ●現在の画面のSpritesetを取得する。
*/
function getSpriteset() {
return SceneManager._scene._spriteset;
}
})();