summaryrefslogtreecommitdiff
path: root/src/truetype/ttinterp.h
blob: 6e92699cdcafb52553a286cb101b3cc308618673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/***************************************************************************/
/*                                                                         */
/*  ttinterp.h                                                             */
/*                                                                         */
/*    TrueType bytecode interpreter (specification).                       */
/*                                                                         */
/*  Copyright 1996-2000 by                                                 */
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
/*                                                                         */
/*  This file is part of the FreeType project, and may only be used,       */
/*  modified, and distributed under the terms of the FreeType project      */
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
/*  this file you indicate that you have read the license and              */
/*  understand and accept it fully.                                        */
/*                                                                         */
/***************************************************************************/


#ifndef TTINTERP_H
#define TTINTERP_H


#ifdef FT_FLAT_COMPILE

#include "ttobjs.h"

#else

#include <truetype/ttobjs.h>

#endif


#ifdef __cplusplus
  extern "C" {
#endif


#ifndef TT_CONFIG_OPTION_STATIC_INTEPRETER  /* indirect implementation */

#define EXEC_OP_   TT_ExecContext  exc,
#define EXEC_OP    TT_ExecContext  exc
#define EXEC_ARG_  exc,
#define EXEC_ARG   exc

#else                                       /* static implementation */

#define EXEC_OP_   /* void */
#define EXEC_OP    /* void */
#define EXEC_ARG_  /* void */
#define EXEC_ARG   /* void */

#endif /* TT_CONFIG_OPTION_STATIC_INTERPRETER */


  /*************************************************************************/
  /*                                                                       */
  /* Rounding mode constants.                                              */
  /*                                                                       */
#define TT_Round_Off             5
#define TT_Round_To_Half_Grid    0
#define TT_Round_To_Grid         1
#define TT_Round_To_Double_Grid  2
#define TT_Round_Up_To_Grid      4
#define TT_Round_Down_To_Grid    3
#define TT_Round_Super           6
#define TT_Round_Super_45        7


  /*************************************************************************/
  /*                                                                       */
  /* Function types used by the interpreter, depending on various modes    */
  /* (e.g. the rounding mode, whether to render a vertical or horizontal   */
  /* line etc).                                                            */
  /*                                                                       */
  /*************************************************************************/

  /* Rounding function */
  typedef FT_F26Dot6  (*TT_Round_Func)( EXEC_OP_ FT_F26Dot6  distance,
                                                 FT_F26Dot6  compensation );

  /* Point displacement along the freedom vector routine */
  typedef void  (*TT_Move_Func)( EXEC_OP_ TT_GlyphZone*  zone,
                                          FT_UInt        point,
                                          FT_F26Dot6     distance );

  /* Distance projection along one of the projection vectors */
  typedef FT_F26Dot6  (*TT_Project_Func)( EXEC_OP_ FT_Vector*  v1,
                                                   FT_Vector*  v2 );

  /* reading a cvt value.  Take care of non-square pixels if necessary */
  typedef FT_F26Dot6  (*TT_Get_CVT_Func)( EXEC_OP_ FT_ULong  index );

  /* setting or moving a cvt value.  Take care of non-square pixels  */
  /* if necessary                                                    */
  typedef void  (*TT_Set_CVT_Func)( EXEC_OP_ FT_ULong    index,
                                             FT_F26Dot6  value );


  /*************************************************************************/
  /*                                                                       */
  /* This structure defines a call record, used to manage function calls.  */
  /*                                                                       */
  typedef struct  TT_CallRec_
  {
    FT_Int   Caller_Range;
    FT_Long  Caller_IP;
    FT_Long  Cur_Count;
    FT_Long  Cur_Restart;

  } TT_CallRec, *TT_CallStack;


  /*************************************************************************/
  /*                                                                       */
  /* The main structure for the interpreter which collects all necessary   */
  /* variables and states.                                                 */
  /*                                                                       */
  typedef struct  TT_ExecContextRec_
  {
    TT_Face         face;
    TT_Size         size;
    FT_Memory       memory;

    /* instructions state */

    FT_Error        error;      /* last execution error */

    FT_Long         top;        /* top of exec. stack   */

    FT_UInt         stackSize;  /* size of exec. stack  */
    FT_Long*        stack;      /* current exec. stack  */

    FT_Long         args;
    FT_UInt         new_top;    /* new top after exec.  */

    TT_GlyphZone    zp0,        /* zone records */
                    zp1,
                    zp2,
                    pts,
                    twilight;

    FT_Size_Metrics  metrics;
    TT_Size_Metrics  tt_metrics; /* size metrics */

    TT_GraphicsState  GS;         /* current graphics state */

    FT_Int          curRange;  /* current code range number   */
    FT_Byte*        code;      /* current code range          */
    FT_Long         IP;        /* current instruction pointer */
    FT_Long         codeSize;  /* size of current range       */

    FT_Byte         opcode;    /* current opcode              */
    FT_Int          length;    /* length of current opcode    */

    FT_Bool         step_ins;  /* true if the interpreter must */
                               /* increment IP after ins. exec */
    FT_Long         cvtSize;
    FT_Long*        cvt;

    FT_UInt         glyphSize; /* glyph instructions buffer size */
    FT_Byte*        glyphIns;  /* glyph instructions buffer */

    FT_UInt         numFDefs;  /* number of function defs         */
    FT_UInt         maxFDefs;  /* maximum number of function defs */
    TT_DefArray     FDefs;     /* table of FDefs entries          */

    FT_UInt         numIDefs;  /* number of instruction defs */
    FT_UInt         maxIDefs;  /* maximum number of ins defs */
    TT_DefArray     IDefs;     /* table of IDefs entries     */

    FT_UInt         maxFunc;   /* maximum function index     */
    FT_UInt         maxIns;    /* maximum instruction index  */

    FT_Int          callTop,    /* top of call stack during execution */
                    callSize;   /* size of call stack */
    TT_CallStack    callStack;  /* call stack */

    FT_UShort       maxPoints;    /* capacity of this context's `pts' */
    FT_Short        maxContours;  /* record, expressed in points and  */
                                  /* contours.                        */

    TT_CodeRangeTable  codeRangeTable;  /* table of valid code ranges */
                                        /* useful for the debugger   */

    FT_UShort       storeSize;  /* size of current storage */
    FT_Long*        storage;    /* storage area            */

    FT_F26Dot6      period;     /* values used for the */
    FT_F26Dot6      phase;      /* `SuperRounding'     */
    FT_F26Dot6      threshold;

#if 0
    /* this seems to be unused */
    FT_Int          cur_ppem;       /* ppem along the current proj vector */
#endif

    FT_Bool         instruction_trap;  /* If `True', the interpreter will */
                                       /* exit after each instruction     */

    TT_GraphicsState  default_GS;      /* graphics state resulting from    */
                                       /* the prep program                 */
    FT_Bool          is_composite;     /* true if the glyph is composite   */
    FT_Bool          pedantic_hinting; /* true for pedantic interpretation */

    /* latest interpreter additions */

    FT_Long            F_dot_P;    /* dot product of freedom and projection */
                                   /* vectors                               */
    TT_Round_Func      func_round; /* current rounding function             */

    TT_Project_Func    func_project,   /* current projection function */
                       func_dualproj,  /* current dual proj. function */
                       func_freeProj;  /* current freedom proj. func  */

    TT_Move_Func       func_move;      /* current point move function */

    TT_Get_CVT_Func    func_read_cvt;  /* read a cvt entry              */
    TT_Set_CVT_Func    func_write_cvt; /* write a cvt entry (in pixels) */
    TT_Set_CVT_Func    func_move_cvt;  /* incr a cvt entry (in pixels)  */

    FT_ULong           loadSize;
    TT_SubGlyph_Stack  loadStack;      /* loading subglyph stack */

  } TT_ExecContextRec;


  extern const TT_GraphicsState  tt_default_graphics_state;


  LOCAL_DEF
  FT_Error  TT_Goto_CodeRange( TT_ExecContext  exec,
                               FT_Int          range,
                               FT_Long         IP );

  LOCAL_DEF
  FT_Error  TT_Set_CodeRange( TT_ExecContext  exec,
                              FT_Int          range,
                              void*           base,
                              FT_Long         length );

  LOCAL_DEF
  FT_Error  TT_Clear_CodeRange( TT_ExecContext  exec,
                                FT_Int          range );

  FT_EXPORT_DEF( TT_ExecContext )  TT_New_Context( TT_Face  face );

  LOCAL_DEF
  FT_Error  TT_Done_Context( TT_ExecContext  exec );

  LOCAL_DEF
  FT_Error  TT_Destroy_Context( TT_ExecContext  exec,
                                FT_Memory       memory );

  LOCAL_DEF
  FT_Error  TT_Load_Context( TT_ExecContext  exec,
                             TT_Face         face,
                             TT_Size         size );

  LOCAL_DEF
  FT_Error  TT_Save_Context( TT_ExecContext  exec,
                             TT_Size         ins );

  LOCAL_DEF
  FT_Error  TT_Run_Context( TT_ExecContext  exec,
                            FT_Bool         debug );

  FT_EXPORT_DEF( FT_Error )  TT_RunIns( TT_ExecContext  exec );


#ifdef __cplusplus
  }
#endif

#endif /* TTINTERP_H */


/* END */