1 /***************************************************************************/
5 /* Type 1 driver interface (body). */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2009 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
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. */
16 /***************************************************************************/
26 #ifndef T1_CONFIG_OPTION_NO_AFM
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 /*************************************************************************/
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. */
49 #define FT_COMPONENT trace_t1driver
57 t1_get_glyph_name( T1_Face face
,
62 FT_STRCPYN( buffer
, face
->type1
.glyph_names
[glyph_index
], buffer_max
);
69 t1_get_name_index( T1_Face face
,
70 FT_String
* glyph_name
)
76 for ( i
= 0; i
< face
->type1
.num_glyphs
; i
++ )
78 gname
= face
->type1
.glyph_names
[i
];
80 if ( !ft_strcmp( glyph_name
, gname
) )
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
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
131 * POSTSCRIPT INFO SERVICE
136 t1_ps_get_font_info( FT_Face face
,
137 PS_FontInfoRec
* afont_info
)
139 *afont_info
= ((T1_Face
)face
)->type1
.font_info
;
146 t1_ps_get_font_extra( FT_Face face
,
147 PS_FontExtraRec
* afont_extra
)
149 *afont_extra
= ((T1_Face
)face
)->type1
.font_extra
;
156 t1_ps_has_glyph_names( FT_Face face
)
165 t1_ps_get_font_private( FT_Face face
,
166 PS_PrivateRec
* afont_private
)
168 *afont_private
= ((T1_Face
)face
)->type1
.private_dict
;
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
,
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
},
207 #ifndef T1_CONFIG_OPTION_NO_MM_SUPPORT
208 { FT_SERVICE_ID_MULTI_MASTERS
, &t1_service_multi_masters
},
214 static FT_Module_Interface
215 Get_Interface( FT_Driver driver
,
216 const FT_String
* t1_interface
)
220 return ft_service_list_lookup( t1_services
, t1_interface
);
224 #ifndef T1_CONFIG_OPTION_NO_AFM
226 /*************************************************************************/
232 /* A driver method used to return the kerning vector between two */
233 /* glyphs of the same face. */
236 /* face :: A handle to the source face object. */
238 /* left_glyph :: The index of the left glyph in the kern pair. */
240 /* right_glyph :: The index of the right glyph in the kern pair. */
243 /* kerning :: The kerning vector. This is in font units for */
244 /* scalable formats, and in pixels for fixed-sizes */
248 /* FreeType error code. 0 means success. */
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). */
256 /* They can be implemented by format-specific interfaces. */
259 Get_Kerning( T1_Face face
,
267 if ( face
->afm_data
)
268 T1_Get_Kerning( (AFM_FontInfo
)face
->afm_data
,
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
),
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
,
316 (FT_Slot_LoadFunc
) T1_Load_Glyph
,
318 #ifdef T1_CONFIG_OPTION_NO_AFM
319 (FT_Face_GetKerningFunc
) 0,
320 (FT_Face_AttachFunc
) 0,
322 (FT_Face_GetKerningFunc
) Get_Kerning
,
323 (FT_Face_AttachFunc
) T1_Read_Metrics
,
325 (FT_Face_GetAdvancesFunc
) T1_Get_Advances
,
326 (FT_Size_RequestFunc
) T1_Size_Request
,
327 (FT_Size_SelectFunc
) 0