1 /***************************************************************************/
5 /* CID driver interface (body). */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2008, 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 /***************************************************************************/
22 #include FT_INTERNAL_DEBUG_H
26 #include FT_SERVICE_POSTSCRIPT_NAME_H
27 #include FT_SERVICE_XFREE86_NAME_H
28 #include FT_SERVICE_POSTSCRIPT_INFO_H
29 #include FT_SERVICE_CID_H
32 /*************************************************************************/
34 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
35 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
36 /* messages during execution. */
39 #define FT_COMPONENT trace_ciddriver
43 * POSTSCRIPT NAME SERVICE
48 cid_get_postscript_name( CID_Face face
)
50 const char* result
= face
->cid
.cid_font_name
;
53 if ( result
&& result
[0] == '/' )
60 static const FT_Service_PsFontNameRec cid_service_ps_name
=
62 (FT_PsName_GetFunc
) cid_get_postscript_name
67 * POSTSCRIPT INFO SERVICE
72 cid_ps_get_font_info( FT_Face face
,
73 PS_FontInfoRec
* afont_info
)
75 *afont_info
= ((CID_Face
)face
)->cid
.font_info
;
81 cid_ps_get_font_extra( FT_Face face
,
82 PS_FontExtraRec
* afont_extra
)
84 *afont_extra
= ((CID_Face
)face
)->font_extra
;
89 static const FT_Service_PsInfoRec cid_service_ps_info
=
91 (PS_GetFontInfoFunc
) cid_ps_get_font_info
,
92 (PS_GetFontExtraFunc
) cid_ps_get_font_extra
,
93 (PS_HasGlyphNamesFunc
) NULL
, /* unsupported with CID fonts */
94 (PS_GetFontPrivateFunc
)NULL
/* unsupported */
103 cid_get_ros( CID_Face face
,
104 const char* *registry
,
105 const char* *ordering
,
108 CID_FaceInfo cid
= &face
->cid
;
112 *registry
= cid
->registry
;
115 *ordering
= cid
->ordering
;
118 *supplement
= cid
->supplement
;
125 cid_get_is_cid( CID_Face face
,
128 FT_Error error
= CID_Err_Ok
;
133 *is_cid
= 1; /* cid driver is only used for CID keyed fonts */
140 cid_get_cid_from_glyph_index( CID_Face face
,
144 FT_Error error
= CID_Err_Ok
;
149 *cid
= glyph_index
; /* identity mapping */
155 static const FT_Service_CIDRec cid_service_cid_info
=
157 (FT_CID_GetRegistryOrderingSupplementFunc
)cid_get_ros
,
158 (FT_CID_GetIsInternallyCIDKeyedFunc
) cid_get_is_cid
,
159 (FT_CID_GetCIDFromGlyphIndexFunc
) cid_get_cid_from_glyph_index
168 static const FT_ServiceDescRec cid_services
[] =
170 { FT_SERVICE_ID_XF86_NAME
, FT_XF86_FORMAT_CID
},
171 { FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
, &cid_service_ps_name
},
172 { FT_SERVICE_ID_POSTSCRIPT_INFO
, &cid_service_ps_info
},
173 { FT_SERVICE_ID_CID
, &cid_service_cid_info
},
178 FT_CALLBACK_DEF( FT_Module_Interface
)
179 cid_get_interface( FT_Module module
,
180 const char* cid_interface
)
184 return ft_service_list_lookup( cid_services
, cid_interface
);
189 FT_CALLBACK_TABLE_DEF
190 const FT_Driver_ClassRec t1cid_driver_class
=
192 /* first of all, the FT_Module_Class fields */
194 FT_MODULE_FONT_DRIVER
|
195 FT_MODULE_DRIVER_SCALABLE
|
196 FT_MODULE_DRIVER_HAS_HINTER
,
198 sizeof( FT_DriverRec
),
199 "t1cid", /* module name */
200 0x10000L
, /* version 1.0 of driver */
201 0x20000L
, /* requires FreeType 2.0 */
210 /* then the other font drivers fields */
211 sizeof( CID_FaceRec
),
212 sizeof( CID_SizeRec
),
213 sizeof( CID_GlyphSlotRec
),
223 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
224 ft_stub_set_char_sizes
,
225 ft_stub_set_pixel_sizes
,
230 0, /* FT_Face_GetKerningFunc */
231 0, /* FT_Face_AttachFunc */
233 0, /* FT_Face_GetAdvancesFunc */
236 0 /* FT_Size_SelectFunc */