mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 14:27:42 +00:00
Various stubs and imps
This commit is contained in:
64
Runtime/GuiSys/CTextExecuteBuffer.hpp
Normal file
64
Runtime/GuiSys/CTextExecuteBuffer.hpp
Normal file
@@ -0,0 +1,64 @@
|
||||
#ifndef __URDE_CTEXTEXECUTEBUFFER_HPP__
|
||||
#define __URDE_CTEXTEXECUTEBUFFER_HPP__
|
||||
|
||||
#include "CSaveableState.hpp"
|
||||
#include "CGuiTextSupport.hpp"
|
||||
#include <list>
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CInstruction;
|
||||
class CFontImageDef;
|
||||
|
||||
class CTextExecuteBuffer
|
||||
{
|
||||
std::list<std::weak_ptr<CInstruction>> x0_instList;
|
||||
u32 x14_ = 0;
|
||||
CSaveableState x18_;
|
||||
u32 x6c_ = 0;
|
||||
u32 x70_ = 0;
|
||||
std::list<std::shared_ptr<CInstruction>>::iterator x74_curInst;
|
||||
u32 x80_ = 0;
|
||||
u32 x84_ = 0;
|
||||
u32 x88_ = 0;
|
||||
u32 x90_ = 0;
|
||||
u32 x94_ = 0;
|
||||
u32 x98_ = 0;
|
||||
|
||||
public:
|
||||
CTextExecuteBuffer()
|
||||
{
|
||||
x74_curInst = x0_instList.begin();
|
||||
}
|
||||
|
||||
void CreateTextRenderBuffer() const;
|
||||
std::vector<TResId> GetAssets() const;
|
||||
void AddString(const wchar_t* str, int);
|
||||
void AddStringFragment(const wchar_t* str, int);
|
||||
void WrapOneTTB(const wchar_t* str, int);
|
||||
void WrapOneLTR(const wchar_t* str, int);
|
||||
void MoveWordTTB();
|
||||
void MoveWordLTR();
|
||||
void StartNewLine();
|
||||
void StartNewWord();
|
||||
void TerminateLine();
|
||||
void TerminateLineTTB();
|
||||
void TerminateLineLTR();
|
||||
void AddPopState();
|
||||
void AddPushState();
|
||||
void AddVerticalJustification(EVerticalJustification);
|
||||
void AddJustification(EJustification);
|
||||
void AddLineExtraSpace(int);
|
||||
void AddLineSpacing(float);
|
||||
void AddRemoveColorOverride(int);
|
||||
void AddColorOverride(int, const CTextColor& color);
|
||||
void AddColor(EColorType, const CTextColor& color);
|
||||
void AddImage(const CFontImageDef& image);
|
||||
void EndBlock();
|
||||
void BeginBlock(int,int,int,int,ETextDirection,EJustification,EVerticalJustification);
|
||||
void Clear();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CTEXTEXECUTEBUFFER_HPP__
|
||||
Reference in New Issue
Block a user