diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2024-01-27 01:43:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-27 11:43:19 +0200 |
| commit | 7f0ba98c9f694234bd88cf1263840c5e8aaea390 (patch) | |
| tree | e58ad159be2954eb353ab32c201e2bd0d1438c37 /src/d/msg/d_msg_scrn_place.cpp | |
| parent | 3470c4eb34924eed125bf02d46720eabac2820ac (diff) | |
cleanup msg scrn (#2051)
* msg_scrn_light done
* update include paths
* some cleanup
* fix build
Diffstat (limited to 'src/d/msg/d_msg_scrn_place.cpp')
| -rw-r--r-- | src/d/msg/d_msg_scrn_place.cpp | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/src/d/msg/d_msg_scrn_place.cpp b/src/d/msg/d_msg_scrn_place.cpp new file mode 100644 index 0000000000..678d589a0e --- /dev/null +++ b/src/d/msg/d_msg_scrn_place.cpp @@ -0,0 +1,137 @@ +/** + * 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) {} |
