blob: cf8b31c83454003a9abb05c8b60dad398e8da6f7 [file] [log] [blame]
#ifndef _RIVE_FONT_HB_HPP_
#define _RIVE_FONT_HB_HPP_
#include "rive/factory.hpp"
#include "rive/text_engine.hpp"
#include <unordered_map>
#include <vector>
struct hb_font_t;
struct hb_draw_funcs_t;
struct hb_paint_funcs_t;
struct hb_feature_t;
using hb_color_t = uint32_t;
class HBFont : public rive::Font
{
public:
// We assume ownership of font!
HBFont(hb_font_t* font);
~HBFont() override;
Axis getAxis(uint16_t index) const override;
uint16_t getAxisCount() const override;
float getAxisValue(uint32_t axisTag) const override;
uint32_t getFeatureValue(uint32_t featureTag) const override;
uint16_t getWeight() const override;
bool isItalic() const override;
rive::RawPath getPath(rive::GlyphID) const override;
bool hasColorGlyphs() const override;
bool isColorGlyph(rive::GlyphID) const override;
size_t getColorLayers(
rive::GlyphID,
std::vector<ColorGlyphLayer>& out,
rive::ColorInt foreground = 0xFF000000) const override;
rive::SimpleArray<rive::Paragraph> onShapeText(
rive::Span<const rive::Unichar>,
rive::Span<const rive::TextRun>,
int textDirectionFlag) const override;
rive::SimpleArray<uint32_t> features() const override;
rive::rcp<Font> withOptions(
rive::Span<const Coord> variableAxes,
rive::Span<const Feature> features) const override;
bool hasGlyph(const rive::Unichar) const override;
static rive::rcp<rive::Font> Decode(rive::Span<const uint8_t>);
static rive::rcp<rive::Font> FromSystem(void* systemFont,
bool useSystemShaper,
uint16_t weight,
uint8_t width);
static float GetStyle(hb_font_t*, uint32_t);
hb_font_t* font() const { return m_font; }
private:
HBFont(hb_font_t* font,
std::unordered_map<uint32_t, float> axisValues,
std::unordered_map<uint32_t, uint32_t> featureValues,
std::vector<hb_feature_t> features);
public:
hb_font_t* m_font;
virtual void shapeFallbackRun(
rive::SimpleArrayBuilder<rive::GlyphRun>& gruns,
const rive::Unichar text[],
const unsigned textStart,
const rive::TextRun& textRun,
const rive::TextRun& originalTextRun,
const uint32_t fallbackIndex);
// The features list to pass directly to Harfbuzz.
std::vector<hb_feature_t> m_features;
private:
hb_draw_funcs_t* m_drawFuncs;
hb_paint_funcs_t* m_paintFuncs;
// Feature value lookup based on tag.
std::unordered_map<uint32_t, uint32_t> m_featureValues;
// Axis value lookup based on for the feature.
std::unordered_map<uint32_t, float> m_axisValues;
// Color glyph (emoji) support — COLRv0 (layers), COLRv1 (paint),
// and/or SBIX/CBDT (PNG bitmap).
bool m_hasColorLayers = false; // COLRv0
bool m_hasColorPaint = false; // COLRv1
bool m_hasPNG = false; // SBIX or CBDT
std::vector<hb_color_t> m_paletteColors;
mutable std::unordered_map<rive::GlyphID, std::vector<ColorGlyphLayer>>
m_colorLayerCache;
};
#endif