zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
pshalgo.h
Go to the documentation of this file.
1 /***************************************************************************/
2 /* */
3 /* pshalgo.h */
4 /* */
5 /* PostScript hinting algorithm (specification). */
6 /* */
7 /* Copyright 2001, 2002, 2003, 2008 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
9 /* */
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. */
15 /* */
16 /***************************************************************************/
17 
18 
19 #ifndef __PSHALGO_H__
20 #define __PSHALGO_H__
21 
22 
23 #include "pshrec.h"
24 #include "pshglob.h"
25 #include FT_TRIGONOMETRY_H
26 
27 
29 
30 
31  /* handle to Hint structure */
32  typedef struct PSH_HintRec_* PSH_Hint;
33 
34  /* hint bit-flags */
35  typedef enum PSH_Hint_Flags_
36  {
41 
43 
44 
45 #define psh_hint_is_active( x ) ( ( (x)->flags & PSH_HINT_ACTIVE ) != 0 )
46 #define psh_hint_is_ghost( x ) ( ( (x)->flags & PSH_HINT_GHOST ) != 0 )
47 #define psh_hint_is_fitted( x ) ( ( (x)->flags & PSH_HINT_FITTED ) != 0 )
48 
49 #define psh_hint_activate( x ) (x)->flags |= PSH_HINT_ACTIVE
50 #define psh_hint_deactivate( x ) (x)->flags &= ~PSH_HINT_ACTIVE
51 #define psh_hint_set_fitted( x ) (x)->flags |= PSH_HINT_FITTED
52 
53  /* hint structure */
54  typedef struct PSH_HintRec_
55  {
61  PSH_Hint parent;
63 
64  } PSH_HintRec;
65 
66 
67  /* this is an interpolation zone used for strong points; */
68  /* weak points are interpolated according to their strong */
69  /* neighbours */
70  typedef struct PSH_ZoneRec_
71  {
76 
78 
79 
80  typedef struct PSH_Hint_TableRec_
81  {
84  PSH_Hint hints;
85  PSH_Hint* sort;
86  PSH_Hint* sort_global;
89  PSH_Zone zone;
92 
94 
95 
96  typedef struct PSH_PointRec_* PSH_Point;
97  typedef struct PSH_ContourRec_* PSH_Contour;
98 
99  enum
100  {
106  };
107 
108 #define PSH_DIR_HORIZONTAL 2
109 #define PSH_DIR_VERTICAL 1
110 
111 #define PSH_DIR_COMPARE( d1, d2 ) ( (d1) == (d2) || (d1) == -(d2) )
112 #define PSH_DIR_IS_HORIZONTAL( d ) PSH_DIR_COMPARE( d, PSH_DIR_HORIZONTAL )
113 #define PSH_DIR_IS_VERTICAL( d ) PSH_DIR_COMPARE( d, PSH_DIR_VERTICAL )
114 
115 
116  /* the following bit-flags are computed once by the glyph */
117  /* analyzer, for both dimensions */
118  enum
119  {
120  PSH_POINT_OFF = 1, /* point is off the curve */
121  PSH_POINT_SMOOTH = 2, /* point is smooth */
122  PSH_POINT_INFLEX = 4 /* point is inflection */
123  };
124 
125 #define psh_point_is_smooth( p ) ( (p)->flags & PSH_POINT_SMOOTH )
126 #define psh_point_is_off( p ) ( (p)->flags & PSH_POINT_OFF )
127 #define psh_point_is_inflex( p ) ( (p)->flags & PSH_POINT_INFLEX )
128 
129 #define psh_point_set_smooth( p ) (p)->flags |= PSH_POINT_SMOOTH
130 #define psh_point_set_off( p ) (p)->flags |= PSH_POINT_OFF
131 #define psh_point_set_inflex( p ) (p)->flags |= PSH_POINT_INFLEX
132 
133  /* the following bit-flags are re-computed for each dimension */
134  enum
135  {
136  PSH_POINT_STRONG = 16, /* point is strong */
137  PSH_POINT_FITTED = 32, /* point is already fitted */
138  PSH_POINT_EXTREMUM = 64, /* point is local extremum */
139  PSH_POINT_POSITIVE = 128, /* extremum has positive contour flow */
140  PSH_POINT_NEGATIVE = 256, /* extremum has negative contour flow */
141  PSH_POINT_EDGE_MIN = 512, /* point is aligned to left/bottom stem edge */
142  PSH_POINT_EDGE_MAX = 1024 /* point is aligned to top/right stem edge */
143  };
144 
145 #define psh_point_is_strong( p ) ( (p)->flags2 & PSH_POINT_STRONG )
146 #define psh_point_is_fitted( p ) ( (p)->flags2 & PSH_POINT_FITTED )
147 #define psh_point_is_extremum( p ) ( (p)->flags2 & PSH_POINT_EXTREMUM )
148 #define psh_point_is_positive( p ) ( (p)->flags2 & PSH_POINT_POSITIVE )
149 #define psh_point_is_negative( p ) ( (p)->flags2 & PSH_POINT_NEGATIVE )
150 #define psh_point_is_edge_min( p ) ( (p)->flags2 & PSH_POINT_EDGE_MIN )
151 #define psh_point_is_edge_max( p ) ( (p)->flags2 & PSH_POINT_EDGE_MAX )
152 
153 #define psh_point_set_strong( p ) (p)->flags2 |= PSH_POINT_STRONG
154 #define psh_point_set_fitted( p ) (p)->flags2 |= PSH_POINT_FITTED
155 #define psh_point_set_extremum( p ) (p)->flags2 |= PSH_POINT_EXTREMUM
156 #define psh_point_set_positive( p ) (p)->flags2 |= PSH_POINT_POSITIVE
157 #define psh_point_set_negative( p ) (p)->flags2 |= PSH_POINT_NEGATIVE
158 #define psh_point_set_edge_min( p ) (p)->flags2 |= PSH_POINT_EDGE_MIN
159 #define psh_point_set_edge_max( p ) (p)->flags2 |= PSH_POINT_EDGE_MAX
160 
161 
162  typedef struct PSH_PointRec_
163  {
164  PSH_Point prev;
165  PSH_Point next;
166  PSH_Contour contour;
173  PSH_Hint hint;
177 #ifdef DEBUG_HINTER
178  FT_Pos org_x;
179  FT_Pos cur_x;
180  FT_Pos org_y;
181  FT_Pos cur_y;
182  FT_UInt flags_x;
183  FT_UInt flags_y;
184 #endif
185 
186  } PSH_PointRec;
187 
188 
189 #define PSH_POINT_EQUAL_ORG( a, b ) ( (a)->org_u == (b)->org_u && \
190  (a)->org_v == (b)->org_v )
191 
192 #define PSH_POINT_ANGLE( a, b ) FT_Atan2( (b)->org_u - (a)->org_u, \
193  (b)->org_v - (a)->org_v )
194 
195  typedef struct PSH_ContourRec_
196  {
197  PSH_Point start;
199 
200  } PSH_ContourRec;
201 
202 
203  typedef struct PSH_GlyphRec_
204  {
207 
208  PSH_Point points;
209  PSH_Contour contours;
210 
215 
219 
225 
227 
228 
229 #ifdef DEBUG_HINTER
230  extern PSH_Hint_Table ps_debug_hint_table;
231 
232  typedef void
233  (*PSH_HintFunc)( PSH_Hint hint,
234  FT_Bool vertical );
235 
236  extern PSH_HintFunc ps_debug_hint_func;
237 
238  extern PSH_Glyph ps_debug_glyph;
239 #endif
240 
241 
242  extern FT_Error
243  ps_hints_apply( PS_Hints ps_hints,
244  FT_Outline* outline,
245  PSH_Globals globals,
246  FT_Render_Mode hint_mode );
247 
248 
250 
251 
252 #endif /* __PSHALGO_H__ */
253 
254 
255 /* END */
PSH_Hint * sort
Definition: pshalgo.h:85
typedefFT_BEGIN_HEADER struct PSH_GlobalsRec_ * PSH_Globals
Definition: pshints.h:41
FT_Fixed delta
Definition: pshalgo.h:73
int FT_Error
Definition: fttypes.h:296
FT_Char dir_in
Definition: pshalgo.h:169
FT_Outline * outline
Definition: pshalgo.h:212
PS_Mask_Table hint_masks
Definition: pshalgo.h:90
FT_BEGIN_HEADER typedef signed long FT_Pos
Definition: ftimage.h:59
PSH_Contour contours
Definition: pshalgo.h:209
enum PSH_Hint_Flags_ PSH_Hint_Flags
struct PSH_Hint_TableRec_ * PSH_Hint_Table
PSH_Point prev
Definition: pshalgo.h:164
GLvoid **typedef void(GLAPIENTRY *PFNGLGETVERTEXATTRIBDVPROC)(GLuint
Definition: glew.h:1824
PSH_Hint hint
Definition: pshalgo.h:173
#define FT_END_HEADER
Definition: ftheader.h:54
FT_Int org_pos
Definition: pshalgo.h:56
signed int FT_Int
Definition: fttypes.h:216
FT_UInt num_points
Definition: pshalgo.h:205
PSH_Hint hints
Definition: pshalgo.h:84
enum FT_Render_Mode_ FT_Render_Mode
PSH_Hint parent
Definition: pshalgo.h:61
PSH_Globals globals
Definition: pshalgo.h:213
PSH_Point points
Definition: pshalgo.h:208
signed char FT_Char
Definition: fttypes.h:139
FT_UInt flags
Definition: pshalgo.h:60
FT_UInt flags2
Definition: pshalgo.h:168
FT_Bool do_horz_snapping
Definition: pshalgo.h:222
FT_Int order
Definition: pshalgo.h:62
FT_Int major_dir
Definition: pshalgo.h:217
struct PSH_PointRec_ PSH_PointRec
struct PSH_ZoneRec_ PSH_ZoneRec
FT_Pos org_u
Definition: pshalgo.h:174
FT_BEGIN_HEADER typedef unsigned char FT_Bool
Definition: fttypes.h:104
FT_Memory memory
Definition: pshalgo.h:211
struct PSH_HintRec_ PSH_HintRec
FT_Bool do_vert_snapping
Definition: pshalgo.h:223
struct PSH_ContourRec_ PSH_ContourRec
FT_Int minor_dir
Definition: pshalgo.h:218
FT_Pos min
Definition: pshalgo.h:74
PSH_Contour contour
Definition: pshalgo.h:166
PSH_Hint_TableRec hint_tables[2]
Definition: pshalgo.h:214
#define FT_BEGIN_HEADER
Definition: ftheader.h:36
FT_Fixed scale
Definition: pshalgo.h:72
typedefFT_BEGIN_HEADER struct PSH_HintRec_ * PSH_Hint
Definition: pshalgo.h:32
FT_Pos org_v
Definition: pshalgo.h:175
struct PSH_ZoneRec_ * PSH_Zone
FT_Pos cur_u
Definition: pshalgo.h:176
FT_Bool vertical
Definition: pshalgo.h:216
FT_UInt count
Definition: pshalgo.h:198
FT_UInt max_hints
Definition: pshalgo.h:82
FT_UInt flags
Definition: pshalgo.h:167
PSH_Point next
Definition: pshalgo.h:165
FT_BEGIN_HEADER typedef FT_Fixed FT_Angle
Definition: fttrigon.h:52
FT_Pos max
Definition: pshalgo.h:75
FT_Angle angle_out
Definition: pshalgo.h:172
FT_UInt num_hints
Definition: pshalgo.h:83
PSH_Hint_Flags_
Definition: pshalgo.h:35
PSH_ZoneRec * zones
Definition: pshalgo.h:88
FT_Char dir_out
Definition: pshalgo.h:170
PSH_Hint * sort_global
Definition: pshalgo.h:86
typedefFT_BEGIN_HEADER struct FT_MemoryRec_ * FT_Memory
Definition: ftsystem.h:66
FT_Pos cur_pos
Definition: pshalgo.h:58
struct PSH_PointRec_ * PSH_Point
Definition: pshalgo.h:96
FT_Error ps_hints_apply(PS_Hints ps_hints, FT_Outline *outline, PSH_Globals globals, FT_Render_Mode hint_mode)
Definition: pshalgo.c:2181
FT_Angle angle_in
Definition: pshalgo.h:171
PSH_Point start
Definition: pshalgo.h:197
FT_Pos cur_len
Definition: pshalgo.h:59
signed long FT_Fixed
Definition: fttypes.h:284
PSH_Zone zone
Definition: pshalgo.h:89
unsigned int FT_UInt
Definition: fttypes.h:227
FT_Bool do_stem_adjust
Definition: pshalgo.h:224
PS_Mask_Table counter_masks
Definition: pshalgo.h:91
struct PSH_GlyphRec_ * PSH_Glyph
struct PSH_ContourRec_ * PSH_Contour
Definition: pshalgo.h:97
FT_UInt num_contours
Definition: pshalgo.h:206
FT_UInt num_zones
Definition: pshalgo.h:87
FT_Int org_len
Definition: pshalgo.h:57
struct PSH_GlyphRec_ PSH_GlyphRec
struct PSH_Hint_TableRec_ PSH_Hint_TableRec
FT_Bool do_vert_hints
Definition: pshalgo.h:221
FT_Bool do_horz_hints
Definition: pshalgo.h:220