blob: 087b3c2e1b9d6da3d769616d5d0705bc546e5bf1 [file] [log] [blame]
David Turnerd2b1f351999-12-16 23:11:37 +00001/***************************************************************************/
2/* */
3/* ttobjs.h */
4/* */
5/* Objects manager (specification). */
6/* */
Werner Lemberg18931a52011-02-01 07:08:43 +01007/* Copyright 1996-2009, 2011 by */
David Turnerd2b1f351999-12-16 23:11:37 +00008/* David Turner, Robert Wilhelm, and Werner Lemberg. */
9/* */
Werner Lemberg78575dc2000-06-12 19:36:41 +000010/* This file is part of the FreeType project, and may only be used, */
11/* modified, and distributed under the terms of the FreeType project */
David Turnerd2b1f351999-12-16 23:11:37 +000012/* 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/***************************************************************************/
17
18
Werner Lemberg90d99642000-12-09 00:45:38 +000019#ifndef __TTOBJS_H__
20#define __TTOBJS_H__
David Turnerd2b1f351999-12-16 23:11:37 +000021
Werner Lembergcc069be2000-12-08 16:17:16 +000022
David Turner19ed8af2000-12-08 02:42:29 +000023#include <ft2build.h>
24#include FT_INTERNAL_OBJECTS_H
25#include FT_INTERNAL_TRUETYPE_TYPES_H
David Turnerd2b1f351999-12-16 23:11:37 +000026
Werner Lembergcc069be2000-12-08 16:17:16 +000027
David Turner19ed8af2000-12-08 02:42:29 +000028FT_BEGIN_HEADER
David Turnerd2b1f351999-12-16 23:11:37 +000029
30
31 /*************************************************************************/
32 /* */
33 /* <Type> */
34 /* TT_Driver */
35 /* */
36 /* <Description> */
37 /* A handle to a TrueType driver object. */
38 /* */
39 typedef struct TT_DriverRec_* TT_Driver;
40
41
42 /*************************************************************************/
43 /* */
44 /* <Type> */
45 /* TT_Instance */
46 /* */
47 /* <Description> */
48 /* A handle to a TrueType size object. */
49 /* */
50 typedef struct TT_SizeRec_* TT_Size;
51
52
53 /*************************************************************************/
54 /* */
55 /* <Type> */
56 /* TT_GlyphSlot */
57 /* */
58 /* <Description> */
59 /* A handle to a TrueType glyph slot object. */
60 /* */
61 /* <Note> */
62 /* This is a direct typedef of FT_GlyphSlot, as there is nothing */
63 /* specific about the TrueType glyph slot. */
64 /* */
65 typedef FT_GlyphSlot TT_GlyphSlot;
66
67
68 /*************************************************************************/
69 /* */
70 /* <Struct> */
71 /* TT_GraphicsState */
72 /* */
73 /* <Description> */
74 /* The TrueType graphics state used during bytecode interpretation. */
75 /* */
76 typedef struct TT_GraphicsState_
77 {
David Turnerf9b8dec2000-06-16 19:34:52 +000078 FT_UShort rp0;
79 FT_UShort rp1;
80 FT_UShort rp2;
David Turnerd2b1f351999-12-16 23:11:37 +000081
David Turnerf9b8dec2000-06-16 19:34:52 +000082 FT_UnitVector dualVector;
83 FT_UnitVector projVector;
84 FT_UnitVector freeVector;
David Turnerd2b1f351999-12-16 23:11:37 +000085
David Turner8b6db862003-08-17 22:09:14 +000086#ifdef TT_CONFIG_OPTION_UNPATENTED_HINTING
Graham Asher3ea859f2003-04-25 11:40:46 +000087 FT_Bool both_x_axis;
88#endif
89
David Turnerf9b8dec2000-06-16 19:34:52 +000090 FT_Long loop;
91 FT_F26Dot6 minimum_distance;
92 FT_Int round_state;
David Turnerd2b1f351999-12-16 23:11:37 +000093
David Turnerf9b8dec2000-06-16 19:34:52 +000094 FT_Bool auto_flip;
95 FT_F26Dot6 control_value_cutin;
96 FT_F26Dot6 single_width_cutin;
97 FT_F26Dot6 single_width_value;
98 FT_Short delta_base;
99 FT_Short delta_shift;
David Turnerd2b1f351999-12-16 23:11:37 +0000100
David Turnerf9b8dec2000-06-16 19:34:52 +0000101 FT_Byte instruct_control;
Werner Lemberg105721a2008-11-15 10:35:51 +0000102 /* According to Greg Hitchcock from Microsoft, the `scan_control' */
103 /* variable as documented in the TrueType specification is a 32-bit */
104 /* integer; the high-word part holds the SCANTYPE value, the low-word */
105 /* part the SCANCTRL value. We separate it into two fields. */
David Turnerf9b8dec2000-06-16 19:34:52 +0000106 FT_Bool scan_control;
107 FT_Int scan_type;
David Turnerd2b1f351999-12-16 23:11:37 +0000108
David Turnerf9b8dec2000-06-16 19:34:52 +0000109 FT_UShort gep0;
110 FT_UShort gep1;
111 FT_UShort gep2;
David Turnerd2b1f351999-12-16 23:11:37 +0000112
113 } TT_GraphicsState;
114
Werner Lemberg5811c7c2000-07-02 13:53:16 +0000115
David Turner6aa260c2006-08-25 22:45:13 +0000116#ifdef TT_USE_BYTECODE_INTERPRETER
Werner Lemberg321cd272000-07-27 11:20:20 +0000117
David Turnerbc82f1b2002-03-01 02:26:22 +0000118 FT_LOCAL( void )
David Turnerb08fe2d2002-08-27 20:20:29 +0000119 tt_glyphzone_done( TT_GlyphZone zone );
David Turnerf9b8dec2000-06-16 19:34:52 +0000120
David Turnerbc82f1b2002-03-01 02:26:22 +0000121 FT_LOCAL( FT_Error )
David Turnerb08fe2d2002-08-27 20:20:29 +0000122 tt_glyphzone_new( FT_Memory memory,
Werner Lemberg91db04c2002-04-01 14:25:28 +0000123 FT_UShort maxPoints,
124 FT_Short maxContours,
125 TT_GlyphZone zone );
David Turnerf9b8dec2000-06-16 19:34:52 +0000126
David Turner6aa260c2006-08-25 22:45:13 +0000127#endif /* TT_USE_BYTECODE_INTERPRETER */
Werner Lemberg321cd272000-07-27 11:20:20 +0000128
Werner Lemberg5811c7c2000-07-02 13:53:16 +0000129
David Turnerc5cdf8b2000-07-27 21:40:22 +0000130
David Turnerd2b1f351999-12-16 23:11:37 +0000131 /*************************************************************************/
132 /* */
133 /* EXECUTION SUBTABLES */
134 /* */
135 /* These sub-tables relate to instruction execution. */
136 /* */
137 /*************************************************************************/
138
139
140#define TT_MAX_CODE_RANGES 3
141
142
143 /*************************************************************************/
144 /* */
145 /* There can only be 3 active code ranges at once: */
146 /* - the Font Program */
147 /* - the CVT Program */
148 /* - a glyph's instructions set */
149 /* */
150 typedef enum TT_CodeRange_Tag_
151 {
152 tt_coderange_none = 0,
153 tt_coderange_font,
154 tt_coderange_cvt,
155 tt_coderange_glyph
156
157 } TT_CodeRange_Tag;
158
159
160 typedef struct TT_CodeRange_
161 {
David Turnerf9b8dec2000-06-16 19:34:52 +0000162 FT_Byte* base;
163 FT_ULong size;
David Turnerd2b1f351999-12-16 23:11:37 +0000164
165 } TT_CodeRange;
166
167 typedef TT_CodeRange TT_CodeRangeTable[TT_MAX_CODE_RANGES];
168
169
170 /*************************************************************************/
171 /* */
172 /* Defines a function/instruction definition record. */
173 /* */
174 typedef struct TT_DefRecord_
175 {
David Turnerf9b8dec2000-06-16 19:34:52 +0000176 FT_Int range; /* in which code range is it located? */
177 FT_Long start; /* where does it start? */
178 FT_UInt opc; /* function #, or instruction code */
179 FT_Bool active; /* is it active? */
David Turnerd2b1f351999-12-16 23:11:37 +0000180
181 } TT_DefRecord, *TT_DefArray;
182
183
David Turnerd2b1f351999-12-16 23:11:37 +0000184 /*************************************************************************/
185 /* */
186 /* Subglyph transformation record. */
187 /* */
188 typedef struct TT_Transform_
189 {
David Turnerf9b8dec2000-06-16 19:34:52 +0000190 FT_Fixed xx, xy; /* transformation matrix coefficients */
191 FT_Fixed yx, yy;
192 FT_F26Dot6 ox, oy; /* offsets */
David Turnerd2b1f351999-12-16 23:11:37 +0000193
194 } TT_Transform;
195
196
197 /*************************************************************************/
198 /* */
David Turnerd2b1f351999-12-16 23:11:37 +0000199 /* A note regarding non-squared pixels: */
200 /* */
Werner Lemberg78575dc2000-06-12 19:36:41 +0000201 /* (This text will probably go into some docs at some time; for now, it */
Werner Lemberg38e40762009-06-16 22:41:46 +0200202 /* is kept here to explain some definitions in the TT_Size_Metrics */
203 /* record). */
David Turnerd2b1f351999-12-16 23:11:37 +0000204 /* */
205 /* The CVT is a one-dimensional array containing values that control */
206 /* certain important characteristics in a font, like the height of all */
207 /* capitals, all lowercase letter, default spacing or stem width/height. */
208 /* */
209 /* These values are found in FUnits in the font file, and must be scaled */
210 /* to pixel coordinates before being used by the CVT and glyph programs. */
211 /* Unfortunately, when using distinct x and y resolutions (or distinct x */
212 /* and y pointsizes), there are two possible scalings. */
213 /* */
214 /* A first try was to implement a `lazy' scheme where all values were */
215 /* scaled when first used. However, while some values are always used */
216 /* in the same direction, some others are used under many different */
217 /* circumstances and orientations. */
218 /* */
219 /* I have found a simpler way to do the same, and it even seems to work */
220 /* in most of the cases: */
221 /* */
222 /* - All CVT values are scaled to the maximum ppem size. */
223 /* */
224 /* - When performing a read or write in the CVT, a ratio factor is used */
225 /* to perform adequate scaling. Example: */
226 /* */
227 /* x_ppem = 14 */
228 /* y_ppem = 10 */
229 /* */
230 /* We choose ppem = x_ppem = 14 as the CVT scaling size. All cvt */
231 /* entries are scaled to it. */
232 /* */
233 /* x_ratio = 1.0 */
234 /* y_ratio = y_ppem/ppem (< 1.0) */
235 /* */
236 /* We compute the current ratio like: */
237 /* */
238 /* - If projVector is horizontal, */
239 /* ratio = x_ratio = 1.0 */
240 /* */
241 /* - if projVector is vertical, */
242 /* ratio = y_ratio */
243 /* */
244 /* - else, */
245 /* ratio = sqrt( (proj.x * x_ratio) ^ 2 + (proj.y * y_ratio) ^ 2 ) */
246 /* */
247 /* Reading a cvt value returns */
248 /* ratio * cvt[index] */
249 /* */
250 /* Writing a cvt value in pixels: */
251 /* cvt[index] / ratio */
252 /* */
253 /* The current ppem is simply */
254 /* ratio * ppem */
255 /* */
256 /*************************************************************************/
257
258
259 /*************************************************************************/
260 /* */
261 /* Metrics used by the TrueType size and context objects. */
262 /* */
263 typedef struct TT_Size_Metrics_
264 {
265 /* for non-square pixels */
David Turnerf9b8dec2000-06-16 19:34:52 +0000266 FT_Long x_ratio;
267 FT_Long y_ratio;
David Turnerd2b1f351999-12-16 23:11:37 +0000268
David Turnerf9b8dec2000-06-16 19:34:52 +0000269 FT_UShort ppem; /* maximum ppem size */
270 FT_Long ratio; /* current ratio */
271 FT_Fixed scale;
David Turnerd2b1f351999-12-16 23:11:37 +0000272
David Turnerf9b8dec2000-06-16 19:34:52 +0000273 FT_F26Dot6 compensations[4]; /* device-specific compensations */
David Turnerd2b1f351999-12-16 23:11:37 +0000274
David Turnerf9b8dec2000-06-16 19:34:52 +0000275 FT_Bool valid;
David Turnerd2b1f351999-12-16 23:11:37 +0000276
David Turnerf9b8dec2000-06-16 19:34:52 +0000277 FT_Bool rotated; /* `is the glyph rotated?'-flag */
278 FT_Bool stretched; /* `is the glyph stretched?'-flag */
David Turnerd2b1f351999-12-16 23:11:37 +0000279
280 } TT_Size_Metrics;
281
282
Werner Lemberg5811c7c2000-07-02 13:53:16 +0000283 /*************************************************************************/
284 /* */
285 /* TrueType size class. */
286 /* */
David Turnerd2b1f351999-12-16 23:11:37 +0000287 typedef struct TT_SizeRec_
288 {
289 FT_SizeRec root;
290
Wu, Chia-I (吳佳一)2a41ab92005-07-26 08:14:03 +0000291 /* we have our own copy of metrics so that we can modify */
292 /* it without affecting auto-hinting (when used) */
293 FT_Size_Metrics metrics;
294
David Turnerd2b1f351999-12-16 23:11:37 +0000295 TT_Size_Metrics ttmetrics;
296
Werner Lembergf1c2b912006-01-13 14:53:28 +0000297 FT_ULong strike_index; /* 0xFFFFFFFF to indicate invalid */
David Turnerf96594f2000-11-06 23:07:51 +0000298
David Turner6aa260c2006-08-25 22:45:13 +0000299#ifdef TT_USE_BYTECODE_INTERPRETER
Werner Lemberg78575dc2000-06-12 19:36:41 +0000300
David Turnerf9b8dec2000-06-16 19:34:52 +0000301 FT_UInt num_function_defs; /* number of function definitions */
302 FT_UInt max_function_defs;
David Turnerd2b1f351999-12-16 23:11:37 +0000303 TT_DefArray function_defs; /* table of function definitions */
304
David Turnerf9b8dec2000-06-16 19:34:52 +0000305 FT_UInt num_instruction_defs; /* number of ins. definitions */
306 FT_UInt max_instruction_defs;
David Turnerd2b1f351999-12-16 23:11:37 +0000307 TT_DefArray instruction_defs; /* table of ins. definitions */
308
David Turnerf9b8dec2000-06-16 19:34:52 +0000309 FT_UInt max_func;
310 FT_UInt max_ins;
David Turnerd2b1f351999-12-16 23:11:37 +0000311
312 TT_CodeRangeTable codeRangeTable;
313
314 TT_GraphicsState GS;
315
David Turnerf9b8dec2000-06-16 19:34:52 +0000316 FT_ULong cvt_size; /* the scaled control value table */
317 FT_Long* cvt;
David Turnerd2b1f351999-12-16 23:11:37 +0000318
David Turnerf9b8dec2000-06-16 19:34:52 +0000319 FT_UShort storage_size; /* The storage area is now part of */
320 FT_Long* storage; /* the instance */
David Turnerd2b1f351999-12-16 23:11:37 +0000321
Werner Lemberg91db04c2002-04-01 14:25:28 +0000322 TT_GlyphZoneRec twilight; /* The instance's twilight zone */
David Turnerd2b1f351999-12-16 23:11:37 +0000323
324 /* debugging variables */
325
326 /* When using the debugger, we must keep the */
327 /* execution context tied to the instance */
328 /* object rather than asking it on demand. */
329
David Turnerf9b8dec2000-06-16 19:34:52 +0000330 FT_Bool debug;
David Turnerd2b1f351999-12-16 23:11:37 +0000331 TT_ExecContext context;
332
David Turner384be232007-01-05 15:32:01 +0000333 FT_Bool bytecode_ready;
334 FT_Bool cvt_ready;
335
David Turner6aa260c2006-08-25 22:45:13 +0000336#endif /* TT_USE_BYTECODE_INTERPRETER */
David Turner8f43c712000-02-02 12:16:19 +0000337
David Turnerd2b1f351999-12-16 23:11:37 +0000338 } TT_SizeRec;
339
340
Werner Lemberg5811c7c2000-07-02 13:53:16 +0000341 /*************************************************************************/
342 /* */
343 /* TrueType driver class. */
344 /* */
David Turnerd2b1f351999-12-16 23:11:37 +0000345 typedef struct TT_DriverRec_
346 {
Werner Lemberg91db04c2002-04-01 14:25:28 +0000347 FT_DriverRec root;
348 TT_ExecContext context; /* execution context */
349 TT_GlyphZoneRec zone; /* glyph loader points zone */
David Turnerd2b1f351999-12-16 23:11:37 +0000350
Werner Lemberg91db04c2002-04-01 14:25:28 +0000351 void* extension_component;
David Turnerd2b1f351999-12-16 23:11:37 +0000352
353 } TT_DriverRec;
354
355
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000356 /* Note: All of the functions below (except tt_size_reset()) are used */
357 /* as function pointers in a FT_Driver_ClassRec. Therefore their */
358 /* parameters are of types FT_Face, FT_Size, etc., rather than TT_Face, */
359 /* TT_Size, etc., so that the compiler can confirm that the types and */
360 /* number of parameters are correct. In all cases the FT_xxx types are */
361 /* cast to their TT_xxx counterparts inside the functions since FreeType */
362 /* will always use the TT driver to create them. */
363
364
Werner Lemberg78575dc2000-06-12 19:36:41 +0000365 /*************************************************************************/
366 /* */
367 /* Face functions */
368 /* */
David Turnerbc82f1b2002-03-01 02:26:22 +0000369 FT_LOCAL( FT_Error )
David Turnerb08fe2d2002-08-27 20:20:29 +0000370 tt_face_init( FT_Stream stream,
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000371 FT_Face ttface, /* TT_Face */
Werner Lemberg4a2305c2001-06-28 07:17:51 +0000372 FT_Int face_index,
373 FT_Int num_params,
374 FT_Parameter* params );
David Turner08fdac92000-02-21 16:01:33 +0000375
David Turnerbc82f1b2002-03-01 02:26:22 +0000376 FT_LOCAL( void )
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000377 tt_face_done( FT_Face ttface ); /* TT_Face */
David Turnerd2b1f351999-12-16 23:11:37 +0000378
379
Werner Lemberg78575dc2000-06-12 19:36:41 +0000380 /*************************************************************************/
381 /* */
382 /* Size functions */
383 /* */
David Turnerbc82f1b2002-03-01 02:26:22 +0000384 FT_LOCAL( FT_Error )
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000385 tt_size_init( FT_Size ttsize ); /* TT_Size */
David Turner08fdac92000-02-21 16:01:33 +0000386
David Turnerbc82f1b2002-03-01 02:26:22 +0000387 FT_LOCAL( void )
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000388 tt_size_done( FT_Size ttsize ); /* TT_Size */
Werner Lemberg78575dc2000-06-12 19:36:41 +0000389
David Turner6aa260c2006-08-25 22:45:13 +0000390#ifdef TT_USE_BYTECODE_INTERPRETER
Werner Lemberg8e3fc5e2005-08-03 21:17:53 +0000391
Wu, Chia-I (吳佳一)89fff9b2005-07-31 11:41:54 +0000392 FT_LOCAL( FT_Error )
Werner Lemberg18931a52011-02-01 07:08:43 +0100393 tt_size_run_fpgm( TT_Size size,
394 FT_Bool pedantic );
Wu, Chia-I (吳佳一)89fff9b2005-07-31 11:41:54 +0000395
396 FT_LOCAL( FT_Error )
Werner Lemberg18931a52011-02-01 07:08:43 +0100397 tt_size_run_prep( TT_Size size,
398 FT_Bool pedantic );
Werner Lemberg8e3fc5e2005-08-03 21:17:53 +0000399
Werner Lemberg6ff2ff52007-05-24 19:39:14 +0000400 FT_LOCAL( FT_Error )
Werner Lemberg18931a52011-02-01 07:08:43 +0100401 tt_size_ready_bytecode( TT_Size size,
402 FT_Bool pedantic );
Werner Lemberg6ff2ff52007-05-24 19:39:14 +0000403
David Turner6aa260c2006-08-25 22:45:13 +0000404#endif /* TT_USE_BYTECODE_INTERPRETER */
Wu, Chia-I (吳佳一)89fff9b2005-07-31 11:41:54 +0000405
David Turnerbc82f1b2002-03-01 02:26:22 +0000406 FT_LOCAL( FT_Error )
David Turnerb08fe2d2002-08-27 20:20:29 +0000407 tt_size_reset( TT_Size size );
David Turnerd2b1f351999-12-16 23:11:37 +0000408
409
Werner Lemberg78575dc2000-06-12 19:36:41 +0000410 /*************************************************************************/
411 /* */
Werner Lemberg78575dc2000-06-12 19:36:41 +0000412 /* Driver functions */
413 /* */
David Turnerbc82f1b2002-03-01 02:26:22 +0000414 FT_LOCAL( FT_Error )
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000415 tt_driver_init( FT_Module ttdriver ); /* TT_Driver */
David Turnerd2b1f351999-12-16 23:11:37 +0000416
David Turnerbc82f1b2002-03-01 02:26:22 +0000417 FT_LOCAL( void )
Werner Lemberg86ae11c2004-05-04 16:53:45 +0000418 tt_driver_done( FT_Module ttdriver ); /* TT_Driver */
David Turnerd2b1f351999-12-16 23:11:37 +0000419
Werner Lemberg5811c7c2000-07-02 13:53:16 +0000420
Wu, Chia-I (吳佳一)0142e6a2005-08-16 01:54:59 +0000421 /*************************************************************************/
422 /* */
Werner Lembergffa033b2005-08-19 08:56:29 +0000423 /* Slot functions */
Wu, Chia-I (吳佳一)0142e6a2005-08-16 01:54:59 +0000424 /* */
425 FT_LOCAL( FT_Error )
426 tt_slot_init( FT_GlyphSlot slot );
427
428
David Turner19ed8af2000-12-08 02:42:29 +0000429FT_END_HEADER
David Turnerd2b1f351999-12-16 23:11:37 +0000430
Werner Lemberg90d99642000-12-09 00:45:38 +0000431#endif /* __TTOBJS_H__ */
David Turnerd2b1f351999-12-16 23:11:37 +0000432
433
434/* END */