#pragma once #include #include #include "Runtime/CToken.hpp" #include "Runtime/RetroTypes.hpp" #include "Runtime/Graphics/Shaders/CTextSupportShader.hpp" #include "Runtime/GuiSys/CFontImageDef.hpp" #include "Runtime/GuiSys/CGuiWidget.hpp" #include #include #include #include #include #include #include namespace metaforce { class CGlyph; class CGraphicsPalette; class CRasterFont; class CTextExecuteBuffer; using CTextColor = zeus::CColor; class CTextRenderBuffer { friend class CGuiTextSupport; friend class CTextSupportShader; public: enum class Command { CharacterRender, ImageRender, FontChange, PaletteChange }; #if 0 struct Primitive { CTextColor x0_color1; Command x4_command; u16 x8_xPos; u16 xa_zPos; wchar_t xc_glyph; u8 xe_imageIndex; }; #endif enum class EMode { AllocTally, BufferFill }; private: EMode x0_mode; #if 0 std::vector> x4_fonts; std::vector x14_images; std::vector x24_primOffsets; std::vector x34_bytecode; u32 x44_blobSize = 0; u32 x48_curBytecodeOffset = 0; u8 x4c_activeFont; u32 x50_paletteCount = 0; std::array, 64> x54_palettes; u32 x254_nextPalette = 0; #else /* Boo-specific text-rendering functionality */ hecl::UniformBufferPool::Token m_uniBuf; hecl::UniformBufferPool::Token m_uniBuf2; struct BooFontCharacters; std::vector m_fontCharacters; struct BooImage; std::vector m_images; struct BooPrimitiveMark; std::vector m_primitiveMarks; u32 m_imagesCount = 0; u32 m_activeFontCh = UINT32_MAX; zeus::CColor m_main; zeus::CColor m_outline = zeus::skBlack; CGuiWidget::EGuiModelDrawFlags m_drawFlags; bool m_committed = false; void CommitResources(); #endif public: CTextRenderBuffer(CTextRenderBuffer&& other) noexcept; CTextRenderBuffer(EMode mode, CGuiWidget::EGuiModelDrawFlags df); ~CTextRenderBuffer(); CTextRenderBuffer& operator=(CTextRenderBuffer&& other) noexcept; #if 0 void SetPrimitive(const Primitive&, int); Primitive GetPrimitive(int) const; void GetOutStream(); void VerifyBuffer(); int GetMatchingPaletteIndex(const CGraphicsPalette& palette); CGraphicsPalette* GetNextAvailablePalette(); void AddPaletteChange(const CGraphicsPalette& palette); #else void SetPrimitiveOpacity(int idx, float opacity); u32 GetPrimitiveCount() const; #endif void SetMode(EMode mode); void Render(const zeus::CColor& col, float time); void AddImage(const zeus::CVector2i& offset, const CFontImageDef& image); void AddCharacter(const zeus::CVector2i& offset, char16_t ch, const zeus::CColor& color); void AddPaletteChange(const zeus::CColor& main, const zeus::CColor& outline); void AddFontChange(const TToken& font); bool HasSpaceAvailable(const zeus::CVector2i& origin, const zeus::CVector2i& extent) const; std::pair AccumulateTextBounds() const; }; } // namespace metaforce