mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 16:45:03 -04:00
9eea9289b1
* Fix JUT_ASSERT to be a nested define * Switch names that appear in asserts to be constants instead of defines * Replace `0` in asserts with `NULL` or `FALSE` * Fix fpclassify * Fix ARRAY_SIZE * Use G_CM3D_F_INF * More fixes for fpclassify * Remove FLOAT_LABEL * Remove incorrect FLAG_ON macro * Remove UNK_BSS macro * Silence clangd unused header warning for PCH
61 lines
1.9 KiB
C++
61 lines
1.9 KiB
C++
//
|
|
// Generated By: dol2asm
|
|
// Translation Unit: d/d_msg_string
|
|
//
|
|
|
|
#include "d/dolzel.h" // IWYU pragma: keep
|
|
|
|
#include "d/d_msg_string.h"
|
|
#include "JSystem/J2DGraph/J2DTextBox.h"
|
|
#include "d/d_msg_out_font.h"
|
|
#include "dol2asm.h"
|
|
|
|
/* 80249C20-80249CA0 244560 0080+00 0/0 15/15 0/0 .text __ct__12dMsgString_cFv */
|
|
dMsgString_c::dMsgString_c() {
|
|
field_0x28 = 0;
|
|
mpOutFont = new COutFont_c(field_0x28);
|
|
mpOutFont->createPane();
|
|
getResource();
|
|
}
|
|
|
|
/* 80249CA0-80249D28 2445E0 0088+00 0/0 1/1 0/0 .text __ct__12dMsgString_cFUc */
|
|
dMsgString_c::dMsgString_c(u8 param_0) {
|
|
field_0x28 = param_0;
|
|
mpOutFont = new COutFont_c(field_0x28);
|
|
mpOutFont->createPane();
|
|
getResource();
|
|
}
|
|
|
|
/* 80249D28-80249DB4 244668 008C+00 0/0 17/17 0/0 .text __dt__12dMsgString_cFv */
|
|
dMsgString_c::~dMsgString_c() {
|
|
delete mpOutFont;
|
|
mpOutFont = NULL;
|
|
}
|
|
|
|
/* 80249DB4-80249DE4 2446F4 0030+00 1/0 0/0 0/0 .text
|
|
* resetStringLocal__12dMsgString_cFP10J2DTextBox */
|
|
void dMsgString_c::resetStringLocal(J2DTextBox* p_textBox) {
|
|
mpOutFont->reset(p_textBox);
|
|
}
|
|
|
|
/* 80249DE4-80249ED0 244724 00EC+00 1/0 0/0 0/0 .text
|
|
* drawOutFontLocal__12dMsgString_cFP10J2DTextBoxf */
|
|
void dMsgString_c::drawOutFontLocal(J2DTextBox* p_textBox, f32 i_alpha) {
|
|
Vec pos = p_textBox->getGlbVtx(0);
|
|
f32 y = pos.y;
|
|
|
|
if (i_alpha == -1.0f) {
|
|
i_alpha = p_textBox->getAlpha() / 255.0f;
|
|
}
|
|
|
|
mpOutFont->setAlphaRatio(i_alpha);
|
|
mpOutFont->draw(p_textBox, pos.x, y, 1.0f);
|
|
}
|
|
|
|
/* 80249ED0-80249F00 244810 0030+00 1/0 0/0 0/0 .text
|
|
* drawFontLocal__12dMsgString_cFP10J2DTextBoxUcffffUlUc */
|
|
void dMsgString_c::drawFontLocal(J2DTextBox* p_textBox, u8 type, f32 posX, f32 posY,
|
|
f32 sizeX, f32 sizeY, u32 color, u8 alpha) {
|
|
mpOutFont->drawFont(p_textBox, type, posX, posY, sizeX, sizeY, color, alpha);
|
|
}
|