1999-12-17 00:11:37 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ttinterp.h */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* TrueType bytecode interpreter (specification). */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* */
|
2004-08-07 17:08:33 +02:00
|
|
|
/* Copyright 1996-2001, 2002, 2003, 2004 by */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#ifndef __TTINTERP_H__
|
|
|
|
#define __TTINTERP_H__
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "ttobjs.h"
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
#ifndef TT_CONFIG_OPTION_STATIC_INTEPRETER /* indirect implementation */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
#define EXEC_OP_ TT_ExecContext exc,
|
|
|
|
#define EXEC_OP TT_ExecContext exc
|
|
|
|
#define EXEC_ARG_ exc,
|
|
|
|
#define EXEC_ARG exc
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
#else /* static implementation */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
#define EXEC_OP_ /* void */
|
|
|
|
#define EXEC_OP /* void */
|
|
|
|
#define EXEC_ARG_ /* void */
|
|
|
|
#define EXEC_ARG /* void */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
#endif /* TT_CONFIG_OPTION_STATIC_INTERPRETER */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* 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 */
|
2001-06-28 09:17:51 +02:00
|
|
|
typedef FT_F26Dot6
|
|
|
|
(*TT_Round_Func)( EXEC_OP_ FT_F26Dot6 distance,
|
|
|
|
FT_F26Dot6 compensation );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* Point displacement along the freedom vector routine */
|
2001-06-28 09:17:51 +02:00
|
|
|
typedef void
|
2002-04-01 16:25:28 +02:00
|
|
|
(*TT_Move_Func)( EXEC_OP_ TT_GlyphZone zone,
|
|
|
|
FT_UShort point,
|
|
|
|
FT_F26Dot6 distance );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* Distance projection along one of the projection vectors */
|
2001-06-28 09:17:51 +02:00
|
|
|
typedef FT_F26Dot6
|
|
|
|
(*TT_Project_Func)( EXEC_OP_ FT_Vector* v1,
|
|
|
|
FT_Vector* v2 );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* reading a cvt value. Take care of non-square pixels if necessary */
|
2001-06-28 09:17:51 +02:00
|
|
|
typedef FT_F26Dot6
|
2002-04-01 16:25:28 +02:00
|
|
|
(*TT_Get_CVT_Func)( EXEC_OP_ FT_ULong idx );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* setting or moving a cvt value. Take care of non-square pixels */
|
|
|
|
/* if necessary */
|
2001-06-28 09:17:51 +02:00
|
|
|
typedef void
|
2002-04-01 16:25:28 +02:00
|
|
|
(*TT_Set_CVT_Func)( EXEC_OP_ FT_ULong idx,
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_F26Dot6 value );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* This structure defines a call record, used to manage function calls. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_CallRec_
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int Caller_Range;
|
|
|
|
FT_Long Caller_IP;
|
|
|
|
FT_Long Cur_Count;
|
|
|
|
FT_Long Cur_Restart;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_CallRec, *TT_CallStack;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* The main structure for the interpreter which collects all necessary */
|
|
|
|
/* variables and states. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_ExecContextRec_
|
|
|
|
{
|
2002-04-01 16:25:28 +02:00
|
|
|
TT_Face face;
|
|
|
|
TT_Size size;
|
|
|
|
FT_Memory memory;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* instructions state */
|
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Error error; /* last execution error */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Long top; /* top of exec. stack */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UInt stackSize; /* size of exec. stack */
|
|
|
|
FT_Long* stack; /* current exec. stack */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Long args;
|
|
|
|
FT_UInt new_top; /* new top after exec. */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-14 12:26:29 +01:00
|
|
|
TT_GlyphZoneRec zp0, /* zone records */
|
2002-04-01 16:25:28 +02:00
|
|
|
zp1,
|
|
|
|
zp2,
|
|
|
|
pts,
|
|
|
|
twilight;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Size_Metrics metrics;
|
|
|
|
TT_Size_Metrics tt_metrics; /* size metrics */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
TT_GraphicsState GS; /* current graphics state */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
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 */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Byte opcode; /* current opcode */
|
|
|
|
FT_Int length; /* length of current opcode */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Bool step_ins; /* true if the interpreter must */
|
|
|
|
/* increment IP after ins. exec */
|
|
|
|
FT_Long cvtSize;
|
|
|
|
FT_Long* cvt;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UInt glyphSize; /* glyph instructions buffer size */
|
|
|
|
FT_Byte* glyphIns; /* glyph instructions buffer */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UInt numFDefs; /* number of function defs */
|
|
|
|
FT_UInt maxFDefs; /* maximum number of function defs */
|
|
|
|
TT_DefArray FDefs; /* table of FDefs entries */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UInt numIDefs; /* number of instruction defs */
|
|
|
|
FT_UInt maxIDefs; /* maximum number of ins defs */
|
|
|
|
TT_DefArray IDefs; /* table of IDefs entries */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UInt maxFunc; /* maximum function index */
|
|
|
|
FT_UInt maxIns; /* maximum instruction index */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Int callTop, /* top of call stack during execution */
|
|
|
|
callSize; /* size of call stack */
|
|
|
|
TT_CallStack callStack; /* call stack */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UShort maxPoints; /* capacity of this context's `pts' */
|
|
|
|
FT_Short maxContours; /* record, expressed in points and */
|
|
|
|
/* contours. */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
TT_CodeRangeTable codeRangeTable; /* table of valid code ranges */
|
|
|
|
/* useful for the debugger */
|
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UShort storeSize; /* size of current storage */
|
|
|
|
FT_Long* storage; /* storage area */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_F26Dot6 period; /* values used for the */
|
|
|
|
FT_F26Dot6 phase; /* `SuperRounding' */
|
|
|
|
FT_F26Dot6 threshold;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
#if 0
|
2000-07-02 15:53:16 +02:00
|
|
|
/* this seems to be unused */
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Int cur_ppem; /* ppem along the current proj vector */
|
1999-12-17 00:11:37 +01:00
|
|
|
#endif
|
2000-07-02 15:53:16 +02:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Bool instruction_trap; /* If `True', the interpreter will */
|
|
|
|
/* exit after each instruction */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
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 if pedantic interpretation */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* latest interpreter additions */
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Long F_dot_P; /* dot product of freedom and projection */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* 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 */
|
* src/truetype/ttinterp.c (CUR_Func_move_orig): New macro.
(Direct_Move_Orig, Direct_Move_Orig_X, Direct_Move_Orig_Y): New
functions. Similar to Direct_Move, Direct_Move_X, and
Direct_Move_Y but without touching.
(Compute_Funcs): Use new functions.
(Round_None, Round_To_Grid, Round_To_Half_Grid, Round_Down_To_Grid,
Round_Up_To_Grid, Round_To_Double_Grid, Round_Super,
Round_Super_45): Fix rounding of value zero.
(DO_DIV): Don't use TT_MULDIV.
(Ins_SHC): This instruction actually touches the points.
(Ins_MSIRP): Fix undocumented behaviour.
* src/truetype/ttinterp.h (TT_ExecContextRec): Updated.
* docs/VERSION.DLL: Updated.
* src/base/ftobjs.c (FT_Set_Char_Size): Make metrics->x_scale and
metrics->y_scale really precise.
(FT_Load_Glyph): Update computation of linearHoriAdvance and
linearVertAdvance.
* src/true/type/ttinterp.c (Update_Max): Use FT_REALLOC.
2003-11-24 23:54:58 +01:00
|
|
|
TT_Move_Func func_move_orig; /* move original position function */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
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) */
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_ULong loadSize;
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_SubGlyph_Stack loadStack; /* loading subglyph stack */
|
|
|
|
|
2004-08-07 17:08:33 +02:00
|
|
|
FT_Bool grayscale; /* are we hinting for grayscale? */
|
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
} TT_ExecContextRec;
|
|
|
|
|
|
|
|
|
2000-07-05 06:32:02 +02:00
|
|
|
extern const TT_GraphicsState tt_default_graphics_state;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Goto_CodeRange( TT_ExecContext exec,
|
|
|
|
FT_Int range,
|
|
|
|
FT_Long IP );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Set_CodeRange( TT_ExecContext exec,
|
|
|
|
FT_Int range,
|
|
|
|
void* base,
|
|
|
|
FT_Long length );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Clear_CodeRange( TT_ExecContext exec,
|
|
|
|
FT_Int range );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-11-07 18:21:11 +01:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* TT_New_Context */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Queries the face context for a given font. Note that there is */
|
|
|
|
/* now a _single_ execution context in the TrueType driver which is */
|
|
|
|
/* shared among faces. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* face :: A handle to the source face object. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* A handle to the execution context. Initialized for `face'. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* Only the glyph loader and debugger should call this function. */
|
|
|
|
/* */
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_EXPORT( TT_ExecContext )
|
|
|
|
TT_New_Context( TT_Face face );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-11-07 18:21:11 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Done_Context( TT_ExecContext exec );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Destroy_Context( TT_ExecContext exec,
|
|
|
|
FT_Memory memory );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Load_Context( TT_ExecContext exec,
|
|
|
|
TT_Face face,
|
|
|
|
TT_Size size );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Save_Context( TT_ExecContext exec,
|
|
|
|
TT_Size ins );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Run_Context( TT_ExecContext exec,
|
|
|
|
FT_Bool debug );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-11-07 18:21:11 +01:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* TT_RunIns */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Executes one or more instruction in the execution context. This */
|
|
|
|
/* is the main function of the TrueType opcode interpreter. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* exec :: A handle to the target execution context. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* Only the object manager and debugger should call this function. */
|
|
|
|
/* */
|
|
|
|
/* This function is publicly exported because it is directly */
|
|
|
|
/* invoked by the TrueType debugger. */
|
|
|
|
/* */
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_EXPORT( FT_Error )
|
|
|
|
TT_RunIns( TT_ExecContext exec );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#endif /* __TTINTERP_H__ */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|