@@ -105,6 +105,15 @@ class TypefaceCache final : private DeletedAtShutdown
105
105
106
106
const ScopedWriteLock slw (lock);
107
107
108
+ auto newFace = CachedFace { key,
109
+ ++counter,
110
+ juce_getTypefaceForFont != nullptr
111
+ ? juce_getTypefaceForFont (font)
112
+ : Font::getDefaultTypefaceForFont (font) };
113
+
114
+ if (newFace.typeface == nullptr )
115
+ return nullptr ;
116
+
108
117
const auto replaceIter = std::min_element (faces.begin (),
109
118
faces.end (),
110
119
[] (const auto & a, const auto & b)
@@ -114,13 +123,8 @@ class TypefaceCache final : private DeletedAtShutdown
114
123
115
124
jassert (replaceIter != faces.end ());
116
125
auto & face = *replaceIter;
117
- face = CachedFace { key,
118
- ++counter,
119
- juce_getTypefaceForFont != nullptr
120
- ? juce_getTypefaceForFont (font)
121
- : Font::getDefaultTypefaceForFont (font) };
122
126
123
- jassert ( face. typeface != nullptr ); // the look and feel must return a typeface!
127
+ face = std::move (newFace);
124
128
125
129
if (defaultFace == nullptr && key == Key{})
126
130
defaultFace = face.typeface ;
@@ -208,10 +212,7 @@ class Font::SharedFontInternal : public ReferenceCountedObject
208
212
const ScopedLock lock (mutex);
209
213
210
214
if (typeface == nullptr )
211
- {
212
215
typeface = options.getTypeface () != nullptr ? options.getTypeface () : TypefaceCache::getInstance ()->findTypefaceFor (f);
213
- jassert (typeface != nullptr );
214
- }
215
216
216
217
return typeface;
217
218
}
@@ -765,8 +766,13 @@ int Font::getStringWidth (const String& text) const
765
766
766
767
float Font::getStringWidthFloat (const String& text) const
767
768
{
768
- const auto w = getTypefacePtr ()->getStringWidth (getMetricsKind (), text, getHeight (), getHorizontalScale ());
769
- return w + (getHeight () * getHorizontalScale () * getExtraKerningFactor () * (float ) text.length ());
769
+ if (auto typeface = getTypefacePtr ())
770
+ {
771
+ const auto w = typeface->getStringWidth (getMetricsKind (), text, getHeight (), getHorizontalScale ());
772
+ return w + (getHeight () * getHorizontalScale () * getExtraKerningFactor () * (float ) text.length ());
773
+ }
774
+
775
+ return 0 ;
770
776
}
771
777
772
778
void Font::findFonts (Array<Font>& destArray)
@@ -834,9 +840,19 @@ Font Font::findSuitableFontForText (const String& text, const String& language)
834
840
return copy;
835
841
}
836
842
837
- if (auto current = getTypefacePtr ())
843
+ const auto fallbackTypefacePtr = std::invoke ([&]
844
+ {
845
+ if (auto current = getTypefacePtr ())
846
+ return current;
847
+
848
+ auto copy = *this ;
849
+ copy.setTypefaceName (Font::getDefaultSansSerifFontName ());
850
+ return copy.getTypefacePtr ();
851
+ });
852
+
853
+ if (fallbackTypefacePtr != nullptr )
838
854
{
839
- if (auto suggested = current ->createSystemFallback (text, language))
855
+ if (auto suggested = fallbackTypefacePtr ->createSystemFallback (text, language))
840
856
{
841
857
auto copy = *this ;
842
858
@@ -1022,4 +1038,4 @@ static FontTests fontTests;
1022
1038
1023
1039
#endif
1024
1040
1025
- } // namespace juce
1041
+ } // namespace juce
0 commit comments