Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / type42 / t42drivr.c
blob820c679612ebf1669b1f86ef09c4d94ac1e2f42d
1 /***************************************************************************/
2 /* */
3 /* t42drivr.c */
4 /* */
5 /* High-level Type 42 driver interface (body). */
6 /* */
7 /* Copyright 2002, 2003, 2004, 2006, 2007, 2009 by Roberto Alameda. */
8 /* */
9 /* This file is part of the FreeType project, and may only be used, */
10 /* modified, and distributed under the terms of the FreeType project */
11 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
12 /* this file you indicate that you have read the license and */
13 /* understand and accept it fully. */
14 /* */
15 /***************************************************************************/
18 /*************************************************************************/
19 /* */
20 /* This driver implements Type42 fonts as described in the */
21 /* Technical Note #5012 from Adobe, with these limitations: */
22 /* */
23 /* 1) CID Fonts are not currently supported. */
24 /* 2) Incremental fonts making use of the GlyphDirectory keyword */
25 /* will be loaded, but the rendering will be using the TrueType */
26 /* tables. */
27 /* 3) As for Type1 fonts, CDevProc is not supported. */
28 /* 4) The Metrics dictionary is not supported. */
29 /* 5) AFM metrics are not supported. */
30 /* */
31 /* In other words, this driver supports Type42 fonts derived from */
32 /* TrueType fonts in a non-CID manner, as done by usual conversion */
33 /* programs. */
34 /* */
35 /*************************************************************************/
38 #include "t42drivr.h"
39 #include "t42objs.h"
40 #include "t42error.h"
41 #include FT_INTERNAL_DEBUG_H
43 #include FT_SERVICE_XFREE86_NAME_H
44 #include FT_SERVICE_GLYPH_DICT_H
45 #include FT_SERVICE_POSTSCRIPT_NAME_H
46 #include FT_SERVICE_POSTSCRIPT_INFO_H
48 #undef FT_COMPONENT
49 #define FT_COMPONENT trace_t42
54 * GLYPH DICT SERVICE
58 static FT_Error
59 t42_get_glyph_name( T42_Face face,
60 FT_UInt glyph_index,
61 FT_Pointer buffer,
62 FT_UInt buffer_max )
64 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
66 return T42_Err_Ok;
70 static FT_UInt
71 t42_get_name_index( T42_Face face,
72 FT_String* glyph_name )
74 FT_Int i;
75 FT_String* gname;
78 for ( i = 0; i < face->type1.num_glyphs; i++ )
80 gname = face->type1.glyph_names[i];
82 if ( glyph_name[0] == gname[0] && !ft_strcmp( glyph_name, gname ) )
83 return (FT_UInt)ft_atol( (const char *)face->type1.charstrings[i] );
86 return 0;
90 static const FT_Service_GlyphDictRec t42_service_glyph_dict =
92 (FT_GlyphDict_GetNameFunc) t42_get_glyph_name,
93 (FT_GlyphDict_NameIndexFunc)t42_get_name_index
99 * POSTSCRIPT NAME SERVICE
103 static const char*
104 t42_get_ps_font_name( T42_Face face )
106 return (const char*)face->type1.font_name;
110 static const FT_Service_PsFontNameRec t42_service_ps_font_name =
112 (FT_PsName_GetFunc)t42_get_ps_font_name
118 * POSTSCRIPT INFO SERVICE
122 static FT_Error
123 t42_ps_get_font_info( FT_Face face,
124 PS_FontInfoRec* afont_info )
126 *afont_info = ((T42_Face)face)->type1.font_info;
128 return T42_Err_Ok;
132 static FT_Error
133 t42_ps_get_font_extra( FT_Face face,
134 PS_FontExtraRec* afont_extra )
136 *afont_extra = ((T42_Face)face)->type1.font_extra;
138 return T42_Err_Ok;
142 static FT_Int
143 t42_ps_has_glyph_names( FT_Face face )
145 FT_UNUSED( face );
147 return 1;
151 static FT_Error
152 t42_ps_get_font_private( FT_Face face,
153 PS_PrivateRec* afont_private )
155 *afont_private = ((T42_Face)face)->type1.private_dict;
157 return T42_Err_Ok;
161 static const FT_Service_PsInfoRec t42_service_ps_info =
163 (PS_GetFontInfoFunc) t42_ps_get_font_info,
164 (PS_GetFontExtraFunc) t42_ps_get_font_extra,
165 (PS_HasGlyphNamesFunc) t42_ps_has_glyph_names,
166 (PS_GetFontPrivateFunc)t42_ps_get_font_private
172 * SERVICE LIST
176 static const FT_ServiceDescRec t42_services[] =
178 { FT_SERVICE_ID_GLYPH_DICT, &t42_service_glyph_dict },
179 { FT_SERVICE_ID_POSTSCRIPT_FONT_NAME, &t42_service_ps_font_name },
180 { FT_SERVICE_ID_POSTSCRIPT_INFO, &t42_service_ps_info },
181 { FT_SERVICE_ID_XF86_NAME, FT_XF86_FORMAT_TYPE_42 },
182 { NULL, NULL }
186 static FT_Module_Interface
187 T42_Get_Interface( FT_Driver driver,
188 const FT_String* t42_interface )
190 FT_UNUSED( driver );
192 return ft_service_list_lookup( t42_services, t42_interface );
196 const FT_Driver_ClassRec t42_driver_class =
199 FT_MODULE_FONT_DRIVER |
200 FT_MODULE_DRIVER_SCALABLE |
201 #ifdef TT_USE_BYTECODE_INTERPRETER
202 FT_MODULE_DRIVER_HAS_HINTER,
203 #else
205 #endif
207 sizeof ( T42_DriverRec ),
209 "type42",
210 0x10000L,
211 0x20000L,
213 0, /* format interface */
215 (FT_Module_Constructor)T42_Driver_Init,
216 (FT_Module_Destructor) T42_Driver_Done,
217 (FT_Module_Requester) T42_Get_Interface,
220 sizeof ( T42_FaceRec ),
221 sizeof ( T42_SizeRec ),
222 sizeof ( T42_GlyphSlotRec ),
224 (FT_Face_InitFunc) T42_Face_Init,
225 (FT_Face_DoneFunc) T42_Face_Done,
226 (FT_Size_InitFunc) T42_Size_Init,
227 (FT_Size_DoneFunc) T42_Size_Done,
228 (FT_Slot_InitFunc) T42_GlyphSlot_Init,
229 (FT_Slot_DoneFunc) T42_GlyphSlot_Done,
231 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
232 ft_stub_set_char_sizes,
233 ft_stub_set_pixel_sizes,
234 #endif
235 (FT_Slot_LoadFunc) T42_GlyphSlot_Load,
237 (FT_Face_GetKerningFunc) 0,
238 (FT_Face_AttachFunc) 0,
240 (FT_Face_GetAdvancesFunc) 0,
241 (FT_Size_RequestFunc) T42_Size_Request,
242 (FT_Size_SelectFunc) T42_Size_Select
246 /* END */