1 /***************************************************************************/
5 /* FreeType PFR object methods (body). */
7 /* Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 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 /***************************************************************************/
25 #include FT_INTERNAL_DEBUG_H
30 #define FT_COMPONENT trace_pfr
33 /*************************************************************************/
34 /*************************************************************************/
36 /***** FACE OBJECT METHODS *****/
38 /*************************************************************************/
39 /*************************************************************************/
42 pfr_face_done( FT_Face pfrface
) /* PFR_Face */
44 PFR_Face face
= (PFR_Face
)pfrface
;
51 memory
= pfrface
->driver
->root
.memory
;
53 /* we don't want dangling pointers */
54 pfrface
->family_name
= NULL
;
55 pfrface
->style_name
= NULL
;
57 /* finalize the physical font record */
58 pfr_phy_font_done( &face
->phy_font
, FT_FACE_MEMORY( face
) );
60 /* no need to finalize the logical font or the header */
61 FT_FREE( pfrface
->available_sizes
);
65 FT_LOCAL_DEF( FT_Error
)
66 pfr_face_init( FT_Stream stream
,
70 FT_Parameter
* params
)
72 PFR_Face face
= (PFR_Face
)pfrface
;
75 FT_UNUSED( num_params
);
79 /* load the header and check it */
80 error
= pfr_header_load( &face
->header
, stream
);
84 if ( !pfr_header_check( &face
->header
) )
86 FT_TRACE4(( "pfr_face_init: not a valid PFR font\n" ));
87 error
= PFR_Err_Unknown_File_Format
;
91 /* check face index */
96 error
= pfr_log_font_count( stream
,
97 face
->header
.log_dir_offset
,
102 pfrface
->num_faces
= num_faces
;
105 if ( face_index
< 0 )
108 if ( face_index
>= pfrface
->num_faces
)
110 FT_ERROR(( "pfr_face_init: invalid face index\n" ));
111 error
= PFR_Err_Invalid_Argument
;
116 error
= pfr_log_font_load(
117 &face
->log_font
, stream
, face_index
,
118 face
->header
.log_dir_offset
,
119 FT_BOOL( face
->header
.phy_font_max_size_high
!= 0 ) );
123 /* now load the physical font descriptor */
124 error
= pfr_phy_font_load( &face
->phy_font
, stream
,
125 face
->log_font
.phys_offset
,
126 face
->log_font
.phys_size
);
130 /* now set up all root face fields */
132 PFR_PhyFont phy_font
= &face
->phy_font
;
135 pfrface
->face_index
= face_index
;
136 pfrface
->num_glyphs
= phy_font
->num_chars
+ 1;
137 pfrface
->face_flags
= FT_FACE_FLAG_SCALABLE
;
139 /* if all characters point to the same gps_offset 0, we */
140 /* assume that the font only contains bitmaps */
145 for ( nn
= 0; nn
< phy_font
->num_chars
; nn
++ )
146 if ( phy_font
->chars
[nn
].gps_offset
!= 0 )
149 if ( nn
== phy_font
->num_chars
)
150 pfrface
->face_flags
= 0; /* not scalable */
153 if ( (phy_font
->flags
& PFR_PHY_PROPORTIONAL
) == 0 )
154 pfrface
->face_flags
|= FT_FACE_FLAG_FIXED_WIDTH
;
156 if ( phy_font
->flags
& PFR_PHY_VERTICAL
)
157 pfrface
->face_flags
|= FT_FACE_FLAG_VERTICAL
;
159 pfrface
->face_flags
|= FT_FACE_FLAG_HORIZONTAL
;
161 if ( phy_font
->num_strikes
> 0 )
162 pfrface
->face_flags
|= FT_FACE_FLAG_FIXED_SIZES
;
164 if ( phy_font
->num_kern_pairs
> 0 )
165 pfrface
->face_flags
|= FT_FACE_FLAG_KERNING
;
167 /* If no family name was found in the "undocumented" auxiliary
168 * data, use the font ID instead. This sucks but is better than
171 pfrface
->family_name
= phy_font
->family_name
;
172 if ( pfrface
->family_name
== NULL
)
173 pfrface
->family_name
= phy_font
->font_id
;
175 /* note that the style name can be NULL in certain PFR fonts,
176 * probably meaning "Regular"
178 pfrface
->style_name
= phy_font
->style_name
;
180 pfrface
->num_fixed_sizes
= 0;
181 pfrface
->available_sizes
= 0;
183 pfrface
->bbox
= phy_font
->bbox
;
184 pfrface
->units_per_EM
= (FT_UShort
)phy_font
->outline_resolution
;
185 pfrface
->ascender
= (FT_Short
) phy_font
->bbox
.yMax
;
186 pfrface
->descender
= (FT_Short
) phy_font
->bbox
.yMin
;
188 pfrface
->height
= (FT_Short
)( ( pfrface
->units_per_EM
* 12 ) / 10 );
189 if ( pfrface
->height
< pfrface
->ascender
- pfrface
->descender
)
190 pfrface
->height
= (FT_Short
)(pfrface
->ascender
- pfrface
->descender
);
192 if ( phy_font
->num_strikes
> 0 )
194 FT_UInt n
, count
= phy_font
->num_strikes
;
195 FT_Bitmap_Size
* size
;
197 FT_Memory memory
= pfrface
->stream
->memory
;
200 if ( FT_NEW_ARRAY( pfrface
->available_sizes
, count
) )
203 size
= pfrface
->available_sizes
;
204 strike
= phy_font
->strikes
;
205 for ( n
= 0; n
< count
; n
++, size
++, strike
++ )
207 size
->height
= (FT_UShort
)strike
->y_ppm
;
208 size
->width
= (FT_UShort
)strike
->x_ppm
;
209 size
->size
= strike
->y_ppm
<< 6;
210 size
->x_ppem
= strike
->x_ppm
<< 6;
211 size
->y_ppem
= strike
->y_ppm
<< 6;
213 pfrface
->num_fixed_sizes
= count
;
216 /* now compute maximum advance width */
217 if ( ( phy_font
->flags
& PFR_PHY_PROPORTIONAL
) == 0 )
218 pfrface
->max_advance_width
= (FT_Short
)phy_font
->standard_advance
;
222 FT_UInt count
= phy_font
->num_chars
;
223 PFR_Char gchar
= phy_font
->chars
;
226 for ( ; count
> 0; count
--, gchar
++ )
228 if ( max
< gchar
->advance
)
229 max
= gchar
->advance
;
232 pfrface
->max_advance_width
= (FT_Short
)max
;
235 pfrface
->max_advance_height
= pfrface
->height
;
237 pfrface
->underline_position
= (FT_Short
)( -pfrface
->units_per_EM
/ 10 );
238 pfrface
->underline_thickness
= (FT_Short
)( pfrface
->units_per_EM
/ 30 );
242 FT_CharMapRec charmap
;
245 charmap
.face
= pfrface
;
246 charmap
.platform_id
= 3;
247 charmap
.encoding_id
= 1;
248 charmap
.encoding
= FT_ENCODING_UNICODE
;
250 FT_CMap_New( &pfr_cmap_class_rec
, NULL
, &charmap
, NULL
);
253 /* Select default charmap */
254 if ( pfrface
->num_charmaps
)
255 pfrface
->charmap
= pfrface
->charmaps
[0];
259 /* check whether we've loaded any kerning pairs */
260 if ( phy_font
->num_kern_pairs
)
261 pfrface
->face_flags
|= FT_FACE_FLAG_KERNING
;
269 /*************************************************************************/
270 /*************************************************************************/
272 /***** SLOT OBJECT METHOD *****/
274 /*************************************************************************/
275 /*************************************************************************/
277 FT_LOCAL_DEF( FT_Error
)
278 pfr_slot_init( FT_GlyphSlot pfrslot
) /* PFR_Slot */
280 PFR_Slot slot
= (PFR_Slot
)pfrslot
;
281 FT_GlyphLoader loader
= pfrslot
->internal
->loader
;
284 pfr_glyph_init( &slot
->glyph
, loader
);
291 pfr_slot_done( FT_GlyphSlot pfrslot
) /* PFR_Slot */
293 PFR_Slot slot
= (PFR_Slot
)pfrslot
;
296 pfr_glyph_done( &slot
->glyph
);
300 FT_LOCAL_DEF( FT_Error
)
301 pfr_slot_load( FT_GlyphSlot pfrslot
, /* PFR_Slot */
302 FT_Size pfrsize
, /* PFR_Size */
304 FT_Int32 load_flags
)
306 PFR_Slot slot
= (PFR_Slot
)pfrslot
;
307 PFR_Size size
= (PFR_Size
)pfrsize
;
309 PFR_Face face
= (PFR_Face
)pfrslot
->face
;
311 FT_Outline
* outline
= &pfrslot
->outline
;
318 if ( !face
|| gindex
>= face
->phy_font
.num_chars
)
320 error
= PFR_Err_Invalid_Argument
;
324 /* try to load an embedded bitmap */
325 if ( ( load_flags
& ( FT_LOAD_NO_SCALE
| FT_LOAD_NO_BITMAP
) ) == 0 )
327 error
= pfr_slot_load_bitmap( slot
, size
, gindex
);
332 if ( load_flags
& FT_LOAD_SBITS_ONLY
)
334 error
= PFR_Err_Invalid_Argument
;
338 gchar
= face
->phy_font
.chars
+ gindex
;
339 pfrslot
->format
= FT_GLYPH_FORMAT_OUTLINE
;
340 outline
->n_points
= 0;
341 outline
->n_contours
= 0;
342 gps_offset
= face
->header
.gps_section_offset
;
344 /* load the glyph outline (FT_LOAD_NO_RECURSE isn't supported) */
345 error
= pfr_glyph_load( &slot
->glyph
, face
->root
.stream
,
346 gps_offset
, gchar
->gps_offset
, gchar
->gps_size
);
351 FT_Glyph_Metrics
* metrics
= &pfrslot
->metrics
;
353 FT_Int em_metrics
, em_outline
;
357 scaling
= FT_BOOL( ( load_flags
& FT_LOAD_NO_SCALE
) == 0 );
359 /* copy outline data */
360 *outline
= slot
->glyph
.loader
->base
.outline
;
362 outline
->flags
&= ~FT_OUTLINE_OWNER
;
363 outline
->flags
|= FT_OUTLINE_REVERSE_FILL
;
365 if ( size
&& pfrsize
->metrics
.y_ppem
< 24 )
366 outline
->flags
|= FT_OUTLINE_HIGH_PRECISION
;
368 /* compute the advance vector */
369 metrics
->horiAdvance
= 0;
370 metrics
->vertAdvance
= 0;
372 advance
= gchar
->advance
;
373 em_metrics
= face
->phy_font
.metrics_resolution
;
374 em_outline
= face
->phy_font
.outline_resolution
;
376 if ( em_metrics
!= em_outline
)
377 advance
= FT_MulDiv( advance
, em_outline
, em_metrics
);
379 if ( face
->phy_font
.flags
& PFR_PHY_VERTICAL
)
380 metrics
->vertAdvance
= advance
;
382 metrics
->horiAdvance
= advance
;
384 pfrslot
->linearHoriAdvance
= metrics
->horiAdvance
;
385 pfrslot
->linearVertAdvance
= metrics
->vertAdvance
;
387 /* make-up vertical metrics(?) */
388 metrics
->vertBearingX
= 0;
389 metrics
->vertBearingY
= 0;
391 #if 0 /* some fonts seem to be broken here! */
393 /* Apply the font matrix, if any. */
394 /* TODO: Test existing fonts with unusual matrix */
395 /* whether we have to adjust Units per EM. */
397 FT_Matrix font_matrix
;
400 font_matrix
.xx
= face
->log_font
.matrix
[0] << 8;
401 font_matrix
.yx
= face
->log_font
.matrix
[1] << 8;
402 font_matrix
.xy
= face
->log_font
.matrix
[2] << 8;
403 font_matrix
.yy
= face
->log_font
.matrix
[3] << 8;
405 FT_Outline_Transform( outline
, &font_matrix
);
409 /* scale when needed */
413 FT_Fixed x_scale
= pfrsize
->metrics
.x_scale
;
414 FT_Fixed y_scale
= pfrsize
->metrics
.y_scale
;
415 FT_Vector
* vec
= outline
->points
;
418 /* scale outline points */
419 for ( n
= 0; n
< outline
->n_points
; n
++, vec
++ )
421 vec
->x
= FT_MulFix( vec
->x
, x_scale
);
422 vec
->y
= FT_MulFix( vec
->y
, y_scale
);
425 /* scale the advance */
426 metrics
->horiAdvance
= FT_MulFix( metrics
->horiAdvance
, x_scale
);
427 metrics
->vertAdvance
= FT_MulFix( metrics
->vertAdvance
, y_scale
);
430 /* compute the rest of the metrics */
431 FT_Outline_Get_CBox( outline
, &cbox
);
433 metrics
->width
= cbox
.xMax
- cbox
.xMin
;
434 metrics
->height
= cbox
.yMax
- cbox
.yMin
;
435 metrics
->horiBearingX
= cbox
.xMin
;
436 metrics
->horiBearingY
= cbox
.yMax
- metrics
->height
;
444 /*************************************************************************/
445 /*************************************************************************/
447 /***** KERNING METHOD *****/
449 /*************************************************************************/
450 /*************************************************************************/
452 FT_LOCAL_DEF( FT_Error
)
453 pfr_face_get_kerning( FT_Face pfrface
, /* PFR_Face */
458 PFR_Face face
= (PFR_Face
)pfrface
;
459 FT_Error error
= PFR_Err_Ok
;
460 PFR_PhyFont phy_font
= &face
->phy_font
;
461 FT_UInt32 code1
, code2
, pair
;
473 /* convert glyph indices to character codes */
474 if ( glyph1
> phy_font
->num_chars
||
475 glyph2
> phy_font
->num_chars
)
478 code1
= phy_font
->chars
[glyph1
].char_code
;
479 code2
= phy_font
->chars
[glyph2
].char_code
;
480 pair
= PFR_KERN_INDEX( code1
, code2
);
482 /* now search the list of kerning items */
484 PFR_KernItem item
= phy_font
->kern_items
;
485 FT_Stream stream
= pfrface
->stream
;
488 for ( ; item
; item
= item
->next
)
490 if ( pair
>= item
->pair1
&& pair
<= item
->pair2
)
495 FoundPair
: /* we found an item, now parse it and find the value if any */
496 if ( FT_STREAM_SEEK( item
->offset
) ||
497 FT_FRAME_ENTER( item
->pair_count
* item
->pair_size
) )
501 FT_UInt count
= item
->pair_count
;
502 FT_UInt size
= item
->pair_size
;
503 FT_UInt power
= (FT_UInt
)ft_highpow2( (FT_UInt32
)count
);
504 FT_UInt probe
= power
* size
;
505 FT_UInt extra
= count
- power
;
506 FT_Byte
* base
= stream
->cursor
;
507 FT_Bool twobytes
= FT_BOOL( item
->flags
& 1 );
508 FT_Bool twobyte_adj
= FT_BOOL( item
->flags
& 2 );
515 p
= base
+ extra
* size
;
518 cpair
= FT_NEXT_ULONG( p
);
520 cpair
= PFR_NEXT_KPAIR( p
);
535 while ( probe
> size
)
541 cpair
= FT_NEXT_ULONG( p
);
543 cpair
= PFR_NEXT_KPAIR( p
);
555 cpair
= FT_NEXT_ULONG( p
);
557 cpair
= PFR_NEXT_KPAIR( p
);
566 value
= FT_PEEK_SHORT( p
);
570 kerning
->x
= item
->base_adj
+ value
;