Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / type1 / t1driver.c
blob8c398eee228aca4651b19fc3ea3cffb6f464933a
1 /***************************************************************************/
2 /* */
3 /* t1driver.c */
4 /* */
5 /* Type 1 driver interface (body). */
6 /* */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2009 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
9 /* */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
15 /* */
16 /***************************************************************************/
19 #include <ft2build.h>
20 #include "t1driver.h"
21 #include "t1gload.h"
22 #include "t1load.h"
24 #include "t1errors.h"
26 #ifndef T1_CONFIG_OPTION_NO_AFM
27 #include "t1afm.h"
28 #endif
30 #include FT_INTERNAL_DEBUG_H
31 #include FT_INTERNAL_STREAM_H
33 #include FT_SERVICE_MULTIPLE_MASTERS_H
34 #include FT_SERVICE_GLYPH_DICT_H
35 #include FT_SERVICE_XFREE86_NAME_H
36 #include FT_SERVICE_POSTSCRIPT_NAME_H
37 #include FT_SERVICE_POSTSCRIPT_CMAPS_H
38 #include FT_SERVICE_POSTSCRIPT_INFO_H
39 #include FT_SERVICE_KERNING_H
42 /*************************************************************************/
43 /* */
44 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
45 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
46 /* messages during execution. */
47 /* */
48 #undef FT_COMPONENT
49 #define FT_COMPONENT trace_t1driver
52 * GLYPH DICT SERVICE
56 static FT_Error
57 t1_get_glyph_name( T1_Face face,
58 FT_UInt glyph_index,
59 FT_Pointer buffer,
60 FT_UInt buffer_max )
62 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
64 return T1_Err_Ok;
68 static FT_UInt
69 t1_get_name_index( T1_Face face,
70 FT_String* glyph_name )
72 FT_Int i;
73 FT_String* gname;
76 for ( i = 0; i < face->type1.num_glyphs; i++ )
78 gname = face->type1.glyph_names[i];
80 if ( !ft_strcmp( glyph_name, gname ) )
81 return (FT_UInt)i;
84 return 0;
88 static const FT_Service_GlyphDictRec t1_service_glyph_dict =
90 (FT_GlyphDict_GetNameFunc) t1_get_glyph_name,
91 (FT_GlyphDict_NameIndexFunc)t1_get_name_index
96 * POSTSCRIPT NAME SERVICE
100 static const char*
101 t1_get_ps_name( T1_Face face )
103 return (const char*) face->type1.font_name;
107 static const FT_Service_PsFontNameRec t1_service_ps_name =
109 (FT_PsName_GetFunc)t1_get_ps_name
114 * MULTIPLE MASTERS SERVICE
118 #ifndef T1_CONFIG_OPTION_NO_MM_SUPPORT
119 static const FT_Service_MultiMastersRec t1_service_multi_masters =
121 (FT_Get_MM_Func) T1_Get_Multi_Master,
122 (FT_Set_MM_Design_Func) T1_Set_MM_Design,
123 (FT_Set_MM_Blend_Func) T1_Set_MM_Blend,
124 (FT_Get_MM_Var_Func) T1_Get_MM_Var,
125 (FT_Set_Var_Design_Func)T1_Set_Var_Design
127 #endif
131 * POSTSCRIPT INFO SERVICE
135 static FT_Error
136 t1_ps_get_font_info( FT_Face face,
137 PS_FontInfoRec* afont_info )
139 *afont_info = ((T1_Face)face)->type1.font_info;
141 return T1_Err_Ok;
145 static FT_Error
146 t1_ps_get_font_extra( FT_Face face,
147 PS_FontExtraRec* afont_extra )
149 *afont_extra = ((T1_Face)face)->type1.font_extra;
151 return T1_Err_Ok;
155 static FT_Int
156 t1_ps_has_glyph_names( FT_Face face )
158 FT_UNUSED( face );
160 return 1;
164 static FT_Error
165 t1_ps_get_font_private( FT_Face face,
166 PS_PrivateRec* afont_private )
168 *afont_private = ((T1_Face)face)->type1.private_dict;
170 return T1_Err_Ok;
174 static const FT_Service_PsInfoRec t1_service_ps_info =
176 (PS_GetFontInfoFunc) t1_ps_get_font_info,
177 (PS_GetFontExtraFunc) t1_ps_get_font_extra,
178 (PS_HasGlyphNamesFunc) t1_ps_has_glyph_names,
179 (PS_GetFontPrivateFunc)t1_ps_get_font_private,
183 #ifndef T1_CONFIG_OPTION_NO_AFM
184 static const FT_Service_KerningRec t1_service_kerning =
186 T1_Get_Track_Kerning,
188 #endif
192 * SERVICE LIST
196 static const FT_ServiceDescRec t1_services[] =
198 { FT_SERVICE_ID_POSTSCRIPT_FONT_NAME, &t1_service_ps_name },
199 { FT_SERVICE_ID_GLYPH_DICT, &t1_service_glyph_dict },
200 { FT_SERVICE_ID_XF86_NAME, FT_XF86_FORMAT_TYPE_1 },
201 { FT_SERVICE_ID_POSTSCRIPT_INFO, &t1_service_ps_info },
203 #ifndef T1_CONFIG_OPTION_NO_AFM
204 { FT_SERVICE_ID_KERNING, &t1_service_kerning },
205 #endif
207 #ifndef T1_CONFIG_OPTION_NO_MM_SUPPORT
208 { FT_SERVICE_ID_MULTI_MASTERS, &t1_service_multi_masters },
209 #endif
210 { NULL, NULL }
214 static FT_Module_Interface
215 Get_Interface( FT_Driver driver,
216 const FT_String* t1_interface )
218 FT_UNUSED( driver );
220 return ft_service_list_lookup( t1_services, t1_interface );
224 #ifndef T1_CONFIG_OPTION_NO_AFM
226 /*************************************************************************/
227 /* */
228 /* <Function> */
229 /* Get_Kerning */
230 /* */
231 /* <Description> */
232 /* A driver method used to return the kerning vector between two */
233 /* glyphs of the same face. */
234 /* */
235 /* <Input> */
236 /* face :: A handle to the source face object. */
237 /* */
238 /* left_glyph :: The index of the left glyph in the kern pair. */
239 /* */
240 /* right_glyph :: The index of the right glyph in the kern pair. */
241 /* */
242 /* <Output> */
243 /* kerning :: The kerning vector. This is in font units for */
244 /* scalable formats, and in pixels for fixed-sizes */
245 /* formats. */
246 /* */
247 /* <Return> */
248 /* FreeType error code. 0 means success. */
249 /* */
250 /* <Note> */
251 /* Only horizontal layouts (left-to-right & right-to-left) are */
252 /* supported by this function. Other layouts, or more sophisticated */
253 /* kernings are out of scope of this method (the basic driver */
254 /* interface is meant to be simple). */
255 /* */
256 /* They can be implemented by format-specific interfaces. */
257 /* */
258 static FT_Error
259 Get_Kerning( T1_Face face,
260 FT_UInt left_glyph,
261 FT_UInt right_glyph,
262 FT_Vector* kerning )
264 kerning->x = 0;
265 kerning->y = 0;
267 if ( face->afm_data )
268 T1_Get_Kerning( (AFM_FontInfo)face->afm_data,
269 left_glyph,
270 right_glyph,
271 kerning );
273 return T1_Err_Ok;
277 #endif /* T1_CONFIG_OPTION_NO_AFM */
280 FT_CALLBACK_TABLE_DEF
281 const FT_Driver_ClassRec t1_driver_class =
284 FT_MODULE_FONT_DRIVER |
285 FT_MODULE_DRIVER_SCALABLE |
286 FT_MODULE_DRIVER_HAS_HINTER,
288 sizeof( FT_DriverRec ),
290 "type1",
291 0x10000L,
292 0x20000L,
294 0, /* format interface */
296 (FT_Module_Constructor)T1_Driver_Init,
297 (FT_Module_Destructor) T1_Driver_Done,
298 (FT_Module_Requester) Get_Interface,
301 sizeof( T1_FaceRec ),
302 sizeof( T1_SizeRec ),
303 sizeof( T1_GlyphSlotRec ),
305 (FT_Face_InitFunc) T1_Face_Init,
306 (FT_Face_DoneFunc) T1_Face_Done,
307 (FT_Size_InitFunc) T1_Size_Init,
308 (FT_Size_DoneFunc) T1_Size_Done,
309 (FT_Slot_InitFunc) T1_GlyphSlot_Init,
310 (FT_Slot_DoneFunc) T1_GlyphSlot_Done,
312 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
313 ft_stub_set_char_sizes,
314 ft_stub_set_pixel_sizes,
315 #endif
316 (FT_Slot_LoadFunc) T1_Load_Glyph,
318 #ifdef T1_CONFIG_OPTION_NO_AFM
319 (FT_Face_GetKerningFunc) 0,
320 (FT_Face_AttachFunc) 0,
321 #else
322 (FT_Face_GetKerningFunc) Get_Kerning,
323 (FT_Face_AttachFunc) T1_Read_Metrics,
324 #endif
325 (FT_Face_GetAdvancesFunc) T1_Get_Advances,
326 (FT_Size_RequestFunc) T1_Size_Request,
327 (FT_Size_SelectFunc) 0
331 /* END */