metaforce/Runtime/GuiSys/CTextExecuteBuffer.cpp

374 lines
10 KiB
C++
Raw Normal View History

2016-03-19 03:58:01 +00:00
#include "CTextExecuteBuffer.hpp"
#include "CTextRenderBuffer.hpp"
#include "CFontRenderState.hpp"
#include "CFontImageDef.hpp"
#include "CInstruction.hpp"
2016-03-20 00:32:30 +00:00
#include "CRasterFont.hpp"
#include "CWordBreakTables.hpp"
2016-03-19 03:58:01 +00:00
#include "Graphics/CGraphicsPalette.hpp"
2016-03-20 06:37:08 +00:00
#include "Graphics/CTexture.hpp"
2016-03-19 03:58:01 +00:00
namespace urde
{
CTextRenderBuffer CTextExecuteBuffer::CreateTextRenderBuffer() const
{
2016-03-22 08:15:00 +00:00
CTextRenderBuffer ret(CTextRenderBuffer::EMode::AllocTally);
2016-03-19 03:58:01 +00:00
{
CFontRenderState rendState;
for (const std::shared_ptr<CInstruction>& inst : x0_instList)
inst->Invoke(rendState, &ret);
}
2016-03-22 08:15:00 +00:00
ret.SetMode(CTextRenderBuffer::EMode::BufferFill);
2016-03-19 03:58:01 +00:00
{
CFontRenderState rendState;
for (const std::shared_ptr<CInstruction>& inst : x0_instList)
inst->Invoke(rendState, &ret);
}
return ret;
}
2016-03-20 00:32:30 +00:00
std::vector<CToken> CTextExecuteBuffer::GetAssets() const
{
size_t totalAssets = 0;
for (const std::shared_ptr<CInstruction>& inst : x0_instList)
totalAssets += inst->GetAssetCount();
std::vector<CToken> ret;
ret.reserve(totalAssets);
for (const std::shared_ptr<CInstruction>& inst : x0_instList)
inst->GetAssets(ret);
return ret;
}
void CTextExecuteBuffer::AddString(const wchar_t* str, int count)
{
2016-12-16 23:05:29 +00:00
if (!xa4_curLine)
2016-03-20 00:32:30 +00:00
StartNewLine();
const wchar_t* charCur = str;
const wchar_t* wordCur = str;
for (int ac=0 ; *charCur && (ac < count || count == -1) ; ++charCur, ++ac)
{
if (*charCur == L'\n' || *charCur == L' ')
{
AddStringFragment(wordCur, charCur - wordCur);
wordCur = charCur + 1;
if (*charCur == L'\n')
{
StartNewLine();
}
else
{
StartNewWord();
int w, h;
wchar_t space = L' ';
2016-12-16 23:05:29 +00:00
x18_textState.x48_font.GetObj()->GetSize(x18_textState.x0_drawStrOpts,
2016-03-20 00:32:30 +00:00
w, h, &space, 1);
2016-12-16 23:05:29 +00:00
if (xa0_curBlock->x14_direction == ETextDirection::Horizontal)
2016-03-20 00:32:30 +00:00
{
2016-12-16 23:05:29 +00:00
xa4_curLine->x8_curX += w;
xbc_spaceDistance = w;
2016-03-20 00:32:30 +00:00
}
else
{
2016-12-16 23:05:29 +00:00
xa4_curLine->xc_curY += h;
xbc_spaceDistance = h;
2016-03-20 00:32:30 +00:00
}
}
}
}
if (charCur > wordCur)
AddStringFragment(wordCur, charCur - wordCur);
}
void CTextExecuteBuffer::AddStringFragment(const wchar_t* str, int len)
{
2016-12-16 23:05:29 +00:00
if (xa0_curBlock->x14_direction == ETextDirection::Horizontal)
2016-03-20 00:32:30 +00:00
for (int i=0 ; i<len ;)
i += WrapOneLTR(str + i, len - i);
}
int CTextExecuteBuffer::WrapOneLTR(const wchar_t* str, int len)
{
2016-12-16 23:05:29 +00:00
if (!x18_textState.x48_font)
2016-03-20 00:32:30 +00:00
return len;
2016-12-16 23:05:29 +00:00
CRasterFont* font = x18_textState.x48_font.GetObj();
2016-03-20 00:32:30 +00:00
int rem = len;
int w, h;
2016-12-16 23:05:29 +00:00
x18_textState.x48_font.GetObj()->GetSize(x18_textState.x0_drawStrOpts,
2016-03-20 00:32:30 +00:00
w, h, str, len);
2016-12-16 23:05:29 +00:00
if (x18_textState.x7c_enableWordWrap)
2016-03-20 00:32:30 +00:00
{
2016-12-16 23:05:29 +00:00
if (w + xa4_curLine->x8_curX > xa0_curBlock->xc_blockExtentX &&
xa4_curLine->x4_wordCount > 1 &&
xb0_curX + w < xa0_curBlock->xc_blockExtentX)
2016-03-20 00:32:30 +00:00
{
MoveWordLTR();
}
2016-12-16 23:05:29 +00:00
if (w + xa4_curLine->x8_curX > xa0_curBlock->xc_blockExtentX && len > 1)
2016-03-20 00:32:30 +00:00
{
const wchar_t* strEnd = str + len;
int aRank = 5;
do
{
--rem;
--strEnd;
int endRank = 4;
if (len > 2)
endRank = CWordBreakTables::GetEndRank(*(strEnd - 1));
int beginRank = CWordBreakTables::GetBeginRank(*strEnd);
if (endRank < aRank && endRank <= beginRank)
{
aRank = endRank;
}
else
{
2016-12-16 23:05:29 +00:00
x18_textState.x48_font.GetObj()->GetSize(x18_textState.x0_drawStrOpts,
2016-03-20 00:32:30 +00:00
w, h, str, rem);
}
2016-12-16 23:05:29 +00:00
} while (w + xa4_curLine->x8_curX > xa0_curBlock->xc_blockExtentX && rem > 1);
2016-03-20 00:32:30 +00:00
}
}
2016-12-16 23:05:29 +00:00
xac_curY = std::max(xac_curY, font->GetMonoHeight());
2016-03-20 00:32:30 +00:00
2016-12-16 23:05:29 +00:00
xa4_curLine->TestLargestFont(font->GetMonoWidth(),
2016-03-20 00:32:30 +00:00
font->GetMonoHeight(),
font->GetBaseline());
2016-12-16 23:05:29 +00:00
xa4_curLine->x8_curX += w;
xa0_curBlock->x2c_lineX = std::max(xa0_curBlock->x2c_lineX, xa4_curLine->x8_curX);
xb0_curX += w;
2016-03-20 00:32:30 +00:00
x0_instList.emplace(x0_instList.cend(), new CTextInstruction(str, rem));
if (rem != len)
StartNewLine();
return rem;
}
void CTextExecuteBuffer::MoveWordLTR()
{
2016-12-16 23:05:29 +00:00
xa4_curLine->xc_curY = std::min(xa4_curLine->xc_curY, xb8_);
xbc_spaceDistance = 0;
--xa4_curLine->x4_wordCount;
2016-03-20 00:32:30 +00:00
TerminateLineLTR();
2016-12-16 23:05:29 +00:00
xa4_curLine = static_cast<CLineInstruction*>(x0_instList.emplace(xa8_curWordIt,
new CLineInstruction(x18_textState.x80_just, x18_textState.x84_vjust))->get());
2016-03-20 00:32:30 +00:00
2016-12-16 23:05:29 +00:00
x0_instList.emplace(xa8_curWordIt, new CWordInstruction());
2016-03-20 00:32:30 +00:00
2016-12-16 23:05:29 +00:00
++xa0_curBlock->x34_lineCount;
2016-03-20 00:32:30 +00:00
}
2016-03-19 03:58:01 +00:00
void CTextExecuteBuffer::StartNewLine()
{
2016-12-16 23:05:29 +00:00
if (xa4_curLine)
2016-03-19 03:58:01 +00:00
TerminateLine();
2016-12-16 23:05:29 +00:00
xa8_curWordIt = x0_instList.emplace(x0_instList.cend(),
new CLineInstruction(x18_textState.x80_just, x18_textState.x84_vjust));
xbc_spaceDistance = 0;
2016-03-19 03:58:01 +00:00
StartNewWord();
2016-12-16 23:05:29 +00:00
++xa0_curBlock->x34_lineCount;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::StartNewWord()
{
2016-12-16 23:05:29 +00:00
xa8_curWordIt = x0_instList.emplace(x0_instList.cend(), new CWordInstruction());
xb0_curX = 0;
xac_curY = 0;
xb4_ = xa4_curLine->x8_curX;
xb8_ = xa4_curLine->xc_curY;
++xa4_curLine->x4_wordCount;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::TerminateLine()
{
2016-12-16 23:05:29 +00:00
if (xa0_curBlock->x14_direction == ETextDirection::Horizontal)
2016-03-20 00:32:30 +00:00
TerminateLineLTR();
}
void CTextExecuteBuffer::TerminateLineLTR()
{
2016-12-16 23:05:29 +00:00
if (!xa4_curLine->xc_curY && x18_textState.x48_font)
2016-03-20 00:32:30 +00:00
{
2016-12-16 23:05:29 +00:00
xa4_curLine->xc_curY = xa4_curLine->x10_largestMonoHeight;
2016-03-20 00:32:30 +00:00
}
2016-12-16 23:05:29 +00:00
if (xa0_curBlock->x1c_vertJustification == EVerticalJustification::Full)
2016-03-20 00:32:30 +00:00
{
2016-12-16 23:05:29 +00:00
xa0_curBlock->x30_lineY += xa4_curLine->xc_curY;
2016-03-20 00:32:30 +00:00
}
else
{
2016-12-16 23:05:29 +00:00
xa0_curBlock->x30_lineY += x18_textState.x78_extraLineSpace +
xa4_curLine->xc_curY * x18_textState.x74_lineSpacing;
2016-03-20 00:32:30 +00:00
}
}
void CTextExecuteBuffer::AddPopState()
{
x0_instList.emplace(x0_instList.cend(), new CPopStateInstruction());
2016-12-16 23:05:29 +00:00
x18_textState = xc4_stateStack.back();
xc4_stateStack.pop_back();
2016-03-20 00:32:30 +00:00
2016-12-16 23:05:29 +00:00
if (!xa4_curLine->x8_curX)
2016-03-20 00:32:30 +00:00
{
2016-12-16 23:05:29 +00:00
xa4_curLine->x1c_just = x18_textState.x80_just;
xa4_curLine->x20_vjust = x18_textState.x84_vjust;
2016-03-20 00:32:30 +00:00
}
}
void CTextExecuteBuffer::AddPushState()
{
x0_instList.emplace(x0_instList.cend(), new CPushStateInstruction());
2016-12-16 23:05:29 +00:00
xc4_stateStack.push_back(x18_textState);
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::AddVerticalJustification(EVerticalJustification vjust)
{
2016-12-16 23:05:29 +00:00
x18_textState.x84_vjust = vjust;
if (!xa4_curLine)
2016-03-20 00:32:30 +00:00
return;
2016-12-16 23:05:29 +00:00
if (xa4_curLine->x8_curX)
2016-03-20 00:32:30 +00:00
return;
2016-12-16 23:05:29 +00:00
xa4_curLine->x20_vjust = vjust;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::AddJustification(EJustification just)
{
2016-12-16 23:05:29 +00:00
x18_textState.x80_just = just;
if (!xa4_curLine)
2016-03-20 00:32:30 +00:00
return;
2016-12-16 23:05:29 +00:00
if (xa4_curLine->x8_curX)
2016-03-20 00:32:30 +00:00
return;
2016-12-16 23:05:29 +00:00
xa4_curLine->x1c_just = just;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::AddLineExtraSpace(s32 space)
{
x0_instList.emplace(x0_instList.cend(), new CLineExtraSpaceInstruction(space));
2016-12-16 23:05:29 +00:00
x18_textState.x78_extraLineSpace = space;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::AddLineSpacing(float spacing)
{
x0_instList.emplace(x0_instList.cend(), new CLineSpacingInstruction(spacing));
2016-12-16 23:05:29 +00:00
x18_textState.x74_lineSpacing = spacing;
2016-03-20 00:32:30 +00:00
}
void CTextExecuteBuffer::AddRemoveColorOverride(int idx)
{
x0_instList.emplace(x0_instList.cend(), new CRemoveColorOverrideInstruction(idx));
}
void CTextExecuteBuffer::AddColorOverride(int idx, const CTextColor& color)
{
x0_instList.emplace(x0_instList.cend(), new CColorOverrideInstruction(idx, color));
}
void CTextExecuteBuffer::AddColor(EColorType tp, const CTextColor& color)
{
x0_instList.emplace(x0_instList.cend(), new CColorInstruction(tp, color));
}
void CTextExecuteBuffer::AddImage(const CFontImageDef& image)
{
2016-12-16 23:05:29 +00:00
if (!xa4_curLine)
2016-03-20 00:32:30 +00:00
StartNewLine();
2016-12-16 23:05:29 +00:00
if (xa0_curBlock)
2016-03-20 00:32:30 +00:00
{
2016-03-20 06:37:08 +00:00
const CTexture* tex = image.x4_texs[0].GetObj();
int width = tex->GetWidth() * image.x14_pointsPerTexel.x;
int height = tex->GetHeight() * image.x14_pointsPerTexel.y;
2016-12-16 23:05:29 +00:00
xa4_curLine->TestLargestFont(width, height, height);
2016-03-20 06:37:08 +00:00
2016-12-16 23:05:29 +00:00
if (xa0_curBlock->x14_direction == ETextDirection::Horizontal)
if (xa4_curLine->x8_curX > width)
xa0_curBlock->x2c_lineX = xa4_curLine->x8_curX;
2016-03-20 00:32:30 +00:00
}
2016-03-20 06:37:08 +00:00
x0_instList.emplace(x0_instList.cend(), new CImageInstruction(image));
2016-03-20 00:32:30 +00:00
}
2016-03-21 00:25:53 +00:00
void CTextExecuteBuffer::AddFont(const TToken<CRasterFont>& font)
{
x0_instList.emplace(x0_instList.cend(), new CFontInstruction(font));
2016-12-16 23:05:29 +00:00
x18_textState.x48_font = font;
2016-03-21 00:25:53 +00:00
2016-12-16 23:05:29 +00:00
if (xa0_curBlock)
xa0_curBlock->TestLargestFont(font->GetMonoWidth(),
2016-03-21 00:25:53 +00:00
font->GetMonoHeight(),
font->GetBaseline());
2016-12-16 23:05:29 +00:00
if (xa4_curLine)
xa4_curLine->TestLargestFont(font->GetMonoWidth(),
2016-03-21 00:25:53 +00:00
font->GetMonoHeight(),
font->GetBaseline());
}
2016-03-20 00:32:30 +00:00
void CTextExecuteBuffer::EndBlock()
{
2016-12-16 23:05:29 +00:00
if (xa4_curLine)
2016-03-20 06:37:08 +00:00
TerminateLine();
2016-12-16 23:05:29 +00:00
xa4_curLine = nullptr;
xa0_curBlock = nullptr;
2016-03-20 00:32:30 +00:00
}
2016-03-20 06:37:08 +00:00
void CTextExecuteBuffer::BeginBlock(s32 offX, s32 offY, s32 padX, s32 padY,
ETextDirection dir, EJustification just,
EVerticalJustification vjust)
2016-03-20 00:32:30 +00:00
{
2016-03-20 06:37:08 +00:00
x0_instList.emplace(x0_instList.cend(),
new CBlockInstruction(offX, offY, padX, padY, dir, just, vjust));
2016-12-16 23:05:29 +00:00
if (x18_textState.x48_font)
2016-03-20 06:37:08 +00:00
{
2016-12-16 23:05:29 +00:00
CRasterFont* font = x18_textState.x48_font.GetObj();
2016-03-20 06:37:08 +00:00
s32 baseline = font->GetBaseline();
s32 monoH = font->GetMonoHeight();
s32 monoW = font->GetMonoWidth();
static_cast<CBlockInstruction&>(*x0_instList.back()).
TestLargestFont(monoW, monoH, baseline);
}
x18_textState.x0_drawStrOpts.x0_direction = dir;
2016-12-16 23:05:29 +00:00
x18_textState.x80_just = just;
x18_textState.x84_vjust = vjust;
2016-03-19 03:58:01 +00:00
}
void CTextExecuteBuffer::Clear()
{
x0_instList.clear();
2016-03-20 00:32:30 +00:00
x18_textState = CSaveableState();
2016-12-16 23:05:29 +00:00
xa0_curBlock = nullptr;
xa4_curLine = nullptr;
xa8_curWordIt = x0_instList.begin();
xb4_ = 0;
xb8_ = 0;
xbc_spaceDistance = 0;
2016-03-19 03:58:01 +00:00
}
}