Set bit 2 and 4 of `flags' field in `head' table.
[ttfautohint.git] / lib / tadump.c
blobcd015e3b284415de1c175f49c69ea5f3a60aeb63
1 /* tadump.c */
3 /*
4 * Copyright (C) 2014-2016 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.
15 #include "ta.h"
17 #include <stdarg.h>
20 #define DUMPVAL(str, arg) \
21 do \
22 { \
23 s = sdscatprintf(s, \
24 "%*s = %ld\n", \
25 width, (str), (FT_Long)(arg)); \
26 } while (0)
27 #define DUMPSTR(str, arg) \
28 do \
29 { \
30 s = sdscatprintf(s, \
31 "%*s = %s%s", \
32 width, (str), (arg), eol); \
33 } while (0)
34 #define DUMPSTRX(arg) \
35 do \
36 { \
37 s = sdscatprintf(s, \
38 "%s%*s %s%s", \
39 prev_eol, width, "", (arg), eol); \
40 } while (0)
44 /* if `format' is set, we present the data in a more friendly format */
46 char*
47 TA_font_dump_parameters(FONT* font,
48 FT_Bool format)
50 sds s;
51 size_t len;
52 char* res;
54 char* ns = NULL;
55 char* ds = NULL;
57 int width = 0;
58 const char* eol = "\n";
59 const char* prev_eol = "";
62 s = sdsempty();
64 if (format)
66 s = sdscat(s, "TTF_autohint parameters\n"
67 "=======================\n");
68 width = 33;
71 s = sdscat(s, "\n");
73 if (font->dehint)
75 if (format)
76 DUMPVAL("dehint",
77 font->dehint);
78 goto Exit;
81 DUMPVAL("adjust-subglyphs",
82 font->adjust_subglyphs);
83 DUMPSTR("default-script",
84 script_names[font->default_script]);
85 DUMPVAL("dw-cleartype-strong-stem-width",
86 font->dw_cleartype_strong_stem_width);
87 DUMPSTR("fallback-script",
88 script_names[ta_style_classes[font->fallback_style]->script]);
89 DUMPVAL("fallback-stem-width",
90 font->fallback_stem_width);
91 DUMPVAL("gdi-cleartype-strong-stem-width",
92 font->gdi_cleartype_strong_stem_width);
93 DUMPVAL("gray-strong-stem-width",
94 font->gray_strong_stem_width);
95 DUMPVAL("hinting-limit",
96 font->hinting_limit);
97 DUMPVAL("hinting-range-max",
98 font->hinting_range_max);
99 DUMPVAL("hinting-range-min",
100 font->hinting_range_min);
101 DUMPVAL("hint-composites",
102 font->hint_composites);
103 DUMPVAL("ignore-restrictions",
104 font->ignore_restrictions);
105 DUMPVAL("increase-x-height",
106 font->increase_x_height);
107 DUMPVAL("symbol",
108 font->symbol);
109 DUMPVAL("TTFA-info",
110 font->TTFA_info);
111 DUMPVAL("windows-compatibility",
112 font->windows_compatibility);
114 ns = number_set_show(font->x_height_snapping_exceptions,
115 TA_PROP_INCREASE_X_HEIGHT_MIN, 0x7FFF);
116 if (!ns)
118 sdsfree(s);
119 s = NULL;
120 goto Exit;
123 DUMPSTR("x-height-snapping-exceptions", ns);
125 ds = TA_control_show(font);
126 if (!ds)
128 sdsfree(s);
129 s = NULL;
130 goto Exit;
133 if (*ds)
135 char* token;
136 char* saveptr;
139 token = strtok_r(ds, "\n", &saveptr);
140 if (format)
141 DUMPSTR("control-instructions", token);
142 else
144 DUMPSTR("control-instructions", "\\");
145 eol = "";
146 /* show control instructions line by line */
147 DUMPSTRX(token);
148 prev_eol = "; \\\n";
151 for (;;)
153 token = strtok_r(NULL, "\n", &saveptr);
154 if (!token)
155 break;
157 DUMPSTRX(token);
160 else
161 DUMPSTR("control-instructions", "");
163 if (!format)
164 s = sdscat(s, "\n");
165 s = sdscat(s, "\n");
167 Exit:
168 free(ns);
169 free(ds);
171 if (!s)
172 return NULL;
174 len = sdslen(s) + 1;
175 res = (char*)malloc(len);
176 if (res)
177 memcpy(res, s, len);
179 sdsfree(s);
181 return res;
184 /* end of tadump.c */