2000-08-17 09:18:04 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* psobjs.c */
|
|
|
|
/* */
|
|
|
|
/* Auxiliary functions for PostScript fonts (body). */
|
|
|
|
/* */
|
2003-04-23 17:17:43 +02:00
|
|
|
/* Copyright 1996-2001, 2002, 2003 by */
|
2000-08-17 09:18:04 +02: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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_POSTSCRIPT_AUX_H
|
|
|
|
#include FT_INTERNAL_DEBUG_H
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "psobjs.h"
|
2000-08-17 09:18:04 +02:00
|
|
|
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
#include "psauxerr.h"
|
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
2000-08-21 06:58:49 +02:00
|
|
|
/***** PS_TABLE *****/
|
2000-08-17 03:09:06 +02:00
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
/* ps_table_new */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
2000-08-23 19:32:42 +02:00
|
|
|
/* Initializes a PS_Table. */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The address of the target table. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* count :: The table size = the maximum number of elements. */
|
|
|
|
/* */
|
|
|
|
/* memory :: The memory object to use for all subsequent */
|
|
|
|
/* reallocations. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_table_new( PS_Table table,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Int count,
|
|
|
|
FT_Memory memory )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
|
|
|
table->memory = memory;
|
2002-03-22 14:52:37 +01:00
|
|
|
if ( FT_NEW_ARRAY( table->elements, count ) ||
|
|
|
|
FT_NEW_ARRAY( table->lengths, count ) )
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
table->max_elems = count;
|
2000-11-06 00:41:08 +01:00
|
|
|
table->init = 0xDEADBEEFUL;
|
2000-08-17 03:09:06 +02:00
|
|
|
table->num_elems = 0;
|
|
|
|
table->block = 0;
|
|
|
|
table->capacity = 0;
|
|
|
|
table->cursor = 0;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
*(PS_Table_FuncsRec*)&table->funcs = ps_table_funcs;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
if ( error )
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_FREE( table->elements );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static void
|
2002-02-28 17:10:29 +01:00
|
|
|
shift_elements( PS_Table table,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Byte* old_base )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2001-03-10 18:07:42 +01:00
|
|
|
FT_Long delta = (FT_Long)( table->block - old_base );
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Byte** offset = table->elements;
|
|
|
|
FT_Byte** limit = offset + table->max_elems;
|
|
|
|
|
|
|
|
|
2001-02-03 05:34:53 +01:00
|
|
|
for ( ; offset < limit; offset++ )
|
|
|
|
{
|
|
|
|
if ( offset[0] )
|
|
|
|
offset[0] += delta;
|
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Error
|
2002-02-28 17:10:29 +01:00
|
|
|
reallocate_t1_table( PS_Table table,
|
2002-09-17 15:56:44 +02:00
|
|
|
FT_Long new_size )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
|
|
|
FT_Byte* old_base = table->block;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
2001-02-03 05:34:53 +01:00
|
|
|
/* allocate new base block */
|
2002-03-22 14:52:37 +01:00
|
|
|
if ( FT_ALLOC( table->block, new_size ) )
|
2003-03-13 22:07:51 +01:00
|
|
|
{
|
|
|
|
table->block = old_base;
|
2000-08-17 03:09:06 +02:00
|
|
|
return error;
|
2003-03-13 22:07:51 +01:00
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2001-02-03 05:34:53 +01:00
|
|
|
/* copy elements and shift offsets */
|
|
|
|
if (old_base )
|
|
|
|
{
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_MEM_COPY( table->block, old_base, table->capacity );
|
2000-08-17 03:09:06 +02:00
|
|
|
shift_elements( table, old_base );
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_FREE( old_base );
|
2001-02-03 05:34:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table->capacity = new_size;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
return PSaux_Err_Ok;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
/* ps_table_add */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
2002-03-14 11:09:35 +01:00
|
|
|
/* Adds an object to a PS_Table, possibly growing its memory block. */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The target table. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
2003-12-09 03:12:14 +01:00
|
|
|
/* idx :: The index of the object in the table. */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* object :: The address of the object to copy in memory. */
|
|
|
|
/* */
|
|
|
|
/* length :: The length in bytes of the source object. */
|
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. An error is returned if a */
|
|
|
|
/* reallocation fails. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* include/freetype/internal/ftdriver.h,
include/freetype/internal/ftobjs.h,
include/freetype/internal/psaux.h, src/cid/cidgload.c,
src/psaux/psobjs.c, src/psaux/t1decode.c, src/psaux/psobjs.h,
src/pshinter/pshrec.c, src/pshinter/pshalgo.c,
src/psnames/psmodule.c, src/raster/ftraster.c, src/sfnt/sfobjs.c,
src/smooth/ftgrays.c, src/smooth/ftsmooth.c, src/truetype/ttobjs.c,
src/truetype/ttdriver.c, src/truetype/ttgload.c, src/type1/t1afm.c,
src/type1/t1gload.c, src/type1/t1gload.h, src/type1/t1load.c,
src/type1/t1objs.c, src/type42/t42parse.c, src/type42/t42parse.h:
Many casts and slight argument type changes to make it work with
a 16bit compiler.
2003-06-05 06:31:05 +02:00
|
|
|
ps_table_add( PS_Table table,
|
|
|
|
FT_Int idx,
|
|
|
|
void* object,
|
|
|
|
FT_PtrDist length )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
ft_mem_table_set, ft_mem_debug_alloc, ft_mem_debug_free,
ft_mem_debug_realloc, ft_mem_debug_done, FT_Alloc_Debug,
FT_Realloc_Debug, FT_Free_Debug): Fix compiler warnings.
* src/base/ftcalc.c (FT_MulFix): Ditto.
* src/cff/cffdrivr.c (cff_get_name_index): Ditto.
* src/cff/cffobjs.c (CFF_Size_Get_Global_Funcs, CFF_Size_Init,
CFF_GlyphSlot_Init): Ditto.
* src/cid/cidobjs.c (CID_GlyphSlot_Init,
CID_Size_Get_Globals_Funcs): Ditto.
* src/type1/t1objs.c (T1_Size_Get_Globals_Funcs, T1_GlyphSlot_Init):
Ditto.
* src/pshinter/pshmod.c (pshinter_interface): Use `static const'.
* src/winfonts/winfnt.c (FNT_Get_Next_Char): Remove unused
variables.
* include/freetype/internal/psaux.h (T1_Builder_Funcs): Renamed
to...
(T1_Builder_FuncsRec): This.
(T1_Builder_Funcs): New typedef.
(PSAux_Interface): Remove compiler warnings.
* src/psaux/psauxmod.c (t1_builder_funcs), src/psaux/psobjs.h
(t1_builder_funcs): Updated.
* src/pshinter/pshglob.h (PSH_Blue_Align): Replaced with ...
(PSH_BLUE_ALIGN_{NONE,TOP,BOT}): New defines.
(PSH_AlignmentRec): Updated.
* include/freetype/internal/ftstream.h (GET_Char, GET_Byte): Fix
typo.
* include/freetype/internal/ftgloadr.h (FT_SubGlyph): Ditto.
* src/base/ftstream (FT_Get_Char): Rename to...
(FT_Stream_Get_Char): This.
* src/base/ftnames.c (FT_Get_Sfnt_Name): s/index/idx/ -- `index' is
a built-in function in gcc, causing warning messages with gcc 3.0.
* src/autohint/ahglyph.c (ah_outline_load): Ditto.
* src/autohint/ahglobal.c (ah_hinter_compute_blues): Ditto.
* src/cache/ftcmanag.c (ftc_family_table_alloc,
ftc_family_table_free, FTC_Manager_Done, FTC_Manager_Register_Cache):
Ditto.
* src/cff/cffload.c (cff_new_index, cff_done_index,
cff_explicit_index, CFF_Access_Element, CFF_Forget_Element,
CFF_Get_Name, CFF_Get_String, CFF_Load_SubFont, CFF_Load_Font,
CFF_Done_Font): Ditto.
* src/psaux/psobjs.c (PS_Table_Add, PS_Parser_LoadField): Ditto.
* src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Ditto.
* src/pshinter/pshrec.c (ps_mask_test_bit, ps_mask_clear_bit,
ps_mask_set_bit, ps_dimension_add_t1stem, ps_hints_t1stem3,
* src/pshinter/pshalgo1.c (psh1_hint_table_record,
psh1_hint_table_record_mask, psh1_hint_table_activate_mask): Ditto.
* src/pshinter/pshalgo2.c (psh2_hint_table_record,
psh2_hint_table_record_mask, psh2_hint_table_activate_mask): Ditto.
* src/sfnt/ttpost.c (Load_Format_20, Load_Format_25,
TT_Get_PS_Name): Ditto.
* src/truetype/ttgload.c (TT_Get_Metrics, Get_HMetrics,
load_truetype_glyph): Ditto.
* src/type1/t1load.c (parse_subrs, T1_Open_Face): Ditto.
* src/type1/t1afm.c (T1_Get_Kerning): Ditto.
* include/freetype/cache/ftcmanag.h (ftc_family_table_free): Ditto.
2002-03-07 22:59:59 +01:00
|
|
|
if ( idx < 0 || idx > table->max_elems )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
FT_ERROR(( "ps_table_add: invalid index\n" ));
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
return PSaux_Err_Invalid_Argument;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* grow the base block if needed */
|
|
|
|
if ( table->cursor + length > table->capacity )
|
|
|
|
{
|
2001-07-17 14:37:54 +02:00
|
|
|
FT_Error error;
|
2001-08-30 09:59:28 +02:00
|
|
|
FT_Offset new_size = table->capacity;
|
|
|
|
FT_Long in_offset;
|
2002-02-24 03:59:24 +01:00
|
|
|
|
2001-09-10 08:55:43 +02:00
|
|
|
|
2001-08-30 09:59:28 +02:00
|
|
|
in_offset = (FT_Long)((FT_Byte*)object - table->block);
|
|
|
|
if ( (FT_ULong)in_offset >= table->capacity )
|
|
|
|
in_offset = -1;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
while ( new_size < table->cursor + length )
|
2002-11-06 23:32:54 +01:00
|
|
|
{
|
2003-04-23 17:17:43 +02:00
|
|
|
/* increase size by 25% and round up to the nearest multiple
|
|
|
|
of 1024 */
|
|
|
|
new_size += ( new_size >> 2 ) + 1;
|
2003-12-24 02:10:46 +01:00
|
|
|
new_size = FT_PAD_CEIL( new_size, 1024 );
|
2002-11-06 23:32:54 +01:00
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
error = reallocate_t1_table( table, new_size );
|
|
|
|
if ( error )
|
|
|
|
return error;
|
2002-02-24 03:59:24 +01:00
|
|
|
|
2001-08-30 09:59:28 +02:00
|
|
|
if ( in_offset >= 0 )
|
|
|
|
object = table->block + in_offset;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add the object to the base block and adjust offset */
|
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
ft_mem_table_set, ft_mem_debug_alloc, ft_mem_debug_free,
ft_mem_debug_realloc, ft_mem_debug_done, FT_Alloc_Debug,
FT_Realloc_Debug, FT_Free_Debug): Fix compiler warnings.
* src/base/ftcalc.c (FT_MulFix): Ditto.
* src/cff/cffdrivr.c (cff_get_name_index): Ditto.
* src/cff/cffobjs.c (CFF_Size_Get_Global_Funcs, CFF_Size_Init,
CFF_GlyphSlot_Init): Ditto.
* src/cid/cidobjs.c (CID_GlyphSlot_Init,
CID_Size_Get_Globals_Funcs): Ditto.
* src/type1/t1objs.c (T1_Size_Get_Globals_Funcs, T1_GlyphSlot_Init):
Ditto.
* src/pshinter/pshmod.c (pshinter_interface): Use `static const'.
* src/winfonts/winfnt.c (FNT_Get_Next_Char): Remove unused
variables.
* include/freetype/internal/psaux.h (T1_Builder_Funcs): Renamed
to...
(T1_Builder_FuncsRec): This.
(T1_Builder_Funcs): New typedef.
(PSAux_Interface): Remove compiler warnings.
* src/psaux/psauxmod.c (t1_builder_funcs), src/psaux/psobjs.h
(t1_builder_funcs): Updated.
* src/pshinter/pshglob.h (PSH_Blue_Align): Replaced with ...
(PSH_BLUE_ALIGN_{NONE,TOP,BOT}): New defines.
(PSH_AlignmentRec): Updated.
* include/freetype/internal/ftstream.h (GET_Char, GET_Byte): Fix
typo.
* include/freetype/internal/ftgloadr.h (FT_SubGlyph): Ditto.
* src/base/ftstream (FT_Get_Char): Rename to...
(FT_Stream_Get_Char): This.
* src/base/ftnames.c (FT_Get_Sfnt_Name): s/index/idx/ -- `index' is
a built-in function in gcc, causing warning messages with gcc 3.0.
* src/autohint/ahglyph.c (ah_outline_load): Ditto.
* src/autohint/ahglobal.c (ah_hinter_compute_blues): Ditto.
* src/cache/ftcmanag.c (ftc_family_table_alloc,
ftc_family_table_free, FTC_Manager_Done, FTC_Manager_Register_Cache):
Ditto.
* src/cff/cffload.c (cff_new_index, cff_done_index,
cff_explicit_index, CFF_Access_Element, CFF_Forget_Element,
CFF_Get_Name, CFF_Get_String, CFF_Load_SubFont, CFF_Load_Font,
CFF_Done_Font): Ditto.
* src/psaux/psobjs.c (PS_Table_Add, PS_Parser_LoadField): Ditto.
* src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Ditto.
* src/pshinter/pshrec.c (ps_mask_test_bit, ps_mask_clear_bit,
ps_mask_set_bit, ps_dimension_add_t1stem, ps_hints_t1stem3,
* src/pshinter/pshalgo1.c (psh1_hint_table_record,
psh1_hint_table_record_mask, psh1_hint_table_activate_mask): Ditto.
* src/pshinter/pshalgo2.c (psh2_hint_table_record,
psh2_hint_table_record_mask, psh2_hint_table_activate_mask): Ditto.
* src/sfnt/ttpost.c (Load_Format_20, Load_Format_25,
TT_Get_PS_Name): Ditto.
* src/truetype/ttgload.c (TT_Get_Metrics, Get_HMetrics,
load_truetype_glyph): Ditto.
* src/type1/t1load.c (parse_subrs, T1_Open_Face): Ditto.
* src/type1/t1afm.c (T1_Get_Kerning): Ditto.
* include/freetype/cache/ftcmanag.h (ftc_family_table_free): Ditto.
2002-03-07 22:59:59 +01:00
|
|
|
table->elements[idx] = table->block + table->cursor;
|
|
|
|
table->lengths [idx] = length;
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_MEM_COPY( table->block + table->cursor, object, length );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
table->cursor += length;
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
return PSaux_Err_Ok;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
/* ps_table_done */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
2002-03-31 13:18:15 +02:00
|
|
|
/* Finalizes a PS_TableRec (i.e., reallocate it to its current */
|
|
|
|
/* cursor). */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* table :: The target table. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* This function does NOT release the heap's memory block. It is up */
|
|
|
|
/* to the caller to clean it, or reference it in its own structures. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_table_done( PS_Table table )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
|
|
|
FT_Error error;
|
2001-02-03 05:34:53 +01:00
|
|
|
FT_Byte* old_base = table->block;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
/* should never fail, because rec.cursor <= rec.size */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !old_base )
|
|
|
|
return;
|
|
|
|
|
2002-03-22 14:52:37 +01:00
|
|
|
if ( FT_ALLOC( table->block, table->cursor ) )
|
2000-08-29 18:50:01 +02:00
|
|
|
return;
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_MEM_COPY( table->block, old_base, table->cursor );
|
2001-02-03 05:34:53 +01:00
|
|
|
shift_elements( table, old_base );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2001-02-03 05:34:53 +01:00
|
|
|
table->capacity = table->cursor;
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_FREE( old_base );
|
2002-02-19 17:30:15 +01:00
|
|
|
|
|
|
|
FT_UNUSED( error );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_table_release( PS_Table table )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = table->memory;
|
|
|
|
|
|
|
|
|
2000-08-23 00:36:33 +02:00
|
|
|
if ( (FT_ULong)table->init == 0xDEADBEEFUL )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_FREE( table->block );
|
|
|
|
FT_FREE( table->elements );
|
|
|
|
FT_FREE( table->lengths );
|
2000-08-17 03:09:06 +02:00
|
|
|
table->init = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** T1 PARSER *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
/* In the PostScript Language Reference Manual (PLRM) the following */
|
2003-10-07 07:49:41 +02:00
|
|
|
/* characters are called `whitespace characters'. */
|
2000-08-17 03:09:06 +02:00
|
|
|
#define IS_T1_WHITESPACE( c ) ( (c) == ' ' || (c) == '\t' )
|
2003-07-24 08:16:21 +02:00
|
|
|
#define IS_T1_LINESPACE( c ) ( (c) == '\r' || (c) == '\n' || (c) == '\f' )
|
|
|
|
#define IS_T1_NULLSPACE( c ) ( (c) == '\0' )
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* According to the PLRM all whitespace characters are equivalent, */
|
|
|
|
/* except in comments and strings. */
|
2003-07-24 08:16:21 +02:00
|
|
|
#define IS_T1_SPACE( c ) ( IS_T1_WHITESPACE( c ) || \
|
|
|
|
IS_T1_LINESPACE( c ) || \
|
|
|
|
IS_T1_NULLSPACE( c ) )
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* The following array is used by various functions to quickly convert */
|
|
|
|
/* digits (both decimal and non-decimal) into numbers. */
|
|
|
|
|
|
|
|
#if 'A' == 65
|
|
|
|
/* ASCII */
|
|
|
|
|
|
|
|
char ft_char_table[128] =
|
|
|
|
{
|
|
|
|
/* 0x00 */
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1,
|
|
|
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
|
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* no character >= 0x80 can represent a valid number */
|
|
|
|
#define OP >=
|
|
|
|
|
|
|
|
#endif /* 'A' == 65 */
|
|
|
|
|
|
|
|
#if 'A' == 193
|
|
|
|
/* EBCDIC */
|
|
|
|
|
|
|
|
char ft_char_table[128] =
|
|
|
|
{
|
|
|
|
/* 0x80 */
|
|
|
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, -1,
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1,
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no character < 0x80 can represent a valid number */
|
|
|
|
#define OP <
|
|
|
|
|
|
|
|
#endif /* 'A' == 193 */
|
|
|
|
|
|
|
|
|
|
|
|
/* first character must be already part of the comment */
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
static void
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_comment( FT_Byte* *acur,
|
|
|
|
FT_Byte* limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
while ( cur < limit )
|
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( IS_T1_LINESPACE( *cur ) )
|
2000-08-17 03:09:06 +02:00
|
|
|
break;
|
|
|
|
cur++;
|
|
|
|
}
|
2003-07-24 08:16:21 +02:00
|
|
|
|
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
static void
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_spaces( FT_Byte* *acur,
|
|
|
|
FT_Byte* limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-07-24 08:16:21 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
while ( cur < limit )
|
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( !IS_T1_SPACE( *cur ) )
|
|
|
|
{
|
|
|
|
if ( *cur == '%' )
|
|
|
|
/* According to the PLRM, a comment is equal to a space. */
|
|
|
|
skip_comment( &cur, limit );
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cur++;
|
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
|
|
|
|
/* first character must be `(' */
|
|
|
|
|
|
|
|
static void
|
|
|
|
skip_literal_string( FT_Byte* *acur,
|
|
|
|
FT_Byte* limit )
|
|
|
|
{
|
|
|
|
FT_Byte* cur = *acur;
|
|
|
|
FT_Int embed = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while ( cur < limit )
|
|
|
|
{
|
|
|
|
if ( *cur == '\\' )
|
|
|
|
cur++;
|
|
|
|
else if ( *cur == '(' )
|
|
|
|
embed++;
|
|
|
|
else if ( *cur == ')' )
|
|
|
|
{
|
|
|
|
embed--;
|
|
|
|
if ( embed == 0 )
|
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
cur++;
|
|
|
|
}
|
2003-07-24 08:16:21 +02:00
|
|
|
|
|
|
|
*acur = cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be `<' */
|
|
|
|
|
|
|
|
static void
|
|
|
|
skip_string( PS_Parser parser )
|
|
|
|
{
|
|
|
|
FT_Byte* cur = parser->cursor;
|
|
|
|
FT_Byte* limit = parser->limit;
|
|
|
|
|
|
|
|
|
2003-10-16 17:48:39 +02:00
|
|
|
while ( ++cur < limit )
|
2003-10-07 07:49:41 +02:00
|
|
|
{
|
|
|
|
int d;
|
|
|
|
|
|
|
|
|
|
|
|
/* All whitespace characters are ignored. */
|
|
|
|
skip_spaces( &cur, limit );
|
|
|
|
if ( cur >= limit )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( *cur OP 0x80 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
d = ft_char_table[*cur & 0x7F];
|
|
|
|
if ( d < 0 || d >= 16 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( cur < limit && *cur != '>' )
|
|
|
|
parser->error = PSaux_Err_Invalid_File_Format;
|
|
|
|
else
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
parser->cursor = cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* All exported parsing routines handle leading whitespace and stop at */
|
|
|
|
/* the first character which isn't part of the just handled token. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
FT_LOCAL_DEF( void )
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_PS_token( PS_Parser parser )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
/* Note: PostScript allows any non-delimiting, non-whitespace */
|
|
|
|
/* character in a name (PS Ref Manual, 3rd ed, p31). */
|
|
|
|
/* PostScript delimiters are (, ), <, >, [, ], {, }, /, and %. */
|
|
|
|
|
|
|
|
FT_Byte* cur = parser->cursor;
|
|
|
|
FT_Byte* limit = parser->limit;
|
|
|
|
|
|
|
|
|
|
|
|
skip_spaces( &cur, limit ); /* this also skips comments */
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* self-delimiting, single-character tokens */
|
|
|
|
if ( *cur == '[' || *cur == ']' ||
|
|
|
|
*cur == '{' || *cur == '}' )
|
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *cur == '(' ) /* (...) */
|
|
|
|
{
|
|
|
|
skip_literal_string( &cur, limit );
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *cur == '<' ) /* <...> */
|
|
|
|
{
|
|
|
|
if ( cur + 1 < limit && *(cur + 1) == '<' ) /* << */
|
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
cur++;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
parser->cursor = cur;
|
|
|
|
skip_string( parser );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *cur == '>' )
|
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
if ( cur >= limit || *cur != '>' ) /* >> */
|
|
|
|
{
|
|
|
|
parser->error = PSaux_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
cur++;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *cur == '/' )
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
/* anything else */
|
|
|
|
while ( cur < limit )
|
|
|
|
{
|
|
|
|
if ( IS_T1_SPACE( *cur ) ||
|
|
|
|
*cur == '(' ||
|
|
|
|
*cur == '/' ||
|
|
|
|
*cur == '%' ||
|
|
|
|
*cur == '[' || *cur == ']' ||
|
|
|
|
*cur == '{' || *cur == '}' ||
|
|
|
|
*cur == '<' || *cur == '>' )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( *cur == ')' )
|
|
|
|
{
|
|
|
|
parser->error = PSaux_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
parser->cursor = cur;
|
2003-07-24 08:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( void )
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( PS_Parser parser )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_spaces( &parser->cursor, parser->limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* `token' here means either something between balanced delimiters */
|
|
|
|
/* or the next token; the delimiters are not removed. */
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_token( PS_Parser parser,
|
|
|
|
T1_Token token )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Byte* cur;
|
|
|
|
FT_Byte* limit;
|
|
|
|
FT_Byte starter, ender;
|
|
|
|
FT_Int embed;
|
|
|
|
|
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
token->type = T1_TOKEN_TYPE_NONE;
|
2000-08-17 03:09:06 +02:00
|
|
|
token->start = 0;
|
|
|
|
token->limit = 0;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first of all, skip leading whitespace */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
cur = parser->cursor;
|
|
|
|
limit = parser->limit;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch ( *cur )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
/************* check for literal string *****************/
|
|
|
|
case '(':
|
|
|
|
token->type = T1_TOKEN_TYPE_STRING;
|
|
|
|
token->start = cur;
|
|
|
|
skip_literal_string( &cur, limit );
|
|
|
|
if ( cur < limit )
|
|
|
|
token->limit = cur;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/************* check for programs/array *****************/
|
|
|
|
case '{':
|
|
|
|
token->type = T1_TOKEN_TYPE_ARRAY;
|
|
|
|
ender = '}';
|
|
|
|
goto Lookup_Ender;
|
|
|
|
|
|
|
|
/************* check for table/array ********************/
|
|
|
|
case '[':
|
|
|
|
token->type = T1_TOKEN_TYPE_ARRAY;
|
|
|
|
ender = ']';
|
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
Lookup_Ender:
|
|
|
|
embed = 1;
|
|
|
|
starter = *cur;
|
|
|
|
token->start = cur++;
|
|
|
|
|
|
|
|
/* we need this to catch `[ ]' */
|
|
|
|
parser->cursor = cur;
|
|
|
|
ps_parser_skip_spaces( parser );
|
|
|
|
cur = parser->cursor;
|
|
|
|
|
|
|
|
while ( cur < limit && !parser->error )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur == starter )
|
|
|
|
embed++;
|
|
|
|
else if ( *cur == ender )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
embed--;
|
|
|
|
if ( embed <= 0 )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
token->limit = ++cur;
|
|
|
|
break;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
parser->cursor = cur;
|
|
|
|
ps_parser_skip_PS_token( parser );
|
|
|
|
/* we need this to catch `[XXX ]' */
|
|
|
|
ps_parser_skip_spaces ( parser );
|
|
|
|
cur = parser->cursor;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
2003-10-07 07:49:41 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* ************ otherwise, it is any token **************/
|
|
|
|
default:
|
|
|
|
token->start = cur;
|
|
|
|
token->type = T1_TOKEN_TYPE_ANY;
|
|
|
|
ps_parser_skip_PS_token( parser );
|
|
|
|
cur = parser->cursor;
|
|
|
|
if ( !parser->error )
|
|
|
|
token->limit = cur;
|
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( !token->limit )
|
|
|
|
{
|
|
|
|
token->start = 0;
|
|
|
|
token->type = T1_TOKEN_TYPE_NONE;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
2003-10-07 07:49:41 +02:00
|
|
|
|
|
|
|
parser->cursor = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_token_array( PS_Parser parser,
|
|
|
|
T1_Token tokens,
|
|
|
|
FT_UInt max_tokens,
|
|
|
|
FT_Int* pnum_tokens )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_TokenRec master;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
*pnum_tokens = -1;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* this also handles leading whitespace */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_token( parser, &master );
|
2003-10-07 07:49:41 +02:00
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
if ( master.type == T1_TOKEN_TYPE_ARRAY )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Byte* old_cursor = parser->cursor;
|
|
|
|
FT_Byte* old_limit = parser->limit;
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_Token cur = tokens;
|
|
|
|
T1_Token limit = cur + max_tokens;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* don't include outermost delimiters */
|
|
|
|
parser->cursor = master.start + 1;
|
|
|
|
parser->limit = master.limit - 1;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
while ( parser->cursor < parser->limit )
|
|
|
|
{
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_TokenRec token;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_token( parser, &token );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !token.type )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( cur < limit )
|
|
|
|
*cur = token;
|
|
|
|
|
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
|
2001-03-10 18:07:42 +01:00
|
|
|
*pnum_tokens = (FT_Int)( cur - tokens );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
parser->cursor = old_cursor;
|
|
|
|
parser->limit = old_limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be already part of the number */
|
|
|
|
|
2002-05-22 06:53:25 +02:00
|
|
|
static FT_Long
|
|
|
|
T1Radix( FT_Long radixBase,
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* *acur,
|
2002-05-22 06:53:25 +02:00
|
|
|
FT_Byte* limit )
|
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Long result = 0;
|
|
|
|
FT_Byte* cur = *acur;
|
2002-05-22 06:53:25 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( radixBase < 2 || radixBase > 36 )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while ( cur < limit )
|
2002-05-22 06:53:25 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
int d;
|
2002-05-22 06:53:25 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur OP 0x80 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
d = ft_char_table[*cur & 0x7F];
|
|
|
|
if ( d < 0 || d >= radixBase )
|
|
|
|
break;
|
2002-05-22 06:53:25 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
result = result * radixBase + d;
|
2002-05-22 06:53:25 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
cur++;
|
2002-05-22 06:53:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be already part of the number */
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Long
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_toint( FT_Byte* *acur,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Long result = 0;
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
|
|
|
FT_Byte c;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
c = *cur;
|
|
|
|
if ( c == '-' )
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
while ( cur < limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
int d;
|
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur == '#' )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
cur++;
|
2003-10-07 07:49:41 +02:00
|
|
|
result = T1Radix( result, &cur, limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur OP 0x80 )
|
|
|
|
break;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
d = ft_char_table[*cur & 0x7F];
|
|
|
|
if ( d < 0 || d >= 10 )
|
|
|
|
break;
|
|
|
|
result = result * 10 + d;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
cur++;
|
|
|
|
};
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( c == '-' )
|
|
|
|
result = -result;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
Exit:
|
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be `<' if `delimiters' is non-zero */
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
static FT_Error
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tobytes( FT_Byte* *acur,
|
2003-07-24 08:16:21 +02:00
|
|
|
FT_Byte* limit,
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Long max_bytes,
|
2003-07-24 08:16:21 +02:00
|
|
|
FT_Byte* bytes,
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Long* pnum_bytes,
|
|
|
|
FT_Bool delimiters )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
|
|
|
FT_Error error = PSaux_Err_Ok;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2003-10-20 10:29:46 +02:00
|
|
|
FT_Long n = 0;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( delimiters )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur != '<' )
|
|
|
|
{
|
|
|
|
error = PSaux_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur++;
|
2003-07-24 08:16:21 +02:00
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
max_bytes = max_bytes * 2;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
for ( n = 0; cur < limit; n++, cur++ )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
int d;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( n >= max_bytes )
|
|
|
|
/* buffer is full */
|
2003-07-24 08:16:21 +02:00
|
|
|
goto Exit;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* All whitespace characters are ignored. */
|
2003-07-24 08:16:21 +02:00
|
|
|
skip_spaces( &cur, limit );
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
break;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur OP 0x80 )
|
|
|
|
break;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
d = ft_char_table[*cur & 0x7F];
|
|
|
|
if ( d < 0 || d >= 16 )
|
2003-07-24 08:16:21 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* <f> == <f0> != <0f> */
|
2003-10-07 07:49:41 +02:00
|
|
|
bytes[n / 2] = (FT_Byte)( ( n % 2 ) ? bytes[n / 2] + d
|
|
|
|
: d * 16 );
|
2003-07-24 08:16:21 +02:00
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( delimiters )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur < limit && *cur != '>' )
|
|
|
|
{
|
|
|
|
error = PSaux_Err_Invalid_File_Format;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur++;
|
2003-07-24 08:16:21 +02:00
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
2003-07-24 08:16:21 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
*pnum_bytes = ( n + 1 ) / 2;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be already part of the number */
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Long
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tofixed( FT_Byte* *acur,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Long power_ten )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 09:18:04 +02:00
|
|
|
FT_Long num, divider, result;
|
|
|
|
FT_Int sign = 0;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( cur >= limit )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* first of all, check the sign */
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( *cur == '-' && cur + 1 < limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
sign = 1;
|
|
|
|
cur++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* then, read the integer part, if any */
|
|
|
|
if ( *cur != '.' )
|
2003-10-07 07:49:41 +02:00
|
|
|
result = ps_toint( &cur, limit ) << 16;
|
2000-08-17 03:09:06 +02:00
|
|
|
else
|
|
|
|
result = 0;
|
|
|
|
|
|
|
|
num = 0;
|
|
|
|
divider = 1;
|
|
|
|
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* read decimal part, if any */
|
|
|
|
if ( *cur == '.' && cur + 1 < limit )
|
|
|
|
{
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
int d;
|
|
|
|
|
|
|
|
|
|
|
|
if ( *cur OP 0x80 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
d = ft_char_table[*cur & 0x7F];
|
|
|
|
if ( d < 0 || d >= 10 )
|
2000-08-17 03:09:06 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
if ( divider < 10000000L )
|
|
|
|
{
|
|
|
|
num = num * 10 + d;
|
|
|
|
divider *= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur++;
|
|
|
|
if ( cur >= limit )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read exponent, if any */
|
|
|
|
if ( cur + 1 < limit && ( *cur == 'e' || *cur == 'E' ) )
|
|
|
|
{
|
|
|
|
cur++;
|
2003-10-07 07:49:41 +02:00
|
|
|
power_ten += ps_toint( &cur, limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
/* raise to power of ten if needed */
|
|
|
|
while ( power_ten > 0 )
|
|
|
|
{
|
|
|
|
result = result * 10;
|
|
|
|
num = num * 10;
|
|
|
|
power_ten--;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( power_ten < 0 )
|
|
|
|
{
|
|
|
|
result = result / 10;
|
|
|
|
divider = divider * 10;
|
|
|
|
power_ten++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( num )
|
|
|
|
result += FT_DivFix( num, divider );
|
|
|
|
|
|
|
|
if ( sign )
|
|
|
|
result = -result;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be a delimiter or a part of a number */
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Int
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tocoordarray( FT_Byte* *acur,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Int max_coords,
|
|
|
|
FT_Short* coords )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Int count = 0;
|
|
|
|
FT_Byte c, ender;
|
|
|
|
|
|
|
|
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* check for the beginning of an array; otherwise, only one number */
|
|
|
|
/* will be read */
|
2000-08-17 03:09:06 +02:00
|
|
|
c = *cur;
|
|
|
|
ender = 0;
|
|
|
|
|
|
|
|
if ( c == '[' )
|
|
|
|
ender = ']';
|
|
|
|
|
|
|
|
if ( c == '{' )
|
|
|
|
ender = '}';
|
|
|
|
|
|
|
|
if ( ender )
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
/* now, read the coordinates */
|
2003-10-07 07:49:41 +02:00
|
|
|
while ( cur < limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
/* skip whitespace in front of data */
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_spaces( &cur, limit );
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( count >= max_coords )
|
|
|
|
break;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( c == ender )
|
|
|
|
{
|
|
|
|
cur++;
|
2000-08-17 03:09:06 +02:00
|
|
|
break;
|
2003-10-07 07:49:41 +02:00
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
coords[count] = (FT_Short)( ps_tofixed( &cur, limit, 0 ) >> 16 );
|
2000-08-17 03:09:06 +02:00
|
|
|
count++;
|
|
|
|
|
|
|
|
if ( !ender )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first character must be a delimiter or a part of a number */
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_Int
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tofixedarray( FT_Byte* *acur,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Int max_values,
|
|
|
|
FT_Fixed* values,
|
|
|
|
FT_Int power_ten )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Int count = 0;
|
|
|
|
FT_Byte c, ender;
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* Check for the beginning of an array. Otherwise, only one number */
|
|
|
|
/* will be read. */
|
2000-08-17 03:09:06 +02:00
|
|
|
c = *cur;
|
|
|
|
ender = 0;
|
|
|
|
|
|
|
|
if ( c == '[' )
|
|
|
|
ender = ']';
|
|
|
|
|
|
|
|
if ( c == '{' )
|
|
|
|
ender = '}';
|
|
|
|
|
|
|
|
if ( ender )
|
|
|
|
cur++;
|
|
|
|
|
|
|
|
/* now, read the values */
|
2003-10-07 07:49:41 +02:00
|
|
|
while ( cur < limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
/* skip whitespace in front of data */
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_spaces( &cur, limit );
|
|
|
|
if ( cur >= limit )
|
|
|
|
goto Exit;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( count >= max_values )
|
|
|
|
break;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( c == ender )
|
|
|
|
{
|
|
|
|
cur++;
|
2000-08-17 03:09:06 +02:00
|
|
|
break;
|
2003-10-07 07:49:41 +02:00
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
values[count] = ps_tofixed( &cur, limit, power_ten );
|
2000-08-17 03:09:06 +02:00
|
|
|
count++;
|
|
|
|
|
|
|
|
if ( !ender )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static FT_String*
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tostring( FT_Byte** cursor,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Memory memory )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Byte* cur = *cursor;
|
2002-09-17 15:56:44 +02:00
|
|
|
FT_PtrDist len = 0;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Int count;
|
|
|
|
FT_String* result;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: some stupid fonts have a `Notice' or `Copyright' string */
|
|
|
|
/* that simply doesn't begin with an opening parenthesis, even */
|
|
|
|
/* though they have a closing one! E.g. "amuncial.pfb" */
|
|
|
|
/* */
|
|
|
|
/* We must deal with these ill-fated cases there. Note that */
|
|
|
|
/* these fonts didn't work with the old Type 1 driver as the */
|
|
|
|
/* notice/copyright was not recognized as a valid string token */
|
|
|
|
/* and made the old token parser commit errors. */
|
|
|
|
|
|
|
|
while ( cur < limit && ( *cur == ' ' || *cur == '\t' ) )
|
|
|
|
cur++;
|
|
|
|
if ( cur + 1 >= limit )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ( *cur == '(' )
|
|
|
|
cur++; /* skip the opening parenthesis, if there is one */
|
|
|
|
|
|
|
|
*cursor = cur;
|
|
|
|
count = 0;
|
|
|
|
|
|
|
|
/* then, count its length */
|
|
|
|
for ( ; cur < limit; cur++ )
|
|
|
|
{
|
|
|
|
if ( *cur == '(' )
|
|
|
|
count++;
|
|
|
|
|
|
|
|
else if ( *cur == ')' )
|
|
|
|
{
|
|
|
|
count--;
|
|
|
|
if ( count < 0 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = cur - *cursor;
|
2002-03-22 14:52:37 +01:00
|
|
|
if ( cur >= limit || FT_ALLOC( result, len + 1 ) )
|
2000-08-17 03:09:06 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* now copy the string */
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_MEM_COPY( result, *cursor, len );
|
2000-08-17 03:09:06 +02:00
|
|
|
result[len] = '\0';
|
|
|
|
*cursor = cur;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
static int
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_tobool( FT_Byte* *acur,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* limit )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte* cur = *acur;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Bool result = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/* return 1 if we find `true', 0 otherwise */
|
|
|
|
if ( cur + 3 < limit &&
|
2003-10-07 07:49:41 +02:00
|
|
|
cur[0] == 't' &&
|
|
|
|
cur[1] == 'r' &&
|
|
|
|
cur[2] == 'u' &&
|
|
|
|
cur[3] == 'e' )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
result = 1;
|
|
|
|
cur += 5;
|
|
|
|
}
|
|
|
|
else if ( cur + 4 < limit &&
|
2003-10-07 07:49:41 +02:00
|
|
|
cur[0] == 'f' &&
|
|
|
|
cur[1] == 'a' &&
|
|
|
|
cur[2] == 'l' &&
|
|
|
|
cur[3] == 's' &&
|
|
|
|
cur[4] == 'e' )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
result = 0;
|
|
|
|
cur += 6;
|
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
*acur = cur;
|
2000-08-17 03:09:06 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* load a simple field (i.e. non-table) into the current list of objects */
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_load_field( PS_Parser parser,
|
|
|
|
const T1_Field field,
|
|
|
|
void** objects,
|
|
|
|
FT_UInt max_objects,
|
|
|
|
FT_ULong* pflags )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_TokenRec token;
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Byte* cur;
|
|
|
|
FT_Byte* limit;
|
|
|
|
FT_UInt count;
|
|
|
|
FT_UInt idx;
|
|
|
|
FT_Error error;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* this also skips leading whitespace */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_token( parser, &token );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !token.type )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
count = 1;
|
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
ft_mem_table_set, ft_mem_debug_alloc, ft_mem_debug_free,
ft_mem_debug_realloc, ft_mem_debug_done, FT_Alloc_Debug,
FT_Realloc_Debug, FT_Free_Debug): Fix compiler warnings.
* src/base/ftcalc.c (FT_MulFix): Ditto.
* src/cff/cffdrivr.c (cff_get_name_index): Ditto.
* src/cff/cffobjs.c (CFF_Size_Get_Global_Funcs, CFF_Size_Init,
CFF_GlyphSlot_Init): Ditto.
* src/cid/cidobjs.c (CID_GlyphSlot_Init,
CID_Size_Get_Globals_Funcs): Ditto.
* src/type1/t1objs.c (T1_Size_Get_Globals_Funcs, T1_GlyphSlot_Init):
Ditto.
* src/pshinter/pshmod.c (pshinter_interface): Use `static const'.
* src/winfonts/winfnt.c (FNT_Get_Next_Char): Remove unused
variables.
* include/freetype/internal/psaux.h (T1_Builder_Funcs): Renamed
to...
(T1_Builder_FuncsRec): This.
(T1_Builder_Funcs): New typedef.
(PSAux_Interface): Remove compiler warnings.
* src/psaux/psauxmod.c (t1_builder_funcs), src/psaux/psobjs.h
(t1_builder_funcs): Updated.
* src/pshinter/pshglob.h (PSH_Blue_Align): Replaced with ...
(PSH_BLUE_ALIGN_{NONE,TOP,BOT}): New defines.
(PSH_AlignmentRec): Updated.
* include/freetype/internal/ftstream.h (GET_Char, GET_Byte): Fix
typo.
* include/freetype/internal/ftgloadr.h (FT_SubGlyph): Ditto.
* src/base/ftstream (FT_Get_Char): Rename to...
(FT_Stream_Get_Char): This.
* src/base/ftnames.c (FT_Get_Sfnt_Name): s/index/idx/ -- `index' is
a built-in function in gcc, causing warning messages with gcc 3.0.
* src/autohint/ahglyph.c (ah_outline_load): Ditto.
* src/autohint/ahglobal.c (ah_hinter_compute_blues): Ditto.
* src/cache/ftcmanag.c (ftc_family_table_alloc,
ftc_family_table_free, FTC_Manager_Done, FTC_Manager_Register_Cache):
Ditto.
* src/cff/cffload.c (cff_new_index, cff_done_index,
cff_explicit_index, CFF_Access_Element, CFF_Forget_Element,
CFF_Get_Name, CFF_Get_String, CFF_Load_SubFont, CFF_Load_Font,
CFF_Done_Font): Ditto.
* src/psaux/psobjs.c (PS_Table_Add, PS_Parser_LoadField): Ditto.
* src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Ditto.
* src/pshinter/pshrec.c (ps_mask_test_bit, ps_mask_clear_bit,
ps_mask_set_bit, ps_dimension_add_t1stem, ps_hints_t1stem3,
* src/pshinter/pshalgo1.c (psh1_hint_table_record,
psh1_hint_table_record_mask, psh1_hint_table_activate_mask): Ditto.
* src/pshinter/pshalgo2.c (psh2_hint_table_record,
psh2_hint_table_record_mask, psh2_hint_table_activate_mask): Ditto.
* src/sfnt/ttpost.c (Load_Format_20, Load_Format_25,
TT_Get_PS_Name): Ditto.
* src/truetype/ttgload.c (TT_Get_Metrics, Get_HMetrics,
load_truetype_glyph): Ditto.
* src/type1/t1load.c (parse_subrs, T1_Open_Face): Ditto.
* src/type1/t1afm.c (T1_Get_Kerning): Ditto.
* include/freetype/cache/ftcmanag.h (ftc_family_table_free): Ditto.
2002-03-07 22:59:59 +01:00
|
|
|
idx = 0;
|
2000-08-17 03:09:06 +02:00
|
|
|
cur = token.start;
|
|
|
|
limit = token.limit;
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* we must detect arrays in /FontBBox */
|
2002-07-11 13:26:21 +02:00
|
|
|
if ( field->type == T1_FIELD_TYPE_BBOX )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-07-11 13:26:21 +02:00
|
|
|
T1_TokenRec token2;
|
|
|
|
FT_Byte* old_cur = parser->cursor;
|
|
|
|
FT_Byte* old_limit = parser->limit;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
|
2002-07-26 11:09:10 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* don't include delimiters */
|
|
|
|
parser->cursor = token.start + 1;
|
|
|
|
parser->limit = token.limit - 1;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
|
|
|
|
ps_parser_to_token( parser, &token2 );
|
2002-07-11 13:26:21 +02:00
|
|
|
parser->cursor = old_cur;
|
|
|
|
parser->limit = old_limit;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
|
2002-07-11 13:26:21 +02:00
|
|
|
if ( token2.type == T1_TOKEN_TYPE_ARRAY )
|
|
|
|
goto FieldArray;
|
|
|
|
}
|
|
|
|
else if ( token.type == T1_TOKEN_TYPE_ARRAY )
|
|
|
|
{
|
|
|
|
FieldArray:
|
2003-10-07 07:49:41 +02:00
|
|
|
/* if this is an array and we have no blend, an error occurs */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( max_objects == 0 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
count = max_objects;
|
2003-10-07 07:49:41 +02:00
|
|
|
idx = 1;
|
|
|
|
|
|
|
|
/* don't include delimiters */
|
|
|
|
cur++;
|
|
|
|
limit--;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
ft_mem_table_set, ft_mem_debug_alloc, ft_mem_debug_free,
ft_mem_debug_realloc, ft_mem_debug_done, FT_Alloc_Debug,
FT_Realloc_Debug, FT_Free_Debug): Fix compiler warnings.
* src/base/ftcalc.c (FT_MulFix): Ditto.
* src/cff/cffdrivr.c (cff_get_name_index): Ditto.
* src/cff/cffobjs.c (CFF_Size_Get_Global_Funcs, CFF_Size_Init,
CFF_GlyphSlot_Init): Ditto.
* src/cid/cidobjs.c (CID_GlyphSlot_Init,
CID_Size_Get_Globals_Funcs): Ditto.
* src/type1/t1objs.c (T1_Size_Get_Globals_Funcs, T1_GlyphSlot_Init):
Ditto.
* src/pshinter/pshmod.c (pshinter_interface): Use `static const'.
* src/winfonts/winfnt.c (FNT_Get_Next_Char): Remove unused
variables.
* include/freetype/internal/psaux.h (T1_Builder_Funcs): Renamed
to...
(T1_Builder_FuncsRec): This.
(T1_Builder_Funcs): New typedef.
(PSAux_Interface): Remove compiler warnings.
* src/psaux/psauxmod.c (t1_builder_funcs), src/psaux/psobjs.h
(t1_builder_funcs): Updated.
* src/pshinter/pshglob.h (PSH_Blue_Align): Replaced with ...
(PSH_BLUE_ALIGN_{NONE,TOP,BOT}): New defines.
(PSH_AlignmentRec): Updated.
* include/freetype/internal/ftstream.h (GET_Char, GET_Byte): Fix
typo.
* include/freetype/internal/ftgloadr.h (FT_SubGlyph): Ditto.
* src/base/ftstream (FT_Get_Char): Rename to...
(FT_Stream_Get_Char): This.
* src/base/ftnames.c (FT_Get_Sfnt_Name): s/index/idx/ -- `index' is
a built-in function in gcc, causing warning messages with gcc 3.0.
* src/autohint/ahglyph.c (ah_outline_load): Ditto.
* src/autohint/ahglobal.c (ah_hinter_compute_blues): Ditto.
* src/cache/ftcmanag.c (ftc_family_table_alloc,
ftc_family_table_free, FTC_Manager_Done, FTC_Manager_Register_Cache):
Ditto.
* src/cff/cffload.c (cff_new_index, cff_done_index,
cff_explicit_index, CFF_Access_Element, CFF_Forget_Element,
CFF_Get_Name, CFF_Get_String, CFF_Load_SubFont, CFF_Load_Font,
CFF_Done_Font): Ditto.
* src/psaux/psobjs.c (PS_Table_Add, PS_Parser_LoadField): Ditto.
* src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Ditto.
* src/pshinter/pshrec.c (ps_mask_test_bit, ps_mask_clear_bit,
ps_mask_set_bit, ps_dimension_add_t1stem, ps_hints_t1stem3,
* src/pshinter/pshalgo1.c (psh1_hint_table_record,
psh1_hint_table_record_mask, psh1_hint_table_activate_mask): Ditto.
* src/pshinter/pshalgo2.c (psh2_hint_table_record,
psh2_hint_table_record_mask, psh2_hint_table_activate_mask): Ditto.
* src/sfnt/ttpost.c (Load_Format_20, Load_Format_25,
TT_Get_PS_Name): Ditto.
* src/truetype/ttgload.c (TT_Get_Metrics, Get_HMetrics,
load_truetype_glyph): Ditto.
* src/type1/t1load.c (parse_subrs, T1_Open_Face): Ditto.
* src/type1/t1afm.c (T1_Get_Kerning): Ditto.
* include/freetype/cache/ftcmanag.h (ftc_family_table_free): Ditto.
2002-03-07 22:59:59 +01:00
|
|
|
for ( ; count > 0; count--, idx++ )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
ft_mem_table_set, ft_mem_debug_alloc, ft_mem_debug_free,
ft_mem_debug_realloc, ft_mem_debug_done, FT_Alloc_Debug,
FT_Realloc_Debug, FT_Free_Debug): Fix compiler warnings.
* src/base/ftcalc.c (FT_MulFix): Ditto.
* src/cff/cffdrivr.c (cff_get_name_index): Ditto.
* src/cff/cffobjs.c (CFF_Size_Get_Global_Funcs, CFF_Size_Init,
CFF_GlyphSlot_Init): Ditto.
* src/cid/cidobjs.c (CID_GlyphSlot_Init,
CID_Size_Get_Globals_Funcs): Ditto.
* src/type1/t1objs.c (T1_Size_Get_Globals_Funcs, T1_GlyphSlot_Init):
Ditto.
* src/pshinter/pshmod.c (pshinter_interface): Use `static const'.
* src/winfonts/winfnt.c (FNT_Get_Next_Char): Remove unused
variables.
* include/freetype/internal/psaux.h (T1_Builder_Funcs): Renamed
to...
(T1_Builder_FuncsRec): This.
(T1_Builder_Funcs): New typedef.
(PSAux_Interface): Remove compiler warnings.
* src/psaux/psauxmod.c (t1_builder_funcs), src/psaux/psobjs.h
(t1_builder_funcs): Updated.
* src/pshinter/pshglob.h (PSH_Blue_Align): Replaced with ...
(PSH_BLUE_ALIGN_{NONE,TOP,BOT}): New defines.
(PSH_AlignmentRec): Updated.
* include/freetype/internal/ftstream.h (GET_Char, GET_Byte): Fix
typo.
* include/freetype/internal/ftgloadr.h (FT_SubGlyph): Ditto.
* src/base/ftstream (FT_Get_Char): Rename to...
(FT_Stream_Get_Char): This.
* src/base/ftnames.c (FT_Get_Sfnt_Name): s/index/idx/ -- `index' is
a built-in function in gcc, causing warning messages with gcc 3.0.
* src/autohint/ahglyph.c (ah_outline_load): Ditto.
* src/autohint/ahglobal.c (ah_hinter_compute_blues): Ditto.
* src/cache/ftcmanag.c (ftc_family_table_alloc,
ftc_family_table_free, FTC_Manager_Done, FTC_Manager_Register_Cache):
Ditto.
* src/cff/cffload.c (cff_new_index, cff_done_index,
cff_explicit_index, CFF_Access_Element, CFF_Forget_Element,
CFF_Get_Name, CFF_Get_String, CFF_Load_SubFont, CFF_Load_Font,
CFF_Done_Font): Ditto.
* src/psaux/psobjs.c (PS_Table_Add, PS_Parser_LoadField): Ditto.
* src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Ditto.
* src/pshinter/pshrec.c (ps_mask_test_bit, ps_mask_clear_bit,
ps_mask_set_bit, ps_dimension_add_t1stem, ps_hints_t1stem3,
* src/pshinter/pshalgo1.c (psh1_hint_table_record,
psh1_hint_table_record_mask, psh1_hint_table_activate_mask): Ditto.
* src/pshinter/pshalgo2.c (psh2_hint_table_record,
psh2_hint_table_record_mask, psh2_hint_table_activate_mask): Ditto.
* src/sfnt/ttpost.c (Load_Format_20, Load_Format_25,
TT_Get_PS_Name): Ditto.
* src/truetype/ttgload.c (TT_Get_Metrics, Get_HMetrics,
load_truetype_glyph): Ditto.
* src/type1/t1load.c (parse_subrs, T1_Open_Face): Ditto.
* src/type1/t1afm.c (T1_Get_Kerning): Ditto.
* include/freetype/cache/ftcmanag.h (ftc_family_table_free): Ditto.
2002-03-07 22:59:59 +01:00
|
|
|
FT_Byte* q = (FT_Byte*)objects[idx] + field->offset;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_Long val;
|
|
|
|
FT_String* string;
|
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
skip_spaces( &cur, limit );
|
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
switch ( field->type )
|
|
|
|
{
|
2002-02-28 17:10:29 +01:00
|
|
|
case T1_FIELD_TYPE_BOOL:
|
2003-10-07 07:49:41 +02:00
|
|
|
val = ps_tobool( &cur, limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Store_Integer;
|
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
case T1_FIELD_TYPE_FIXED:
|
2003-10-07 07:49:41 +02:00
|
|
|
val = ps_tofixed( &cur, limit, 0 );
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Store_Integer;
|
|
|
|
|
2003-06-06 07:07:53 +02:00
|
|
|
case T1_FIELD_TYPE_FIXED_1000:
|
2003-10-07 07:49:41 +02:00
|
|
|
val = ps_tofixed( &cur, limit, 3 );
|
2003-06-06 07:07:53 +02:00
|
|
|
goto Store_Integer;
|
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
case T1_FIELD_TYPE_INTEGER:
|
2003-10-07 07:49:41 +02:00
|
|
|
val = ps_toint( &cur, limit );
|
|
|
|
/* fall through */
|
Avoid overwriting of numeric font dictionary entries for synthetic
fonts. Additionally, some entries were handled as `integer' instead
of `number'.
* include/freetype/internal/psaux.h (T1_FieldType): Add
T1_FIELD_TYPE_BOOL_P, T1_FIELD_TYPE_INTEGER_P, and
T1_FIELD_TYPE_FIXED_P.
(T1_FIELD_BOOL_P, T1_FIELD_NUM_P, T1_FIELD_FIXED_P): New macros.
* src/psaux/psobjs.c (ps_parser_load_field): Handle new field types.
* include/freetype/internal/cfftypes.h (CFF_FontRecDict),
src/cff/cfftoken.h: Change type of underline_position and
underline_thickness to FT_Fixed.
* src/cff/cffload.c (cff_subfont_load): Fix default values of
underline_position and underline_thickness.
* src/cff/cffobjs.c (cff_face_init): Set underline_position
and underline_thickness in `root'.
* include/freetype/internal/t1types.h (T1_Font): Change point_type
and stroke_width to pointers.
* include/freetype/t1tables.h (PS_FontInfo): Change italic_angle,
is_fixed_pitch, underline_position, and underline_thickness to
pointers.
* src/type1/t1tokens.h: Change italic_angle, is_fixed_pitch,
underline_position, and underline_thickness to pointers. Change
the type of the latter two to `fixed'.
Change type of stroke_width to `fixed' and make it a pointer.
Change paint_type to pointer.
* src/type1/t1objs.c (T1_Face_Done): Updated.
(T1_Face_Init): Updated.
Fix assignment of underline_position and underline_thickness.
* src/cid/cidtoken.h: Change italic_angle, is_fixed_pitch,
underline_position, and underline_thickness to pointers. Change
the type of the latter two to `fixed'.
Change type of stroke_width to `fixed'.
* src/cid/cidobjs.c (cid_face_done): Updated.
(cid_face_init): Updated.
Fix assignment of underline_position and underline_thickness.
* src/type42/t42parse.c: Change italic_angle, is_fixed_pitch,
underline_position, and underline_thickness to pointers. Change the
type of the latter two to `fixed'.
Change type of stroke_width to `fixed' and make it a pointer.
Change paint_type to pointer.
* src/type42/t42objs.c (T42_Face_Init): Updated.
Fix assignment of underline_position and underline_thickness.
(T42_Face_Done): Updated.
* src/base/ftobjs.c (open_face_from_buffer): Fix compiler warning.
* src/pshinter/pshglob.c, src/pshinter/pshglob.h
(psh_globals_set_scale): Make it a local function.
* test/gview.c: Fix remaming ps3->ps typo.
Formatting.
2003-05-30 11:12:50 +02:00
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
Store_Integer:
|
|
|
|
switch ( field->size )
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
*(FT_Byte*)q = (FT_Byte)val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
*(FT_UShort*)q = (FT_UShort)val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
*(FT_UInt32*)q = (FT_UInt32)val;
|
|
|
|
break;
|
|
|
|
|
2002-03-31 13:18:15 +02:00
|
|
|
default: /* for 64-bit systems */
|
2000-08-17 03:09:06 +02:00
|
|
|
*(FT_Long*)q = val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-02-28 17:10:29 +01:00
|
|
|
case T1_FIELD_TYPE_STRING:
|
2003-06-12 15:14:15 +02:00
|
|
|
case T1_FIELD_TYPE_KEY:
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = parser->memory;
|
2001-03-10 18:07:42 +01:00
|
|
|
FT_UInt len = (FT_UInt)( limit - cur );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( cur >= limit )
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* with synthetic fonts, it is possible to find a field twice */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( *(FT_String**)q )
|
|
|
|
break;
|
|
|
|
|
2003-06-12 15:14:15 +02:00
|
|
|
if ( field->type == T1_FIELD_TYPE_KEY )
|
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
/* don't include leading `/' */
|
2003-06-12 15:14:15 +02:00
|
|
|
len--;
|
|
|
|
cur++;
|
|
|
|
}
|
2003-10-07 07:49:41 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* don't include delimiting parentheses */
|
|
|
|
cur++;
|
|
|
|
len -= 2;
|
|
|
|
}
|
2003-06-12 15:14:15 +02:00
|
|
|
|
2002-03-22 14:52:37 +01:00
|
|
|
if ( FT_ALLOC( string, len + 1 ) )
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Exit;
|
|
|
|
|
2002-03-22 14:52:37 +01:00
|
|
|
FT_MEM_COPY( string, cur, len );
|
2000-08-17 03:09:06 +02:00
|
|
|
string[len] = 0;
|
|
|
|
|
|
|
|
*(FT_String**)q = string;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-07-11 13:26:21 +02:00
|
|
|
case T1_FIELD_TYPE_BBOX:
|
|
|
|
{
|
|
|
|
FT_Fixed temp[4];
|
|
|
|
FT_BBox* bbox = (FT_BBox*)q;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
|
2002-07-26 11:09:10 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
(void)ps_tofixedarray( &token.start, token.limit, 4, temp, 0 );
|
2002-07-11 13:26:21 +02:00
|
|
|
|
|
|
|
bbox->xMin = FT_RoundFix( temp[0] );
|
|
|
|
bbox->yMin = FT_RoundFix( temp[1] );
|
|
|
|
bbox->xMax = FT_RoundFix( temp[2] );
|
|
|
|
bbox->yMax = FT_RoundFix( temp[3] );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
default:
|
|
|
|
/* an error occured */
|
|
|
|
goto Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
#if 0 /* obsolete -- keep for reference */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( pflags )
|
|
|
|
*pflags |= 1L << field->flag_bit;
|
2000-08-24 00:47:44 +02:00
|
|
|
#else
|
2000-10-31 21:42:18 +01:00
|
|
|
FT_UNUSED( pflags );
|
2000-08-24 00:47:44 +02:00
|
|
|
#endif
|
2000-08-17 03:09:06 +02:00
|
|
|
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
error = PSaux_Err_Ok;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
|
|
|
|
Fail:
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
error = PSaux_Err_Invalid_File_Format;
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define T1_MAX_TABLE_ELEMENTS 32
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_load_field_table( PS_Parser parser,
|
|
|
|
const T1_Field field,
|
|
|
|
void** objects,
|
|
|
|
FT_UInt max_objects,
|
|
|
|
FT_ULong* pflags )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-03-31 13:18:15 +02:00
|
|
|
T1_TokenRec elements[T1_MAX_TABLE_ELEMENTS];
|
|
|
|
T1_Token token;
|
|
|
|
FT_Int num_elements;
|
|
|
|
FT_Error error = 0;
|
|
|
|
FT_Byte* old_cursor;
|
|
|
|
FT_Byte* old_limit;
|
|
|
|
T1_FieldRec fieldrec = *(T1_Field)field;
|
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2000-08-24 00:47:44 +02:00
|
|
|
#if 1
|
2002-02-28 17:10:29 +01:00
|
|
|
fieldrec.type = T1_FIELD_TYPE_INTEGER;
|
|
|
|
if ( field->type == T1_FIELD_TYPE_FIXED_ARRAY )
|
|
|
|
fieldrec.type = T1_FIELD_TYPE_FIXED;
|
2000-08-24 00:47:44 +02:00
|
|
|
#endif
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_to_token_array( parser, elements,
|
|
|
|
T1_MAX_TABLE_ELEMENTS, &num_elements );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( num_elements < 0 )
|
|
|
|
goto Fail;
|
|
|
|
|
|
|
|
if ( num_elements > T1_MAX_TABLE_ELEMENTS )
|
|
|
|
num_elements = T1_MAX_TABLE_ELEMENTS;
|
|
|
|
|
|
|
|
old_cursor = parser->cursor;
|
|
|
|
old_limit = parser->limit;
|
|
|
|
|
|
|
|
/* we store the elements count */
|
2001-06-20 01:03:41 +02:00
|
|
|
*(FT_Byte*)( (FT_Byte*)objects[0] + field->count_offset ) =
|
|
|
|
(FT_Byte)num_elements;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
/* we now load each element, adjusting the field.offset on each one */
|
|
|
|
token = elements;
|
|
|
|
for ( ; num_elements > 0; num_elements--, token++ )
|
|
|
|
{
|
|
|
|
parser->cursor = token->start;
|
|
|
|
parser->limit = token->limit;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_load_field( parser, &fieldrec, objects, max_objects, 0 );
|
2000-08-17 03:09:06 +02:00
|
|
|
fieldrec.offset += fieldrec.size;
|
|
|
|
}
|
|
|
|
|
2000-08-24 00:47:44 +02:00
|
|
|
#if 0 /* obsolete -- keep for reference */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( pflags )
|
|
|
|
*pflags |= 1L << field->flag_bit;
|
2000-08-24 00:47:44 +02:00
|
|
|
#else
|
2000-10-31 21:42:18 +01:00
|
|
|
FT_UNUSED( pflags );
|
2000-08-24 00:47:44 +02:00
|
|
|
#endif
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
parser->cursor = old_cursor;
|
|
|
|
parser->limit = old_limit;
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
|
|
|
|
Fail:
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
error = PSaux_Err_Invalid_File_Format;
|
2000-08-17 03:09:06 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Long )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_int( PS_Parser parser )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
|
|
|
return ps_toint( &parser->cursor, parser->limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-24 08:16:21 +02:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
|
|
|
ps_parser_to_bytes( PS_Parser parser,
|
|
|
|
FT_Byte* bytes,
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Long max_bytes,
|
|
|
|
FT_Long* pnum_bytes,
|
|
|
|
FT_Bool delimiters )
|
2003-07-24 08:16:21 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
2003-07-24 08:16:21 +02:00
|
|
|
return ps_tobytes( &parser->cursor,
|
|
|
|
parser->limit,
|
|
|
|
max_bytes,
|
|
|
|
bytes,
|
2003-10-07 07:49:41 +02:00
|
|
|
pnum_bytes,
|
|
|
|
delimiters );
|
2003-07-24 08:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Fixed )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_fixed( PS_Parser parser,
|
|
|
|
FT_Int power_ten )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
|
|
|
return ps_tofixed( &parser->cursor, parser->limit, power_ten );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Int )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_coord_array( PS_Parser parser,
|
|
|
|
FT_Int max_coords,
|
|
|
|
FT_Short* coords )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
|
|
|
return ps_tocoordarray( &parser->cursor, parser->limit,
|
2000-08-17 03:09:06 +02:00
|
|
|
max_coords, coords );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Int )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_to_fixed_array( PS_Parser parser,
|
|
|
|
FT_Int max_values,
|
|
|
|
FT_Fixed* values,
|
|
|
|
FT_Int power_ten )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
ps_parser_skip_spaces( parser );
|
|
|
|
return ps_tofixedarray( &parser->cursor, parser->limit,
|
2000-08-17 03:09:06 +02:00
|
|
|
max_values, values, power_ten );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_String* )
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_ToString( PS_Parser parser )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
return ps_tostring( &parser->cursor, parser->limit, parser->memory );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Bool )
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_ToBool( PS_Parser parser )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
return ps_tobool( &parser->cursor, parser->limit );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_init( PS_Parser parser,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Byte* base,
|
|
|
|
FT_Byte* limit,
|
|
|
|
FT_Memory memory )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2003-10-07 07:49:41 +02:00
|
|
|
parser->error = PSaux_Err_Ok;
|
2000-08-17 03:09:06 +02:00
|
|
|
parser->base = base;
|
2000-08-21 06:58:49 +02:00
|
|
|
parser->limit = limit;
|
2000-08-17 03:09:06 +02:00
|
|
|
parser->cursor = base;
|
|
|
|
parser->memory = memory;
|
2002-02-28 17:10:29 +01:00
|
|
|
parser->funcs = ps_parser_funcs;
|
2000-10-31 21:42:18 +01:00
|
|
|
}
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
ps_parser_done( PS_Parser parser )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2000-08-17 09:18:04 +02:00
|
|
|
FT_UNUSED( parser );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** T1 BUILDER *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
/* t1_builder_init */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Initializes a given glyph builder. */
|
|
|
|
/* */
|
|
|
|
/* <InOut> */
|
|
|
|
/* builder :: A pointer to the glyph builder to initialize. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* face :: The current face object. */
|
|
|
|
/* */
|
|
|
|
/* size :: The current size object. */
|
|
|
|
/* */
|
|
|
|
/* glyph :: The current glyph object. */
|
|
|
|
/* */
|
2002-03-31 13:18:15 +02:00
|
|
|
/* hinting :: Whether hinting should be applied. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_init( T1_Builder builder,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Face face,
|
|
|
|
FT_Size size,
|
2001-10-18 13:49:26 +02:00
|
|
|
FT_GlyphSlot glyph,
|
|
|
|
FT_Bool hinting )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
builder->path_begun = 0;
|
|
|
|
builder->load_points = 1;
|
|
|
|
|
|
|
|
builder->face = face;
|
|
|
|
builder->glyph = glyph;
|
2000-08-21 06:58:49 +02:00
|
|
|
builder->memory = face->memory;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
if ( glyph )
|
|
|
|
{
|
2002-02-24 03:59:24 +01:00
|
|
|
FT_GlyphLoader loader = glyph->internal->loader;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
2001-12-05 02:22:05 +01:00
|
|
|
builder->loader = loader;
|
|
|
|
builder->base = &loader->base.outline;
|
|
|
|
builder->current = &loader->current.outline;
|
2000-08-17 03:09:06 +02:00
|
|
|
FT_GlyphLoader_Rewind( loader );
|
2001-10-18 13:49:26 +02:00
|
|
|
|
|
|
|
builder->hints_globals = size->internal;
|
|
|
|
builder->hints_funcs = 0;
|
2002-02-24 03:59:24 +01:00
|
|
|
|
2001-12-05 02:22:05 +01:00
|
|
|
if ( hinting )
|
2001-10-18 13:49:26 +02:00
|
|
|
builder->hints_funcs = glyph->internal->glyph_hints;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( size )
|
|
|
|
{
|
|
|
|
builder->scale_x = size->metrics.x_scale;
|
|
|
|
builder->scale_y = size->metrics.y_scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
builder->pos_x = 0;
|
|
|
|
builder->pos_y = 0;
|
|
|
|
|
|
|
|
builder->left_bearing.x = 0;
|
|
|
|
builder->left_bearing.y = 0;
|
|
|
|
builder->advance.x = 0;
|
|
|
|
builder->advance.y = 0;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-08-23 04:47:57 +02:00
|
|
|
builder->funcs = t1_builder_funcs;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
/* t1_builder_done */
|
2000-08-17 03:09:06 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Finalizes a given glyph builder. Its contents can still be used */
|
|
|
|
/* after the call, but the function saves important information */
|
|
|
|
/* within the corresponding glyph slot. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* builder :: A pointer to the glyph builder to finalize. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_done( T1_Builder builder )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2000-08-21 06:58:49 +02:00
|
|
|
FT_GlyphSlot glyph = builder->glyph;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( glyph )
|
2000-08-21 06:58:49 +02:00
|
|
|
glyph->outline = *builder->base;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-31 13:18:15 +02:00
|
|
|
/* check that there is enough space for `count' more points */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_check_points( T1_Builder builder,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Int count )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
2002-03-14 13:56:35 +01:00
|
|
|
return FT_GlyphLoader_CheckPoints( builder->loader, count, 0 );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* add a new point, do not check space */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_add_point( T1_Builder builder,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Pos x,
|
|
|
|
FT_Pos y,
|
|
|
|
FT_Byte flag )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Outline* outline = builder->current;
|
|
|
|
|
|
|
|
|
|
|
|
if ( builder->load_points )
|
|
|
|
{
|
|
|
|
FT_Vector* point = outline->points + outline->n_points;
|
|
|
|
FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points;
|
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
|
|
|
if ( builder->shift )
|
2000-08-23 00:36:33 +02:00
|
|
|
{
|
|
|
|
x >>= 16;
|
|
|
|
y >>= 16;
|
|
|
|
}
|
|
|
|
point->x = x;
|
|
|
|
point->y = y;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
*control = (FT_Byte)( flag ? FT_CURVE_TAG_ON : FT_CURVE_TAG_CUBIC );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
builder->last = *point;
|
|
|
|
}
|
|
|
|
outline->n_points++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* check space for a new on-curve point, then add it */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
2002-09-05 17:10:54 +02:00
|
|
|
t1_builder_add_point1( T1_Builder builder,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Pos x,
|
|
|
|
FT_Pos y )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
error = t1_builder_check_points( builder, 1 );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_add_point( builder, x, y, 1 );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-12 16:38:39 +01:00
|
|
|
/* check space for a new contour, then add it */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_add_contour( T1_Builder builder )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Outline* outline = builder->current;
|
|
|
|
FT_Error error;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !builder->load_points )
|
|
|
|
{
|
|
|
|
outline->n_contours++;
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
return PSaux_Err_Ok;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
2002-03-14 13:56:35 +01:00
|
|
|
error = FT_GlyphLoader_CheckPoints( builder->loader, 0, 1 );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !error )
|
|
|
|
{
|
|
|
|
if ( outline->n_contours > 0 )
|
2001-06-20 01:03:41 +02:00
|
|
|
outline->contours[outline->n_contours - 1] =
|
|
|
|
(short)( outline->n_points - 1 );
|
2000-08-17 03:09:06 +02:00
|
|
|
|
|
|
|
outline->n_contours++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* if a path was begun, add its first on-curve point */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_start_point( T1_Builder builder,
|
2002-03-31 13:18:15 +02:00
|
|
|
FT_Pos x,
|
|
|
|
FT_Pos y )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Error error = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/* test whether we are building a new contour */
|
|
|
|
if ( !builder->path_begun )
|
|
|
|
{
|
|
|
|
builder->path_begun = 1;
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
error = t1_builder_add_contour( builder );
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( !error )
|
2002-09-05 17:10:54 +02:00
|
|
|
error = t1_builder_add_point1( builder, x, y );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* close the current contour */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_builder_close_contour( T1_Builder builder )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
FT_Outline* outline = builder->current;
|
|
|
|
|
2000-10-11 07:52:42 +02:00
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
/* XXXX: We must not include the last point in the path if it */
|
|
|
|
/* is located on the first point. */
|
|
|
|
if ( outline->n_points > 1 )
|
|
|
|
{
|
2000-10-11 07:52:42 +02:00
|
|
|
FT_Int first = 0;
|
|
|
|
FT_Vector* p1 = outline->points + first;
|
|
|
|
FT_Vector* p2 = outline->points + outline->n_points - 1;
|
|
|
|
FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points - 1;
|
2000-08-17 03:09:06 +02:00
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( outline->n_contours > 1 )
|
|
|
|
{
|
|
|
|
first = outline->contours[outline->n_contours - 2] + 1;
|
|
|
|
p1 = outline->points + first;
|
|
|
|
}
|
|
|
|
|
2000-10-11 07:52:42 +02:00
|
|
|
/* `delete' last point only if it coincides with the first */
|
|
|
|
/* point and it is not a control point (which can happen). */
|
2000-08-17 03:09:06 +02:00
|
|
|
if ( p1->x == p2->x && p1->y == p2->y )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
if ( *control == FT_CURVE_TAG_ON )
|
2000-10-11 07:52:42 +02:00
|
|
|
outline->n_points--;
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( outline->n_contours > 0 )
|
2001-06-20 01:03:41 +02:00
|
|
|
outline->contours[outline->n_contours - 1] =
|
|
|
|
(short)( outline->n_points - 1 );
|
2000-08-17 03:09:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** OTHER *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
t1_decrypt( FT_Byte* buffer,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Offset length,
|
|
|
|
FT_UShort seed )
|
2000-08-17 03:09:06 +02:00
|
|
|
{
|
|
|
|
while ( length > 0 )
|
|
|
|
{
|
|
|
|
FT_Byte plain;
|
|
|
|
|
|
|
|
|
2001-06-20 01:03:41 +02:00
|
|
|
plain = (FT_Byte)( *buffer ^ ( seed >> 8 ) );
|
2001-07-03 14:45:24 +02:00
|
|
|
seed = (FT_UShort)( ( *buffer + seed ) * 52845U + 22719 );
|
2000-08-17 03:09:06 +02:00
|
|
|
*buffer++ = plain;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-17 09:18:04 +02:00
|
|
|
/* END */
|