Verovio
Source code documentation
resources.h
1 // Name: resources.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_RESOURCES_H__
9 #define __VRV_RESOURCES_H__
10 
11 #include <optional>
12 #include <unordered_map>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "filereader.h"
17 #include "glyph.h"
18 
19 namespace vrv {
20 
21 //----------------------------------------------------------------------------
22 // Resources
23 //----------------------------------------------------------------------------
24 
30 class Resources {
31 public:
32  using StyleAttributes = std::pair<data_FONTWEIGHT, data_FONTSTYLE>;
33  using GlyphTable = std::unordered_map<char32_t, Glyph>;
34  using GlyphNameTable = std::unordered_map<std::string, char32_t>;
35  using GlyphTextMap = std::map<StyleAttributes, GlyphTable>;
36 
40  Resources();
42  virtual ~Resources() = default;
44 
48  static std::string GetDefaultPath() { return s_defaultPath; }
50  static void SetDefaultPath(const std::string &path) { s_defaultPath = path; }
51 
52  std::string GetPath() const { return m_path; }
53  void SetPath(const std::string &path) { m_path = path; }
55 
59 
61  bool InitFonts();
63  bool SetFont(const std::string &fontName);
65  bool AddCustom(const std::vector<std::string> &extraFonts);
67  bool LoadAll();
69  void SetFallbackFont(const std::string &fontName);
71  std::string GetFallbackFont() const { return m_fallbackFontName; }
72 
74  bool SetCurrentFont(const std::string &fontName, bool allowLoading = false);
75  std::string GetCurrentFont() const { return m_currentFontName; }
76  bool IsFontLoaded(const std::string &fontName) const { return m_loadedFonts.find(fontName) != m_loadedFonts.end(); }
78 
82 
84  const Glyph *GetGlyph(char32_t smuflCode) const;
86  const Glyph *GetGlyph(const std::string &smuflName) const;
88  char32_t GetGlyphCode(const std::string &smuflName) const;
90 
94  bool IsSmuflFallbackNeeded(const std::u32string &text) const;
95 
99  bool IsCurrentFontFallback() const;
100 
104 
106  void SelectTextFont(data_FONTWEIGHT fontWeight, data_FONTSTYLE fontStyle) const;
108  const Glyph *GetTextGlyph(char32_t code) const;
110  bool FontHasGlyphAvailable(const std::string &fontName, char32_t smuflCode) const;
112 
117  std::string GetCSSFontFor(const std::string &fontName) const;
118 
122  std::string GetCustomFontname(const std::string &filename, const ZipFileReader &zipFile);
123 
128  static char32_t GetSmuflGlyphForUnicodeChar(const char32_t unicodeChar);
129 
130 private:
131  //----------------------------------------------------------------------------
132  // LoadedFont
133  //----------------------------------------------------------------------------
134 
135  class LoadedFont {
136 
137  public:
138  LoadedFont(const std::string &name, bool isFallback) : m_name(name), m_isFallback(isFallback) {}
139  ~LoadedFont() {}
140  const std::string GetName() const { return m_name; };
141  const GlyphTable &GetGlyphTable() const { return m_glyphTable; };
142  GlyphTable &GetGlyphTableForModification() { return m_glyphTable; };
143  bool isFallback() const { return m_isFallback; };
144 
145  void SetCSSFont(const std::string &css) { m_css = css; }
146  std::string GetCSSFont(const std::string &path) const;
147 
148  private:
149  std::string m_name;
151  GlyphTable m_glyphTable;
153  const bool m_isFallback;
155  std::string m_css;
156  };
157 
158  //----------------------------------------------------------------------------
159 
160  bool LoadFont(const std::string &fontName, ZipFileReader *zipFile = NULL);
161 
163  bool InitTextFont(const std::string &fontName, const StyleAttributes &style);
164 
165  const GlyphTable &GetCurrentGlyphTable() const { return m_loadedFonts.at(m_currentFontName).GetGlyphTable(); };
166  const GlyphTable &GetFallbackGlyphTable() const { return m_loadedFonts.at(m_fallbackFontName).GetGlyphTable(); };
167 
168  std::string m_path;
169  std::string m_defaultFontName;
170  std::string m_fallbackFontName;
171  std::map<std::string, LoadedFont> m_loadedFonts;
172  std::string m_currentFontName;
173 
175  GlyphTextMap m_textFont;
176  mutable StyleAttributes m_currentStyle;
180  GlyphNameTable m_glyphNameTable;
181 
183  mutable std::optional<std::pair<char32_t, const Glyph *>> m_cachedGlyph;
184 
185  //----------------//
186  // Static members //
187  //----------------//
188 
190  static thread_local std::string s_defaultPath;
191 
193  static const StyleAttributes k_defaultStyle;
194 };
195 
196 } // namespace vrv
197 
198 #endif
vrv::Resources::AddCustom
bool AddCustom(const std::vector< std::string > &extraFonts)
Add custom (external) fonts.
vrv::Resources::SetFallbackFont
void SetFallbackFont(const std::string &fontName)
Set the fallback font (Leipzig or Bravura) when some glyphs are missing in the current font.
vrv::Resources::SetFont
bool SetFont(const std::string &fontName)
Set the font to be used and loads it if necessary.
vrv::Resources::GetGlyph
const Glyph * GetGlyph(char32_t smuflCode) const
Retrieving glyphs.
vrv::Resources::GetTextGlyph
const Glyph * GetTextGlyph(char32_t code) const
Returns the glyph (if exists) for the text font (bounding box and ASCII only)
vrv::Resources::SetCurrentFont
bool SetCurrentFont(const std::string &fontName, bool allowLoading=false)
Select a particular font.
vrv::Resources::GetFallbackFont
std::string GetFallbackFont() const
Get the fallback font name.
Definition: resources.h:71
vrv::Resources::GetCustomFontname
std::string GetCustomFontname(const std::string &filename, const ZipFileReader &zipFile)
Retrieve the font name either from the filename path or from the zipFile content.
vrv::Resources::IsSmuflFallbackNeeded
bool IsSmuflFallbackNeeded(const std::u32string &text) const
Check if the text has any charachter that needs the smufl fallback font.
vrv::Resources::FontHasGlyphAvailable
bool FontHasGlyphAvailable(const std::string &fontName, char32_t smuflCode) const
Returns true if the specified font is loaded and it contains the requested glyph.
vrv::Resources::GetGlyphCode
char32_t GetGlyphCode(const std::string &smuflName) const
Returns the glyph (if exists) for a glyph name in the current SMuFL font.
vrv::Resources
This class provides resource values.
Definition: resources.h:30
vrv::Resources::SelectTextFont
void SelectTextFont(data_FONTWEIGHT fontWeight, data_FONTSTYLE fontStyle) const
Text fonts.
vrv::Resources::GetCSSFontFor
std::string GetCSSFontFor(const std::string &fontName) const
Get the CSS font string for the corresponding font.
vrv::Resources::LoadAll
bool LoadAll()
Load all music fonts available in the resource directory.
vrv::Resources::InitFonts
bool InitFonts()
Font initialization.
vrv::Resources::IsCurrentFontFallback
bool IsCurrentFontFallback() const
Check if the current font is the fallback font.
vrv::Resources::GetSmuflGlyphForUnicodeChar
static char32_t GetSmuflGlyphForUnicodeChar(const char32_t unicodeChar)
Static method that converts unicode music code points to SMuFL equivalent.