2000-07-19 22:02:14 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ahglyph.c */
|
|
|
|
/* */
|
2000-07-23 23:27:52 +02:00
|
|
|
/* Routines used to load and analyze a given glyph before hinting */
|
|
|
|
/* (body). */
|
2000-07-19 22:02:14 +02:00
|
|
|
/* */
|
2001-06-28 19:49:10 +02:00
|
|
|
/* Copyright 2000-2001 Catharon Productions Inc. */
|
2000-07-19 22:02:14 +02:00
|
|
|
/* Author: David Turner */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the Catharon Typography Project and shall only */
|
|
|
|
/* be used, modified, and distributed under the terms of the Catharon */
|
|
|
|
/* Open Source License that should come with this file under the name */
|
2000-07-26 16:11:15 +02:00
|
|
|
/* `CatharonLicense.txt'. By continuing to use, modify, or distribute */
|
2000-07-19 22:02:14 +02:00
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
2000-07-23 23:27:52 +02:00
|
|
|
/* Note that this license is compatible with the FreeType license. */
|
2000-07-19 22:02:14 +02:00
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "ahglyph.h"
|
|
|
|
#include "ahangles.h"
|
|
|
|
#include "ahglobal.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
|
|
|
#include "aherrors.h"
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2001-05-14 16:04:23 +02:00
|
|
|
#ifdef AH_DEBUG
|
|
|
|
|
2001-06-27 18:18:10 +02:00
|
|
|
void
|
|
|
|
ah_dump_edges( AH_Outline* outline )
|
2001-05-14 16:04:23 +02:00
|
|
|
{
|
|
|
|
AH_Edge* edges;
|
|
|
|
AH_Edge* edge_limit;
|
|
|
|
AH_Segment* segments;
|
|
|
|
FT_Int dimension;
|
|
|
|
|
|
|
|
edges = outline->horz_edges;
|
|
|
|
edge_limit = edges + outline->num_hedges;
|
|
|
|
segments = outline->horz_segments;
|
|
|
|
|
|
|
|
for ( dimension = 1; dimension >= 0; dimension-- )
|
|
|
|
{
|
|
|
|
AH_Edge* edge;
|
|
|
|
|
|
|
|
|
|
|
|
printf ( "Table of %s edges:\n",
|
|
|
|
!dimension ? "vertical" : "horizontal" );
|
|
|
|
printf ( " [ index | pos | dir | link |"
|
|
|
|
" serif | blue | opos | pos ]\n" );
|
|
|
|
|
|
|
|
for ( edge = edges; edge < edge_limit; edge++ )
|
|
|
|
{
|
|
|
|
printf ( " [ %5d | %4d | %5s | %4d | %5d | %c | %5.2f | %5.2f ]\n",
|
|
|
|
edge - edges,
|
|
|
|
(int)edge->fpos,
|
|
|
|
edge->dir == ah_dir_up
|
|
|
|
? "up"
|
|
|
|
: ( edge->dir == ah_dir_down
|
|
|
|
? "down"
|
|
|
|
: ( edge->dir == ah_dir_left
|
|
|
|
? "left"
|
|
|
|
: ( edge->dir == ah_dir_right
|
|
|
|
? "right"
|
|
|
|
: "none" ) ) ),
|
|
|
|
edge->link ? ( edge->link - edges ) : -1,
|
|
|
|
edge->serif ? ( edge->serif - edges ) : -1,
|
|
|
|
edge->blue_edge ? 'y' : 'n',
|
|
|
|
edge->opos / 64.0,
|
|
|
|
edge->pos / 64.0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
edges = outline->vert_edges;
|
|
|
|
edge_limit = edges + outline->num_vedges;
|
|
|
|
segments = outline->vert_segments;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* A function used to dump the array of linked segments */
|
2001-06-27 18:18:10 +02:00
|
|
|
void
|
|
|
|
ah_dump_segments( AH_Outline* outline )
|
2001-05-14 16:04:23 +02:00
|
|
|
{
|
|
|
|
AH_Segment* segments;
|
|
|
|
AH_Segment* segment_limit;
|
|
|
|
AH_Point* points;
|
|
|
|
FT_Int dimension;
|
|
|
|
|
|
|
|
|
|
|
|
points = outline->points;
|
|
|
|
segments = outline->horz_segments;
|
|
|
|
segment_limit = segments + outline->num_hsegments;
|
|
|
|
|
|
|
|
for ( dimension = 1; dimension >= 0; dimension-- )
|
|
|
|
{
|
|
|
|
AH_Segment* seg;
|
|
|
|
|
|
|
|
|
|
|
|
printf ( "Table of %s segments:\n",
|
|
|
|
!dimension ? "vertical" : "horizontal" );
|
|
|
|
printf ( " [ index | pos | dir | link | serif |"
|
|
|
|
" numl | first | start ]\n" );
|
|
|
|
|
|
|
|
for ( seg = segments; seg < segment_limit; seg++ )
|
|
|
|
{
|
|
|
|
printf ( " [ %5d | %4d | %5s | %4d | %5d | %4d | %5d | %5d ]\n",
|
|
|
|
seg - segments,
|
|
|
|
(int)seg->pos,
|
|
|
|
seg->dir == ah_dir_up
|
|
|
|
? "up"
|
|
|
|
: ( seg->dir == ah_dir_down
|
|
|
|
? "down"
|
|
|
|
: ( seg->dir == ah_dir_left
|
|
|
|
? "left"
|
|
|
|
: ( seg->dir == ah_dir_right
|
|
|
|
? "right"
|
|
|
|
: "none" ) ) ),
|
|
|
|
seg->link ? (seg->link-segments) : -1,
|
|
|
|
seg->serif ? (seg->serif-segments) : -1,
|
|
|
|
(int)seg->num_linked,
|
|
|
|
seg->first - points,
|
|
|
|
seg->last - points );
|
|
|
|
}
|
|
|
|
|
|
|
|
segments = outline->vert_segments;
|
|
|
|
segment_limit = segments + outline->num_vsegments;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* AH_DEBUG */
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
/* compute the direction value of a given vector.. */
|
2001-06-27 18:18:10 +02:00
|
|
|
static AH_Direction
|
|
|
|
ah_compute_direction( FT_Pos dx,
|
|
|
|
FT_Pos dy )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
AH_Direction dir;
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Pos ax = ABS( dx );
|
|
|
|
FT_Pos ay = ABS( dy );
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
dir = ah_dir_none;
|
|
|
|
|
|
|
|
/* test for vertical direction */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( ax * 12 < ay )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
dir = dy > 0 ? ah_dir_up : ah_dir_down;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
/* test for horizontal direction */
|
2000-07-23 23:27:52 +02:00
|
|
|
else if ( ay * 12 < ax )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
dir = dx > 0 ? ah_dir_right : ah_dir_left;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-27 17:59:08 +02:00
|
|
|
/* this function is used by ah_get_orientation (see below) to test */
|
2000-07-27 18:57:35 +02:00
|
|
|
/* the fill direction of a given bbox extrema */
|
2001-06-27 18:18:10 +02:00
|
|
|
static int
|
|
|
|
ah_test_extrema( FT_Outline* outline,
|
|
|
|
int n )
|
2000-07-27 17:59:08 +02:00
|
|
|
{
|
|
|
|
FT_Vector *prev, *cur, *next;
|
|
|
|
FT_Pos product;
|
|
|
|
FT_Int first, last, c;
|
|
|
|
|
|
|
|
|
|
|
|
/* we need to compute the `previous' and `next' point */
|
2000-07-27 18:57:35 +02:00
|
|
|
/* for these extrema */
|
|
|
|
cur = outline->points + n;
|
|
|
|
prev = cur - 1;
|
|
|
|
next = cur + 1;
|
2000-07-27 17:59:08 +02:00
|
|
|
|
|
|
|
first = 0;
|
|
|
|
for ( c = 0; c < outline->n_contours; c++ )
|
|
|
|
{
|
|
|
|
last = outline->contours[c];
|
|
|
|
|
|
|
|
if ( n == first )
|
|
|
|
prev = outline->points + last;
|
|
|
|
|
|
|
|
if ( n == last )
|
|
|
|
next = outline->points + first;
|
|
|
|
|
|
|
|
first = last + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
product = FT_MulDiv( cur->x - prev->x, /* in.x */
|
|
|
|
next->y - cur->y, /* out.y */
|
|
|
|
0x40 )
|
|
|
|
-
|
|
|
|
FT_MulDiv( cur->y - prev->y, /* in.y */
|
|
|
|
next->x - cur->x, /* out.x */
|
|
|
|
0x40 );
|
|
|
|
|
|
|
|
if ( product )
|
|
|
|
product = product > 0 ? 2 : 1;
|
|
|
|
|
|
|
|
return product;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute the orientation of path filling. It differs between TrueType */
|
|
|
|
/* and Type1 formats. We could use the `ft_outline_reverse_fill' flag, */
|
|
|
|
/* but it is better to re-compute it directly (it seems that this flag */
|
|
|
|
/* isn't correctly set for some weird composite glyphs currently). */
|
|
|
|
/* */
|
|
|
|
/* We do this by computing bounding box points, and computing their */
|
|
|
|
/* curvature. */
|
|
|
|
/* */
|
|
|
|
/* The function returns either 1 or -1. */
|
|
|
|
/* */
|
2001-06-27 18:18:10 +02:00
|
|
|
static int
|
|
|
|
ah_get_orientation( FT_Outline* outline )
|
2000-07-27 17:59:08 +02:00
|
|
|
{
|
|
|
|
FT_BBox box;
|
|
|
|
FT_BBox indices;
|
|
|
|
int n, last;
|
|
|
|
|
|
|
|
|
|
|
|
indices.xMin = -1;
|
|
|
|
indices.yMin = -1;
|
|
|
|
indices.xMax = -1;
|
|
|
|
indices.yMax = -1;
|
|
|
|
|
2001-06-18 16:23:45 +02:00
|
|
|
box.xMin = box.yMin = 32767L;
|
|
|
|
box.xMax = box.yMax = -32768L;
|
2000-07-27 17:59:08 +02:00
|
|
|
|
2000-07-27 18:57:35 +02:00
|
|
|
/* is it empty? */
|
2000-07-27 17:59:08 +02:00
|
|
|
if ( outline->n_contours < 1 )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
last = outline->contours[outline->n_contours - 1];
|
|
|
|
|
|
|
|
for ( n = 0; n <= last; n++ )
|
|
|
|
{
|
|
|
|
FT_Pos x, y;
|
|
|
|
|
|
|
|
|
|
|
|
x = outline->points[n].x;
|
|
|
|
if ( x < box.xMin )
|
|
|
|
{
|
|
|
|
box.xMin = x;
|
|
|
|
indices.xMin = n;
|
|
|
|
}
|
|
|
|
if ( x > box.xMax )
|
|
|
|
{
|
|
|
|
box.xMax = x;
|
|
|
|
indices.xMax = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
y = outline->points[n].y;
|
|
|
|
if ( y < box.yMin )
|
|
|
|
{
|
|
|
|
box.yMin = y;
|
|
|
|
indices.yMin = n;
|
|
|
|
}
|
|
|
|
if ( y > box.yMax )
|
|
|
|
{
|
|
|
|
box.yMax = y;
|
|
|
|
indices.yMax = n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* test orientation of the xmin */
|
|
|
|
n = ah_test_extrema( outline, indices.xMin );
|
2000-07-27 18:57:35 +02:00
|
|
|
if ( n )
|
|
|
|
goto Exit;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-07-27 17:59:08 +02:00
|
|
|
n = ah_test_extrema( outline, indices.yMin );
|
2000-07-27 18:57:35 +02:00
|
|
|
if ( n )
|
|
|
|
goto Exit;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-07-27 17:59:08 +02:00
|
|
|
n = ah_test_extrema( outline, indices.xMax );
|
2000-07-27 18:57:35 +02:00
|
|
|
if ( n )
|
|
|
|
goto Exit;
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-07-27 17:59:08 +02:00
|
|
|
n = ah_test_extrema( outline, indices.yMax );
|
2000-07-27 18:57:35 +02:00
|
|
|
if ( !n )
|
2000-07-27 17:59:08 +02:00
|
|
|
n = 1;
|
|
|
|
|
|
|
|
Exit:
|
2000-10-31 21:42:18 +01:00
|
|
|
return n;
|
2000-07-27 17:59:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_new */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Creates a new and empty AH_Outline object. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_new( FT_Memory memory,
|
|
|
|
AH_Outline** aoutline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Error error;
|
|
|
|
AH_Outline* outline;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
if ( !ALLOC( outline, sizeof ( *outline ) ) )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
outline->memory = memory;
|
|
|
|
*aoutline = outline;
|
|
|
|
}
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_done */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Destroys a given AH_Outline object. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_done( AH_Outline* outline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = outline->memory;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
FREE( outline->horz_edges );
|
|
|
|
FREE( outline->horz_segments );
|
|
|
|
FREE( outline->contours );
|
|
|
|
FREE( outline->points );
|
|
|
|
|
|
|
|
FREE( outline );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_save */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Saves the content of a given AH_Outline object into a face's glyph */
|
|
|
|
/* slot. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_save( AH_Outline* outline,
|
2002-02-24 03:59:24 +01:00
|
|
|
AH_Loader gloader )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point* point = outline->points;
|
|
|
|
AH_Point* point_limit = point + outline->num_points;
|
|
|
|
FT_Vector* vec = gloader->current.outline.points;
|
|
|
|
char* tag = gloader->current.outline.tags;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* we assume that the glyph loader has already been checked for storage */
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; point < point_limit; point++, vec++, tag++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
vec->x = point->x;
|
|
|
|
vec->y = point->y;
|
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
if ( point->flags & ah_flag_conic )
|
2000-07-19 22:02:14 +02:00
|
|
|
tag[0] = FT_Curve_Tag_Conic;
|
2001-10-29 11:45:57 +01:00
|
|
|
else if ( point->flags & ah_flag_cubic )
|
2000-07-19 22:02:14 +02:00
|
|
|
tag[0] = FT_Curve_Tag_Cubic;
|
|
|
|
else
|
|
|
|
tag[0] = FT_Curve_Tag_On;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_load */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Loads an unscaled outline from a glyph slot into an AH_Outline */
|
|
|
|
/* object. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_load( AH_Outline* outline,
|
|
|
|
FT_Face face )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Memory memory = outline->memory;
|
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
|
|
|
FT_Error error = AH_Err_Ok;
|
2000-07-19 22:02:14 +02:00
|
|
|
FT_Outline* source = &face->glyph->outline;
|
|
|
|
FT_Int num_points = source->n_points;
|
|
|
|
FT_Int num_contours = source->n_contours;
|
|
|
|
AH_Point* points;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* check arguments */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( !face ||
|
|
|
|
!face->size ||
|
|
|
|
face->glyph->format != ft_glyph_format_outline )
|
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 AH_Err_Invalid_Argument;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* first of all, reallocate the contours array if necessary */
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( num_contours > outline->max_contours )
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Int new_contours = ( num_contours + 3 ) & -4;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
if ( REALLOC_ARRAY( outline->contours, outline->max_contours,
|
|
|
|
new_contours, AH_Point* ) )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
outline->max_contours = new_contours;
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:29:08 +02:00
|
|
|
/* then, reallocate the points, segments & edges arrays if needed -- */
|
|
|
|
/* note that we reserved two additional point positions, used to */
|
|
|
|
/* hint metrics appropriately */
|
|
|
|
/* */
|
|
|
|
if ( num_points + 2 > outline->max_points )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-28 01:29:08 +02:00
|
|
|
FT_Int news = ( num_points + 2 + 7 ) & -8;
|
2000-07-19 22:02:14 +02:00
|
|
|
FT_Int max = outline->max_points;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-10-05 06:53:31 +02:00
|
|
|
if ( REALLOC_ARRAY( outline->points,
|
|
|
|
max, news, AH_Point ) ||
|
|
|
|
REALLOC_ARRAY( outline->horz_edges,
|
|
|
|
max * 2, news * 2, AH_Edge ) ||
|
|
|
|
REALLOC_ARRAY( outline->horz_segments,
|
|
|
|
max * 2, news * 2, AH_Segment ) )
|
2000-07-19 22:02:14 +02:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* readjust some pointers */
|
2000-10-04 00:03:09 +02:00
|
|
|
outline->vert_edges = outline->horz_edges + news;
|
|
|
|
outline->vert_segments = outline->horz_segments + news;
|
2000-07-19 22:02:14 +02:00
|
|
|
outline->max_points = news;
|
|
|
|
}
|
|
|
|
|
|
|
|
outline->num_points = num_points;
|
|
|
|
outline->num_contours = num_contours;
|
|
|
|
|
|
|
|
outline->num_hedges = 0;
|
|
|
|
outline->num_vedges = 0;
|
|
|
|
outline->num_hsegments = 0;
|
|
|
|
outline->num_vsegments = 0;
|
|
|
|
|
2000-07-27 18:57:35 +02:00
|
|
|
/* We can't rely on the value of `FT_Outline.flags' to know the fill */
|
|
|
|
/* direction used for a glyph, given that some fonts are broken (e.g. */
|
|
|
|
/* the Arphic ones). We thus recompute it each time we need to. */
|
|
|
|
/* */
|
2000-07-27 17:59:08 +02:00
|
|
|
outline->vert_major_dir = ah_dir_up;
|
|
|
|
outline->horz_major_dir = ah_dir_left;
|
|
|
|
|
|
|
|
if ( ah_get_orientation( source ) > 1 )
|
|
|
|
{
|
|
|
|
outline->vert_major_dir = ah_dir_down;
|
|
|
|
outline->horz_major_dir = ah_dir_right;
|
2000-10-31 21:42:18 +01:00
|
|
|
}
|
2000-07-27 18:57:35 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
outline->x_scale = face->size->metrics.x_scale;
|
|
|
|
outline->y_scale = face->size->metrics.y_scale;
|
|
|
|
|
|
|
|
points = outline->points;
|
2000-07-27 18:57:35 +02:00
|
|
|
if ( outline->num_points == 0 )
|
2000-07-27 17:59:08 +02:00
|
|
|
goto Exit;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
/* do one thing at a time -- it is easier to understand, and */
|
|
|
|
/* the code is clearer */
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point* point;
|
|
|
|
AH_Point* point_limit = points + outline->num_points;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* compute coordinates */
|
|
|
|
{
|
|
|
|
FT_Vector* vec = source->points;
|
|
|
|
FT_Fixed x_scale = outline->x_scale;
|
|
|
|
FT_Fixed y_scale = outline->y_scale;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( point = points; point < point_limit; vec++, point++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
point->fx = vec->x;
|
|
|
|
point->fy = vec->y;
|
|
|
|
point->ox = point->x = FT_MulFix( vec->x, x_scale );
|
|
|
|
point->oy = point->y = FT_MulFix( vec->y, y_scale );
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
point->flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* compute Bezier flags */
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
char* tag = source->tags;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( point = points; point < point_limit; point++, tag++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
switch ( FT_CURVE_TAG( *tag ) )
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
case FT_Curve_Tag_Conic:
|
2001-10-29 11:45:57 +01:00
|
|
|
point->flags = ah_flag_conic; break;
|
2000-07-23 23:27:52 +02:00
|
|
|
case FT_Curve_Tag_Cubic:
|
2001-10-29 11:45:57 +01:00
|
|
|
point->flags = ah_flag_cubic; break;
|
2000-07-23 23:27:52 +02:00
|
|
|
default:
|
|
|
|
;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* compute `next' and `prev' */
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Int contour_index;
|
|
|
|
AH_Point* prev;
|
|
|
|
AH_Point* first;
|
|
|
|
AH_Point* end;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
contour_index = 0;
|
|
|
|
|
|
|
|
first = points;
|
|
|
|
end = points + source->contours[0];
|
|
|
|
prev = end;
|
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( point = points; point < point_limit; point++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
point->prev = prev;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point < end )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
point->next = point + 1;
|
2000-07-19 22:02:14 +02:00
|
|
|
prev = point;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
point->next = first;
|
|
|
|
contour_index++;
|
2000-07-31 20:59:02 +02:00
|
|
|
if ( point + 1 < point_limit )
|
2000-07-23 23:27:52 +02:00
|
|
|
{
|
2000-07-19 22:02:14 +02:00
|
|
|
end = points + source->contours[contour_index];
|
2000-07-23 23:27:52 +02:00
|
|
|
first = point + 1;
|
2000-07-19 22:02:14 +02:00
|
|
|
prev = end;
|
2000-07-23 23:27:52 +02:00
|
|
|
}
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set-up the contours array */
|
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point** contour = outline->contours;
|
|
|
|
AH_Point** contour_limit = contour + outline->num_contours;
|
|
|
|
short* end = source->contours;
|
* 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
|
|
|
short idx = 0;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; contour < contour_limit; contour++, end++ )
|
2000-07-19 22:02:14 +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
|
|
|
contour[0] = points + idx;
|
|
|
|
idx = (short)( end[0] + 1 );
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compute directions of in & out vectors */
|
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( point = points; point < point_limit; point++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
AH_Point* prev;
|
|
|
|
AH_Point* next;
|
2001-10-29 11:45:57 +01:00
|
|
|
FT_Vector ivec, ovec;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
prev = point->prev;
|
|
|
|
ivec.x = point->fx - prev->fx;
|
|
|
|
ivec.y = point->fy - prev->fy;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
point->in_dir = ah_compute_direction( ivec.x, ivec.y );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
next = point->next;
|
|
|
|
ovec.x = next->fx - point->fx;
|
|
|
|
ovec.y = next->fy - point->fy;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
point->out_dir = ah_compute_direction( ovec.x, ovec.y );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
#ifndef AH_OPTION_NO_WEAK_INTERPOLATION
|
2001-10-29 11:45:57 +01:00
|
|
|
if ( point->flags & (ah_flag_conic | ah_flag_cubic) )
|
|
|
|
{
|
|
|
|
Is_Weak_Point:
|
|
|
|
point->flags |= ah_flag_weak_interpolation;
|
|
|
|
}
|
|
|
|
else if ( point->out_dir == point->in_dir )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2001-10-29 11:45:57 +01:00
|
|
|
AH_Angle angle_in, angle_out, delta;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
if ( point->out_dir != ah_dir_none )
|
|
|
|
goto Is_Weak_Point;
|
2001-12-05 02:22:05 +01:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
angle_in = ah_angle( &ivec );
|
|
|
|
angle_out = ah_angle( &ovec );
|
|
|
|
delta = angle_in - angle_out;
|
2001-12-05 02:22:05 +01:00
|
|
|
|
2001-10-29 11:45:57 +01:00
|
|
|
if ( delta > AH_PI )
|
|
|
|
delta = AH_2PI - delta;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( delta < 0 )
|
|
|
|
delta = -delta;
|
2001-10-29 11:45:57 +01:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( delta < 2 )
|
2001-10-29 11:45:57 +01:00
|
|
|
goto Is_Weak_Point;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
2001-10-29 11:45:57 +01:00
|
|
|
else if ( point->in_dir == -point->out_dir )
|
|
|
|
goto Is_Weak_Point;
|
2000-07-19 22:02:14 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_setup_uv( AH_Outline* outline,
|
|
|
|
AH_UV source )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point* point = outline->points;
|
|
|
|
AH_Point* point_limit = point + outline->num_points;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; point < point_limit; point++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Pos u, v;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
switch ( source )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
case ah_uv_fxy:
|
|
|
|
u = point->fx;
|
|
|
|
v = point->fy;
|
|
|
|
break;
|
|
|
|
case ah_uv_fyx:
|
|
|
|
u = point->fy;
|
|
|
|
v = point->fx;
|
|
|
|
break;
|
|
|
|
case ah_uv_oxy:
|
|
|
|
u = point->ox;
|
|
|
|
v = point->oy;
|
|
|
|
break;
|
|
|
|
case ah_uv_oyx:
|
|
|
|
u = point->oy;
|
|
|
|
v = point->ox;
|
|
|
|
break;
|
|
|
|
case ah_uv_yx:
|
|
|
|
u = point->y;
|
|
|
|
v = point->x;
|
|
|
|
break;
|
|
|
|
case ah_uv_ox:
|
|
|
|
u = point->x;
|
|
|
|
v = point->ox;
|
|
|
|
break;
|
|
|
|
case ah_uv_oy:
|
|
|
|
u = point->y;
|
|
|
|
v = point->oy;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
u = point->x;
|
|
|
|
v = point->y;
|
|
|
|
break;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
point->u = u;
|
|
|
|
point->v = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_compute_segments( AH_Outline* outline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
int dimension;
|
|
|
|
AH_Segment* segments;
|
|
|
|
FT_Int* p_num_segments;
|
|
|
|
AH_Direction segment_dir;
|
|
|
|
AH_Direction major_dir;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
segments = outline->horz_segments;
|
|
|
|
p_num_segments = &outline->num_hsegments;
|
2000-07-23 23:27:52 +02:00
|
|
|
major_dir = ah_dir_right; /* This value must be positive! */
|
2000-07-19 22:02:14 +02:00
|
|
|
segment_dir = major_dir;
|
|
|
|
|
|
|
|
/* set up (u,v) in each point */
|
|
|
|
ah_setup_uv( outline, ah_uv_fyx );
|
|
|
|
|
|
|
|
for ( dimension = 1; dimension >= 0; dimension-- )
|
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point** contour = outline->contours;
|
|
|
|
AH_Point** contour_limit = contour + outline->num_contours;
|
|
|
|
AH_Segment* segment = segments;
|
|
|
|
FT_Int num_segments = 0;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
#ifdef AH_HINT_METRICS
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point* min_point = 0;
|
|
|
|
AH_Point* max_point = 0;
|
|
|
|
FT_Pos min_coord = 32000;
|
|
|
|
FT_Pos max_coord = -32000;
|
2000-07-19 22:02:14 +02:00
|
|
|
#endif
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* do each contour separately */
|
|
|
|
for ( ; contour < contour_limit; contour++ )
|
|
|
|
{
|
|
|
|
AH_Point* point = contour[0];
|
|
|
|
AH_Point* last = point->prev;
|
|
|
|
int on_edge = 0;
|
|
|
|
FT_Pos min_pos = +32000; /* minimum segment pos != min_coord */
|
|
|
|
FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
|
|
|
|
FT_Bool passed;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
#ifdef AH_HINT_METRICS
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point->u < min_coord )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
min_coord = point->u;
|
|
|
|
min_point = point;
|
|
|
|
}
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point->u > max_coord )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
max_coord = point->u;
|
|
|
|
max_point = point;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point == last ) /* skip singletons -- just in case? */
|
2000-07-19 22:02:14 +02:00
|
|
|
continue;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( ABS( last->out_dir ) == major_dir &&
|
|
|
|
ABS( point->out_dir ) == major_dir )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
/* we are already on an edge, try to locate its start */
|
2000-07-23 23:27:52 +02:00
|
|
|
last = point;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
point = point->prev;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( ABS( point->out_dir ) != major_dir )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
point = point->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( point == last )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
last = point;
|
|
|
|
passed = 0;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
FT_Pos u, v;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
if ( on_edge )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
u = point->u;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( u < min_pos )
|
|
|
|
min_pos = u;
|
|
|
|
if ( u > max_pos )
|
|
|
|
max_pos = u;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point->out_dir != segment_dir || point == last )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
/* we are just leaving an edge; record a new segment! */
|
2000-07-19 22:02:14 +02:00
|
|
|
segment->last = point;
|
2000-07-23 23:27:52 +02:00
|
|
|
segment->pos = ( min_pos + max_pos ) >> 1;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* a segment is round if either its first or last point */
|
2000-07-23 23:27:52 +02:00
|
|
|
/* is a control point */
|
|
|
|
if ( ( segment->first->flags | point->flags ) &
|
2001-10-29 11:45:57 +01:00
|
|
|
ah_flag_control )
|
2000-07-19 22:02:14 +02:00
|
|
|
segment->flags |= ah_edge_round;
|
|
|
|
|
|
|
|
/* compute segment size */
|
2000-07-23 23:27:52 +02:00
|
|
|
min_pos = max_pos = point->v;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
v = segment->first->v;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( v < min_pos )
|
|
|
|
min_pos = v;
|
|
|
|
if ( v > max_pos )
|
|
|
|
max_pos = v;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
segment->min_coord = min_pos;
|
|
|
|
segment->max_coord = max_pos;
|
|
|
|
|
|
|
|
on_edge = 0;
|
|
|
|
num_segments++;
|
|
|
|
segment++;
|
|
|
|
/* fallthrough */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* now exit if we are at the start/end point */
|
|
|
|
if ( point == last )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( passed )
|
2000-07-19 22:02:14 +02:00
|
|
|
break;
|
|
|
|
passed = 1;
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( !on_edge && ABS( point->out_dir ) == major_dir )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
/* this is the start of a new segment! */
|
|
|
|
segment_dir = point->out_dir;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* clear all segment fields */
|
2001-10-24 09:32:55 +02:00
|
|
|
MEM_Set( segment, 0, sizeof ( *segment ) );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
segment->dir = segment_dir;
|
|
|
|
segment->flags = ah_edge_normal;
|
|
|
|
min_pos = max_pos = point->u;
|
|
|
|
segment->first = point;
|
|
|
|
segment->last = point;
|
|
|
|
segment->contour = contour;
|
|
|
|
on_edge = 1;
|
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
#ifdef AH_HINT_METRICS
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point == max_point )
|
2000-07-19 22:02:14 +02:00
|
|
|
max_point = 0;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( point == min_point )
|
2000-07-19 22:02:14 +02:00
|
|
|
min_point = 0;
|
2000-07-31 20:59:02 +02:00
|
|
|
#endif
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
point = point->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* contours */
|
|
|
|
|
|
|
|
#ifdef AH_HINT_METRICS
|
|
|
|
/* we need to ensure that there are edges on the left-most and */
|
2000-07-23 23:27:52 +02:00
|
|
|
/* right-most points of the glyph in order to hint the metrics; */
|
|
|
|
/* we do this by inserting fake segments when needed */
|
|
|
|
if ( dimension == 0 )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Point* point = outline->points;
|
|
|
|
AH_Point* point_limit = point + outline->num_points;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
FT_Pos min_pos = 32000;
|
|
|
|
FT_Pos max_pos = -32000;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
min_point = 0;
|
|
|
|
max_point = 0;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* compute minimum and maximum points */
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; point < point_limit; point++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Pos x = point->fx;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( x < min_pos )
|
|
|
|
{
|
|
|
|
min_pos = x;
|
|
|
|
min_point = point;
|
|
|
|
}
|
|
|
|
if ( x > max_pos )
|
|
|
|
{
|
|
|
|
max_pos = x;
|
|
|
|
max_point = point;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* insert minimum segment */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( min_point )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
/* clear all segment fields */
|
2001-10-24 09:32:55 +02:00
|
|
|
MEM_Set( segment, 0, sizeof ( *segment ) );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
segment->dir = segment_dir;
|
|
|
|
segment->flags = ah_edge_normal;
|
|
|
|
segment->first = min_point;
|
|
|
|
segment->last = min_point;
|
|
|
|
segment->pos = min_pos;
|
|
|
|
|
|
|
|
num_segments++;
|
|
|
|
segment++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* insert maximum segment */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( max_point )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
/* clear all segment fields */
|
2001-10-24 09:32:55 +02:00
|
|
|
MEM_Set( segment, 0, sizeof ( *segment ) );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
segment->dir = segment_dir;
|
|
|
|
segment->flags = ah_edge_normal;
|
|
|
|
segment->first = max_point;
|
|
|
|
segment->last = max_point;
|
|
|
|
segment->pos = max_pos;
|
|
|
|
|
|
|
|
num_segments++;
|
|
|
|
segment++;
|
|
|
|
}
|
|
|
|
}
|
2000-07-23 23:27:52 +02:00
|
|
|
#endif /* AH_HINT_METRICS */
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
*p_num_segments = num_segments;
|
|
|
|
|
|
|
|
segments = outline->vert_segments;
|
|
|
|
major_dir = ah_dir_up;
|
|
|
|
p_num_segments = &outline->num_vsegments;
|
|
|
|
ah_setup_uv( outline, ah_uv_fxy );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_link_segments( AH_Outline* outline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
AH_Segment* segments;
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Segment* segment_limit;
|
2000-07-19 22:02:14 +02:00
|
|
|
int dimension;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
ah_setup_uv( outline, ah_uv_fyx );
|
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
segments = outline->horz_segments;
|
|
|
|
segment_limit = segments + outline->num_hsegments;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
for ( dimension = 1; dimension >= 0; dimension-- )
|
|
|
|
{
|
|
|
|
AH_Segment* seg1;
|
|
|
|
AH_Segment* seg2;
|
|
|
|
|
|
|
|
/* now compare each segment to the others */
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( seg1 = segments; seg1 < segment_limit; seg1++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2001-10-29 18:22:12 +01:00
|
|
|
FT_Pos best_score;
|
|
|
|
AH_Segment* best_segment;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
/* the fake segments are introduced to hint the metrics -- */
|
|
|
|
/* we must never link them to anything */
|
|
|
|
if ( seg1->first == seg1->last )
|
2000-07-19 22:02:14 +02:00
|
|
|
continue;
|
|
|
|
|
2001-10-29 18:22:12 +01:00
|
|
|
best_segment = seg1->link;
|
|
|
|
if ( best_segment )
|
|
|
|
best_score = seg1->score;
|
|
|
|
else
|
|
|
|
best_score = 32000;
|
2001-12-05 02:22:05 +01:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( seg2 = segments; seg2 < segment_limit; seg2++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( seg1 != seg2 && seg1->dir + seg2->dir == 0 )
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Pos pos1 = seg1->pos;
|
|
|
|
FT_Pos pos2 = seg2->pos;
|
|
|
|
FT_Bool is_dir;
|
|
|
|
FT_Bool is_pos;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* check that the segments are correctly oriented and */
|
|
|
|
/* positioned to form a black distance */
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2001-06-19 10:28:24 +02:00
|
|
|
is_dir = (FT_Bool)( seg1->dir == outline->horz_major_dir ||
|
|
|
|
seg1->dir == outline->vert_major_dir );
|
2001-06-20 01:03:41 +02:00
|
|
|
is_pos = (FT_Bool)( pos1 > pos2 );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
if ( pos1 == pos2 || !(is_dir ^ is_pos) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
{
|
|
|
|
FT_Pos min = seg1->min_coord;
|
|
|
|
FT_Pos max = seg1->max_coord;
|
2001-10-29 18:22:12 +01:00
|
|
|
FT_Pos len, dist, score;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( min < seg2->min_coord )
|
|
|
|
min = seg2->min_coord;
|
|
|
|
|
2001-10-29 18:22:12 +01:00
|
|
|
if ( max > seg2->max_coord )
|
2000-07-19 22:02:14 +02:00
|
|
|
max = seg2->max_coord;
|
|
|
|
|
|
|
|
len = max - min;
|
2001-10-29 18:22:12 +01:00
|
|
|
dist = seg2->pos - seg1->pos;
|
|
|
|
if ( dist < 0 )
|
|
|
|
dist = -dist;
|
|
|
|
|
|
|
|
if ( len < 8 )
|
2001-10-31 00:51:24 +01:00
|
|
|
score = 300*8 + dist - len*3;
|
2001-10-29 18:22:12 +01:00
|
|
|
else
|
|
|
|
score = dist + 300/len;
|
|
|
|
|
|
|
|
if ( score < best_score )
|
|
|
|
{
|
|
|
|
best_score = score;
|
|
|
|
best_segment = seg2;
|
|
|
|
}
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( best_segment )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
seg1->link = best_segment;
|
|
|
|
seg1->score = best_score;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
best_segment->num_linked++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} /* edges 1 */
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* now, compute the `serif' segments */
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( seg1 = segments; seg1 < segment_limit; seg1++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
seg2 = seg1->link;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
if ( seg2 && seg2->link != seg1 )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
seg1->link = 0;
|
|
|
|
seg1->serif = seg2->link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ah_setup_uv( outline, ah_uv_fxy );
|
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
segments = outline->vert_segments;
|
|
|
|
segment_limit = segments + outline->num_vsegments;
|
2000-07-19 22:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 18:18:10 +02:00
|
|
|
static void
|
|
|
|
ah_outline_compute_edges( AH_Outline* outline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
AH_Edge* edges;
|
|
|
|
AH_Segment* segments;
|
|
|
|
AH_Segment* segment_limit;
|
|
|
|
AH_Direction up_dir;
|
|
|
|
FT_Int* p_num_edges;
|
|
|
|
FT_Int dimension;
|
|
|
|
FT_Fixed scale;
|
|
|
|
FT_Pos edge_distance_threshold;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
edges = outline->horz_edges;
|
|
|
|
segments = outline->horz_segments;
|
|
|
|
segment_limit = segments + outline->num_hsegments;
|
|
|
|
p_num_edges = &outline->num_hedges;
|
|
|
|
up_dir = ah_dir_right;
|
|
|
|
scale = outline->y_scale;
|
|
|
|
|
|
|
|
for ( dimension = 1; dimension >= 0; dimension-- )
|
|
|
|
{
|
|
|
|
AH_Edge* edge;
|
|
|
|
AH_Edge* edge_limit; /* really == edge + num_edges */
|
|
|
|
AH_Segment* seg;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* We will begin by generating a sorted table of edges for the */
|
|
|
|
/* current direction. To do so, we simply scan each segment and try */
|
|
|
|
/* to find an edge in our table that corresponds to its position. */
|
|
|
|
/* */
|
|
|
|
/* If no edge is found, we create and insert a new edge in the */
|
|
|
|
/* sorted table. Otherwise, we simply add the segment to the edge's */
|
|
|
|
/* list which will be processed in the second step to compute the */
|
|
|
|
/* edge's properties. */
|
|
|
|
/* */
|
|
|
|
/* Note that the edges table is sorted along the segment/edge */
|
|
|
|
/* position. */
|
|
|
|
/* */
|
|
|
|
/*********************************************************************/
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
edge_distance_threshold = FT_MulFix( outline->edge_distance_threshold,
|
|
|
|
scale );
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( edge_distance_threshold > 64 / 4 )
|
|
|
|
edge_distance_threshold = 64 / 4;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
edge_limit = edges;
|
|
|
|
for ( seg = segments; seg < segment_limit; seg++ )
|
|
|
|
{
|
|
|
|
AH_Edge* found = 0;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* look for an edge corresponding to the segment */
|
|
|
|
for ( edge = edges; edge < edge_limit; edge++ )
|
|
|
|
{
|
|
|
|
FT_Pos dist;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
dist = seg->pos - edge->fpos;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( dist < 0 )
|
|
|
|
dist = -dist;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
dist = FT_MulFix( dist, scale );
|
|
|
|
if ( dist < edge_distance_threshold )
|
|
|
|
{
|
|
|
|
found = edge;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( !found )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
/* insert a new edge in the list and */
|
|
|
|
/* sort according to the position */
|
2000-07-19 22:02:14 +02:00
|
|
|
while ( edge > edges && edge[-1].fpos > seg->pos )
|
|
|
|
{
|
|
|
|
edge[0] = edge[-1];
|
|
|
|
edge--;
|
|
|
|
}
|
|
|
|
edge_limit++;
|
|
|
|
|
|
|
|
/* clear all edge fields */
|
2001-10-24 09:32:55 +02:00
|
|
|
MEM_Set( edge, 0, sizeof ( *edge ) );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* add the segment to the new edge's list */
|
|
|
|
edge->first = seg;
|
|
|
|
edge->last = seg;
|
|
|
|
edge->fpos = seg->pos;
|
|
|
|
edge->opos = edge->pos = FT_MulFix( seg->pos, scale );
|
|
|
|
seg->edge_next = seg;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if an edge was found, simply add the segment to the edge's */
|
|
|
|
/* list */
|
|
|
|
seg->edge_next = edge->first;
|
|
|
|
edge->last->edge_next = seg;
|
|
|
|
edge->last = seg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-10 18:07:42 +01:00
|
|
|
*p_num_edges = (FT_Int)( edge_limit - edges );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Good, we will now compute each edge's properties according to */
|
|
|
|
/* segments found on its position. Basically, these are: */
|
|
|
|
/* */
|
|
|
|
/* - edge's main direction */
|
|
|
|
/* - stem edge, serif edge or both (which defaults to stem then) */
|
|
|
|
/* - rounded edge, straigth or both (which defaults to straight) */
|
|
|
|
/* - link for edge */
|
|
|
|
/* */
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
|
|
/* first of all, set the `edge' field in each segment -- this is */
|
|
|
|
/* required in order to compute edge links */
|
2000-07-19 22:02:14 +02:00
|
|
|
for ( edge = edges; edge < edge_limit; edge++ )
|
|
|
|
{
|
|
|
|
seg = edge->first;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( seg )
|
2000-07-19 22:02:14 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
seg->edge = edge;
|
|
|
|
seg = seg->edge_next;
|
|
|
|
}
|
|
|
|
while ( seg != edge->first );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now, compute each edge properties */
|
|
|
|
for ( edge = edges; edge < edge_limit; edge++ )
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
int is_round = 0; /* does it contain round segments? */
|
|
|
|
int is_straight = 0; /* does it contain straight segments? */
|
|
|
|
int ups = 0; /* number of upwards segments */
|
|
|
|
int downs = 0; /* number of downwards segments */
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
seg = edge->first;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
do
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Bool is_serif;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* check for roundness of segment */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( seg->flags & ah_edge_round )
|
|
|
|
is_round++;
|
|
|
|
else
|
|
|
|
is_straight++;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* check for segment direction */
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( seg->dir == up_dir )
|
|
|
|
ups += seg->max_coord-seg->min_coord;
|
|
|
|
else
|
|
|
|
downs += seg->max_coord-seg->min_coord;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* check for links -- if seg->serif is set, then seg->link must */
|
|
|
|
/* be ignored */
|
2001-06-20 01:03:41 +02:00
|
|
|
is_serif = (FT_Bool)( seg->serif && seg->serif->edge != edge );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
if ( seg->link || is_serif )
|
|
|
|
{
|
|
|
|
AH_Edge* edge2;
|
|
|
|
AH_Segment* seg2;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
edge2 = edge->link;
|
|
|
|
seg2 = seg->link;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( is_serif )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
seg2 = seg->serif;
|
|
|
|
edge2 = edge->serif;
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( edge2 )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
FT_Pos edge_delta;
|
|
|
|
FT_Pos seg_delta;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
edge_delta = edge->fpos - edge2->fpos;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( edge_delta < 0 )
|
|
|
|
edge_delta = -edge_delta;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
seg_delta = seg->pos - seg2->pos;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( seg_delta < 0 )
|
|
|
|
seg_delta = -seg_delta;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( seg_delta < edge_delta )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge2 = seg2->edge;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
edge2 = seg2->edge;
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( is_serif )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge->serif = edge2;
|
|
|
|
else
|
|
|
|
edge->link = edge2;
|
|
|
|
}
|
|
|
|
|
|
|
|
seg = seg->edge_next;
|
|
|
|
|
|
|
|
} while ( seg != edge->first );
|
|
|
|
|
|
|
|
/* set the round/straight flags */
|
|
|
|
edge->flags = ah_edge_normal;
|
|
|
|
|
2001-05-14 16:04:23 +02:00
|
|
|
if ( is_round > 0 && is_round >= is_straight )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge->flags |= ah_edge_round;
|
|
|
|
|
|
|
|
/* set the edge's main direction */
|
|
|
|
edge->dir = ah_dir_none;
|
|
|
|
|
|
|
|
if ( ups > downs )
|
|
|
|
edge->dir = up_dir;
|
|
|
|
|
|
|
|
else if ( ups < downs )
|
|
|
|
edge->dir = - up_dir;
|
|
|
|
|
|
|
|
else if ( ups == downs )
|
|
|
|
edge->dir = 0; /* both up and down !! */
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* gets rid of serifs if link is set */
|
|
|
|
/* XXX: This gets rid of many unpleasant artefacts! */
|
|
|
|
/* Example: the `c' in cour.pfa at size 13 */
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( edge->serif && edge->link )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge->serif = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
edges = outline->vert_edges;
|
|
|
|
segments = outline->vert_segments;
|
|
|
|
segment_limit = segments + outline->num_vsegments;
|
|
|
|
p_num_edges = &outline->num_vedges;
|
|
|
|
up_dir = ah_dir_up;
|
|
|
|
scale = outline->x_scale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_detect_features */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Performs feature detection on a given AH_Outline object. */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_detect_features( AH_Outline* outline )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
ah_outline_compute_segments( outline );
|
|
|
|
ah_outline_link_segments ( outline );
|
|
|
|
ah_outline_compute_edges ( outline );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_compute_blue_edges */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Computes the `blue edges' in a given outline (i.e. those that must */
|
|
|
|
/* be snapped to a blue zone edge (top or bottom). */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_compute_blue_edges( AH_Outline* outline,
|
|
|
|
AH_Face_Globals* face_globals )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Edge* edge = outline->horz_edges;
|
|
|
|
AH_Edge* edge_limit = edge + outline->num_hedges;
|
|
|
|
AH_Globals* globals = &face_globals->design;
|
|
|
|
FT_Fixed y_scale = outline->y_scale;
|
2000-07-19 22:02:14 +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
|
|
|
FT_Bool blue_active[ah_blue_max];
|
2001-05-14 16:04:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* compute which blue zones are active, i.e. have their scaled */
|
|
|
|
/* size < 3/4 pixels */
|
|
|
|
{
|
|
|
|
AH_Blue blue;
|
|
|
|
FT_Bool check = 0;
|
|
|
|
|
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-05-14 16:04:23 +02:00
|
|
|
for ( blue = ah_blue_capital_top; blue < ah_blue_max; blue++ )
|
|
|
|
{
|
|
|
|
FT_Pos ref, shoot, dist;
|
|
|
|
|
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-05-14 16:04:23 +02:00
|
|
|
ref = globals->blue_refs[blue];
|
|
|
|
shoot = globals->blue_shoots[blue];
|
|
|
|
dist = ref-shoot;
|
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
|
|
|
if ( dist < 0 )
|
2001-05-14 16:04:23 +02:00
|
|
|
dist = -dist;
|
|
|
|
|
|
|
|
blue_active[blue] = 0;
|
|
|
|
|
|
|
|
if ( FT_MulFix( dist, y_scale ) < 48 )
|
|
|
|
{
|
|
|
|
blue_active[blue] = 1;
|
|
|
|
check = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return immediately if no blue zone is active */
|
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
|
|
|
if ( !check )
|
2001-05-14 16:04:23 +02:00
|
|
|
return;
|
|
|
|
}
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
/* compute for each horizontal edge, which blue zone is closer */
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; edge < edge_limit; edge++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
AH_Blue blue;
|
|
|
|
FT_Pos* best_blue = 0;
|
|
|
|
FT_Pos best_dist; /* initial threshold */
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* compute the initial threshold as a fraction of the EM size */
|
|
|
|
best_dist = FT_MulFix( face_globals->face->units_per_EM / 40, y_scale );
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( best_dist > 64 / 4 )
|
|
|
|
best_dist = 64 / 4;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-26 16:11:15 +02:00
|
|
|
for ( blue = ah_blue_capital_top; blue < ah_blue_max; blue++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
/* if it is a top zone, check for right edges -- if it is a bottom */
|
|
|
|
/* zone, check for left edges */
|
|
|
|
/* */
|
|
|
|
/* of course, that's for TrueType XXX */
|
2001-06-20 01:03:41 +02:00
|
|
|
FT_Bool is_top_blue =
|
|
|
|
FT_BOOL( AH_IS_TOP_BLUE( blue ) );
|
|
|
|
FT_Bool is_major_dir =
|
|
|
|
FT_BOOL( edge->dir == outline->horz_major_dir );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2001-05-14 16:04:23 +02:00
|
|
|
if ( !blue_active[blue] )
|
|
|
|
continue;
|
2000-07-23 23:27:52 +02:00
|
|
|
|
|
|
|
/* if it is a top zone, the edge must be against the major */
|
|
|
|
/* direction; if it is a bottom zone, it must be in the major */
|
|
|
|
/* direction */
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( is_top_blue ^ is_major_dir )
|
|
|
|
{
|
2000-07-23 23:27:52 +02:00
|
|
|
FT_Pos dist;
|
|
|
|
FT_Pos* blue_pos = globals->blue_refs + blue;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
/* first of all, compare it to the reference position */
|
|
|
|
dist = edge->fpos - *blue_pos;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( dist < 0 )
|
|
|
|
dist = -dist;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
dist = FT_MulFix( dist, y_scale );
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( dist < best_dist )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
best_dist = dist;
|
|
|
|
best_blue = blue_pos;
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
/* now, compare it to the overshoot position if the edge is */
|
|
|
|
/* rounded, and if the edge is over the reference position of a */
|
|
|
|
/* top zone, or under the reference position of a bottom zone */
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( edge->flags & ah_edge_round && dist != 0 )
|
|
|
|
{
|
2001-06-19 10:28:24 +02:00
|
|
|
FT_Bool is_under_ref = FT_BOOL( edge->fpos < *blue_pos );
|
2000-07-19 22:02:14 +02:00
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
if ( is_top_blue ^ is_under_ref )
|
|
|
|
{
|
|
|
|
blue_pos = globals->blue_shoots + blue;
|
|
|
|
dist = edge->fpos - *blue_pos;
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( dist < 0 )
|
|
|
|
dist = -dist;
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
dist = FT_MulFix( dist, y_scale );
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( dist < best_dist )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
|
|
|
best_dist = dist;
|
|
|
|
best_blue = blue_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-23 23:27:52 +02:00
|
|
|
if ( best_blue )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge->blue_edge = best_blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-26 16:11:15 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* ah_outline_scale_blue_edges */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* This functions must be called before hinting in order to re-adjust */
|
|
|
|
/* the contents of the detected edges (basically change the `blue */
|
|
|
|
/* edge' pointer from `design units' to `scaled ones'). */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
2001-06-27 18:18:10 +02:00
|
|
|
ah_outline_scale_blue_edges( AH_Outline* outline,
|
|
|
|
AH_Face_Globals* globals )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-31 20:59:02 +02:00
|
|
|
AH_Edge* edge = outline->horz_edges;
|
|
|
|
AH_Edge* edge_limit = edge + outline->num_hedges;
|
2000-07-26 16:11:15 +02:00
|
|
|
FT_Int delta;
|
|
|
|
|
2000-07-19 22:02:14 +02:00
|
|
|
|
|
|
|
delta = globals->scaled.blue_refs - globals->design.blue_refs;
|
2000-07-26 16:11:15 +02:00
|
|
|
|
2000-07-31 20:59:02 +02:00
|
|
|
for ( ; edge < edge_limit; edge++ )
|
2000-07-19 22:02:14 +02:00
|
|
|
{
|
2000-07-26 16:11:15 +02:00
|
|
|
if ( edge->blue_edge )
|
2000-07-19 22:02:14 +02:00
|
|
|
edge->blue_edge += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-26 16:11:15 +02:00
|
|
|
/* END */
|