* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* afmparse.c */
|
|
|
|
/* */
|
|
|
|
/* AFM parser (body). */
|
|
|
|
/* */
|
2007-05-15 08:49:37 +02:00
|
|
|
/* Copyright 2006, 2007 by */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
#include FT_INTERNAL_POSTSCRIPT_AUX_H
|
|
|
|
#include FT_INTERNAL_DEBUG_H
|
|
|
|
|
|
|
|
#include "afmparse.h"
|
|
|
|
#include "psconv.h"
|
|
|
|
|
|
|
|
#include "psauxerr.h"
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* AFM_Stream */
|
|
|
|
/* */
|
|
|
|
/* The use of AFM_Stream is largely inspired by parseAFM.[ch] from t1lib. */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
AFM_STREAM_STATUS_NORMAL,
|
|
|
|
AFM_STREAM_STATUS_EOC,
|
|
|
|
AFM_STREAM_STATUS_EOL,
|
|
|
|
AFM_STREAM_STATUS_EOF
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct AFM_StreamRec_
|
|
|
|
{
|
2006-01-16 23:35:33 +01:00
|
|
|
FT_Byte* cursor;
|
|
|
|
FT_Byte* base;
|
|
|
|
FT_Byte* limit;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
FT_Int status;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
} AFM_StreamRec;
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef EOF
|
|
|
|
#define EOF -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
/* this works because empty lines are ignored */
|
|
|
|
#define AFM_IS_NEWLINE( ch ) ( (ch) == '\r' || (ch) == '\n' )
|
|
|
|
|
|
|
|
#define AFM_IS_EOF( ch ) ( (ch) == EOF || (ch) == '\x1a' )
|
|
|
|
#define AFM_IS_SPACE( ch ) ( (ch) == ' ' || (ch) == '\t' )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
/* column separator; there is no `column' in the spec actually */
|
|
|
|
#define AFM_IS_SEP( ch ) ( (ch) == ';' )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
#define AFM_GETC() \
|
|
|
|
( ( (stream)->cursor < (stream)->limit ) ? *(stream)->cursor++ \
|
|
|
|
: EOF )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
#define AFM_STREAM_KEY_BEGIN( stream ) \
|
|
|
|
(char*)( (stream)->cursor - 1 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
#define AFM_STREAM_KEY_LEN( stream, key ) \
|
|
|
|
( (char*)(stream)->cursor - key - 1 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
#define AFM_STATUS_EOC( stream ) \
|
2006-01-16 23:35:33 +01:00
|
|
|
( (stream)->status >= AFM_STREAM_STATUS_EOC )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
#define AFM_STATUS_EOL( stream ) \
|
2006-01-16 23:35:33 +01:00
|
|
|
( (stream)->status >= AFM_STREAM_STATUS_EOL )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
#define AFM_STATUS_EOF( stream ) \
|
2006-01-16 23:35:33 +01:00
|
|
|
( (stream)->status >= AFM_STREAM_STATUS_EOF )
|
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
static int
|
|
|
|
afm_stream_skip_spaces( AFM_Stream stream )
|
|
|
|
{
|
2006-01-27 13:11:22 +01:00
|
|
|
int ch = 0; /* make stupid compiler happy */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
if ( AFM_STATUS_EOC( stream ) )
|
|
|
|
return ';';
|
|
|
|
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
ch = AFM_GETC();
|
|
|
|
if ( !AFM_IS_SPACE( ch ) )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( AFM_IS_NEWLINE( ch ) )
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOL;
|
|
|
|
else if ( AFM_IS_SEP( ch ) )
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOC;
|
|
|
|
else if ( AFM_IS_EOF( ch ) )
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOF;
|
|
|
|
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
/* read a key or value in current column */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
static char*
|
|
|
|
afm_stream_read_one( AFM_Stream stream )
|
|
|
|
{
|
|
|
|
char* str;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
|
|
|
|
afm_stream_skip_spaces( stream );
|
|
|
|
if ( AFM_STATUS_EOC( stream ) )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
str = AFM_STREAM_KEY_BEGIN( stream );
|
|
|
|
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
ch = AFM_GETC();
|
|
|
|
if ( AFM_IS_SPACE( ch ) )
|
|
|
|
break;
|
|
|
|
else if ( AFM_IS_NEWLINE( ch ) )
|
|
|
|
{
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( AFM_IS_SEP( ch ) )
|
|
|
|
{
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( AFM_IS_EOF( ch ) )
|
|
|
|
{
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read a string (i.e., read to EOL) */
|
|
|
|
static char*
|
|
|
|
afm_stream_read_string( AFM_Stream stream )
|
|
|
|
{
|
|
|
|
char* str;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
|
|
|
|
afm_stream_skip_spaces( stream );
|
|
|
|
if ( AFM_STATUS_EOL( stream ) )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
str = AFM_STREAM_KEY_BEGIN( stream );
|
|
|
|
|
|
|
|
/* scan to eol */
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
ch = AFM_GETC();
|
|
|
|
if ( AFM_IS_NEWLINE( ch ) )
|
|
|
|
{
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( AFM_IS_EOF( ch ) )
|
|
|
|
{
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* AFM_Parser */
|
|
|
|
/* */
|
|
|
|
/* */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
/* all keys defined in Ch. 7-10 of 5004.AFM_Spec.pdf */
|
2006-01-16 23:35:33 +01:00
|
|
|
typedef enum AFM_Token_
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
|
|
|
AFM_TOKEN_ASCENDER,
|
|
|
|
AFM_TOKEN_AXISLABEL,
|
|
|
|
AFM_TOKEN_AXISTYPE,
|
|
|
|
AFM_TOKEN_B,
|
|
|
|
AFM_TOKEN_BLENDAXISTYPES,
|
|
|
|
AFM_TOKEN_BLENDDESIGNMAP,
|
|
|
|
AFM_TOKEN_BLENDDESIGNPOSITIONS,
|
|
|
|
AFM_TOKEN_C,
|
|
|
|
AFM_TOKEN_CC,
|
|
|
|
AFM_TOKEN_CH,
|
|
|
|
AFM_TOKEN_CAPHEIGHT,
|
|
|
|
AFM_TOKEN_CHARWIDTH,
|
|
|
|
AFM_TOKEN_CHARACTERSET,
|
|
|
|
AFM_TOKEN_CHARACTERS,
|
|
|
|
AFM_TOKEN_DESCENDER,
|
|
|
|
AFM_TOKEN_ENCODINGSCHEME,
|
|
|
|
AFM_TOKEN_ENDAXIS,
|
|
|
|
AFM_TOKEN_ENDCHARMETRICS,
|
|
|
|
AFM_TOKEN_ENDCOMPOSITES,
|
|
|
|
AFM_TOKEN_ENDDIRECTION,
|
|
|
|
AFM_TOKEN_ENDFONTMETRICS,
|
|
|
|
AFM_TOKEN_ENDKERNDATA,
|
|
|
|
AFM_TOKEN_ENDKERNPAIRS,
|
|
|
|
AFM_TOKEN_ENDTRACKKERN,
|
|
|
|
AFM_TOKEN_ESCCHAR,
|
|
|
|
AFM_TOKEN_FAMILYNAME,
|
|
|
|
AFM_TOKEN_FONTBBOX,
|
|
|
|
AFM_TOKEN_FONTNAME,
|
|
|
|
AFM_TOKEN_FULLNAME,
|
|
|
|
AFM_TOKEN_ISBASEFONT,
|
|
|
|
AFM_TOKEN_ISCIDFONT,
|
|
|
|
AFM_TOKEN_ISFIXEDPITCH,
|
|
|
|
AFM_TOKEN_ISFIXEDV,
|
|
|
|
AFM_TOKEN_ITALICANGLE,
|
|
|
|
AFM_TOKEN_KP,
|
|
|
|
AFM_TOKEN_KPH,
|
|
|
|
AFM_TOKEN_KPX,
|
|
|
|
AFM_TOKEN_KPY,
|
|
|
|
AFM_TOKEN_L,
|
|
|
|
AFM_TOKEN_MAPPINGSCHEME,
|
|
|
|
AFM_TOKEN_METRICSSETS,
|
|
|
|
AFM_TOKEN_N,
|
|
|
|
AFM_TOKEN_NOTICE,
|
|
|
|
AFM_TOKEN_PCC,
|
|
|
|
AFM_TOKEN_STARTAXIS,
|
|
|
|
AFM_TOKEN_STARTCHARMETRICS,
|
|
|
|
AFM_TOKEN_STARTCOMPOSITES,
|
|
|
|
AFM_TOKEN_STARTDIRECTION,
|
|
|
|
AFM_TOKEN_STARTFONTMETRICS,
|
|
|
|
AFM_TOKEN_STARTKERNDATA,
|
|
|
|
AFM_TOKEN_STARTKERNPAIRS,
|
|
|
|
AFM_TOKEN_STARTKERNPAIRS0,
|
|
|
|
AFM_TOKEN_STARTKERNPAIRS1,
|
|
|
|
AFM_TOKEN_STARTTRACKKERN,
|
|
|
|
AFM_TOKEN_STDHW,
|
|
|
|
AFM_TOKEN_STDVW,
|
|
|
|
AFM_TOKEN_TRACKKERN,
|
|
|
|
AFM_TOKEN_UNDERLINEPOSITION,
|
|
|
|
AFM_TOKEN_UNDERLINETHICKNESS,
|
|
|
|
AFM_TOKEN_VV,
|
|
|
|
AFM_TOKEN_VVECTOR,
|
|
|
|
AFM_TOKEN_VERSION,
|
|
|
|
AFM_TOKEN_W,
|
|
|
|
AFM_TOKEN_W0,
|
|
|
|
AFM_TOKEN_W0X,
|
|
|
|
AFM_TOKEN_W0Y,
|
|
|
|
AFM_TOKEN_W1,
|
|
|
|
AFM_TOKEN_W1X,
|
|
|
|
AFM_TOKEN_W1Y,
|
|
|
|
AFM_TOKEN_WX,
|
|
|
|
AFM_TOKEN_WY,
|
|
|
|
AFM_TOKEN_WEIGHT,
|
|
|
|
AFM_TOKEN_WEIGHTVECTOR,
|
|
|
|
AFM_TOKEN_XHEIGHT,
|
|
|
|
N_AFM_TOKENS,
|
|
|
|
AFM_TOKEN_UNKNOWN
|
2006-01-16 23:35:33 +01:00
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
} AFM_Token;
|
|
|
|
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
static const char* const afm_key_table[N_AFM_TOKENS] =
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
|
|
|
"Ascender",
|
|
|
|
"AxisLabel",
|
|
|
|
"AxisType",
|
|
|
|
"B",
|
|
|
|
"BlendAxisTypes",
|
|
|
|
"BlendDesignMap",
|
|
|
|
"BlendDesignPositions",
|
|
|
|
"C",
|
|
|
|
"CC",
|
|
|
|
"CH",
|
|
|
|
"CapHeight",
|
|
|
|
"CharWidth",
|
|
|
|
"CharacterSet",
|
|
|
|
"Characters",
|
|
|
|
"Descender",
|
|
|
|
"EncodingScheme",
|
|
|
|
"EndAxis",
|
|
|
|
"EndCharMetrics",
|
|
|
|
"EndComposites",
|
|
|
|
"EndDirection",
|
|
|
|
"EndFontMetrics",
|
|
|
|
"EndKernData",
|
|
|
|
"EndKernPairs",
|
|
|
|
"EndTrackKern",
|
|
|
|
"EscChar",
|
|
|
|
"FamilyName",
|
|
|
|
"FontBBox",
|
|
|
|
"FontName",
|
|
|
|
"FullName",
|
|
|
|
"IsBaseFont",
|
|
|
|
"IsCIDFont",
|
|
|
|
"IsFixedPitch",
|
|
|
|
"IsFixedV",
|
|
|
|
"ItalicAngle",
|
|
|
|
"KP",
|
|
|
|
"KPH",
|
|
|
|
"KPX",
|
|
|
|
"KPY",
|
|
|
|
"L",
|
|
|
|
"MappingScheme",
|
|
|
|
"MetricsSets",
|
|
|
|
"N",
|
|
|
|
"Notice",
|
|
|
|
"PCC",
|
|
|
|
"StartAxis",
|
|
|
|
"StartCharMetrics",
|
|
|
|
"StartComposites",
|
|
|
|
"StartDirection",
|
|
|
|
"StartFontMetrics",
|
|
|
|
"StartKernData",
|
|
|
|
"StartKernPairs",
|
|
|
|
"StartKernPairs0",
|
|
|
|
"StartKernPairs1",
|
|
|
|
"StartTrackKern",
|
|
|
|
"StdHW",
|
|
|
|
"StdVW",
|
|
|
|
"TrackKern",
|
|
|
|
"UnderlinePosition",
|
|
|
|
"UnderlineThickness",
|
|
|
|
"VV",
|
|
|
|
"VVector",
|
|
|
|
"Version",
|
|
|
|
"W",
|
|
|
|
"W0",
|
|
|
|
"W0X",
|
|
|
|
"W0Y",
|
|
|
|
"W1",
|
|
|
|
"W1X",
|
|
|
|
"W1Y",
|
|
|
|
"WX",
|
|
|
|
"WY",
|
|
|
|
"Weight",
|
|
|
|
"WeightVector",
|
|
|
|
"XHeight"
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2006-01-16 23:35:33 +01:00
|
|
|
* `afm_parser_read_vals' and `afm_parser_next_key' provide
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
* high-level operations to an AFM_Stream. The rest of the
|
2006-01-16 23:35:33 +01:00
|
|
|
* parser functions should use them without accessing the
|
|
|
|
* AFM_Stream directly.
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( FT_Int )
|
|
|
|
afm_parser_read_vals( AFM_Parser parser,
|
|
|
|
AFM_Value vals,
|
|
|
|
FT_Int n )
|
|
|
|
{
|
|
|
|
AFM_Stream stream = parser->stream;
|
|
|
|
char* str;
|
|
|
|
FT_Int i;
|
|
|
|
|
|
|
|
|
|
|
|
if ( n > AFM_MAX_ARGUMENTS )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for ( i = 0; i < n; i++ )
|
|
|
|
{
|
2006-01-17 17:55:32 +01:00
|
|
|
FT_UInt len;
|
|
|
|
AFM_Value val = vals + i;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
2006-01-17 17:55:32 +01:00
|
|
|
if ( val->type == AFM_VALUE_TYPE_STRING )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
str = afm_stream_read_string( stream );
|
|
|
|
else
|
|
|
|
str = afm_stream_read_one( stream );
|
|
|
|
|
|
|
|
if ( !str )
|
|
|
|
break;
|
|
|
|
|
|
|
|
len = AFM_STREAM_KEY_LEN( stream, str );
|
|
|
|
|
2006-01-17 17:55:32 +01:00
|
|
|
switch ( val->type )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
2006-01-16 23:35:33 +01:00
|
|
|
case AFM_VALUE_TYPE_STRING:
|
|
|
|
case AFM_VALUE_TYPE_NAME:
|
2006-01-27 15:16:16 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !FT_QALLOC( val->u.s, len + 1 ) )
|
|
|
|
{
|
|
|
|
ft_memcpy( val->u.s, str, len );
|
|
|
|
val->u.s[len] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2006-01-16 23:35:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_VALUE_TYPE_FIXED:
|
2006-01-17 17:55:32 +01:00
|
|
|
val->u.f = PS_Conv_ToFixed( (FT_Byte**)(void*)&str,
|
|
|
|
(FT_Byte*)str + len, 0 );
|
2006-01-16 23:35:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_VALUE_TYPE_INTEGER:
|
2006-01-17 17:55:32 +01:00
|
|
|
val->u.i = PS_Conv_ToInt( (FT_Byte**)(void*)&str,
|
|
|
|
(FT_Byte*)str + len );
|
2006-01-16 23:35:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_VALUE_TYPE_BOOL:
|
2006-01-27 13:11:22 +01:00
|
|
|
val->u.b = FT_BOOL( len == 4 &&
|
|
|
|
!ft_strncmp( str, "true", 4 ) );
|
2006-01-16 23:35:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_VALUE_TYPE_INDEX:
|
|
|
|
if ( parser->get_index )
|
2006-01-17 17:55:32 +01:00
|
|
|
val->u.i = parser->get_index( str, len, parser->user_data );
|
2006-01-16 23:35:33 +01:00
|
|
|
else
|
2006-01-17 17:55:32 +01:00
|
|
|
val->u.i = 0;
|
2006-01-16 23:35:33 +01:00
|
|
|
break;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( char* )
|
|
|
|
afm_parser_next_key( AFM_Parser parser,
|
|
|
|
FT_Bool line,
|
|
|
|
FT_UInt* len )
|
|
|
|
{
|
|
|
|
AFM_Stream stream = parser->stream;
|
2006-01-27 13:11:22 +01:00
|
|
|
char* key = 0; /* make stupid compiler happy */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
if ( line )
|
|
|
|
{
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
/* skip current line */
|
|
|
|
if ( !AFM_STATUS_EOL( stream ) )
|
|
|
|
afm_stream_read_string( stream );
|
|
|
|
|
|
|
|
stream->status = AFM_STREAM_STATUS_NORMAL;
|
|
|
|
key = afm_stream_read_one( stream );
|
|
|
|
|
|
|
|
/* skip empty line */
|
|
|
|
if ( !key &&
|
|
|
|
!AFM_STATUS_EOF( stream ) &&
|
2006-01-16 23:35:33 +01:00
|
|
|
AFM_STATUS_EOL( stream ) )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
/* skip current column */
|
|
|
|
while ( !AFM_STATUS_EOC( stream ) )
|
|
|
|
afm_stream_read_one( stream );
|
|
|
|
|
|
|
|
stream->status = AFM_STREAM_STATUS_NORMAL;
|
|
|
|
key = afm_stream_read_one( stream );
|
|
|
|
|
|
|
|
/* skip empty column */
|
|
|
|
if ( !key &&
|
|
|
|
!AFM_STATUS_EOF( stream ) &&
|
2006-01-16 23:35:33 +01:00
|
|
|
AFM_STATUS_EOC( stream ) )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( len )
|
|
|
|
*len = ( key ) ? AFM_STREAM_KEY_LEN( stream, key )
|
|
|
|
: 0;
|
|
|
|
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static AFM_Token
|
|
|
|
afm_tokenize( const char* key,
|
|
|
|
FT_UInt len )
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
|
|
|
|
for ( n = 0; n < N_AFM_TOKENS; n++ )
|
|
|
|
{
|
|
|
|
if ( *( afm_key_table[n] ) == *key )
|
|
|
|
{
|
|
|
|
for ( ; n < N_AFM_TOKENS; n++ )
|
|
|
|
{
|
|
|
|
if ( *( afm_key_table[n] ) != *key )
|
|
|
|
return AFM_TOKEN_UNKNOWN;
|
|
|
|
|
|
|
|
if ( ft_strncmp( afm_key_table[n], key, len ) == 0 )
|
2006-02-25 13:49:40 +01:00
|
|
|
return (AFM_Token) n;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AFM_TOKEN_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( FT_Error )
|
|
|
|
afm_parser_init( AFM_Parser parser,
|
|
|
|
FT_Memory memory,
|
|
|
|
FT_Byte* base,
|
|
|
|
FT_Byte* limit )
|
|
|
|
{
|
|
|
|
AFM_Stream stream;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
|
|
|
if ( FT_NEW( stream ) )
|
|
|
|
return error;
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
stream->cursor = stream->base = base;
|
|
|
|
stream->limit = limit;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
/* don't skip the first line during the first call */
|
|
|
|
stream->status = AFM_STREAM_STATUS_EOL;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
parser->memory = memory;
|
|
|
|
parser->stream = stream;
|
|
|
|
parser->FontInfo = NULL;
|
|
|
|
parser->get_index = NULL;
|
|
|
|
|
|
|
|
return PSaux_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL( void )
|
|
|
|
afm_parser_done( AFM_Parser parser )
|
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
|
|
|
|
|
|
|
|
FT_FREE( parser->stream );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( FT_Error )
|
|
|
|
afm_parser_read_int( AFM_Parser parser,
|
|
|
|
FT_Int* aint )
|
|
|
|
{
|
|
|
|
AFM_ValueRec val;
|
|
|
|
|
|
|
|
|
|
|
|
val.type = AFM_VALUE_TYPE_INTEGER;
|
|
|
|
|
|
|
|
if ( afm_parser_read_vals( parser, &val, 1 ) == 1 )
|
|
|
|
{
|
|
|
|
*aint = val.u.i;
|
|
|
|
|
|
|
|
return PSaux_Err_Ok;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return PSaux_Err_Syntax_Error;
|
|
|
|
}
|
2006-02-25 13:49:40 +01:00
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
static FT_Error
|
|
|
|
afm_parse_track_kern( AFM_Parser parser )
|
|
|
|
{
|
|
|
|
AFM_FontInfo fi = parser->FontInfo;
|
|
|
|
AFM_TrackKern tk;
|
|
|
|
char* key;
|
|
|
|
FT_UInt len;
|
|
|
|
int n = -1;
|
|
|
|
|
|
|
|
|
|
|
|
if ( afm_parser_read_int( parser, &fi->NumTrackKern ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
if ( fi->NumTrackKern )
|
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
if ( FT_QNEW_ARRAY( fi->TrackKerns, fi->NumTrackKern ) )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
while ( ( key = afm_parser_next_key( parser, 1, &len ) ) != 0 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
2006-01-27 13:11:22 +01:00
|
|
|
AFM_ValueRec shared_vals[5];
|
2006-02-25 13:49:40 +01:00
|
|
|
|
2006-01-31 08:01:24 +01:00
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
switch ( afm_tokenize( key, len ) )
|
|
|
|
{
|
|
|
|
case AFM_TOKEN_TRACKKERN:
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if ( n >= fi->NumTrackKern )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
tk = fi->TrackKerns + n;
|
|
|
|
|
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_INTEGER;
|
|
|
|
shared_vals[1].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[2].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[3].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[4].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
if ( afm_parser_read_vals( parser, shared_vals, 5 ) != 5 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
tk->degree = shared_vals[0].u.i;
|
|
|
|
tk->min_ptsize = shared_vals[1].u.f;
|
|
|
|
tk->min_kern = shared_vals[2].u.f;
|
|
|
|
tk->max_ptsize = shared_vals[3].u.f;
|
|
|
|
tk->max_kern = shared_vals[4].u.f;
|
|
|
|
|
|
|
|
/* is this correct? */
|
|
|
|
if ( tk->degree < 0 && tk->min_kern > 0 )
|
|
|
|
tk->min_kern = -tk->min_kern;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_ENDTRACKKERN:
|
|
|
|
case AFM_TOKEN_ENDKERNDATA:
|
|
|
|
case AFM_TOKEN_ENDFONTMETRICS:
|
|
|
|
fi->NumTrackKern = n + 1;
|
|
|
|
return PSaux_Err_Ok;
|
|
|
|
|
|
|
|
case AFM_TOKEN_UNKNOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
return PSaux_Err_Syntax_Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#undef KERN_INDEX
|
|
|
|
#define KERN_INDEX( g1, g2 ) ( ( (FT_ULong)g1 << 16 ) | g2 )
|
|
|
|
|
2006-01-16 23:35:33 +01:00
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
/* compare two kerning pairs */
|
|
|
|
FT_CALLBACK_DEF( int )
|
|
|
|
afm_compare_kern_pairs( const void* a,
|
|
|
|
const void* b )
|
|
|
|
{
|
|
|
|
AFM_KernPair kp1 = (AFM_KernPair)a;
|
|
|
|
AFM_KernPair kp2 = (AFM_KernPair)b;
|
|
|
|
|
|
|
|
FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 );
|
|
|
|
FT_ULong index2 = KERN_INDEX( kp2->index1, kp2->index2 );
|
|
|
|
|
|
|
|
|
|
|
|
return (int)( index1 - index2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
|
|
|
afm_parse_kern_pairs( AFM_Parser parser )
|
|
|
|
{
|
|
|
|
AFM_FontInfo fi = parser->FontInfo;
|
|
|
|
AFM_KernPair kp;
|
|
|
|
char* key;
|
|
|
|
FT_UInt len;
|
|
|
|
int n = -1;
|
|
|
|
|
|
|
|
|
|
|
|
if ( afm_parser_read_int( parser, &fi->NumKernPair ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
if ( fi->NumKernPair )
|
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
if ( FT_QNEW_ARRAY( fi->KernPairs, fi->NumKernPair ) )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
while ( ( key = afm_parser_next_key( parser, 1, &len ) ) != 0 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
|
|
|
AFM_Token token = afm_tokenize( key, len );
|
|
|
|
|
|
|
|
|
|
|
|
switch ( token )
|
|
|
|
{
|
|
|
|
case AFM_TOKEN_KP:
|
|
|
|
case AFM_TOKEN_KPX:
|
|
|
|
case AFM_TOKEN_KPY:
|
|
|
|
{
|
2006-01-27 13:11:22 +01:00
|
|
|
FT_Int r;
|
|
|
|
AFM_ValueRec shared_vals[4];
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if ( n >= fi->NumKernPair )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
kp = fi->KernPairs + n;
|
|
|
|
|
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_INDEX;
|
|
|
|
shared_vals[1].type = AFM_VALUE_TYPE_INDEX;
|
|
|
|
shared_vals[2].type = AFM_VALUE_TYPE_INTEGER;
|
|
|
|
shared_vals[3].type = AFM_VALUE_TYPE_INTEGER;
|
|
|
|
r = afm_parser_read_vals( parser, shared_vals, 4 );
|
|
|
|
if ( r < 3 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
kp->index1 = shared_vals[0].u.i;
|
|
|
|
kp->index2 = shared_vals[1].u.i;
|
|
|
|
if ( token == AFM_TOKEN_KPY )
|
|
|
|
{
|
|
|
|
kp->x = 0;
|
|
|
|
kp->y = shared_vals[2].u.i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
kp->x = shared_vals[2].u.i;
|
|
|
|
kp->y = ( token == AFM_TOKEN_KP && r == 4 )
|
|
|
|
? shared_vals[3].u.i : 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_ENDKERNPAIRS:
|
|
|
|
case AFM_TOKEN_ENDKERNDATA:
|
|
|
|
case AFM_TOKEN_ENDFONTMETRICS:
|
|
|
|
fi->NumKernPair = n + 1;
|
|
|
|
ft_qsort( fi->KernPairs, fi->NumKernPair,
|
|
|
|
sizeof( AFM_KernPairRec ),
|
|
|
|
afm_compare_kern_pairs );
|
|
|
|
return PSaux_Err_Ok;
|
|
|
|
|
|
|
|
case AFM_TOKEN_UNKNOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
return PSaux_Err_Syntax_Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
|
|
|
afm_parse_kern_data( AFM_Parser parser )
|
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
char* key;
|
|
|
|
FT_UInt len;
|
|
|
|
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
while ( ( key = afm_parser_next_key( parser, 1, &len ) ) != 0 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
|
|
|
switch ( afm_tokenize( key, len ) )
|
|
|
|
{
|
|
|
|
case AFM_TOKEN_STARTTRACKKERN:
|
|
|
|
error = afm_parse_track_kern( parser );
|
|
|
|
if ( error )
|
|
|
|
return error;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_STARTKERNPAIRS:
|
|
|
|
case AFM_TOKEN_STARTKERNPAIRS0:
|
|
|
|
error = afm_parse_kern_pairs( parser );
|
|
|
|
if ( error )
|
|
|
|
return error;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_ENDKERNDATA:
|
2006-02-25 13:49:40 +01:00
|
|
|
case AFM_TOKEN_ENDFONTMETRICS:
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
return PSaux_Err_Ok;
|
|
|
|
|
|
|
|
case AFM_TOKEN_UNKNOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
return PSaux_Err_Syntax_Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
|
|
|
afm_parser_skip_section( AFM_Parser parser,
|
|
|
|
FT_UInt n,
|
|
|
|
AFM_Token end_section )
|
|
|
|
{
|
2006-01-16 23:35:33 +01:00
|
|
|
char* key;
|
|
|
|
FT_UInt len;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
while ( n-- > 0 )
|
|
|
|
{
|
|
|
|
key = afm_parser_next_key( parser, 1, NULL );
|
|
|
|
if ( !key )
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
while ( ( key = afm_parser_next_key( parser, 1, &len ) ) != 0 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
|
|
|
AFM_Token token = afm_tokenize( key, len );
|
|
|
|
|
|
|
|
|
|
|
|
if ( token == end_section || token == AFM_TOKEN_ENDFONTMETRICS )
|
|
|
|
return PSaux_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
return PSaux_Err_Syntax_Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( FT_Error )
|
|
|
|
afm_parser_parse( AFM_Parser parser )
|
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
|
|
|
AFM_FontInfo fi = parser->FontInfo;
|
|
|
|
FT_Error error = PSaux_Err_Syntax_Error;
|
|
|
|
char* key;
|
|
|
|
FT_UInt len;
|
|
|
|
FT_Int metrics_sets = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !fi )
|
|
|
|
return PSaux_Err_Invalid_Argument;
|
|
|
|
|
|
|
|
key = afm_parser_next_key( parser, 1, &len );
|
|
|
|
if ( !key || len != 16 ||
|
|
|
|
ft_strncmp( key, "StartFontMetrics", 16 ) != 0 )
|
|
|
|
return PSaux_Err_Unknown_File_Format;
|
|
|
|
|
2006-01-27 13:11:22 +01:00
|
|
|
while ( ( key = afm_parser_next_key( parser, 1, &len ) ) != 0 )
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
{
|
2006-01-31 08:01:24 +01:00
|
|
|
AFM_ValueRec shared_vals[4];
|
|
|
|
|
|
|
|
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
switch ( afm_tokenize( key, len ) )
|
|
|
|
{
|
|
|
|
case AFM_TOKEN_METRICSSETS:
|
|
|
|
if ( afm_parser_read_int( parser, &metrics_sets ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
if ( metrics_sets != 0 && metrics_sets != 2 )
|
|
|
|
{
|
|
|
|
error = PSaux_Err_Unimplemented_Feature;
|
|
|
|
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_ISCIDFONT:
|
2006-01-31 08:01:24 +01:00
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_BOOL;
|
|
|
|
if ( afm_parser_read_vals( parser, shared_vals, 1 ) != 1 )
|
|
|
|
goto Fail;
|
2006-01-27 15:16:16 +01:00
|
|
|
|
2006-01-31 08:01:24 +01:00
|
|
|
fi->IsCIDFont = shared_vals[0].u.b;
|
|
|
|
break;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-01-31 08:01:24 +01:00
|
|
|
case AFM_TOKEN_FONTBBOX:
|
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[1].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[2].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
shared_vals[3].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
if ( afm_parser_read_vals( parser, shared_vals, 4 ) != 4 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
fi->FontBBox.xMin = shared_vals[0].u.f;
|
|
|
|
fi->FontBBox.yMin = shared_vals[1].u.f;
|
|
|
|
fi->FontBBox.xMax = shared_vals[2].u.f;
|
|
|
|
fi->FontBBox.yMax = shared_vals[3].u.f;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_ASCENDER:
|
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
if ( afm_parser_read_vals( parser, shared_vals, 1 ) != 1 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
fi->Ascender = shared_vals[0].u.f;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_DESCENDER:
|
|
|
|
shared_vals[0].type = AFM_VALUE_TYPE_FIXED;
|
|
|
|
if ( afm_parser_read_vals( parser, shared_vals, 1 ) != 1 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
fi->Descender = shared_vals[0].u.f;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_STARTCHARMETRICS:
|
|
|
|
{
|
2007-05-15 08:49:37 +02:00
|
|
|
FT_Int n = 0;
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
if ( afm_parser_read_int( parser, &n ) )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
error = afm_parser_skip_section( parser, n,
|
|
|
|
AFM_TOKEN_ENDCHARMETRICS );
|
|
|
|
if ( error )
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AFM_TOKEN_STARTKERNDATA:
|
|
|
|
error = afm_parse_kern_data( parser );
|
|
|
|
if ( error )
|
|
|
|
goto Fail;
|
2006-01-16 23:35:33 +01:00
|
|
|
/* fall through since we only support kern data */
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
|
2006-02-25 13:49:40 +01:00
|
|
|
case AFM_TOKEN_ENDFONTMETRICS:
|
* src/psaux/afmparse.c, src/psaux/afmparse.h: New files which
implement an AFM parser. It is used to parse an AFM file.
* src/psaux/psconv.c, src/psaux/psconv.h: New files to provide
conversion functions (e.g, PS real number => FT_Fixed) for the
PS_Parser and AFM_Parser. Some of the functions are taken, with some
modifications, from the psobjs.c
* src/psaux/psobjs.c: Use functions from psconv.c.
* include/freetype/internal/psaux.h, src/psaux/psauxmod.c:: Add
`AFM_Parser' to the `psaux' service.
* src/psaux/psaux.c, src/psaux/rules.mk: Include those new files.
* src/tools/test_afm.c: A test program for AFM parser.
* include/freetype/internal/services/svkern.h,
include/freetype/internal/ftserv.h: New service `Kerning'. It is
currently only used to get the track kerning information.
* src/type1/t1driver.c, src/type1/t1objs.c, src/type1/t1afm.c,
src/type1/t1afm.h: Update to use the AFM parser.
Provide the `Kerning' service.
* include/freetype/freetype.h, src/base/ftobjs.c: New API
`FT_Get_Track_Kerning'.
2006-01-16 16:35:56 +01:00
|
|
|
return PSaux_Err_Ok;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
FT_FREE( fi->TrackKerns );
|
|
|
|
fi->NumTrackKern = 0;
|
|
|
|
|
|
|
|
FT_FREE( fi->KernPairs );
|
|
|
|
fi->NumKernPair = 0;
|
|
|
|
|
|
|
|
fi->IsCIDFont = 0;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2006-01-16 23:35:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|