ftoutln.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:27k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  ftoutln.c                                                              */
  4. /*                                                                         */
  5. /*    FreeType outline management (body).                                  */
  6. /*                                                                         */
  7. /*  Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007 by             */
  8. /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
  9. /*                                                                         */
  10. /*  This file is part of the FreeType project, and may only be used,       */
  11. /*  modified, and distributed under the terms of the FreeType project      */
  12. /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
  13. /*  this file you indicate that you have read the license and              */
  14. /*  understand and accept it fully.                                        */
  15. /*                                                                         */
  16. /***************************************************************************/
  17.   /*************************************************************************/
  18.   /*                                                                       */
  19.   /* All functions are declared in freetype.h.                             */
  20.   /*                                                                       */
  21.   /*************************************************************************/
  22. #include <ft2build.h>
  23. #include FT_OUTLINE_H
  24. #include FT_INTERNAL_OBJECTS_H
  25. #include FT_TRIGONOMETRY_H
  26.   /*************************************************************************/
  27.   /*                                                                       */
  28.   /* The macro FT_COMPONENT is used in trace mode.  It is an implicit      */
  29.   /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log  */
  30.   /* messages during execution.                                            */
  31.   /*                                                                       */
  32. #undef  FT_COMPONENT
  33. #define FT_COMPONENT  trace_outline
  34.   static
  35.   const FT_Outline  null_outline = { 0, 0, 0, 0, 0, 0 };
  36.   /* documentation is in ftoutln.h */
  37.   FT_EXPORT_DEF( FT_Error )
  38.   FT_Outline_Decompose( FT_Outline*              outline,
  39.                         const FT_Outline_Funcs*  func_interface,
  40.                         void*                    user )
  41.   {
  42. #undef SCALED
  43. #define SCALED( x )  ( ( (x) << shift ) - delta )
  44.     FT_Vector   v_last;
  45.     FT_Vector   v_control;
  46.     FT_Vector   v_start;
  47.     FT_Vector*  point;
  48.     FT_Vector*  limit;
  49.     char*       tags;
  50.     FT_Error    error;
  51.     FT_Int   n;         /* index of contour in outline     */
  52.     FT_UInt  first;     /* index of first point in contour */
  53.     FT_Int   tag;       /* current point's state           */
  54.     FT_Int   shift;
  55.     FT_Pos   delta;
  56.     if ( !outline || !func_interface )
  57.       return FT_Err_Invalid_Argument;
  58.     shift = func_interface->shift;
  59.     delta = func_interface->delta;
  60.     first = 0;
  61.     for ( n = 0; n < outline->n_contours; n++ )
  62.     {
  63.       FT_Int  last;  /* index of last point in contour */
  64.       last = outline->contours[n];
  65.       if ( last < 0 )
  66.         goto Invalid_Outline;
  67.       limit = outline->points + last;
  68.       v_start = outline->points[first];
  69.       v_last  = outline->points[last];
  70.       v_start.x = SCALED( v_start.x ); v_start.y = SCALED( v_start.y );
  71.       v_last.x  = SCALED( v_last.x );  v_last.y  = SCALED( v_last.y );
  72.       v_control = v_start;
  73.       point = outline->points + first;
  74.       tags  = outline->tags  + first;
  75.       tag   = FT_CURVE_TAG( tags[0] );
  76.       /* A contour cannot start with a cubic control point! */
  77.       if ( tag == FT_CURVE_TAG_CUBIC )
  78.         goto Invalid_Outline;
  79.       /* check first point to determine origin */
  80.       if ( tag == FT_CURVE_TAG_CONIC )
  81.       {
  82.         /* first point is conic control.  Yes, this happens. */
  83.         if ( FT_CURVE_TAG( outline->tags[last] ) == FT_CURVE_TAG_ON )
  84.         {
  85.           /* start at last point if it is on the curve */
  86.           v_start = v_last;
  87.           limit--;
  88.         }
  89.         else
  90.         {
  91.           /* if both first and last points are conic,         */
  92.           /* start at their middle and record its position    */
  93.           /* for closure                                      */
  94.           v_start.x = ( v_start.x + v_last.x ) / 2;
  95.           v_start.y = ( v_start.y + v_last.y ) / 2;
  96.           v_last = v_start;
  97.         }
  98.         point--;
  99.         tags--;
  100.       }
  101.       error = func_interface->move_to( &v_start, user );
  102.       if ( error )
  103.         goto Exit;
  104.       while ( point < limit )
  105.       {
  106.         point++;
  107.         tags++;
  108.         tag = FT_CURVE_TAG( tags[0] );
  109.         switch ( tag )
  110.         {
  111.         case FT_CURVE_TAG_ON:  /* emit a single line_to */
  112.           {
  113.             FT_Vector  vec;
  114.             vec.x = SCALED( point->x );
  115.             vec.y = SCALED( point->y );
  116.             error = func_interface->line_to( &vec, user );
  117.             if ( error )
  118.               goto Exit;
  119.             continue;
  120.           }
  121.         case FT_CURVE_TAG_CONIC:  /* consume conic arcs */
  122.           v_control.x = SCALED( point->x );
  123.           v_control.y = SCALED( point->y );
  124.         Do_Conic:
  125.           if ( point < limit )
  126.           {
  127.             FT_Vector  vec;
  128.             FT_Vector  v_middle;
  129.             point++;
  130.             tags++;
  131.             tag = FT_CURVE_TAG( tags[0] );
  132.             vec.x = SCALED( point->x );
  133.             vec.y = SCALED( point->y );
  134.             if ( tag == FT_CURVE_TAG_ON )
  135.             {
  136.               error = func_interface->conic_to( &v_control, &vec, user );
  137.               if ( error )
  138.                 goto Exit;
  139.               continue;
  140.             }
  141.             if ( tag != FT_CURVE_TAG_CONIC )
  142.               goto Invalid_Outline;
  143.             v_middle.x = ( v_control.x + vec.x ) / 2;
  144.             v_middle.y = ( v_control.y + vec.y ) / 2;
  145.             error = func_interface->conic_to( &v_control, &v_middle, user );
  146.             if ( error )
  147.               goto Exit;
  148.             v_control = vec;
  149.             goto Do_Conic;
  150.           }
  151.           error = func_interface->conic_to( &v_control, &v_start, user );
  152.           goto Close;
  153.         default:  /* FT_CURVE_TAG_CUBIC */
  154.           {
  155.             FT_Vector  vec1, vec2;
  156.             if ( point + 1 > limit                             ||
  157.                  FT_CURVE_TAG( tags[1] ) != FT_CURVE_TAG_CUBIC )
  158.               goto Invalid_Outline;
  159.             point += 2;
  160.             tags  += 2;
  161.             vec1.x = SCALED( point[-2].x ); vec1.y = SCALED( point[-2].y );
  162.             vec2.x = SCALED( point[-1].x ); vec2.y = SCALED( point[-1].y );
  163.             if ( point <= limit )
  164.             {
  165.               FT_Vector  vec;
  166.               vec.x = SCALED( point->x );
  167.               vec.y = SCALED( point->y );
  168.               error = func_interface->cubic_to( &vec1, &vec2, &vec, user );
  169.               if ( error )
  170.                 goto Exit;
  171.               continue;
  172.             }
  173.             error = func_interface->cubic_to( &vec1, &vec2, &v_start, user );
  174.             goto Close;
  175.           }
  176.         }
  177.       }
  178.       /* close the contour with a line segment */
  179.       error = func_interface->line_to( &v_start, user );
  180.     Close:
  181.       if ( error )
  182.         goto Exit;
  183.       first = last + 1;
  184.     }
  185.     return 0;
  186.   Exit:
  187.     return error;
  188.   Invalid_Outline:
  189.     return FT_Err_Invalid_Outline;
  190.   }
  191.   FT_EXPORT_DEF( FT_Error )
  192.   FT_Outline_New_Internal( FT_Memory    memory,
  193.                            FT_UInt      numPoints,
  194.                            FT_Int       numContours,
  195.                            FT_Outline  *anoutline )
  196.   {
  197.     FT_Error  error;
  198.     if ( !anoutline || !memory )
  199.       return FT_Err_Invalid_Argument;
  200.     *anoutline = null_outline;
  201.     if ( FT_NEW_ARRAY( anoutline->points,   numPoints * 2L ) ||
  202.          FT_NEW_ARRAY( anoutline->tags,     numPoints      ) ||
  203.          FT_NEW_ARRAY( anoutline->contours, numContours    ) )
  204.       goto Fail;
  205.     anoutline->n_points    = (FT_UShort)numPoints;
  206.     anoutline->n_contours  = (FT_Short)numContours;
  207.     anoutline->flags      |= FT_OUTLINE_OWNER;
  208.     return FT_Err_Ok;
  209.   Fail:
  210.     anoutline->flags |= FT_OUTLINE_OWNER;
  211.     FT_Outline_Done_Internal( memory, anoutline );
  212.     return error;
  213.   }
  214.   /* documentation is in ftoutln.h */
  215.   FT_EXPORT_DEF( FT_Error )
  216.   FT_Outline_New( FT_Library   library,
  217.                   FT_UInt      numPoints,
  218.                   FT_Int       numContours,
  219.                   FT_Outline  *anoutline )
  220.   {
  221.     if ( !library )
  222.       return FT_Err_Invalid_Library_Handle;
  223.     return FT_Outline_New_Internal( library->memory, numPoints,
  224.                                     numContours, anoutline );
  225.   }
  226.   /* documentation is in ftoutln.h */
  227.   FT_EXPORT_DEF( FT_Error )
  228.   FT_Outline_Check( FT_Outline*  outline )
  229.   {
  230.     if ( outline )
  231.     {
  232.       FT_Int  n_points   = outline->n_points;
  233.       FT_Int  n_contours = outline->n_contours;
  234.       FT_Int  end0, end;
  235.       FT_Int  n;
  236.       /* empty glyph? */
  237.       if ( n_points == 0 && n_contours == 0 )
  238.         return 0;
  239.       /* check point and contour counts */
  240.       if ( n_points <= 0 || n_contours <= 0 )
  241.         goto Bad;
  242.       end0 = end = -1;
  243.       for ( n = 0; n < n_contours; n++ )
  244.       {
  245.         end = outline->contours[n];
  246.         /* note that we don't accept empty contours */
  247.         if ( end <= end0 || end >= n_points )
  248.           goto Bad;
  249.         end0 = end;
  250.       }
  251.       if ( end != n_points - 1 )
  252.         goto Bad;
  253.       /* XXX: check the tags array */
  254.       return 0;
  255.     }
  256.   Bad:
  257.     return FT_Err_Invalid_Argument;
  258.   }
  259.   /* documentation is in ftoutln.h */
  260.   FT_EXPORT_DEF( FT_Error )
  261.   FT_Outline_Copy( const FT_Outline*  source,
  262.                    FT_Outline        *target )
  263.   {
  264.     FT_Int  is_owner;
  265.     if ( !source            || !target            ||
  266.          source->n_points   != target->n_points   ||
  267.          source->n_contours != target->n_contours )
  268.       return FT_Err_Invalid_Argument;
  269.     if ( source == target )
  270.       return FT_Err_Ok;
  271.     FT_ARRAY_COPY( target->points, source->points, source->n_points );
  272.     FT_ARRAY_COPY( target->tags, source->tags, source->n_points );
  273.     FT_ARRAY_COPY( target->contours, source->contours, source->n_contours );
  274.     /* copy all flags, except the `FT_OUTLINE_OWNER' one */
  275.     is_owner      = target->flags & FT_OUTLINE_OWNER;
  276.     target->flags = source->flags;
  277.     target->flags &= ~FT_OUTLINE_OWNER;
  278.     target->flags |= is_owner;
  279.     return FT_Err_Ok;
  280.   }
  281.   FT_EXPORT_DEF( FT_Error )
  282.   FT_Outline_Done_Internal( FT_Memory    memory,
  283.                             FT_Outline*  outline )
  284.   {
  285.     if ( memory && outline )
  286.     {
  287.       if ( outline->flags & FT_OUTLINE_OWNER )
  288.       {
  289.         FT_FREE( outline->points   );
  290.         FT_FREE( outline->tags     );
  291.         FT_FREE( outline->contours );
  292.       }
  293.       *outline = null_outline;
  294.       return FT_Err_Ok;
  295.     }
  296.     else
  297.       return FT_Err_Invalid_Argument;
  298.   }
  299.   /* documentation is in ftoutln.h */
  300.   FT_EXPORT_DEF( FT_Error )
  301.   FT_Outline_Done( FT_Library   library,
  302.                    FT_Outline*  outline )
  303.   {
  304.     /* check for valid `outline' in FT_Outline_Done_Internal() */
  305.     if ( !library )
  306.       return FT_Err_Invalid_Library_Handle;
  307.     return FT_Outline_Done_Internal( library->memory, outline );
  308.   }
  309.   /* documentation is in ftoutln.h */
  310.   FT_EXPORT_DEF( void )
  311.   FT_Outline_Get_CBox( const FT_Outline*  outline,
  312.                        FT_BBox           *acbox )
  313.   {
  314.     FT_Pos  xMin, yMin, xMax, yMax;
  315.     if ( outline && acbox )
  316.     {
  317.       if ( outline->n_points == 0 )
  318.       {
  319.         xMin = 0;
  320.         yMin = 0;
  321.         xMax = 0;
  322.         yMax = 0;
  323.       }
  324.       else
  325.       {
  326.         FT_Vector*  vec   = outline->points;
  327.         FT_Vector*  limit = vec + outline->n_points;
  328.         xMin = xMax = vec->x;
  329.         yMin = yMax = vec->y;
  330.         vec++;
  331.         for ( ; vec < limit; vec++ )
  332.         {
  333.           FT_Pos  x, y;
  334.           x = vec->x;
  335.           if ( x < xMin ) xMin = x;
  336.           if ( x > xMax ) xMax = x;
  337.           y = vec->y;
  338.           if ( y < yMin ) yMin = y;
  339.           if ( y > yMax ) yMax = y;
  340.         }
  341.       }
  342.       acbox->xMin = xMin;
  343.       acbox->xMax = xMax;
  344.       acbox->yMin = yMin;
  345.       acbox->yMax = yMax;
  346.     }
  347.   }
  348.   /* documentation is in ftoutln.h */
  349.   FT_EXPORT_DEF( void )
  350.   FT_Outline_Translate( const FT_Outline*  outline,
  351.                         FT_Pos             xOffset,
  352.                         FT_Pos             yOffset )
  353.   {
  354.     FT_UShort   n;
  355.     FT_Vector*  vec = outline->points;
  356.     if ( !outline )
  357.       return;
  358.     for ( n = 0; n < outline->n_points; n++ )
  359.     {
  360.       vec->x += xOffset;
  361.       vec->y += yOffset;
  362.       vec++;
  363.     }
  364.   }
  365.   /* documentation is in ftoutln.h */
  366.   FT_EXPORT_DEF( void )
  367.   FT_Outline_Reverse( FT_Outline*  outline )
  368.   {
  369.     FT_UShort  n;
  370.     FT_Int     first, last;
  371.     if ( !outline )
  372.       return;
  373.     first = 0;
  374.     for ( n = 0; n < outline->n_contours; n++ )
  375.     {
  376.       last  = outline->contours[n];
  377.       /* reverse point table */
  378.       {
  379.         FT_Vector*  p = outline->points + first;
  380.         FT_Vector*  q = outline->points + last;
  381.         FT_Vector   swap;
  382.         while ( p < q )
  383.         {
  384.           swap = *p;
  385.           *p   = *q;
  386.           *q   = swap;
  387.           p++;
  388.           q--;
  389.         }
  390.       }
  391.       /* reverse tags table */
  392.       {
  393.         char*  p = outline->tags + first;
  394.         char*  q = outline->tags + last;
  395.         char   swap;
  396.         while ( p < q )
  397.         {
  398.           swap = *p;
  399.           *p   = *q;
  400.           *q   = swap;
  401.           p++;
  402.           q--;
  403.         }
  404.       }
  405.       first = last + 1;
  406.     }
  407.     outline->flags ^= FT_OUTLINE_REVERSE_FILL;
  408.   }
  409.   /* documentation is in ftoutln.h */
  410.   FT_EXPORT_DEF( FT_Error )
  411.   FT_Outline_Render( FT_Library         library,
  412.                      FT_Outline*        outline,
  413.                      FT_Raster_Params*  params )
  414.   {
  415.     FT_Error     error;
  416.     FT_Bool      update = 0;
  417.     FT_Renderer  renderer;
  418.     FT_ListNode  node;
  419.     if ( !library )
  420.       return FT_Err_Invalid_Library_Handle;
  421.     if ( !outline || !params )
  422.       return FT_Err_Invalid_Argument;
  423.     renderer = library->cur_renderer;
  424.     node     = library->renderers.head;
  425.     params->source = (void*)outline;
  426.     error = FT_Err_Cannot_Render_Glyph;
  427.     while ( renderer )
  428.     {
  429.       error = renderer->raster_render( renderer->raster, params );
  430.       if ( !error || FT_ERROR_BASE( error ) != FT_Err_Cannot_Render_Glyph )
  431.         break;
  432.       /* FT_Err_Cannot_Render_Glyph is returned if the render mode   */
  433.       /* is unsupported by the current renderer for this glyph image */
  434.       /* format                                                      */
  435.       /* now, look for another renderer that supports the same */
  436.       /* format                                                */
  437.       renderer = FT_Lookup_Renderer( library, FT_GLYPH_FORMAT_OUTLINE,
  438.                                      &node );
  439.       update   = 1;
  440.     }
  441.     /* if we changed the current renderer for the glyph image format */
  442.     /* we need to select it as the next current one                  */
  443.     if ( !error && update && renderer )
  444.       FT_Set_Renderer( library, renderer, 0, 0 );
  445.     return error;
  446.   }
  447.   /* documentation is in ftoutln.h */
  448.   FT_EXPORT_DEF( FT_Error )
  449.   FT_Outline_Get_Bitmap( FT_Library        library,
  450.                          FT_Outline*       outline,
  451.                          const FT_Bitmap  *abitmap )
  452.   {
  453.     FT_Raster_Params  params;
  454.     if ( !abitmap )
  455.       return FT_Err_Invalid_Argument;
  456.     /* other checks are delayed to FT_Outline_Render() */
  457.     params.target = abitmap;
  458.     params.flags  = 0;
  459.     if ( abitmap->pixel_mode == FT_PIXEL_MODE_GRAY  ||
  460.          abitmap->pixel_mode == FT_PIXEL_MODE_LCD   ||
  461.          abitmap->pixel_mode == FT_PIXEL_MODE_LCD_V )
  462.       params.flags |= FT_RASTER_FLAG_AA;
  463.     return FT_Outline_Render( library, outline, &params );
  464.   }
  465.   /* documentation is in ftoutln.h */
  466.   FT_EXPORT_DEF( void )
  467.   FT_Vector_Transform( FT_Vector*        vector,
  468.                        const FT_Matrix*  matrix )
  469.   {
  470.     FT_Pos xz, yz;
  471.     if ( !vector || !matrix )
  472.       return;
  473.     xz = FT_MulFix( vector->x, matrix->xx ) +
  474.          FT_MulFix( vector->y, matrix->xy );
  475.     yz = FT_MulFix( vector->x, matrix->yx ) +
  476.          FT_MulFix( vector->y, matrix->yy );
  477.     vector->x = xz;
  478.     vector->y = yz;
  479.   }
  480.   /* documentation is in ftoutln.h */
  481.   FT_EXPORT_DEF( void )
  482.   FT_Outline_Transform( const FT_Outline*  outline,
  483.                         const FT_Matrix*   matrix )
  484.   {
  485.     FT_Vector*  vec;
  486.     FT_Vector*  limit;
  487.     if ( !outline || !matrix )
  488.       return;
  489.     vec   = outline->points;
  490.     limit = vec + outline->n_points;
  491.     for ( ; vec < limit; vec++ )
  492.       FT_Vector_Transform( vec, matrix );
  493.   }
  494. #if 0
  495. #define FT_OUTLINE_GET_CONTOUR( outline, c, first, last )  
  496.   do {                                                     
  497.     (first) = ( c > 0 ) ? (outline)->points +              
  498.                             (outline)->contours[c - 1] + 1 
  499.                         : (outline)->points;               
  500.     (last) = (outline)->points + (outline)->contours[c];   
  501.   } while ( 0 )
  502.   /* Is a point in some contour?                     */
  503.   /*                                                 */
  504.   /* We treat every point of the contour as if it    */
  505.   /* it were ON.  That is, we allow false positives, */
  506.   /* but disallow false negatives.  (XXX really?)    */
  507.   static FT_Bool
  508.   ft_contour_has( FT_Outline*  outline,
  509.                   FT_Short     c,
  510.                   FT_Vector*   point )
  511.   {
  512.     FT_Vector*  first;
  513.     FT_Vector*  last;
  514.     FT_Vector*  a;
  515.     FT_Vector*  b;
  516.     FT_UInt     n = 0;
  517.     FT_OUTLINE_GET_CONTOUR( outline, c, first, last );
  518.     for ( a = first; a <= last; a++ )
  519.     {
  520.       FT_Pos  x;
  521.       FT_Int  intersect;
  522.       b = ( a == last ) ? first : a + 1;
  523.       intersect = ( a->y - point->y ) ^ ( b->y - point->y );
  524.       /* a and b are on the same side */
  525.       if ( intersect >= 0 )
  526.       {
  527.         if ( intersect == 0 && a->y == point->y )
  528.         {
  529.           if ( ( a->x <= point->x && b->x >= point->x ) ||
  530.                ( a->x >= point->x && b->x <= point->x ) )
  531.             return 1;
  532.         }
  533.         continue;
  534.       }
  535.       x = a->x + ( b->x - a->x ) * (point->y - a->y ) / ( b->y - a->y );
  536.       if ( x < point->x )
  537.         n++;
  538.       else if ( x == point->x )
  539.         return 1;
  540.     }
  541.     return ( n % 2 );
  542.   }
  543.   static FT_Bool
  544.   ft_contour_enclosed( FT_Outline*  outline,
  545.                        FT_UShort    c )
  546.   {
  547.     FT_Vector*  first;
  548.     FT_Vector*  last;
  549.     FT_Short    i;
  550.     FT_OUTLINE_GET_CONTOUR( outline, c, first, last );
  551.     for ( i = 0; i < outline->n_contours; i++ )
  552.     {
  553.       if ( i != c && ft_contour_has( outline, i, first ) )
  554.       {
  555.         FT_Vector*  pt;
  556.         for ( pt = first + 1; pt <= last; pt++ )
  557.           if ( !ft_contour_has( outline, i, pt ) )
  558.             return 0;
  559.         return 1;
  560.       }
  561.     }
  562.     return 0;
  563.   }
  564.   /* This version differs from the public one in that each */
  565.   /* part (contour not enclosed in another contour) of the */
  566.   /* outline is checked for orientation.  This is          */
  567.   /* necessary for some buggy CJK fonts.                   */
  568.   static FT_Orientation
  569.   ft_outline_get_orientation( FT_Outline*  outline )
  570.   {
  571.     FT_Short        i;
  572.     FT_Vector*      first;
  573.     FT_Vector*      last;
  574.     FT_Orientation  orient = FT_ORIENTATION_NONE;
  575.     first = outline->points;
  576.     for ( i = 0; i < outline->n_contours; i++, first = last + 1 )
  577.     {
  578.       FT_Vector*  point;
  579.       FT_Vector*  xmin_point;
  580.       FT_Pos      xmin;
  581.       last = outline->points + outline->contours[i];
  582.       /* skip degenerate contours */
  583.       if ( last < first + 2 )
  584.         continue;
  585.       if ( ft_contour_enclosed( outline, i ) )
  586.         continue;
  587.       xmin       = first->x;
  588.       xmin_point = first;
  589.       for ( point = first + 1; point <= last; point++ )
  590.       {
  591.         if ( point->x < xmin )
  592.         {
  593.           xmin       = point->x;
  594.           xmin_point = point;
  595.         }
  596.       }
  597.       /* check the orientation of the contour */
  598.       {
  599.         FT_Vector*      prev;
  600.         FT_Vector*      next;
  601.         FT_Orientation  o;
  602.         prev = ( xmin_point == first ) ? last : xmin_point - 1;
  603.         next = ( xmin_point == last ) ? first : xmin_point + 1;
  604.         if ( FT_Atan2( prev->x - xmin_point->x, prev->y - xmin_point->y ) >
  605.              FT_Atan2( next->x - xmin_point->x, next->y - xmin_point->y ) )
  606.           o = FT_ORIENTATION_POSTSCRIPT;
  607.         else
  608.           o = FT_ORIENTATION_TRUETYPE;
  609.         if ( orient == FT_ORIENTATION_NONE )
  610.           orient = o;
  611.         else if ( orient != o )
  612.           return FT_ORIENTATION_NONE;
  613.       }
  614.     }
  615.     return orient;
  616.   }
  617. #endif /* 0 */
  618.   /* documentation is in ftoutln.h */
  619.   FT_EXPORT_DEF( FT_Error )
  620.   FT_Outline_Embolden( FT_Outline*  outline,
  621.                        FT_Pos       strength )
  622.   {
  623.     FT_Vector*  points;
  624.     FT_Vector   v_prev, v_first, v_next, v_cur;
  625.     FT_Angle    rotate, angle_in, angle_out;
  626.     FT_Int      c, n, first;
  627.     FT_Int      orientation;
  628.     if ( !outline )
  629.       return FT_Err_Invalid_Argument;
  630.     strength /= 2;
  631.     if ( strength == 0 )
  632.       return FT_Err_Ok;
  633.     orientation = FT_Outline_Get_Orientation( outline );
  634.     if ( orientation == FT_ORIENTATION_NONE )
  635.     {
  636.       if ( outline->n_contours )
  637.         return FT_Err_Invalid_Argument;
  638.       else
  639.         return FT_Err_Ok;
  640.     }
  641.     if ( orientation == FT_ORIENTATION_TRUETYPE )
  642.       rotate = -FT_ANGLE_PI2;
  643.     else
  644.       rotate = FT_ANGLE_PI2;
  645.     points = outline->points;
  646.     first = 0;
  647.     for ( c = 0; c < outline->n_contours; c++ )
  648.     {
  649.       int  last = outline->contours[c];
  650.       v_first = points[first];
  651.       v_prev  = points[last];
  652.       v_cur   = v_first;
  653.       for ( n = first; n <= last; n++ )
  654.       {
  655.         FT_Vector  in, out;
  656.         FT_Angle   angle_diff;
  657.         FT_Pos     d;
  658.         FT_Fixed   scale;
  659.         if ( n < last )
  660.           v_next = points[n + 1];
  661.         else
  662.           v_next = v_first;
  663.         /* compute the in and out vectors */
  664.         in.x = v_cur.x - v_prev.x;
  665.         in.y = v_cur.y - v_prev.y;
  666.         out.x = v_next.x - v_cur.x;
  667.         out.y = v_next.y - v_cur.y;
  668.         angle_in   = FT_Atan2( in.x, in.y );
  669.         angle_out  = FT_Atan2( out.x, out.y );
  670.         angle_diff = FT_Angle_Diff( angle_in, angle_out );
  671.         scale      = FT_Cos( angle_diff / 2 );
  672.         if ( scale < 0x4000L && scale > -0x4000L )
  673.           in.x = in.y = 0;
  674.         else
  675.         {
  676.           d = FT_DivFix( strength, scale );
  677.           FT_Vector_From_Polar( &in, d, angle_in + angle_diff / 2 - rotate );
  678.         }
  679.         outline->points[n].x = v_cur.x + strength + in.x;
  680.         outline->points[n].y = v_cur.y + strength + in.y;
  681.         v_prev = v_cur;
  682.         v_cur  = v_next;
  683.       }
  684.       first = last + 1;
  685.     }
  686.     return FT_Err_Ok;
  687.   }
  688.   /* documentation is in ftoutln.h */
  689.   FT_EXPORT_DEF( FT_Orientation )
  690.   FT_Outline_Get_Orientation( FT_Outline*  outline )
  691.   {
  692.     FT_Pos      xmin       = 32768L;
  693.     FT_Pos      xmin_ymin  = 32768L;
  694.     FT_Pos      xmin_ymax  = -32768L;
  695.     FT_Vector*  xmin_first = NULL;
  696.     FT_Vector*  xmin_last  = NULL;
  697.     short*      contour;
  698.     FT_Vector*  first;
  699.     FT_Vector*  last;
  700.     FT_Vector*  prev;
  701.     FT_Vector*  point;
  702.     int             i;
  703.     FT_Pos          ray_y[3];
  704.     FT_Orientation  result[3];
  705.     if ( !outline || outline->n_points <= 0 )
  706.       return FT_ORIENTATION_TRUETYPE;
  707.     /* We use the nonzero winding rule to find the orientation.       */
  708.     /* Since glyph outlines behave much more `regular' than arbitrary */
  709.     /* cubic or quadratic curves, this test deals with the polygon    */
  710.     /* only which is spanned up by the control points.                */
  711.     first = outline->points;
  712.     for ( contour = outline->contours;
  713.           contour < outline->contours + outline->n_contours;
  714.           contour++, first = last + 1 )
  715.     {
  716.       FT_Pos  contour_xmin = 32768L;
  717.       FT_Pos  contour_xmax = -32768L;
  718.       FT_Pos  contour_ymin = 32768L;
  719.       FT_Pos  contour_ymax = -32768L;
  720.       last = outline->points + *contour;
  721.       /* skip degenerate contours */
  722.       if ( last < first + 2 )
  723.         continue;
  724.       for ( point = first; point <= last; ++point )
  725.       {
  726.         if ( point->x < contour_xmin )
  727.           contour_xmin = point->x;
  728.         if ( point->x > contour_xmax )
  729.           contour_xmax = point->x;
  730.         if ( point->y < contour_ymin )
  731.           contour_ymin = point->y;
  732.         if ( point->y > contour_ymax )
  733.           contour_ymax = point->y;
  734.       }
  735.       if ( contour_xmin < xmin          &&
  736.            contour_xmin != contour_xmax &&
  737.            contour_ymin != contour_ymax )
  738.       {
  739.         xmin       = contour_xmin;
  740.         xmin_ymin  = contour_ymin;
  741.         xmin_ymax  = contour_ymax;
  742.         xmin_first = first;
  743.         xmin_last  = last;
  744.       }
  745.     }
  746.     if ( xmin == 32768 )
  747.       return FT_ORIENTATION_TRUETYPE;
  748.     ray_y[0] = ( xmin_ymin * 3 + xmin_ymax     ) >> 2;
  749.     ray_y[1] = ( xmin_ymin     + xmin_ymax     ) >> 1;
  750.     ray_y[2] = ( xmin_ymin     + xmin_ymax * 3 ) >> 2;
  751.     for ( i = 0; i < 3; i++ )
  752.     {
  753.       FT_Pos      left_x;
  754.       FT_Pos      right_x;
  755.       FT_Vector*  left1;
  756.       FT_Vector*  left2;
  757.       FT_Vector*  right1;
  758.       FT_Vector*  right2;
  759.     RedoRay:
  760.       left_x  = 32768L;
  761.       right_x = -32768L;
  762.       left1 = left2 = right1 = right2 = NULL;
  763.       prev = xmin_last;
  764.       for ( point = xmin_first; point <= xmin_last; prev = point, ++point )
  765.       {
  766.         FT_Pos  tmp_x;
  767.         if ( point->y == ray_y[i] || prev->y == ray_y[i] )
  768.         {
  769.           ray_y[i]++;
  770.           goto RedoRay;
  771.         }
  772.         if ( ( point->y < ray_y[i] && prev->y < ray_y[i] ) ||
  773.              ( point->y > ray_y[i] && prev->y > ray_y[i] ) )
  774.           continue;
  775.         tmp_x = FT_MulDiv( point->x - prev->x,
  776.                            ray_y[i] - prev->y,
  777.                            point->y - prev->y ) + prev->x;
  778.         if ( tmp_x < left_x )
  779.         {
  780.           left_x = tmp_x;
  781.           left1  = prev;
  782.           left2  = point;
  783.         }
  784.         if ( tmp_x > right_x )
  785.         {
  786.           right_x = tmp_x;
  787.           right1  = prev;
  788.           right2  = point;
  789.         }
  790.       }
  791.       if ( left1 && right1 )
  792.       {
  793.         if ( left1->y < left2->y && right1->y > right2->y )
  794.           result[i] = FT_ORIENTATION_TRUETYPE;
  795.         else if ( left1->y > left2->y && right1->y < right2->y )
  796.           result[i] = FT_ORIENTATION_POSTSCRIPT;
  797.         else
  798.           result[i] = FT_ORIENTATION_NONE;
  799.       }
  800.     }
  801.     if ( result[0] != FT_ORIENTATION_NONE                     &&
  802.          ( result[0] == result[1] || result[0] == result[2] ) )
  803.       return result[0];
  804.     if ( result[1] != FT_ORIENTATION_NONE && result[1] == result[2] )
  805.       return result[1];
  806.     return FT_ORIENTATION_TRUETYPE;
  807.   }
  808. /* END */