mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 22:45:05 -04:00
41e19d2d31
* msg_scrn_3select done * remove asm * d_msg_scrn_jimaku done
138 lines
5.0 KiB
C++
138 lines
5.0 KiB
C++
/**
|
|
* d_msg_scrn_place.cpp
|
|
*
|
|
*/
|
|
|
|
#include "d/msg/d_msg_scrn_place.h"
|
|
#include "JSystem/J2DGraph/J2DGrafContext.h"
|
|
#include "JSystem/J2DGraph/J2DScreen.h"
|
|
#include "d/msg/d_msg_object.h"
|
|
#include "d/pane/d_pane_class.h"
|
|
|
|
extern "C" extern dMsgObject_HIO_c g_MsgObject_HIO_c;
|
|
|
|
/* 802463CC-802467C4 240D0C 03F8+00 0/0 1/1 0/0 .text __ct__15dMsgScrnPlace_cFv */
|
|
dMsgScrnPlace_c::dMsgScrnPlace_c() {
|
|
static u64 t_tag[7] = {
|
|
'sfontb0', 'sfontb1', 'sfontb2', 'sfontl0', 'sfontl1', 'sfontl2', '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 = new J2DScreen();
|
|
mpScreen->setPriority("zelda_stage_title_foreign.blo", 0x20000, dComIfGp_getMsgArchive(4));
|
|
dPaneClass_showNullPane(mpScreen);
|
|
|
|
mpPmP_c = new CPaneMgr(mpScreen, 'n_all', 2, NULL);
|
|
mpPmP_c->scale(g_MsgObject_HIO_c.mStageTitleScaleX, g_MsgObject_HIO_c.mStageTitleScaleY);
|
|
|
|
mpFontParent = new CPaneMgr(mpScreen, '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 = new CPaneMgr(mpScreen, '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] = new CPaneMgr(mpScreen, t_tag[i], 0, NULL);
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setFont(mDoExt_getRubyFont());
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setString(0x80, "");
|
|
((J2DTextBox*)mpTm_c[i]->getPanePtr())->setCharSpace(1.0f);
|
|
}
|
|
|
|
((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();
|
|
}
|
|
|
|
/* 802467C4-80246924 241104 0160+00 1/0 0/0 0/0 .text __dt__15dMsgScrnPlace_cFv */
|
|
dMsgScrnPlace_c::~dMsgScrnPlace_c() {
|
|
delete mpScreen;
|
|
mpScreen = NULL;
|
|
|
|
delete mpPmP_c;
|
|
mpPmP_c = NULL;
|
|
|
|
delete mpFontParent;
|
|
mpFontParent = NULL;
|
|
|
|
delete mpBaseParent;
|
|
mpBaseParent = NULL;
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
delete mpTm_c[i];
|
|
mpTm_c[i] = NULL;
|
|
}
|
|
|
|
dComIfGp_getMsgArchive(4)->removeResourceAll();
|
|
}
|
|
|
|
/* 80246924-80246A44 241264 0120+00 1/0 0/0 0/0 .text exec__15dMsgScrnPlace_cFv */
|
|
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);
|
|
mpFontParent->paneTrans(g_MsgObject_HIO_c.mStageTitleCharPosX,
|
|
g_MsgObject_HIO_c.mStageTitleCharPosY - mScaleX);
|
|
|
|
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);
|
|
|
|
if (isTalkNow()) {
|
|
fukiAlpha(1.0f);
|
|
}
|
|
}
|
|
|
|
/* 80246A44-80246A9C 241384 0058+00 1/0 0/0 0/0 .text drawSelf__15dMsgScrnPlace_cFv */
|
|
void dMsgScrnPlace_c::drawSelf() {
|
|
J2DGrafContext* grafContext = dComIfGp_getCurrentGrafPort();
|
|
grafContext->setup2D();
|
|
drawOutFont(0.0f, 0.0f, 1.0f);
|
|
}
|
|
|
|
/* 80246A9C-80246B28 2413DC 008C+00 1/0 0/0 0/0 .text fukiAlpha__15dMsgScrnPlace_cFf */
|
|
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);
|
|
}
|
|
}
|
|
|
|
/* 80246B28-80246B2C 241468 0004+00 1/0 0/0 0/0 .text fukiScale__15dMsgScrnPlace_cFf */
|
|
void dMsgScrnPlace_c::fukiScale(f32) {}
|
|
|
|
/* 80246B2C-80246B30 24146C 0004+00 1/0 0/0 0/0 .text fukiTrans__15dMsgScrnPlace_cFff */
|
|
void dMsgScrnPlace_c::fukiTrans(f32, f32) {}
|
|
|
|
/* 80246B30-80246B34 241470 0004+00 1/0 0/0 0/0 .text fontAlpha__15dMsgScrnPlace_cFf */
|
|
void dMsgScrnPlace_c::fontAlpha(f32) {}
|