From f88ad3864ccdf534e46cc004b377b2c08d318a04 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 30 Mar 2011 10:27:05 +1100 Subject: Optimize font use by only allocating platform font resources for unique fonts and using aliases of these in the Style objects. Font measurement is also performed once for each unique font and the results copied into each style. No change is needed in callers. On PLAT_WX, the font ascent is cached in the Font object when Ascent is called but this is not copied into the aliases as ascent is protected. Therefore the code that copies the FontID into the alias also calls Ascent to ensure the ascent value is cached. --- src/ViewStyle.cxx | 117 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 100 insertions(+), 17 deletions(-) (limited to 'src/ViewStyle.cxx') diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 78ba1f78c..30911d3f5 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -72,11 +72,65 @@ const char *FontNames::Save(const char *name) { return names[max-1]; } +FontRealised::FontRealised(const FontSpecification &fs) { + frNext = NULL; + (FontSpecification &)(*this) = fs; +} + +FontRealised::~FontRealised() { + delete frNext; + frNext = 0; +} + +void FontRealised::Realise(Surface &surface, int zoomLevel) { + PLATFORM_ASSERT(fontName); + sizeZoomed = size + zoomLevel; + if (sizeZoomed <= 2) // Hangs if sizeZoomed <= 1 + sizeZoomed = 2; + + int deviceHeight = surface.DeviceHeightFont(sizeZoomed); + Create(fontName, characterSet, deviceHeight, bold, italic, extraFontFlag); + + ascent = surface.Ascent(*this); + descent = surface.Descent(*this); + externalLeading = surface.ExternalLeading(*this); + lineHeight = surface.Height(*this); + aveCharWidth = surface.AverageCharWidth(*this); + spaceWidth = surface.WidthChar(*this, ' '); + if (frNext) { + frNext->Realise(surface, zoomLevel); + } +} + +FontRealised *FontRealised::Find(const FontSpecification &fs) { + if (!fs.fontName) + return this; + FontRealised *fr = this; + while (fr) { + if (fr->EqualTo(fs)) + return fr; + fr = fr->frNext; + } + return 0; +} + +void FontRealised::FindMaxAscentDescent(unsigned int &maxAscent, unsigned int &maxDescent) { + FontRealised *fr = this; + while (fr) { + if (maxAscent < ascent) + maxAscent = ascent; + if (maxDescent < descent) + maxDescent = descent; + fr = fr->frNext; + } +} + ViewStyle::ViewStyle() { Init(); } ViewStyle::ViewStyle(const ViewStyle &source) { + frFirst = NULL; Init(source.stylesSize); for (unsigned int sty=0; styfrNext) { + if (cur->EqualTo(fs)) + return; + if (!cur->frNext) { + cur->frNext = new FontRealised(fs); + return; + } + } + frFirst = new FontRealised(fs); + } +} + void ViewStyle::Refresh(Surface &surface) { + delete frFirst; + frFirst = NULL; selbar.desired = Platform::Chrome(); selbarlight.desired = Platform::ChromeHighlight(); - styles[STYLE_DEFAULT].Realise(surface, zoomLevel, NULL, extraFontFlag); - maxAscent = styles[STYLE_DEFAULT].ascent; - maxDescent = styles[STYLE_DEFAULT].descent; + + for (unsigned int i=0; iRealise(surface, zoomLevel); + + for (unsigned int i=0; iFind(styles[i]); + styles[i].Copy(*fr, *fr); + } + maxAscent = 1; + maxDescent = 1; + frFirst->FindMaxAscentDescent(maxAscent, maxDescent); + maxAscent += extraAscent; + maxDescent += extraDescent; + lineHeight = maxAscent + maxDescent; + someStylesProtected = false; someStylesForceCase = false; for (unsigned int i=0; i