📄 bdfdrivr.c
字号:
/* bdfdrivr.c FreeType font driver for bdf files Copyright (C) 2001-2002 by Francesco Zappa NardelliPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INTHE SOFTWARE.*/#include <ft2build.h>#include FT_INTERNAL_DEBUG_H#include FT_INTERNAL_STREAM_H#include FT_INTERNAL_OBJECTS_H#include "bdf.h"#include "bdfdrivr.h"#include "bdferror.h" /*************************************************************************/ /* */ /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */ /* messages during execution. */ /* */#undef FT_COMPONENT#define FT_COMPONENT trace_bdfdriver#ifdef FT_CONFIG_OPTION_USE_CMAPS typedef struct BDF_CMapRec_ { FT_CMapRec cmap; FT_UInt num_encodings; BDF_encoding_el* encodings; } BDF_CMapRec, *BDF_CMap; FT_CALLBACK_DEF( FT_Error ) bdf_cmap_init( BDF_CMap cmap ) { BDF_Face face = (BDF_Face)FT_CMAP_FACE( cmap ); cmap->num_encodings = face->bdffont->glyphs_used; cmap->encodings = face->en_table; return FT_Err_Ok; } FT_CALLBACK_DEF( void ) bdf_cmap_done( BDF_CMap cmap ) { cmap->encodings = NULL; cmap->num_encodings = 0; } FT_CALLBACK_DEF( FT_UInt ) bdf_cmap_char_index( BDF_CMap cmap, FT_UInt32 charcode ) { BDF_encoding_el* encodings = cmap->encodings; FT_UInt min, max, mid; FT_UInt result = 0; min = 0; max = cmap->num_encodings; while ( min < max ) { FT_UInt32 code; mid = ( min + max ) >> 1; code = encodings[mid].enc; if ( charcode == code ) { result = encodings[mid].glyph + 1; break; } if ( charcode < code ) max = mid; else min = mid + 1; } return result; } FT_CALLBACK_DEF( FT_UInt ) bdf_cmap_char_next( BDF_CMap cmap, FT_UInt32 *acharcode ) { BDF_encoding_el* encodings = cmap->encodings; FT_UInt min, max, mid; FT_UInt32 charcode = *acharcode + 1; FT_UInt result = 0; min = 0; max = cmap->num_encodings; while ( min < max ) { FT_UInt32 code; mid = ( min + max ) >> 1; code = encodings[mid].enc; if ( charcode == code ) { result = encodings[mid].glyph + 1; goto Exit; } if ( charcode < code ) max = mid; else min = mid + 1; } charcode = 0; if ( min < cmap->num_encodings ) { charcode = encodings[min].enc; result = encodings[min].glyph + 1; } Exit: *acharcode = charcode; return result; } FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec bdf_cmap_class = { sizeof( BDF_CMapRec ), (FT_CMap_InitFunc) bdf_cmap_init, (FT_CMap_DoneFunc) bdf_cmap_done, (FT_CMap_CharIndexFunc)bdf_cmap_char_index, (FT_CMap_CharNextFunc) bdf_cmap_char_next };#else /* !FT_CONFIG_OPTION_USE_CMAPS */ static FT_UInt BDF_Get_Char_Index( FT_CharMap charmap, FT_ULong char_code ) { BDF_Face face = (BDF_Face)charmap->face; BDF_encoding_el* en_table = face->en_table; int low, high, mid; FT_TRACE4(( "BDF_Get_Char_Index %ld\n", char_code )); low = 0; high = face->bdffont->glyphs_used - 1; while ( low <= high ) { mid = ( low + high ) / 2; if ( char_code < en_table[mid].enc ) high = mid - 1; else if ( char_code > en_table[mid].enc ) low = mid + 1; else return en_table[mid].glyph + 1; } return face->bdffont->default_glyph + 1; }#endif /* !FT_CONFIG_OPTION_USE_CMAPS */ FT_CALLBACK_DEF( FT_Error ) BDF_Face_Done( BDF_Face face ) { FT_Memory memory = FT_FACE_MEMORY( face ); bdf_free_font( face->bdffont ); FT_FREE( face->en_table ); FT_FREE( face->charset_encoding ); FT_FREE( face->charset_registry ); FT_FREE( face->root.family_name ); FT_FREE( face->root.available_sizes ); FT_FREE( face->bdffont ); FT_TRACE4(( "BDF_Face_Done: done face\n" )); return BDF_Err_Ok; } FT_CALLBACK_DEF( FT_Error ) BDF_Face_Init( FT_Stream stream, BDF_Face face, FT_Int face_index, FT_Int num_params, FT_Parameter* params ) { FT_Error error = BDF_Err_Ok; FT_Memory memory = FT_FACE_MEMORY( face ); bdf_font_t* font; bdf_options_t options; FT_UNUSED( num_params ); FT_UNUSED( params ); FT_UNUSED( face_index ); if ( FT_STREAM_SEEK( 0 ) ) goto Exit; options.correct_metrics = 1; /* FZ XXX: options semantics */ options.keep_unencoded = 1; options.keep_comments = 0; options.font_spacing = BDF_PROPORTIONAL; error = bdf_load_font( stream, memory, &options, &font ); if ( error == BDF_Err_Missing_Startfont_Field ) { FT_TRACE2(( "[not a valid BDF file]\n" )); goto Fail; } else if ( error ) goto Exit; /* we have a bdf font: let's construct the face object */ face->bdffont = font; { FT_Face root = FT_FACE( face ); bdf_property_t* prop = NULL; FT_TRACE4(( "number of glyphs: %d (%d)\n", font->glyphs_size, font->glyphs_used )); FT_TRACE4(( "number of unencoded glyphs: %d (%d)\n", font->unencoded_size, font->unencoded_used )); root->num_faces = 1; root->face_index = 0; root->face_flags = FT_FACE_FLAG_FIXED_SIZES | FT_FACE_FLAG_HORIZONTAL | FT_FACE_FLAG_FAST_GLYPHS; prop = bdf_get_font_property( font, (char *)"SPACING" ); if ( prop != NULL ) if ( prop->format == BDF_ATOM ) if ( prop->value.atom != NULL ) if ( ( *(prop->value.atom) == 'M' ) || ( *(prop->value.atom) == 'C' ) ) root->face_flags |= FT_FACE_FLAG_FIXED_WIDTH; /* FZ XXX: TO DO: FT_FACE_FLAGS_VERTICAL */ /* FZ XXX: I need a font to implement this */ root->style_flags = 0; prop = bdf_get_font_property( font, (char *)"SLANT" ); if ( prop != NULL ) if ( prop->format == BDF_ATOM ) if ( prop->value.atom != NULL ) if ( ( *(prop->value.atom) == 'O' ) || ( *(prop->value.atom) == 'I' ) ) root->style_flags |= FT_STYLE_FLAG_ITALIC; prop = bdf_get_font_property( font, (char *)"WEIGHT_NAME" ); if ( prop != NULL ) if ( prop->format == BDF_ATOM ) if ( prop->value.atom != NULL ) if ( *(prop->value.atom) == 'B' ) root->style_flags |= FT_STYLE_FLAG_BOLD; prop = bdf_get_font_property( font, (char *)"FAMILY_NAME" ); if ( ( prop != NULL ) && ( prop->value.atom != NULL ) ) { int l = ft_strlen( prop->value.atom ) + 1; if ( FT_NEW_ARRAY( root->family_name, l ) ) goto Exit; ft_strcpy( root->family_name, prop->value.atom ); } else root->family_name = 0; root->style_name = (char *)"Regular"; if ( root->style_flags & FT_STYLE_FLAG_BOLD ) { if ( root->style_flags & FT_STYLE_FLAG_ITALIC ) root->style_name = (char *)"Bold Italic"; else root->style_name = (char *)"Bold"; } else if ( root->style_flags & FT_STYLE_FLAG_ITALIC ) root->style_name = (char *)"Italic"; root->num_glyphs = font->glyphs_size; /* unencoded included */ root->num_fixed_sizes = 1; if ( FT_NEW_ARRAY( root->available_sizes, 1 ) ) goto Exit; prop = bdf_get_font_property( font, (char *)"AVERAGE_WIDTH" ); if ( ( prop != NULL ) && ( prop->value.int32 >= 10 ) ) root->available_sizes->width = prop->value.int32 / 10; prop = bdf_get_font_property( font, (char *)"PIXEL_SIZE" ); if ( prop != NULL ) root->available_sizes->height = prop->value.int32; else { prop = bdf_get_font_property( font, (char *)"POINT_SIZE" ); if ( prop != NULL ) { bdf_property_t *yres; yres = bdf_get_font_property( font, (char *)"RESOLUTION_Y" ); if ( yres != NULL ) { FT_TRACE4(( "POINT_SIZE: %d RESOLUTION_Y: %d\n", prop->value.int32, yres->value.int32 )); root->available_sizes->height = (FT_Short)( prop->value.int32 * yres->value.int32 / 720 ); } } } if ( root->available_sizes->width == 0 ) { if ( root->available_sizes->height == 0 ) { /* some fonts have broken SIZE declaration (jiskan24.bdf) */ FT_ERROR(( "BDF_Face_Init: reading size\n" )); root->available_sizes->width = (FT_Short)font->point_size; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -