diff options
author | michi_cc <michi_cc@openttd.org> | 2013-04-06 22:06:44 +0000 |
---|---|---|
committer | michi_cc <michi_cc@openttd.org> | 2013-04-06 22:06:44 +0000 |
commit | 55ba9320f311f37d16cf8f456a555aa5fba8d1a3 (patch) | |
tree | 9ee732acd5c8e10b733620fbefd8d0ca423cc715 /src | |
parent | 2b6669a7fffa237ddd818b0a461eb96081f15dd9 (diff) | |
download | openttd-55ba9320f311f37d16cf8f456a555aa5fba8d1a3.tar.xz |
(svn r25157) -Feature: Determine the default font height for vector fonts according to the minimum readable height that the font provides.
Diffstat (limited to 'src')
-rw-r--r-- | src/fontcache.cpp | 25 | ||||
-rw-r--r-- | src/table/misc_settings.ini | 8 |
2 files changed, 25 insertions, 8 deletions
diff --git a/src/fontcache.cpp b/src/fontcache.cpp index 1d7f528d6..27c908678 100644 --- a/src/fontcache.cpp +++ b/src/fontcache.cpp @@ -20,9 +20,12 @@ #include "table/control_codes.h" static const int ASCII_LETTERSTART = 32; ///< First printable ASCII letter. +static const int MAX_FONT_SIZE = 72; ///< Maximum font size. /** Semi-constant for the height of the different sizes of fonts. */ int _font_height[FS_END]; +/** Default heights for the different sizes of fonts. */ +static const int _default_font_height[FS_END] = {10, 6, 18, 10}; /** * Reset the font sizes to the defaults of the sprite based fonts. @@ -31,11 +34,11 @@ int _font_height[FS_END]; void ResetFontSizes(bool monospace) { if (monospace) { - _font_height[FS_MONO] = 10; + _font_height[FS_MONO] = _default_font_height[FS_MONO]; } else { - _font_height[FS_SMALL] = 6; - _font_height[FS_NORMAL] = 10; - _font_height[FS_LARGE] = 18; + _font_height[FS_SMALL] = _default_font_height[FS_SMALL]; + _font_height[FS_NORMAL] = _default_font_height[FS_NORMAL]; + _font_height[FS_LARGE] = _default_font_height[FS_LARGE]; } } @@ -43,6 +46,7 @@ void ResetFontSizes(bool monospace) #include <ft2build.h> #include FT_FREETYPE_H #include FT_GLYPH_H +#include FT_TRUETYPE_TABLES_H #ifdef WITH_FONTCONFIG #include <fontconfig/fontconfig.h> @@ -815,6 +819,19 @@ bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, i static void SetFontGeometry(FT_Face face, FontSize size, int pixels) { + if (pixels == 0) { + /* Try to determine a good height based on the minimal height recommended by the font. */ + pixels = _default_font_height[size]; + + TT_Header *head = (TT_Header *)FT_Get_Sfnt_Table(face, ft_sfnt_head); + if (head != NULL) { + /* Font height is minimum height plus the difference between the default + * height for this font size and the small size. */ + int diff = _default_font_height[size] - _default_font_height[FS_SMALL]; + pixels = Clamp(min(head->Lowest_Rec_PPEM, 20) + diff, _default_font_height[size], MAX_FONT_SIZE); + } + } + FT_Error err = FT_Set_Pixel_Sizes(face, 0, pixels); if (err == FT_Err_Invalid_Pixel_Size) { diff --git a/src/table/misc_settings.ini b/src/table/misc_settings.ini index 6d9e7bbea..630e35f69 100644 --- a/src/table/misc_settings.ini +++ b/src/table/misc_settings.ini @@ -164,7 +164,7 @@ ifdef = WITH_FREETYPE name = ""small_size"" type = SLE_UINT var = _freetype.small_size -def = 8 +def = 0 min = 0 max = 72 @@ -173,7 +173,7 @@ ifdef = WITH_FREETYPE name = ""medium_size"" type = SLE_UINT var = _freetype.medium_size -def = 10 +def = 0 min = 0 max = 72 @@ -182,7 +182,7 @@ ifdef = WITH_FREETYPE name = ""large_size"" type = SLE_UINT var = _freetype.large_size -def = 16 +def = 0 min = 0 max = 72 @@ -191,7 +191,7 @@ ifdef = WITH_FREETYPE name = ""mono_size"" type = SLE_UINT var = _freetype.mono_size -def = 10 +def = 0 min = 0 max = 72 |