mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-31 00:45:24 -04:00
149 lines
4.9 KiB
C++
149 lines
4.9 KiB
C++
/**
|
|
* d_msg_scrn_place.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/dolzel.h" // IWYU pragma: keep
|
|
|
|
#include "d/d_msg_scrn_place.h"
|
|
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
|
#include "JSystem/J2DGraph/J2DScreen.h"
|
|
#include "d/d_camera.h"
|
|
#include "d/d_msg_object.h"
|
|
#include "d/d_pane_class.h"
|
|
|
|
dMsgScrnPlace_c::dMsgScrnPlace_c() {
|
|
static u64 t_tag[7] = {
|
|
MULTI_CHAR('sfontb0'), MULTI_CHAR('sfontb1'), MULTI_CHAR('sfontb2'), MULTI_CHAR('sfontl0'), MULTI_CHAR('sfontl1'), MULTI_CHAR('sfontl2'), MULTI_CHAR('sfont00'),
|
|
};
|
|
init();
|
|
|
|
dCamera_c* camera = dCam_getBody();
|
|
if (camera->mTrimSize && dCam_getBody()->mTrimSize != 4) {
|
|
mScaleX = g_MsgObject_HIO_c.mStageTitleCharPosY;
|
|
mScaleY = g_MsgObject_HIO_c.mStageTitleBasePosY;
|
|
} else {
|
|
mScaleY = 0.0f;
|
|
mScaleX = 0.0f;
|
|
}
|
|
|
|
mpScreen = JKR_NEW J2DScreen();
|
|
#if VERSION == VERSION_GCN_JPN
|
|
mpScreen->setPriority("zelda_stage_title.blo", 0x20000, dComIfGp_getMsgArchive(4));
|
|
#else
|
|
mpScreen->setPriority("zelda_stage_title_foreign.blo", 0x20000, dComIfGp_getMsgArchive(4));
|
|
#endif
|
|
dPaneClass_showNullPane(mpScreen);
|
|
|
|
mpPmP_c = JKR_NEW CPaneMgr(mpScreen, MULTI_CHAR('n_all'), 2, NULL);
|
|
mpPmP_c->scale(g_MsgObject_HIO_c.mStageTitleScaleX, g_MsgObject_HIO_c.mStageTitleScaleY);
|
|
|
|
mpFontParent = JKR_NEW CPaneMgr(mpScreen, MULTI_CHAR('s_font_n'), 0, NULL);
|
|
mpFontParent->scale(g_MsgObject_HIO_c.mStageTitleCharSizeX,
|
|
g_MsgObject_HIO_c.mStageTitleCharSizeY);
|
|
mpFontParent->paneTrans(g_MsgObject_HIO_c.mStageTitleCharPosX,
|
|
g_MsgObject_HIO_c.mStageTitleCharPosY - mScaleX);
|
|
|
|
mpBaseParent = JKR_NEW CPaneMgr(mpScreen, MULTI_CHAR('base_n'), 2, NULL);
|
|
mpBaseParent->scale(g_MsgObject_HIO_c.mStageTitleBaseSizeX,
|
|
g_MsgObject_HIO_c.mStageTitleBaseSizeY);
|
|
mpBaseParent->paneTrans(g_MsgObject_HIO_c.mStageTitleBasePosX,
|
|
g_MsgObject_HIO_c.mStageTitleBasePosY - mScaleY);
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
mpTm_c[i] = JKR_NEW CPaneMgr(mpScreen, t_tag[i], 0, NULL);
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setFont(mDoExt_getRubyFont());
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setString(0x80, "");
|
|
#if VERSION != VERSION_GCN_JPN
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setCharSpace(1.0f);
|
|
#endif
|
|
}
|
|
|
|
((J2DTextBox*)mpTm_c[0]->getPanePtr())->getFontSize(mFontSize);
|
|
mTBoxWidth = mpTm_c[0]->getSizeX();
|
|
mTBoxHeight = mpTm_c[0]->getSizeY();
|
|
mLineSpace = ((J2DTextBox*)mpTm_c[0]->getPanePtr())->getLineSpace();
|
|
mCharSpace = ((J2DTextBox*)mpTm_c[0]->getPanePtr())->getCharSpace();
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setLineSpace(mLineSpace);
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())
|
|
->resize(mpTm_c[i]->getSizeX() * 1.2f, mpTm_c[i]->getSizeY());
|
|
}
|
|
|
|
mTextBoxPosX = mpTm_c[0]->getGlobalPosX();
|
|
mTextBoxPosY = mpTm_c[0]->getGlobalPosY();
|
|
}
|
|
|
|
dMsgScrnPlace_c::~dMsgScrnPlace_c() {
|
|
JKR_DELETE(mpScreen);
|
|
mpScreen = NULL;
|
|
|
|
JKR_DELETE(mpPmP_c);
|
|
mpPmP_c = NULL;
|
|
|
|
JKR_DELETE(mpFontParent);
|
|
mpFontParent = NULL;
|
|
|
|
JKR_DELETE(mpBaseParent);
|
|
mpBaseParent = NULL;
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
JKR_DELETE(mpTm_c[i]);
|
|
mpTm_c[i] = NULL;
|
|
}
|
|
|
|
dComIfGp_getMsgArchive(4)->removeResourceAll();
|
|
}
|
|
|
|
void dMsgScrnPlace_c::exec() {
|
|
mpPmP_c->scale(g_MsgObject_HIO_c.mStageTitleScaleX, g_MsgObject_HIO_c.mStageTitleScaleY);
|
|
|
|
mpFontParent->scale(g_MsgObject_HIO_c.mStageTitleCharSizeX,
|
|
g_MsgObject_HIO_c.mStageTitleCharSizeY);
|
|
|
|
#if TARGET_PC
|
|
mpFontParent->paneTrans(mDoGph_gInf_c::ScaleHUDXLeft(g_MsgObject_HIO_c.mStageTitleCharPosX),
|
|
g_MsgObject_HIO_c.mStageTitleCharPosY - mScaleX);
|
|
#else
|
|
mpFontParent->paneTrans(g_MsgObject_HIO_c.mStageTitleCharPosX,
|
|
g_MsgObject_HIO_c.mStageTitleCharPosY - mScaleX);
|
|
#endif
|
|
|
|
mpBaseParent->scale(g_MsgObject_HIO_c.mStageTitleBaseSizeX,
|
|
g_MsgObject_HIO_c.mStageTitleBaseSizeY);
|
|
|
|
#if TARGET_PC
|
|
mpBaseParent->paneTrans(mDoGph_gInf_c::ScaleHUDXLeft(g_MsgObject_HIO_c.mStageTitleBasePosX),
|
|
g_MsgObject_HIO_c.mStageTitleBasePosY - mScaleY);
|
|
#else
|
|
mpBaseParent->paneTrans(g_MsgObject_HIO_c.mStageTitleBasePosX,
|
|
g_MsgObject_HIO_c.mStageTitleBasePosY - mScaleY);
|
|
#endif
|
|
|
|
if (isTalkNow()) {
|
|
fukiAlpha(1.0f);
|
|
}
|
|
}
|
|
|
|
void dMsgScrnPlace_c::drawSelf() {
|
|
J2DGrafContext* grafContext = dComIfGp_getCurrentGrafPort();
|
|
grafContext->setup2D();
|
|
drawOutFont(0.0f, 0.0f, 1.0f);
|
|
}
|
|
|
|
void dMsgScrnPlace_c::fukiAlpha(f32 i_rate) {
|
|
mpPmP_c->setAlphaRate(i_rate);
|
|
mpBaseParent->setAlphaRate(i_rate * g_MsgObject_HIO_c.mStageTitleBaseAlpha);
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
mpTm_c[i]->setAlphaRate(i_rate);
|
|
}
|
|
}
|
|
|
|
void dMsgScrnPlace_c::fukiScale(f32) {}
|
|
|
|
void dMsgScrnPlace_c::fukiTrans(f32, f32) {}
|
|
|
|
void dMsgScrnPlace_c::fontAlpha(f32) {}
|