|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2013 - Raw Material Software Ltd.
-
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
-
- Details of these licenses can be found at: www.gnu.org/licenses
-
- JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- ------------------------------------------------------------------------------
-
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.juce.com for more information.
-
- ==============================================================================
- */
-
- /* This is some quick-and-dirty code to extract the typeface name from a lump of TTF file data.
- It's needed because although win32 will happily load a TTF file from in-memory data, it won't
- tell you the name of the damned font that it just loaded.. and in order to actually use the font,
- you need to know its name!! Anyway, this awful hack seems to work for most fonts.
- */
- namespace TTFNameExtractor
- {
- struct OffsetTable
- {
- uint32 version;
- uint16 numTables, searchRange, entrySelector, rangeShift;
- };
-
- struct TableDirectory
- {
- char tag[4];
- uint32 checkSum, offset, length;
- };
-
- struct NamingTable
- {
- uint16 formatSelector;
- uint16 numberOfNameRecords;
- uint16 offsetStartOfStringStorage;
- };
-
- struct NameRecord
- {
- uint16 platformID, encodingID, languageID;
- uint16 nameID, stringLength, offsetFromStorageArea;
- };
-
- static String parseNameRecord (MemoryInputStream& input, const NameRecord& nameRecord,
- const int64 directoryOffset, const int64 offsetOfStringStorage)
- {
- String result;
- const int64 oldPos = input.getPosition();
- input.setPosition (directoryOffset + offsetOfStringStorage + ByteOrder::swapIfLittleEndian (nameRecord.offsetFromStorageArea));
- const int stringLength = (int) ByteOrder::swapIfLittleEndian (nameRecord.stringLength);
- const int platformID = ByteOrder::swapIfLittleEndian (nameRecord.platformID);
-
- if (platformID == 0 || platformID == 3)
- {
- const int numChars = stringLength / 2 + 1;
- HeapBlock<uint16> buffer;
- buffer.calloc (numChars + 1);
- input.read (buffer, stringLength);
-
- for (int i = 0; i < numChars; ++i)
- buffer[i] = ByteOrder::swapIfLittleEndian (buffer[i]);
-
- static_jassert (sizeof (CharPointer_UTF16::CharType) == sizeof (uint16));
- result = CharPointer_UTF16 ((CharPointer_UTF16::CharType*) buffer.getData());
- }
- else
- {
- HeapBlock<char> buffer;
- buffer.calloc (stringLength + 1);
- input.read (buffer, stringLength);
- result = CharPointer_UTF8 (buffer.getData());
- }
-
- input.setPosition (oldPos);
- return result;
- }
-
- static String parseNameTable (MemoryInputStream& input, int64 directoryOffset)
- {
- input.setPosition (directoryOffset);
-
- NamingTable namingTable = { 0 };
- input.read (&namingTable, sizeof (namingTable));
-
- for (int i = 0; i < (int) ByteOrder::swapIfLittleEndian (namingTable.numberOfNameRecords); ++i)
- {
- NameRecord nameRecord = { 0 };
- input.read (&nameRecord, sizeof (nameRecord));
-
- if (ByteOrder::swapIfLittleEndian (nameRecord.nameID) == 4)
- {
- const String result (parseNameRecord (input, nameRecord, directoryOffset,
- ByteOrder::swapIfLittleEndian (namingTable.offsetStartOfStringStorage)));
-
- if (result.isNotEmpty())
- return result;
- }
- }
-
- return String();
- }
-
- static String getTypefaceNameFromFile (MemoryInputStream& input)
- {
- OffsetTable offsetTable = { 0 };
- input.read (&offsetTable, sizeof (offsetTable));
-
- for (int i = 0; i < (int) ByteOrder::swapIfLittleEndian (offsetTable.numTables); ++i)
- {
- TableDirectory tableDirectory;
- zerostruct (tableDirectory);
- input.read (&tableDirectory, sizeof (tableDirectory));
-
- if (String (tableDirectory.tag, sizeof (tableDirectory.tag)).equalsIgnoreCase ("name"))
- return parseNameTable (input, ByteOrder::swapIfLittleEndian (tableDirectory.offset));
- }
-
- return String();
- }
- }
-
- namespace FontEnumerators
- {
- static int CALLBACK fontEnum2 (ENUMLOGFONTEXW* lpelfe, NEWTEXTMETRICEXW*, int type, LPARAM lParam)
- {
- if (lpelfe != nullptr && (type & RASTER_FONTTYPE) == 0)
- {
- const String fontName (lpelfe->elfLogFont.lfFaceName);
- ((StringArray*) lParam)->addIfNotAlreadyThere (fontName.removeCharacters ("@"));
- }
-
- return 1;
- }
-
- static int CALLBACK fontEnum1 (ENUMLOGFONTEXW* lpelfe, NEWTEXTMETRICEXW*, int type, LPARAM lParam)
- {
- if (lpelfe != nullptr && (type & RASTER_FONTTYPE) == 0)
- {
- LOGFONTW lf = { 0 };
- lf.lfWeight = FW_DONTCARE;
- lf.lfOutPrecision = OUT_OUTLINE_PRECIS;
- lf.lfQuality = DEFAULT_QUALITY;
- lf.lfCharSet = DEFAULT_CHARSET;
- lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
- lf.lfPitchAndFamily = FF_DONTCARE;
-
- const String fontName (lpelfe->elfLogFont.lfFaceName);
- fontName.copyToUTF16 (lf.lfFaceName, sizeof (lf.lfFaceName));
-
- HDC dc = CreateCompatibleDC (0);
- EnumFontFamiliesEx (dc, &lf,
- (FONTENUMPROCW) &fontEnum2,
- lParam, 0);
- DeleteDC (dc);
- }
-
- return 1;
- }
- }
-
- StringArray Font::findAllTypefaceNames()
- {
- StringArray results;
-
- #if JUCE_USE_DIRECTWRITE
- SharedResourcePointer<Direct2DFactories> factories;
-
- if (factories->systemFonts != nullptr)
- {
- ComSmartPtr<IDWriteFontFamily> fontFamily;
- uint32 fontFamilyCount = 0;
- fontFamilyCount = factories->systemFonts->GetFontFamilyCount();
-
- for (uint32 i = 0; i < fontFamilyCount; ++i)
- {
- HRESULT hr = factories->systemFonts->GetFontFamily (i, fontFamily.resetAndGetPointerAddress());
-
- if (SUCCEEDED (hr))
- results.addIfNotAlreadyThere (getFontFamilyName (fontFamily));
- }
- }
- else
- #endif
- {
- HDC dc = CreateCompatibleDC (0);
-
- {
- LOGFONTW lf = { 0 };
- lf.lfWeight = FW_DONTCARE;
- lf.lfOutPrecision = OUT_OUTLINE_PRECIS;
- lf.lfQuality = DEFAULT_QUALITY;
- lf.lfCharSet = DEFAULT_CHARSET;
- lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
- lf.lfPitchAndFamily = FF_DONTCARE;
-
- EnumFontFamiliesEx (dc, &lf,
- (FONTENUMPROCW) &FontEnumerators::fontEnum1,
- (LPARAM) &results, 0);
- }
-
- DeleteDC (dc);
- }
-
- results.sort (true);
- return results;
- }
-
- StringArray Font::findAllTypefaceStyles (const String& family)
- {
- if (FontStyleHelpers::isPlaceholderFamilyName (family))
- return findAllTypefaceStyles (FontStyleHelpers::getConcreteFamilyNameFromPlaceholder (family));
-
- StringArray results;
-
- #if JUCE_USE_DIRECTWRITE
- SharedResourcePointer<Direct2DFactories> factories;
-
- if (factories->systemFonts != nullptr)
- {
- BOOL fontFound = false;
- uint32 fontIndex = 0;
- HRESULT hr = factories->systemFonts->FindFamilyName (family.toWideCharPointer(), &fontIndex, &fontFound);
- if (! fontFound)
- fontIndex = 0;
-
- // Get the font family using the search results
- // Fonts like: Times New Roman, Times New Roman Bold, Times New Roman Italic are all in the same font family
- ComSmartPtr<IDWriteFontFamily> fontFamily;
- hr = factories->systemFonts->GetFontFamily (fontIndex, fontFamily.resetAndGetPointerAddress());
-
- // Get the font faces
- ComSmartPtr<IDWriteFont> dwFont;
- uint32 fontFacesCount = 0;
- fontFacesCount = fontFamily->GetFontCount();
-
- for (uint32 i = 0; i < fontFacesCount; ++i)
- {
- hr = fontFamily->GetFont (i, dwFont.resetAndGetPointerAddress());
-
- // Ignore any algorithmically generated bold and oblique styles..
- if (dwFont->GetSimulations() == DWRITE_FONT_SIMULATIONS_NONE)
- results.addIfNotAlreadyThere (getFontFaceName (dwFont));
- }
- }
- else
- #endif
- {
- results.add ("Regular");
- results.add ("Italic");
- results.add ("Bold");
- results.add ("Bold Italic");
- }
-
- return results;
- }
-
- extern bool juce_isRunningInWine();
-
- struct DefaultFontNames
- {
- DefaultFontNames()
- {
- if (juce_isRunningInWine())
- {
- // If we're running in Wine, then use fonts that might be available on Linux..
- defaultSans = "Bitstream Vera Sans";
- defaultSerif = "Bitstream Vera Serif";
- defaultFixed = "Bitstream Vera Sans Mono";
- }
- else
- {
- defaultSans = "Verdana";
- defaultSerif = "Times New Roman";
- defaultFixed = "Lucida Console";
- defaultFallback = "Tahoma"; // (contains plenty of unicode characters)
- }
- }
-
- String defaultSans, defaultSerif, defaultFixed, defaultFallback;
- };
-
- Typeface::Ptr Font::getDefaultTypefaceForFont (const Font& font)
- {
- static DefaultFontNames defaultNames;
-
- Font newFont (font);
- const String& faceName = font.getTypefaceName();
-
- if (faceName == getDefaultSansSerifFontName()) newFont.setTypefaceName (defaultNames.defaultSans);
- else if (faceName == getDefaultSerifFontName()) newFont.setTypefaceName (defaultNames.defaultSerif);
- else if (faceName == getDefaultMonospacedFontName()) newFont.setTypefaceName (defaultNames.defaultFixed);
-
- if (font.getTypefaceStyle() == getDefaultStyle())
- newFont.setTypefaceStyle ("Regular");
-
- return Typeface::createSystemTypefaceFor (newFont);
- }
-
- //==============================================================================
- class WindowsTypeface : public Typeface
- {
- public:
- WindowsTypeface (const Font& font)
- : Typeface (font.getTypefaceName(), font.getTypefaceStyle()),
- fontH (0), previousFontH (0),
- dc (CreateCompatibleDC (0)), memoryFont (0),
- ascent (1.0f), heightToPointsFactor (1.0f),
- defaultGlyph (-1)
- {
- loadFont();
- }
-
- WindowsTypeface (const void* data, size_t dataSize)
- : Typeface (String(), String()),
- fontH (0), previousFontH (0),
- dc (CreateCompatibleDC (0)), memoryFont (0),
- ascent (1.0f), heightToPointsFactor (1.0f),
- defaultGlyph (-1)
- {
- DWORD numInstalled = 0;
- memoryFont = AddFontMemResourceEx (const_cast<void*> (data), (DWORD) dataSize,
- nullptr, &numInstalled);
-
- MemoryInputStream m (data, dataSize, false);
- name = TTFNameExtractor::getTypefaceNameFromFile (m);
- loadFont();
- }
-
- ~WindowsTypeface()
- {
- SelectObject (dc, previousFontH); // Replacing the previous font before deleting the DC avoids a warning in BoundsChecker
- DeleteDC (dc);
-
- if (fontH != 0)
- DeleteObject (fontH);
-
- if (memoryFont != 0)
- RemoveFontMemResourceEx (memoryFont);
- }
-
- float getAscent() const { return ascent; }
- float getDescent() const { return 1.0f - ascent; }
- float getHeightToPointsFactor() const { return heightToPointsFactor; }
-
- float getStringWidth (const String& text)
- {
- const CharPointer_UTF16 utf16 (text.toUTF16());
- const size_t numChars = utf16.length();
- HeapBlock<int16> results (numChars + 1);
- results[numChars] = -1;
- float x = 0;
-
- if (GetGlyphIndices (dc, utf16, (int) numChars, reinterpret_cast <WORD*> (results.getData()),
- GGI_MARK_NONEXISTING_GLYPHS) != GDI_ERROR)
- {
- for (size_t i = 0; i < numChars; ++i)
- x += getKerning (dc, results[i], results[i + 1]);
- }
-
- return x;
- }
-
- void getGlyphPositions (const String& text, Array <int>& resultGlyphs, Array <float>& xOffsets)
- {
- const CharPointer_UTF16 utf16 (text.toUTF16());
- const size_t numChars = utf16.length();
- HeapBlock<int16> results (numChars + 1);
- results[numChars] = -1;
- float x = 0;
-
- if (GetGlyphIndices (dc, utf16, (int) numChars, reinterpret_cast <WORD*> (results.getData()),
- GGI_MARK_NONEXISTING_GLYPHS) != GDI_ERROR)
- {
- resultGlyphs.ensureStorageAllocated ((int) numChars);
- xOffsets.ensureStorageAllocated ((int) numChars + 1);
-
- for (size_t i = 0; i < numChars; ++i)
- {
- resultGlyphs.add (results[i]);
- xOffsets.add (x);
- x += getKerning (dc, results[i], results[i + 1]);
- }
- }
-
- xOffsets.add (x);
- }
-
- bool getOutlineForGlyph (int glyphNumber, Path& glyphPath)
- {
- if (glyphNumber < 0)
- glyphNumber = defaultGlyph;
-
- GLYPHMETRICS gm;
- // (although GetGlyphOutline returns a DWORD, it may be -1 on failure, so treat it as signed int..)
- const int bufSize = (int) GetGlyphOutline (dc, (UINT) glyphNumber, GGO_NATIVE | GGO_GLYPH_INDEX,
- &gm, 0, 0, &identityMatrix);
-
- if (bufSize > 0)
- {
- HeapBlock<char> data (bufSize);
- GetGlyphOutline (dc, (UINT) glyphNumber, GGO_NATIVE | GGO_GLYPH_INDEX, &gm,
- bufSize, data, &identityMatrix);
-
- const TTPOLYGONHEADER* pheader = reinterpret_cast<TTPOLYGONHEADER*> (data.getData());
-
- const float scaleX = 1.0f / tm.tmHeight;
- const float scaleY = -scaleX;
-
- while ((char*) pheader < data + bufSize)
- {
- glyphPath.startNewSubPath (scaleX * pheader->pfxStart.x.value,
- scaleY * pheader->pfxStart.y.value);
-
- const TTPOLYCURVE* curve = (const TTPOLYCURVE*) ((const char*) pheader + sizeof (TTPOLYGONHEADER));
- const char* const curveEnd = ((const char*) pheader) + pheader->cb;
-
- while ((const char*) curve < curveEnd)
- {
- if (curve->wType == TT_PRIM_LINE)
- {
- for (int i = 0; i < curve->cpfx; ++i)
- glyphPath.lineTo (scaleX * curve->apfx[i].x.value,
- scaleY * curve->apfx[i].y.value);
- }
- else if (curve->wType == TT_PRIM_QSPLINE)
- {
- for (int i = 0; i < curve->cpfx - 1; ++i)
- {
- const float x2 = scaleX * curve->apfx[i].x.value;
- const float y2 = scaleY * curve->apfx[i].y.value;
- float x3 = scaleX * curve->apfx[i + 1].x.value;
- float y3 = scaleY * curve->apfx[i + 1].y.value;
-
- if (i < curve->cpfx - 2)
- {
- x3 = 0.5f * (x2 + x3);
- y3 = 0.5f * (y2 + y3);
- }
-
- glyphPath.quadraticTo (x2, y2, x3, y3);
- }
- }
-
- curve = (const TTPOLYCURVE*) &(curve->apfx [curve->cpfx]);
- }
-
- pheader = (const TTPOLYGONHEADER*) curve;
-
- glyphPath.closeSubPath();
- }
- }
-
- return true;
- }
-
- private:
- static const MAT2 identityMatrix;
- HFONT fontH;
- HGDIOBJ previousFontH;
- HDC dc;
- TEXTMETRIC tm;
- HANDLE memoryFont;
- float ascent, heightToPointsFactor;
- int defaultGlyph, heightInPoints;
-
- struct KerningPair
- {
- int glyph1, glyph2;
- float kerning;
-
- bool operator== (const KerningPair& other) const noexcept
- {
- return glyph1 == other.glyph1 && glyph2 == other.glyph2;
- }
-
- bool operator< (const KerningPair& other) const noexcept
- {
- return glyph1 < other.glyph1
- || (glyph1 == other.glyph1 && glyph2 < other.glyph2);
- }
- };
-
- SortedSet<KerningPair> kerningPairs;
-
- void loadFont()
- {
- SetMapperFlags (dc, 0);
- SetMapMode (dc, MM_TEXT);
-
- LOGFONTW lf = { 0 };
- lf.lfCharSet = DEFAULT_CHARSET;
- lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
- lf.lfOutPrecision = OUT_OUTLINE_PRECIS;
- lf.lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
- lf.lfQuality = PROOF_QUALITY;
- lf.lfItalic = (BYTE) (style == "Italic" ? TRUE : FALSE);
- lf.lfWeight = style == "Bold" ? FW_BOLD : FW_NORMAL;
- lf.lfHeight = -256;
- name.copyToUTF16 (lf.lfFaceName, sizeof (lf.lfFaceName));
-
- HFONT standardSizedFont = CreateFontIndirect (&lf);
-
- if (standardSizedFont != 0)
- {
- if ((previousFontH = SelectObject (dc, standardSizedFont)) != 0)
- {
- fontH = standardSizedFont;
-
- OUTLINETEXTMETRIC otm;
- if (GetOutlineTextMetrics (dc, sizeof (otm), &otm) != 0)
- {
- heightInPoints = otm.otmEMSquare;
- lf.lfHeight = -(int) heightInPoints;
- fontH = CreateFontIndirect (&lf);
-
- SelectObject (dc, fontH);
- DeleteObject (standardSizedFont);
- }
- }
- }
-
- if (GetTextMetrics (dc, &tm))
- {
- float dpi = (GetDeviceCaps (dc, LOGPIXELSX) + GetDeviceCaps (dc, LOGPIXELSY)) / 2.0f;
- heightToPointsFactor = (dpi / GetDeviceCaps (dc, LOGPIXELSY)) * heightInPoints / (float) tm.tmHeight;
- ascent = tm.tmAscent / (float) tm.tmHeight;
- defaultGlyph = getGlyphForChar (dc, tm.tmDefaultChar);
- createKerningPairs (dc, (float) tm.tmHeight);
- }
- }
-
- void createKerningPairs (HDC dc, const float height)
- {
- HeapBlock<KERNINGPAIR> rawKerning;
- const DWORD numKPs = GetKerningPairs (dc, 0, 0);
- rawKerning.calloc (numKPs);
- GetKerningPairs (dc, numKPs, rawKerning);
-
- kerningPairs.ensureStorageAllocated ((int) numKPs);
-
- for (DWORD i = 0; i < numKPs; ++i)
- {
- KerningPair kp;
- kp.glyph1 = getGlyphForChar (dc, rawKerning[i].wFirst);
- kp.glyph2 = getGlyphForChar (dc, rawKerning[i].wSecond);
-
- const int standardWidth = getGlyphWidth (dc, kp.glyph1);
- kp.kerning = (standardWidth + rawKerning[i].iKernAmount) / height;
- kerningPairs.add (kp);
-
- kp.glyph2 = -1; // add another entry for the standard width version..
- kp.kerning = standardWidth / height;
- kerningPairs.add (kp);
- }
- }
-
- static int getGlyphForChar (HDC dc, juce_wchar character)
- {
- const WCHAR charToTest[] = { (WCHAR) character, 0 };
- WORD index = 0;
-
- if (GetGlyphIndices (dc, charToTest, 1, &index, GGI_MARK_NONEXISTING_GLYPHS) == GDI_ERROR
- || index == 0xffff)
- return -1;
-
- return index;
- }
-
- static int getGlyphWidth (HDC dc, int glyphNumber)
- {
- GLYPHMETRICS gm;
- gm.gmCellIncX = 0;
- GetGlyphOutline (dc, (UINT) glyphNumber, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, 0, 0, &identityMatrix);
- return gm.gmCellIncX;
- }
-
- float getKerning (HDC dc, const int glyph1, const int glyph2)
- {
- KerningPair kp;
- kp.glyph1 = glyph1;
- kp.glyph2 = glyph2;
- int index = kerningPairs.indexOf (kp);
-
- if (index < 0)
- {
- kp.glyph2 = -1;
- index = kerningPairs.indexOf (kp);
-
- if (index < 0)
- {
- kp.glyph2 = -1;
- kp.kerning = getGlyphWidth (dc, kp.glyph1) / (float) tm.tmHeight;
- kerningPairs.add (kp);
- return kp.kerning;
- }
- }
-
- return kerningPairs.getReference (index).kerning;
- }
-
- JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (WindowsTypeface)
- };
-
- const MAT2 WindowsTypeface::identityMatrix = { { 0, 1 }, { 0, 0 }, { 0, 0 }, { 0, 1 } };
-
- Typeface::Ptr Typeface::createSystemTypefaceFor (const Font& font)
- {
- #if JUCE_USE_DIRECTWRITE
- SharedResourcePointer<Direct2DFactories> factories;
-
- if (factories->systemFonts != nullptr)
- {
- ScopedPointer<WindowsDirectWriteTypeface> wtf (new WindowsDirectWriteTypeface (font, factories->systemFonts));
-
- if (wtf->loadedOk())
- return wtf.release();
- }
- #endif
-
- return new WindowsTypeface (font);
- }
-
- Typeface::Ptr Typeface::createSystemTypefaceFor (const void* data, size_t dataSize)
- {
- return new WindowsTypeface (data, dataSize);
- }
-
- void Typeface::scanFolderForFonts (const File&)
- {
- jassertfalse; // not implemented on this platform
- }
|