Use `Control_Type' to handle different segment directions.
[ttfautohint.git] / lib / ta.h
blob6bd80db8db3b2d83fcd071b6e8c65831350b7b0b
1 /* ta.h */
3 /*
4 * Copyright (C) 2011-2014 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
16 #ifndef __TA_H__
17 #define __TA_H__
19 #include <config.h>
21 #include <ft2build.h>
22 #include FT_FREETYPE_H
23 #include FT_TRUETYPE_TABLES_H
24 #include FT_TRUETYPE_TAGS_H
26 #include <ttfautohint.h>
27 #include <sds.h>
28 #include <numberset.h>
30 #include "taloader.h"
31 #include "taglobal.h"
32 #include "tadummy.h"
33 #include "talatin.h"
36 #define TTFAUTOHINT_GLYPH ".ttfautohint"
37 #define TTFAUTOHINT_GLYPH_FIRST_BYTE "\x0C" /* first byte is string length */
38 #define TTFAUTOHINT_GLYPH_LEN 13
40 /* these macros convert 16bit and 32bit numbers into single bytes */
41 /* using the byte order needed within SFNT files */
43 #define HIGH(x) (FT_Byte)(((x) & 0xFF00) >> 8)
44 #define LOW(x) ((x) & 0x00FF)
46 #define BYTE1(x) (FT_Byte)(((x) & 0xFF000000UL) >> 24);
47 #define BYTE2(x) (FT_Byte)(((x) & 0x00FF0000UL) >> 16);
48 #define BYTE3(x) (FT_Byte)(((x) & 0x0000FF00UL) >> 8);
49 #define BYTE4(x) ((x) & 0x000000FFUL);
52 /* an SFNT tag for our information table */
53 #define TTAG_TTFA FT_MAKE_TAG('T', 'T', 'F', 'A')
55 /* the length of a dummy `DSIG' table */
56 #define DSIG_LEN 8
58 /* the length of our `gasp' table */
59 #define GASP_LEN 8
61 /* an empty slot in the table info array */
62 #define MISSING (FT_ULong)~0
64 /* the offset to the loca table format in the `head' table */
65 #define LOCA_FORMAT_OFFSET 51
67 /* various offsets within the `maxp' table */
68 #define MAXP_NUM_GLYPHS 4
69 #define MAXP_MAX_COMPOSITE_POINTS 10
70 #define MAXP_MAX_COMPOSITE_CONTOURS 12
71 #define MAXP_MAX_ZONES_OFFSET 14
72 #define MAXP_MAX_TWILIGHT_POINTS_OFFSET 16
73 #define MAXP_MAX_STORAGE_OFFSET 18
74 #define MAXP_MAX_FUNCTION_DEFS_OFFSET 20
75 #define MAXP_MAX_INSTRUCTION_DEFS_OFFSET 22
76 #define MAXP_MAX_STACK_ELEMENTS_OFFSET 24
77 #define MAXP_MAX_INSTRUCTIONS_OFFSET 26
78 #define MAXP_MAX_COMPONENTS_OFFSET 28
80 #define MAXP_LEN 32
82 /* the offset of the type flags field in the `OS/2' table */
83 #define OS2_FSTYPE_OFFSET 8
86 /* flags in composite glyph records */
87 #define ARGS_ARE_WORDS 0x0001
88 #define ARGS_ARE_XY_VALUES 0x0002
89 #define WE_HAVE_A_SCALE 0x0008
90 #define MORE_COMPONENTS 0x0020
91 #define WE_HAVE_AN_XY_SCALE 0x0040
92 #define WE_HAVE_A_2X2 0x0080
93 #define WE_HAVE_INSTR 0x0100
95 /* flags in simple glyph records */
96 #define ON_CURVE 0x01
97 #define X_SHORT_VECTOR 0x02
98 #define Y_SHORT_VECTOR 0x04
99 #define REPEAT 0x08
100 #define SAME_X 0x10
101 #define SAME_Y 0x20
104 /* a single glyph */
105 typedef struct GLYPH_
107 FT_ULong len1; /* number of bytes before instruction related data */
108 FT_ULong len2; /* number of bytes after instruction related data; */
109 /* if zero, this indicates a composite glyph */
110 FT_Byte* buf; /* extracted glyph data (without instruction related data) */
111 FT_ULong flags_offset; /* offset to last flag in a composite glyph */
113 FT_ULong ins_len; /* number of new instructions */
114 FT_Byte* ins_buf; /* new instruction data */
116 FT_Short num_contours; /* >= 0 for simple glyphs */
117 FT_UShort num_points; /* number of points in a simple glyph */
119 FT_UShort num_components;
120 FT_UShort* components; /* the subglyph indices of a composite glyph */
122 FT_UShort num_pointsums;
123 FT_UShort* pointsums; /* the pointsums of all composite elements */
124 /* (after walking recursively over all subglyphs) */
126 FT_UShort num_composite_contours; /* after recursion */
127 } GLYPH;
129 /* a representation of the data in the `glyf' table */
130 typedef struct glyf_Data_
132 FT_UShort num_glyphs;
133 GLYPH* glyphs;
135 /* this field gives the `master' globals for a `glyf' table; */
136 /* see function `TA_sfnt_handle_coverage' */
137 TA_FaceGlobals master_globals;
138 /* for coverage bookkeeping */
139 FT_Bool adjusted;
141 /* if a `glyf' table gets used in more than one subfont, */
142 /* so do `cvt', `fpgm', and `prep' tables: */
143 /* these four tables are always handled in parallel */
144 FT_ULong cvt_idx;
145 FT_ULong fpgm_idx;
146 FT_ULong prep_idx;
148 /* styles present in a font get a running number */
149 FT_UInt style_ids[TA_STYLE_MAX];
150 FT_UInt num_used_styles;
152 /* we have separate CVT data for each style */
153 FT_UInt cvt_offsets[TA_STYLE_MAX];
154 FT_UInt cvt_horz_width_sizes[TA_STYLE_MAX];
155 FT_UInt cvt_vert_width_sizes[TA_STYLE_MAX];
156 FT_UInt cvt_blue_zone_sizes[TA_STYLE_MAX];
157 FT_UInt cvt_blue_adjustment_offsets[TA_STYLE_MAX];
158 } glyf_Data;
160 /* an SFNT table */
161 typedef struct SFNT_Table_
163 FT_ULong tag;
164 FT_ULong len;
165 FT_Byte* buf; /* the table data */
166 FT_ULong offset; /* from beginning of file */
167 FT_ULong checksum;
168 void* data; /* used e.g. for `glyf' table data */
169 FT_Bool processed;
170 } SFNT_Table;
172 /* we use indices into the SFNT table array to */
173 /* represent table info records of the TTF header */
174 typedef FT_ULong SFNT_Table_Info;
176 /* this structure is used to model a TTF or a subfont within a TTC */
177 typedef struct SFNT_
179 FT_Face face;
181 SFNT_Table_Info* table_infos;
182 FT_ULong num_table_infos;
184 /* various SFNT table indices */
185 FT_ULong glyf_idx;
186 FT_ULong loca_idx;
187 FT_ULong head_idx;
188 FT_ULong hmtx_idx;
189 FT_ULong maxp_idx;
190 FT_ULong name_idx;
191 FT_ULong post_idx;
192 FT_ULong OS2_idx;
193 FT_ULong GPOS_idx;
195 /* values necessary to update the `maxp' table */
196 FT_UShort max_composite_points;
197 FT_UShort max_composite_contours;
198 FT_UShort max_storage;
199 FT_UShort max_stack_elements;
200 FT_UShort max_twilight_points;
201 FT_UShort max_instructions;
202 FT_UShort max_components;
203 } SFNT;
205 typedef struct Control_ Control;
207 /* our font object; the `FONT' typedef is in `taloader.h' */
208 struct FONT_
210 FT_Library lib;
212 FT_Byte* in_buf;
213 size_t in_len;
215 FT_Byte* out_buf;
216 size_t out_len;
218 char* control_buf;
219 size_t control_len;
221 SFNT* sfnts;
222 FT_Long num_sfnts;
224 SFNT_Table* tables;
225 FT_ULong num_tables;
227 FT_Bool have_DSIG;
229 /* we have a single `gasp' table for all subfonts */
230 FT_ULong gasp_idx;
232 /* the control instructions */
233 Control* control;
235 /* two generic pointers into the control instructions tree */
236 void* control_data_head;
237 void* control_data_cur;
239 /* two fields for handling forced point directions */
240 number_range* control_point_dirs;
241 number_set_iter control_point_dir_iter;
243 TA_LoaderRec loader[1]; /* the interface to the autohinter */
245 /* configuration options */
246 TA_Progress_Func progress;
247 void* progress_data;
248 TA_Info_Func info;
249 void* info_data;
250 FT_UInt hinting_range_min;
251 FT_UInt hinting_range_max;
252 FT_UInt hinting_limit;
253 FT_UInt increase_x_height;
254 number_range* x_height_snapping_exceptions;
255 FT_UInt fallback_stem_width;
256 FT_Bool gray_strong_stem_width;
257 FT_Bool gdi_cleartype_strong_stem_width;
258 FT_Bool dw_cleartype_strong_stem_width;
259 FT_Bool windows_compatibility;
260 FT_Bool adjust_subglyphs;
261 FT_Bool hint_composites;
262 FT_Bool ignore_restrictions;
263 TA_Style fallback_style;
264 TA_Script default_script;
265 FT_Bool symbol;
266 FT_Bool dehint;
267 FT_Bool debug;
268 FT_Bool TTFA_info;
272 #include "tatables.h"
273 #include "tabytecode.h"
274 #include "tacontrol.h"
277 /* in file `tascript.c' */
278 extern const char* script_names[];
281 const char*
282 TA_get_error_message(FT_Error error);
284 char*
285 TA_font_dump_parameters(FONT* font,
286 FT_Bool format);
288 void
289 TA_get_current_time(FT_ULong* high,
290 FT_ULong* low);
292 FT_Byte*
293 TA_build_push(FT_Byte* bufp,
294 FT_UInt* args,
295 FT_UInt num_args,
296 FT_Bool need_words,
297 FT_Bool optimize);
299 FT_Error
300 TA_font_init(FONT* font);
301 void
302 TA_font_unload(FONT* font,
303 const char* in_buf,
304 char** out_bufp,
305 const char* control_buf);
307 FT_Error
308 TA_font_file_read(FONT* font,
309 FILE* in_file);
310 FT_Error
311 TA_font_file_write(FONT* font,
312 FILE* out_file);
313 FT_Error
314 TA_control_file_read(FONT* font,
315 FILE* control_file);
317 FT_Error
318 TA_sfnt_build_glyph_instructions(SFNT* sfnt,
319 FONT* font,
320 FT_Long idx);
322 FT_Error
323 TA_sfnt_split_into_SFNT_tables(SFNT* sfnt,
324 FONT* font);
326 FT_Error
327 TA_sfnt_build_cvt_table(SFNT* sfnt,
328 FONT* font);
330 FT_Error
331 TA_table_build_TTFA(FT_Byte** TTFA,
332 FT_ULong* TTFA_len,
333 FONT* font);
335 FT_Error
336 TA_table_build_DSIG(FT_Byte** DSIG);
338 FT_Error
339 TA_sfnt_build_fpgm_table(SFNT* sfnt,
340 FONT* font);
342 FT_Error
343 TA_sfnt_build_gasp_table(SFNT* sfnt,
344 FONT* font);
346 FT_Error
347 TA_sfnt_split_glyf_table(SFNT* sfnt,
348 FONT* font);
349 FT_Error
350 TA_sfnt_build_glyf_table(SFNT* sfnt,
351 FONT* font);
352 FT_Error
353 TA_sfnt_create_glyf_data(SFNT* sfnt,
354 FONT* font);
355 FT_Error
356 TA_sfnt_handle_coverage(SFNT* sfnt,
357 FONT* font);
358 void
359 TA_sfnt_adjust_coverage(SFNT* sfnt,
360 FONT* font);
361 #if 0
362 void
363 TA_sfnt_copy_master_coverage(SFNT* sfnt,
364 FONT* font);
365 #endif
367 FT_Error
368 TA_sfnt_update_GPOS_table(SFNT* sfnt,
369 FONT* font);
371 FT_Error
372 TA_sfnt_update_hmtx_table(SFNT* sfnt,
373 FONT* font);
375 FT_Error
376 TA_sfnt_build_loca_table(SFNT* sfnt,
377 FONT* font);
379 FT_Error
380 TA_sfnt_update_maxp_table(SFNT* sfnt,
381 FONT* font);
383 FT_Error
384 TA_sfnt_update_post_table(SFNT* sfnt,
385 FONT* font);
387 FT_Error
388 TA_sfnt_update_name_table(SFNT* sfnt,
389 FONT* font);
391 FT_Error
392 TA_sfnt_build_prep_table(SFNT* sfnt,
393 FONT* font);
395 FT_Error
396 TA_sfnt_build_TTF_header(SFNT* sfnt,
397 FONT* font,
398 FT_Byte** header_buf,
399 FT_ULong* header_len,
400 FT_Int do_complete);
401 FT_Error
402 TA_font_build_TTF(FONT* font);
404 FT_Error
405 TA_font_build_TTC(FONT* font);
407 #endif /* __TA_H__ */
409 /* end of ta.h */