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

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  ftgrays.c                                                              */
  4. /*                                                                         */
  5. /*    A new `perfect' anti-aliasing renderer (body).                       */
  6. /*                                                                         */
  7. /*  Copyright 2000-2001, 2002, 2003, 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.   /* This file can be compiled without the rest of the FreeType engine, by */
  20.   /* defining the _STANDALONE_ macro when compiling it.  You also need to  */
  21.   /* put the files `ftgrays.h' and `ftimage.h' into the current            */
  22.   /* compilation directory.  Typically, you could do something like        */
  23.   /*                                                                       */
  24.   /* - copy `src/smooth/ftgrays.c' (this file) to your current directory   */
  25.   /*                                                                       */
  26.   /* - copy `include/freetype/ftimage.h' and `src/smooth/ftgrays.h' to the */
  27.   /*   same directory                                                      */
  28.   /*                                                                       */
  29.   /* - compile `ftgrays' with the _STANDALONE_ macro defined, as in        */
  30.   /*                                                                       */
  31.   /*     cc -c -D_STANDALONE_ ftgrays.c                                    */
  32.   /*                                                                       */
  33.   /* The renderer can be initialized with a call to                        */
  34.   /* `ft_gray_raster.raster_new'; an anti-aliased bitmap can be generated  */
  35.   /* with a call to `ft_gray_raster.raster_render'.                        */
  36.   /*                                                                       */
  37.   /* See the comments and documentation in the file `ftimage.h' for more   */
  38.   /* details on how the raster works.                                      */
  39.   /*                                                                       */
  40.   /*************************************************************************/
  41.   /*************************************************************************/
  42.   /*                                                                       */
  43.   /* This is a new anti-aliasing scan-converter for FreeType 2.  The       */
  44.   /* algorithm used here is _very_ different from the one in the standard  */
  45.   /* `ftraster' module.  Actually, `ftgrays' computes the _exact_          */
  46.   /* coverage of the outline on each pixel cell.                           */
  47.   /*                                                                       */
  48.   /* It is based on ideas that I initially found in Raph Levien's          */
  49.   /* excellent LibArt graphics library (see http://www.levien.com/libart   */
  50.   /* for more information, though the web pages do not tell anything       */
  51.   /* about the renderer; you'll have to dive into the source code to       */
  52.   /* understand how it works).                                             */
  53.   /*                                                                       */
  54.   /* Note, however, that this is a _very_ different implementation         */
  55.   /* compared to Raph's.  Coverage information is stored in a very         */
  56.   /* different way, and I don't use sorted vector paths.  Also, it doesn't */
  57.   /* use floating point values.                                            */
  58.   /*                                                                       */
  59.   /* This renderer has the following advantages:                           */
  60.   /*                                                                       */
  61.   /* - It doesn't need an intermediate bitmap.  Instead, one can supply a  */
  62.   /*   callback function that will be called by the renderer to draw gray  */
  63.   /*   spans on any target surface.  You can thus do direct composition on */
  64.   /*   any kind of bitmap, provided that you give the renderer the right   */
  65.   /*   callback.                                                           */
  66.   /*                                                                       */
  67.   /* - A perfect anti-aliaser, i.e., it computes the _exact_ coverage on   */
  68.   /*   each pixel cell.                                                    */
  69.   /*                                                                       */
  70.   /* - It performs a single pass on the outline (the `standard' FT2        */
  71.   /*   renderer makes two passes).                                         */
  72.   /*                                                                       */
  73.   /* - It can easily be modified to render to _any_ number of gray levels  */
  74.   /*   cheaply.                                                            */
  75.   /*                                                                       */
  76.   /* - For small (< 20) pixel sizes, it is faster than the standard        */
  77.   /*   renderer.                                                           */
  78.   /*                                                                       */
  79.   /*************************************************************************/
  80.   /*************************************************************************/
  81.   /*                                                                       */
  82.   /* The macro FT_COMPONENT is used in trace mode.  It is an implicit      */
  83.   /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log  */
  84.   /* messages during execution.                                            */
  85.   /*                                                                       */
  86. #undef  FT_COMPONENT
  87. #define FT_COMPONENT  trace_smooth
  88. #ifdef _STANDALONE_
  89. #include <string.h>             /* for ft_memcpy() */
  90. #include <setjmp.h>
  91. #include <limits.h>
  92. #define FT_UINT_MAX  UINT_MAX
  93. #define ft_memset   memset
  94. #define ft_setjmp   setjmp
  95. #define ft_longjmp  longjmp
  96. #define ft_jmp_buf  jmp_buf
  97. #define ErrRaster_Invalid_Mode      -2
  98. #define ErrRaster_Invalid_Outline   -1
  99. #define ErrRaster_Invalid_Argument  -3
  100. #define ErrRaster_Memory_Overflow   -4
  101. #define FT_BEGIN_HEADER
  102. #define FT_END_HEADER
  103. #include "ftimage.h"
  104. #include "ftgrays.h"
  105.   /* This macro is used to indicate that a function parameter is unused. */
  106.   /* Its purpose is simply to reduce compiler warnings.  Note also that  */
  107.   /* simply defining it as `(void)x' doesn't avoid warnings with certain */
  108.   /* ANSI compilers (e.g. LCC).                                          */
  109. #define FT_UNUSED( x )  (x) = (x)
  110.   /* Disable the tracing mechanism for simplicity -- developers can      */
  111.   /* activate it easily by redefining these two macros.                  */
  112. #ifndef FT_ERROR
  113. #define FT_ERROR( x )  do ; while ( 0 )     /* nothing */
  114. #endif
  115. #ifndef FT_TRACE
  116. #define FT_TRACE( x )  do ; while ( 0 )     /* nothing */
  117. #endif
  118. #else /* !_STANDALONE_ */
  119. #include <ft2build.h>
  120. #include "ftgrays.h"
  121. #include FT_INTERNAL_OBJECTS_H
  122. #include FT_INTERNAL_DEBUG_H
  123. #include FT_OUTLINE_H
  124. #include "ftsmerrs.h"
  125. #define ErrRaster_Invalid_Mode     Smooth_Err_Cannot_Render_Glyph
  126. #define ErrRaster_Invalid_Outline  Smooth_Err_Invalid_Outline
  127. #define ErrRaster_Memory_Overflow  Smooth_Err_Out_Of_Memory
  128. #define ErrRaster_Invalid_Argument Smooth_Err_Bad_Argument
  129. #endif /* !_STANDALONE_ */
  130. #ifndef FT_MEM_SET
  131. #define FT_MEM_SET( d, s, c )  ft_memset( d, s, c )
  132. #endif
  133. #ifndef FT_MEM_ZERO
  134. #define FT_MEM_ZERO( dest, count )  FT_MEM_SET( dest, 0, count )
  135. #endif
  136.   /* define this to dump debugging information */
  137. #define xxxDEBUG_GRAYS
  138.   /* as usual, for the speed hungry :-) */
  139. #ifndef FT_STATIC_RASTER
  140. #define RAS_ARG   PWorker  worker
  141. #define RAS_ARG_  PWorker  worker,
  142. #define RAS_VAR   worker
  143. #define RAS_VAR_  worker,
  144. #define ras       (*worker)
  145. #else /* FT_STATIC_RASTER */
  146. #define RAS_ARG   /* empty */
  147. #define RAS_ARG_  /* empty */
  148. #define RAS_VAR   /* empty */
  149. #define RAS_VAR_  /* empty */
  150.   static TWorker  ras;
  151. #endif /* FT_STATIC_RASTER */
  152.   /* must be at least 6 bits! */
  153. #define PIXEL_BITS  8
  154. #define ONE_PIXEL       ( 1L << PIXEL_BITS )
  155. #define PIXEL_MASK      ( -1L << PIXEL_BITS )
  156. #define TRUNC( x )      ( (TCoord)( (x) >> PIXEL_BITS ) )
  157. #define SUBPIXELS( x )  ( (TPos)(x) << PIXEL_BITS )
  158. #define FLOOR( x )      ( (x) & -ONE_PIXEL )
  159. #define CEILING( x )    ( ( (x) + ONE_PIXEL - 1 ) & -ONE_PIXEL )
  160. #define ROUND( x )      ( ( (x) + ONE_PIXEL / 2 ) & -ONE_PIXEL )
  161. #if PIXEL_BITS >= 6
  162. #define UPSCALE( x )    ( (x) << ( PIXEL_BITS - 6 ) )
  163. #define DOWNSCALE( x )  ( (x) >> ( PIXEL_BITS - 6 ) )
  164. #else
  165. #define UPSCALE( x )    ( (x) >> ( 6 - PIXEL_BITS ) )
  166. #define DOWNSCALE( x )  ( (x) << ( 6 - PIXEL_BITS ) )
  167. #endif
  168.   /*************************************************************************/
  169.   /*                                                                       */
  170.   /*   TYPE DEFINITIONS                                                    */
  171.   /*                                                                       */
  172.   /* don't change the following types to FT_Int or FT_Pos, since we might */
  173.   /* need to define them to "float" or "double" when experimenting with   */
  174.   /* new algorithms                                                       */
  175.   typedef int   TCoord;   /* integer scanline/pixel coordinate */
  176.   typedef long  TPos;     /* sub-pixel coordinate              */
  177.   /* determine the type used to store cell areas.  This normally takes at */
  178.   /* least PIXEL_BITS*2 + 1 bits.  On 16-bit systems, we need to use      */
  179.   /* `long' instead of `int', otherwise bad things happen                 */
  180. #if PIXEL_BITS <= 7
  181.   typedef int  TArea;
  182. #else /* PIXEL_BITS >= 8 */
  183.   /* approximately determine the size of integers using an ANSI-C header */
  184. #if FT_UINT_MAX == 0xFFFFU
  185.   typedef long  TArea;
  186. #else
  187.   typedef int   TArea;
  188. #endif
  189. #endif /* PIXEL_BITS >= 8 */
  190.   /* maximal number of gray spans in a call to the span callback */
  191. #define FT_MAX_GRAY_SPANS  32
  192.   typedef struct TCell_*  PCell;
  193.   typedef struct  TCell_
  194.   {
  195.     int    x;
  196.     int    cover;
  197.     TArea  area;
  198.     PCell  next;
  199.   } TCell;
  200.   typedef struct  TWorker_
  201.   {
  202.     TCoord  ex, ey;
  203.     TPos    min_ex, max_ex;
  204.     TPos    min_ey, max_ey;
  205.     TPos    count_ex, count_ey;
  206.     TArea   area;
  207.     int     cover;
  208.     int     invalid;
  209.     PCell   cells;
  210.     int     max_cells;
  211.     int     num_cells;
  212.     TCoord  cx, cy;
  213.     TPos    x,  y;
  214.     TPos    last_ey;
  215.     FT_Vector   bez_stack[32 * 3 + 1];
  216.     int         lev_stack[32];
  217.     FT_Outline  outline;
  218.     FT_Bitmap   target;
  219.     FT_BBox     clip_box;
  220.     FT_Span     gray_spans[FT_MAX_GRAY_SPANS];
  221.     int         num_gray_spans;
  222.     FT_Raster_Span_Func  render_span;
  223.     void*                render_span_data;
  224.     int                  span_y;
  225.     int  band_size;
  226.     int  band_shoot;
  227.     int  conic_level;
  228.     int  cubic_level;
  229.     ft_jmp_buf  jump_buffer;
  230.     void*       buffer;
  231.     long        buffer_size;
  232.     PCell*     ycells;
  233.     int        ycount;
  234.   } TWorker, *PWorker;
  235.   typedef struct TRaster_
  236.   {
  237.     void*    buffer;
  238.     long     buffer_size;
  239.     int      band_size;
  240.     void*    memory;
  241.     PWorker  worker;
  242.   } TRaster, *PRaster;
  243.   /*************************************************************************/
  244.   /*                                                                       */
  245.   /* Initialize the cells table.                                           */
  246.   /*                                                                       */
  247.   static void
  248.   gray_init_cells( RAS_ARG_ void*  buffer,
  249.                    long            byte_size )
  250.   {
  251.     ras.buffer      = buffer;
  252.     ras.buffer_size = byte_size;
  253.     ras.ycells      = (PCell*) buffer;
  254.     ras.cells       = NULL;
  255.     ras.max_cells   = 0;
  256.     ras.num_cells   = 0;
  257.     ras.area        = 0;
  258.     ras.cover       = 0;
  259.     ras.invalid     = 1;
  260.   }
  261.   /*************************************************************************/
  262.   /*                                                                       */
  263.   /* Compute the outline bounding box.                                     */
  264.   /*                                                                       */
  265.   static void
  266.   gray_compute_cbox( RAS_ARG )
  267.   {
  268.     FT_Outline*  outline = &ras.outline;
  269.     FT_Vector*   vec     = outline->points;
  270.     FT_Vector*   limit   = vec + outline->n_points;
  271.     if ( outline->n_points <= 0 )
  272.     {
  273.       ras.min_ex = ras.max_ex = 0;
  274.       ras.min_ey = ras.max_ey = 0;
  275.       return;
  276.     }
  277.     ras.min_ex = ras.max_ex = vec->x;
  278.     ras.min_ey = ras.max_ey = vec->y;
  279.     vec++;
  280.     for ( ; vec < limit; vec++ )
  281.     {
  282.       TPos  x = vec->x;
  283.       TPos  y = vec->y;
  284.       if ( x < ras.min_ex ) ras.min_ex = x;
  285.       if ( x > ras.max_ex ) ras.max_ex = x;
  286.       if ( y < ras.min_ey ) ras.min_ey = y;
  287.       if ( y > ras.max_ey ) ras.max_ey = y;
  288.     }
  289.     /* truncate the bounding box to integer pixels */
  290.     ras.min_ex = ras.min_ex >> 6;
  291.     ras.min_ey = ras.min_ey >> 6;
  292.     ras.max_ex = ( ras.max_ex + 63 ) >> 6;
  293.     ras.max_ey = ( ras.max_ey + 63 ) >> 6;
  294.   }
  295.   /*************************************************************************/
  296.   /*                                                                       */
  297.   /* Record the current cell in the table.                                 */
  298.   /*                                                                       */
  299.   static PCell
  300.   gray_find_cell( RAS_ARG )
  301.   {
  302.     PCell  *pcell, cell;
  303.     int     x = ras.ex;
  304.     if ( x > ras.max_ex )
  305.       x = ras.max_ex;
  306.     pcell = &ras.ycells[ras.ey];
  307.     for (;;)
  308.     {
  309.       cell = *pcell;
  310.       if ( cell == NULL || cell->x > x )
  311.         break;
  312.       if ( cell->x == x )
  313.         goto Exit;
  314.       pcell = &cell->next;
  315.     }
  316.     if ( ras.num_cells >= ras.max_cells )
  317.       ft_longjmp( ras.jump_buffer, 1 );
  318.     cell        = ras.cells + ras.num_cells++;
  319.     cell->x     = x;
  320.     cell->area  = 0;
  321.     cell->cover = 0;
  322.     cell->next  = *pcell;
  323.     *pcell      = cell;
  324.   Exit:
  325.     return cell;
  326.   }
  327.   static void
  328.   gray_record_cell( RAS_ARG )
  329.   {
  330.     if ( !ras.invalid && ( ras.area | ras.cover ) )
  331.     {
  332.       PCell  cell = gray_find_cell( RAS_VAR );
  333.       cell->area  += ras.area;
  334.       cell->cover += ras.cover;
  335.     }
  336.   }
  337.   /*************************************************************************/
  338.   /*                                                                       */
  339.   /* Set the current cell to a new position.                               */
  340.   /*                                                                       */
  341.   static void
  342.   gray_set_cell( RAS_ARG_ TCoord  ex,
  343.                           TCoord  ey )
  344.   {
  345.     /* Move the cell pointer to a new position.  We set the `invalid'      */
  346.     /* flag to indicate that the cell isn't part of those we're interested */
  347.     /* in during the render phase.  This means that:                       */
  348.     /*                                                                     */
  349.     /* . the new vertical position must be within min_ey..max_ey-1.        */
  350.     /* . the new horizontal position must be strictly less than max_ex     */
  351.     /*                                                                     */
  352.     /* Note that if a cell is to the left of the clipping region, it is    */
  353.     /* actually set to the (min_ex-1) horizontal position.                 */
  354.     /* All cells that are on the left of the clipping region go to the */
  355.     /* min_ex - 1 horizontal position.                                 */
  356.     ey -= ras.min_ey;
  357.     if ( ex > ras.max_ex )
  358.       ex = ras.max_ex;
  359.     ex -= ras.min_ex;
  360.     if ( ex < 0 )
  361.       ex = -1;
  362.     /* are we moving to a different cell ? */
  363.     if ( ex != ras.ex || ey != ras.ey )
  364.     {
  365.       /* record the current one if it is valid */
  366.       if ( !ras.invalid )
  367.         gray_record_cell( RAS_VAR );
  368.       ras.area  = 0;
  369.       ras.cover = 0;
  370.     }
  371.     ras.ex      = ex;
  372.     ras.ey      = ey;
  373.     ras.invalid = ( (unsigned)ey >= (unsigned)ras.count_ey ||
  374.                               ex >= ras.count_ex           );
  375.   }
  376.   /*************************************************************************/
  377.   /*                                                                       */
  378.   /* Start a new contour at a given cell.                                  */
  379.   /*                                                                       */
  380.   static void
  381.   gray_start_cell( RAS_ARG_ TCoord  ex,
  382.                             TCoord  ey )
  383.   {
  384.     if ( ex > ras.max_ex )
  385.       ex = (TCoord)( ras.max_ex );
  386.     if ( ex < ras.min_ex )
  387.       ex = (TCoord)( ras.min_ex - 1 );
  388.     ras.area    = 0;
  389.     ras.cover   = 0;
  390.     ras.ex      = ex - ras.min_ex;
  391.     ras.ey      = ey - ras.min_ey;
  392.     ras.last_ey = SUBPIXELS( ey );
  393.     ras.invalid = 0;
  394.     gray_set_cell( RAS_VAR_ ex, ey );
  395.   }
  396.   /*************************************************************************/
  397.   /*                                                                       */
  398.   /* Render a scanline as one or more cells.                               */
  399.   /*                                                                       */
  400.   static void
  401.   gray_render_scanline( RAS_ARG_ TCoord  ey,
  402.                                  TPos    x1,
  403.                                  TCoord  y1,
  404.                                  TPos    x2,
  405.                                  TCoord  y2 )
  406.   {
  407.     TCoord  ex1, ex2, fx1, fx2, delta;
  408.     long    p, first, dx;
  409.     int     incr, lift, mod, rem;
  410.     dx = x2 - x1;
  411.     ex1 = TRUNC( x1 );
  412.     ex2 = TRUNC( x2 );
  413.     fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) );
  414.     fx2 = (TCoord)( x2 - SUBPIXELS( ex2 ) );
  415.     /* trivial case.  Happens often */
  416.     if ( y1 == y2 )
  417.     {
  418.       gray_set_cell( RAS_VAR_ ex2, ey );
  419.       return;
  420.     }
  421.     /* everything is located in a single cell.  That is easy! */
  422.     /*                                                        */
  423.     if ( ex1 == ex2 )
  424.     {
  425.       delta      = y2 - y1;
  426.       ras.area  += (TArea)( fx1 + fx2 ) * delta;
  427.       ras.cover += delta;
  428.       return;
  429.     }
  430.     /* ok, we'll have to render a run of adjacent cells on the same */
  431.     /* scanline...                                                  */
  432.     /*                                                              */
  433.     p     = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
  434.     first = ONE_PIXEL;
  435.     incr  = 1;
  436.     if ( dx < 0 )
  437.     {
  438.       p     = fx1 * ( y2 - y1 );
  439.       first = 0;
  440.       incr  = -1;
  441.       dx    = -dx;
  442.     }
  443.     delta = (TCoord)( p / dx );
  444.     mod   = (TCoord)( p % dx );
  445.     if ( mod < 0 )
  446.     {
  447.       delta--;
  448.       mod += (TCoord)dx;
  449.     }
  450.     ras.area  += (TArea)( fx1 + first ) * delta;
  451.     ras.cover += delta;
  452.     ex1 += incr;
  453.     gray_set_cell( RAS_VAR_ ex1, ey );
  454.     y1  += delta;
  455.     if ( ex1 != ex2 )
  456.     {
  457.       p    = ONE_PIXEL * ( y2 - y1 + delta );
  458.       lift = (TCoord)( p / dx );
  459.       rem  = (TCoord)( p % dx );
  460.       if ( rem < 0 )
  461.       {
  462.         lift--;
  463.         rem += (TCoord)dx;
  464.       }
  465.       mod -= (int)dx;
  466.       while ( ex1 != ex2 )
  467.       {
  468.         delta = lift;
  469.         mod  += rem;
  470.         if ( mod >= 0 )
  471.         {
  472.           mod -= (TCoord)dx;
  473.           delta++;
  474.         }
  475.         ras.area  += (TArea)ONE_PIXEL * delta;
  476.         ras.cover += delta;
  477.         y1        += delta;
  478.         ex1       += incr;
  479.         gray_set_cell( RAS_VAR_ ex1, ey );
  480.       }
  481.     }
  482.     delta      = y2 - y1;
  483.     ras.area  += (TArea)( fx2 + ONE_PIXEL - first ) * delta;
  484.     ras.cover += delta;
  485.   }
  486.   /*************************************************************************/
  487.   /*                                                                       */
  488.   /* Render a given line as a series of scanlines.                         */
  489.   /*                                                                       */
  490.   static void
  491.   gray_render_line( RAS_ARG_ TPos  to_x,
  492.                              TPos  to_y )
  493.   {
  494.     TCoord  ey1, ey2, fy1, fy2;
  495.     TPos    dx, dy, x, x2;
  496.     long    p, first;
  497.     int     delta, rem, mod, lift, incr;
  498.     ey1 = TRUNC( ras.last_ey );
  499.     ey2 = TRUNC( to_y );     /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */
  500.     fy1 = (TCoord)( ras.y - ras.last_ey );
  501.     fy2 = (TCoord)( to_y - SUBPIXELS( ey2 ) );
  502.     dx = to_x - ras.x;
  503.     dy = to_y - ras.y;
  504.     /* XXX: we should do something about the trivial case where dx == 0, */
  505.     /*      as it happens very often!                                    */
  506.     /* perform vertical clipping */
  507.     {
  508.       TCoord  min, max;
  509.       min = ey1;
  510.       max = ey2;
  511.       if ( ey1 > ey2 )
  512.       {
  513.         min = ey2;
  514.         max = ey1;
  515.       }
  516.       if ( min >= ras.max_ey || max < ras.min_ey )
  517.         goto End;
  518.     }
  519.     /* everything is on a single scanline */
  520.     if ( ey1 == ey2 )
  521.     {
  522.       gray_render_scanline( RAS_VAR_ ey1, ras.x, fy1, to_x, fy2 );
  523.       goto End;
  524.     }
  525.     /* vertical line - avoid calling gray_render_scanline */
  526.     incr = 1;
  527.     if ( dx == 0 )
  528.     {
  529.       TCoord  ex     = TRUNC( ras.x );
  530.       TCoord  two_fx = (TCoord)( ( ras.x - SUBPIXELS( ex ) ) << 1 );
  531.       TPos    area;
  532.       first = ONE_PIXEL;
  533.       if ( dy < 0 )
  534.       {
  535.         first = 0;
  536.         incr  = -1;
  537.       }
  538.       delta      = (int)( first - fy1 );
  539.       ras.area  += (TArea)two_fx * delta;
  540.       ras.cover += delta;
  541.       ey1       += incr;
  542.       gray_set_cell( &ras, ex, ey1 );
  543.       delta = (int)( first + first - ONE_PIXEL );
  544.       area  = (TArea)two_fx * delta;
  545.       while ( ey1 != ey2 )
  546.       {
  547.         ras.area  += area;
  548.         ras.cover += delta;
  549.         ey1       += incr;
  550.         gray_set_cell( &ras, ex, ey1 );
  551.       }
  552.       delta      = (int)( fy2 - ONE_PIXEL + first );
  553.       ras.area  += (TArea)two_fx * delta;
  554.       ras.cover += delta;
  555.       goto End;
  556.     }
  557.     /* ok, we have to render several scanlines */
  558.     p     = ( ONE_PIXEL - fy1 ) * dx;
  559.     first = ONE_PIXEL;
  560.     incr  = 1;
  561.     if ( dy < 0 )
  562.     {
  563.       p     = fy1 * dx;
  564.       first = 0;
  565.       incr  = -1;
  566.       dy    = -dy;
  567.     }
  568.     delta = (int)( p / dy );
  569.     mod   = (int)( p % dy );
  570.     if ( mod < 0 )
  571.     {
  572.       delta--;
  573.       mod += (TCoord)dy;
  574.     }
  575.     x = ras.x + delta;
  576.     gray_render_scanline( RAS_VAR_ ey1, ras.x, fy1, x, (TCoord)first );
  577.     ey1 += incr;
  578.     gray_set_cell( RAS_VAR_ TRUNC( x ), ey1 );
  579.     if ( ey1 != ey2 )
  580.     {
  581.       p     = ONE_PIXEL * dx;
  582.       lift  = (int)( p / dy );
  583.       rem   = (int)( p % dy );
  584.       if ( rem < 0 )
  585.       {
  586.         lift--;
  587.         rem += (int)dy;
  588.       }
  589.       mod -= (int)dy;
  590.       while ( ey1 != ey2 )
  591.       {
  592.         delta = lift;
  593.         mod  += rem;
  594.         if ( mod >= 0 )
  595.         {
  596.           mod -= (int)dy;
  597.           delta++;
  598.         }
  599.         x2 = x + delta;
  600.         gray_render_scanline( RAS_VAR_ ey1, x,
  601.                                        (TCoord)( ONE_PIXEL - first ), x2,
  602.                                        (TCoord)first );
  603.         x = x2;
  604.         ey1 += incr;
  605.         gray_set_cell( RAS_VAR_ TRUNC( x ), ey1 );
  606.       }
  607.     }
  608.     gray_render_scanline( RAS_VAR_ ey1, x,
  609.                                    (TCoord)( ONE_PIXEL - first ), to_x,
  610.                                    fy2 );
  611.   End:
  612.     ras.x       = to_x;
  613.     ras.y       = to_y;
  614.     ras.last_ey = SUBPIXELS( ey2 );
  615.   }
  616.   static void
  617.   gray_split_conic( FT_Vector*  base )
  618.   {
  619.     TPos  a, b;
  620.     base[4].x = base[2].x;
  621.     b = base[1].x;
  622.     a = base[3].x = ( base[2].x + b ) / 2;
  623.     b = base[1].x = ( base[0].x + b ) / 2;
  624.     base[2].x = ( a + b ) / 2;
  625.     base[4].y = base[2].y;
  626.     b = base[1].y;
  627.     a = base[3].y = ( base[2].y + b ) / 2;
  628.     b = base[1].y = ( base[0].y + b ) / 2;
  629.     base[2].y = ( a + b ) / 2;
  630.   }
  631.   static void
  632.   gray_render_conic( RAS_ARG_ const FT_Vector*  control,
  633.                               const FT_Vector*  to )
  634.   {
  635.     TPos        dx, dy;
  636.     int         top, level;
  637.     int*        levels;
  638.     FT_Vector*  arc;
  639.     dx = DOWNSCALE( ras.x ) + to->x - ( control->x << 1 );
  640.     if ( dx < 0 )
  641.       dx = -dx;
  642.     dy = DOWNSCALE( ras.y ) + to->y - ( control->y << 1 );
  643.     if ( dy < 0 )
  644.       dy = -dy;
  645.     if ( dx < dy )
  646.       dx = dy;
  647.     level = 1;
  648.     dx = dx / ras.conic_level;
  649.     while ( dx > 0 )
  650.     {
  651.       dx >>= 2;
  652.       level++;
  653.     }
  654.     /* a shortcut to speed things up */
  655.     if ( level <= 1 )
  656.     {
  657.       /* we compute the mid-point directly in order to avoid */
  658.       /* calling gray_split_conic()                          */
  659.       TPos  to_x, to_y, mid_x, mid_y;
  660.       to_x  = UPSCALE( to->x );
  661.       to_y  = UPSCALE( to->y );
  662.       mid_x = ( ras.x + to_x + 2 * UPSCALE( control->x ) ) / 4;
  663.       mid_y = ( ras.y + to_y + 2 * UPSCALE( control->y ) ) / 4;
  664.       gray_render_line( RAS_VAR_ mid_x, mid_y );
  665.       gray_render_line( RAS_VAR_ to_x, to_y );
  666.       return;
  667.     }
  668.     arc       = ras.bez_stack;
  669.     levels    = ras.lev_stack;
  670.     top       = 0;
  671.     levels[0] = level;
  672.     arc[0].x = UPSCALE( to->x );
  673.     arc[0].y = UPSCALE( to->y );
  674.     arc[1].x = UPSCALE( control->x );
  675.     arc[1].y = UPSCALE( control->y );
  676.     arc[2].x = ras.x;
  677.     arc[2].y = ras.y;
  678.     while ( top >= 0 )
  679.     {
  680.       level = levels[top];
  681.       if ( level > 1 )
  682.       {
  683.         /* check that the arc crosses the current band */
  684.         TPos  min, max, y;
  685.         min = max = arc[0].y;
  686.         y = arc[1].y;
  687.         if ( y < min ) min = y;
  688.         if ( y > max ) max = y;
  689.         y = arc[2].y;
  690.         if ( y < min ) min = y;
  691.         if ( y > max ) max = y;
  692.         if ( TRUNC( min ) >= ras.max_ey || TRUNC( max ) < ras.min_ey )
  693.           goto Draw;
  694.         gray_split_conic( arc );
  695.         arc += 2;
  696.         top++;
  697.         levels[top] = levels[top - 1] = level - 1;
  698.         continue;
  699.       }
  700.     Draw:
  701.       {
  702.         TPos  to_x, to_y, mid_x, mid_y;
  703.         to_x  = arc[0].x;
  704.         to_y  = arc[0].y;
  705.         mid_x = ( ras.x + to_x + 2 * arc[1].x ) / 4;
  706.         mid_y = ( ras.y + to_y + 2 * arc[1].y ) / 4;
  707.         gray_render_line( RAS_VAR_ mid_x, mid_y );
  708.         gray_render_line( RAS_VAR_ to_x, to_y );
  709.         top--;
  710.         arc -= 2;
  711.       }
  712.     }
  713.     return;
  714.   }
  715.   static void
  716.   gray_split_cubic( FT_Vector*  base )
  717.   {
  718.     TPos  a, b, c, d;
  719.     base[6].x = base[3].x;
  720.     c = base[1].x;
  721.     d = base[2].x;
  722.     base[1].x = a = ( base[0].x + c ) / 2;
  723.     base[5].x = b = ( base[3].x + d ) / 2;
  724.     c = ( c + d ) / 2;
  725.     base[2].x = a = ( a + c ) / 2;
  726.     base[4].x = b = ( b + c ) / 2;
  727.     base[3].x = ( a + b ) / 2;
  728.     base[6].y = base[3].y;
  729.     c = base[1].y;
  730.     d = base[2].y;
  731.     base[1].y = a = ( base[0].y + c ) / 2;
  732.     base[5].y = b = ( base[3].y + d ) / 2;
  733.     c = ( c + d ) / 2;
  734.     base[2].y = a = ( a + c ) / 2;
  735.     base[4].y = b = ( b + c ) / 2;
  736.     base[3].y = ( a + b ) / 2;
  737.   }
  738.   static void
  739.   gray_render_cubic( RAS_ARG_ const FT_Vector*  control1,
  740.                               const FT_Vector*  control2,
  741.                               const FT_Vector*  to )
  742.   {
  743.     TPos        dx, dy, da, db;
  744.     int         top, level;
  745.     int*        levels;
  746.     FT_Vector*  arc;
  747.     dx = DOWNSCALE( ras.x ) + to->x - ( control1->x << 1 );
  748.     if ( dx < 0 )
  749.       dx = -dx;
  750.     dy = DOWNSCALE( ras.y ) + to->y - ( control1->y << 1 );
  751.     if ( dy < 0 )
  752.       dy = -dy;
  753.     if ( dx < dy )
  754.       dx = dy;
  755.     da = dx;
  756.     dx = DOWNSCALE( ras.x ) + to->x - 3 * ( control1->x + control2->x );
  757.     if ( dx < 0 )
  758.       dx = -dx;
  759.     dy = DOWNSCALE( ras.y ) + to->y - 3 * ( control1->x + control2->y );
  760.     if ( dy < 0 )
  761.       dy = -dy;
  762.     if ( dx < dy )
  763.       dx = dy;
  764.     db = dx;
  765.     level = 1;
  766.     da    = da / ras.cubic_level;
  767.     db    = db / ras.conic_level;
  768.     while ( da > 0 || db > 0 )
  769.     {
  770.       da >>= 2;
  771.       db >>= 3;
  772.       level++;
  773.     }
  774.     if ( level <= 1 )
  775.     {
  776.       TPos   to_x, to_y, mid_x, mid_y;
  777.       to_x  = UPSCALE( to->x );
  778.       to_y  = UPSCALE( to->y );
  779.       mid_x = ( ras.x + to_x +
  780.                 3 * UPSCALE( control1->x + control2->x ) ) / 8;
  781.       mid_y = ( ras.y + to_y +
  782.                 3 * UPSCALE( control1->y + control2->y ) ) / 8;
  783.       gray_render_line( RAS_VAR_ mid_x, mid_y );
  784.       gray_render_line( RAS_VAR_ to_x, to_y );
  785.       return;
  786.     }
  787.     arc      = ras.bez_stack;
  788.     arc[0].x = UPSCALE( to->x );
  789.     arc[0].y = UPSCALE( to->y );
  790.     arc[1].x = UPSCALE( control2->x );
  791.     arc[1].y = UPSCALE( control2->y );
  792.     arc[2].x = UPSCALE( control1->x );
  793.     arc[2].y = UPSCALE( control1->y );
  794.     arc[3].x = ras.x;
  795.     arc[3].y = ras.y;
  796.     levels    = ras.lev_stack;
  797.     top       = 0;
  798.     levels[0] = level;
  799.     while ( top >= 0 )
  800.     {
  801.       level = levels[top];
  802.       if ( level > 1 )
  803.       {
  804.         /* check that the arc crosses the current band */
  805.         TPos  min, max, y;
  806.         min = max = arc[0].y;
  807.         y = arc[1].y;
  808.         if ( y < min ) min = y;
  809.         if ( y > max ) max = y;
  810.         y = arc[2].y;
  811.         if ( y < min ) min = y;
  812.         if ( y > max ) max = y;
  813.         y = arc[3].y;
  814.         if ( y < min ) min = y;
  815.         if ( y > max ) max = y;
  816.         if ( TRUNC( min ) >= ras.max_ey || TRUNC( max ) < 0 )
  817.           goto Draw;
  818.         gray_split_cubic( arc );
  819.         arc += 3;
  820.         top ++;
  821.         levels[top] = levels[top - 1] = level - 1;
  822.         continue;
  823.       }
  824.     Draw:
  825.       {
  826.         TPos  to_x, to_y, mid_x, mid_y;
  827.         to_x  = arc[0].x;
  828.         to_y  = arc[0].y;
  829.         mid_x = ( ras.x + to_x + 3 * ( arc[1].x + arc[2].x ) ) / 8;
  830.         mid_y = ( ras.y + to_y + 3 * ( arc[1].y + arc[2].y ) ) / 8;
  831.         gray_render_line( RAS_VAR_ mid_x, mid_y );
  832.         gray_render_line( RAS_VAR_ to_x, to_y );
  833.         top --;
  834.         arc -= 3;
  835.       }
  836.     }
  837.     return;
  838.   }
  839.   static int
  840.   gray_move_to( const FT_Vector*  to,
  841.                 PWorker           worker )
  842.   {
  843.     TPos  x, y;
  844.     /* record current cell, if any */
  845.     gray_record_cell( worker );
  846.     /* start to a new position */
  847.     x = UPSCALE( to->x );
  848.     y = UPSCALE( to->y );
  849.     gray_start_cell( worker, TRUNC( x ), TRUNC( y ) );
  850.     worker->x = x;
  851.     worker->y = y;
  852.     return 0;
  853.   }
  854.   static int
  855.   gray_line_to( const FT_Vector*  to,
  856.                 PWorker           worker )
  857.   {
  858.     gray_render_line( worker, UPSCALE( to->x ), UPSCALE( to->y ) );
  859.     return 0;
  860.   }
  861.   static int
  862.   gray_conic_to( const FT_Vector*  control,
  863.                  const FT_Vector*  to,
  864.                  PWorker           worker )
  865.   {
  866.     gray_render_conic( worker, control, to );
  867.     return 0;
  868.   }
  869.   static int
  870.   gray_cubic_to( const FT_Vector*  control1,
  871.                  const FT_Vector*  control2,
  872.                  const FT_Vector*  to,
  873.                  PWorker           worker )
  874.   {
  875.     gray_render_cubic( worker, control1, control2, to );
  876.     return 0;
  877.   }
  878.   static void
  879.   gray_render_span( int             y,
  880.                     int             count,
  881.                     const FT_Span*  spans,
  882.                     PWorker         worker )
  883.   {
  884.     unsigned char*  p;
  885.     FT_Bitmap*      map = &worker->target;
  886.     /* first of all, compute the scanline offset */
  887.     p = (unsigned char*)map->buffer - y * map->pitch;
  888.     if ( map->pitch >= 0 )
  889.       p += ( map->rows - 1 ) * map->pitch;
  890.     for ( ; count > 0; count--, spans++ )
  891.     {
  892.       unsigned char  coverage = spans->coverage;
  893.       if ( coverage )
  894.       {
  895.         /* For small-spans it is faster to do it by ourselves than
  896.          * calling `memset'.  This is mainly due to the cost of the
  897.          * function call.
  898.          */
  899.         if ( spans->len >= 8 )
  900.           FT_MEM_SET( p + spans->x, (unsigned char)coverage, spans->len );
  901.         else
  902.         {
  903.           unsigned char*  q = p + spans->x;
  904.           switch ( spans->len )
  905.           {
  906.           case 7: *q++ = (unsigned char)coverage;
  907.           case 6: *q++ = (unsigned char)coverage;
  908.           case 5: *q++ = (unsigned char)coverage;
  909.           case 4: *q++ = (unsigned char)coverage;
  910.           case 3: *q++ = (unsigned char)coverage;
  911.           case 2: *q++ = (unsigned char)coverage;
  912.           case 1: *q   = (unsigned char)coverage;
  913.           default:
  914.             ;
  915.           }
  916.         }
  917.       }
  918.     }
  919.   }
  920.   static void
  921.   gray_hline( RAS_ARG_ TCoord  x,
  922.                        TCoord  y,
  923.                        TPos    area,
  924.                        int     acount )
  925.   {
  926.     FT_Span*  span;
  927.     int       count;
  928.     int       coverage;
  929.     /* compute the coverage line's coverage, depending on the    */
  930.     /* outline fill rule                                         */
  931.     /*                                                           */
  932.     /* the coverage percentage is area/(PIXEL_BITS*PIXEL_BITS*2) */
  933.     /*                                                           */
  934.     coverage = (int)( area >> ( PIXEL_BITS * 2 + 1 - 8 ) );
  935.                                                     /* use range 0..256 */
  936.     if ( coverage < 0 )
  937.       coverage = -coverage;
  938.     if ( ras.outline.flags & FT_OUTLINE_EVEN_ODD_FILL )
  939.     {
  940.       coverage &= 511;
  941.       if ( coverage > 256 )
  942.         coverage = 512 - coverage;
  943.       else if ( coverage == 256 )
  944.         coverage = 255;
  945.     }
  946.     else
  947.     {
  948.       /* normal non-zero winding rule */
  949.       if ( coverage >= 256 )
  950.         coverage = 255;
  951.     }
  952.     y += (TCoord)ras.min_ey;
  953.     x += (TCoord)ras.min_ex;
  954.     /* FT_Span.x is a 16-bit short, so limit our coordinates appropriately */
  955.     if ( x >= 32768 )
  956.       x = 32767;
  957.     if ( coverage )
  958.     {
  959.       /* see whether we can add this span to the current list */
  960.       count = ras.num_gray_spans;
  961.       span  = ras.gray_spans + count - 1;
  962.       if ( count > 0                          &&
  963.            ras.span_y == y                    &&
  964.            (int)span->x + span->len == (int)x &&
  965.            span->coverage == coverage         )
  966.       {
  967.         span->len = (unsigned short)( span->len + acount );
  968.         return;
  969.       }
  970.       if ( ras.span_y != y || count >= FT_MAX_GRAY_SPANS )
  971.       {
  972.         if ( ras.render_span && count > 0 )
  973.           ras.render_span( ras.span_y, count, ras.gray_spans,
  974.                            ras.render_span_data );
  975.         /* ras.render_span( span->y, ras.gray_spans, count ); */
  976. #ifdef DEBUG_GRAYS
  977.         if ( ras.span_y >= 0 )
  978.         {
  979.           int  n;
  980.           fprintf( stderr, "y=%3d ", ras.span_y );
  981.           span = ras.gray_spans;
  982.           for ( n = 0; n < count; n++, span++ )
  983.             fprintf( stderr, "[%d..%d]:%02x ",
  984.                      span->x, span->x + span->len - 1, span->coverage );
  985.           fprintf( stderr, "n" );
  986.         }
  987. #endif /* DEBUG_GRAYS */
  988.         ras.num_gray_spans = 0;
  989.         ras.span_y         = y;
  990.         count = 0;
  991.         span  = ras.gray_spans;
  992.       }
  993.       else
  994.         span++;
  995.       /* add a gray span to the current list */
  996.       span->x        = (short)x;
  997.       span->len      = (unsigned short)acount;
  998.       span->coverage = (unsigned char)coverage;
  999.       ras.num_gray_spans++;
  1000.     }
  1001.   }
  1002. #ifdef DEBUG_GRAYS
  1003.   /* to be called while in the debugger */
  1004.   gray_dump_cells( RAS_ARG )
  1005.   {
  1006.     int  yindex;
  1007.     for ( yindex = 0; yindex < ras.ycount; yindex++ )
  1008.     {
  1009.       PCell  cell;
  1010.       printf( "%3d:", yindex );
  1011.       for ( cell = ras.ycells[yindex]; cell != NULL; cell = cell->next )
  1012.         printf( " (%3d, c:%4d, a:%6d)", cell->x, cell->cover, cell->area );
  1013.       printf( "n" );
  1014.     }
  1015.   }
  1016. #endif /* DEBUG_GRAYS */
  1017.   static void
  1018.   gray_sweep( RAS_ARG_ const FT_Bitmap*  target )
  1019.   {
  1020.     int  yindex;
  1021.     FT_UNUSED( target );
  1022.     if ( ras.num_cells == 0 )
  1023.       return;
  1024.     ras.num_gray_spans = 0;
  1025.     for ( yindex = 0; yindex < ras.ycount; yindex++ )
  1026.     {
  1027.       PCell   cell  = ras.ycells[yindex];
  1028.       TCoord  cover = 0;
  1029.       TCoord  x     = 0;
  1030.       for ( ; cell != NULL; cell = cell->next )
  1031.       {
  1032.         TArea  area;
  1033.         if ( cell->x > x && cover != 0 )
  1034.           gray_hline( RAS_VAR_ x, yindex, cover * ( ONE_PIXEL * 2 ),
  1035.                       cell->x - x );
  1036.         cover += cell->cover;
  1037.         area   = cover * ( ONE_PIXEL * 2 ) - cell->area;
  1038.         if ( area != 0 && cell->x >= 0 )
  1039.           gray_hline( RAS_VAR_ cell->x, yindex, area, 1 );
  1040.         x = cell->x + 1;
  1041.       }
  1042.       if ( cover != 0 )
  1043.         gray_hline( RAS_VAR_ x, yindex, cover * ( ONE_PIXEL * 2 ),
  1044.                     ras.count_ex - x );
  1045.     }
  1046.     if ( ras.render_span && ras.num_gray_spans > 0 )
  1047.       ras.render_span( ras.span_y, ras.num_gray_spans,
  1048.                        ras.gray_spans, ras.render_span_data );
  1049.   }
  1050. #ifdef _STANDALONE_
  1051.   /*************************************************************************/
  1052.   /*                                                                       */
  1053.   /*  The following function should only compile in stand_alone mode,      */
  1054.   /*  i.e., when building this component without the rest of FreeType.     */
  1055.   /*                                                                       */
  1056.   /*************************************************************************/
  1057.   /*************************************************************************/
  1058.   /*                                                                       */
  1059.   /* <Function>                                                            */
  1060.   /*    FT_Outline_Decompose                                               */
  1061.   /*                                                                       */
  1062.   /* <Description>                                                         */
  1063.   /*    Walks over an outline's structure to decompose it into individual  */
  1064.   /*    segments and Bezier arcs.  This function is also able to emit      */
  1065.   /*    `move to' and `close to' operations to indicate the start and end  */
  1066.   /*    of new contours in the outline.                                    */
  1067.   /*                                                                       */
  1068.   /* <Input>                                                               */
  1069.   /*    outline        :: A pointer to the source target.                  */
  1070.   /*                                                                       */
  1071.   /*    func_interface :: A table of `emitters', i.e,. function pointers   */
  1072.   /*                      called during decomposition to indicate path     */
  1073.   /*                      operations.                                      */
  1074.   /*                                                                       */
  1075.   /*    user           :: A typeless pointer which is passed to each       */
  1076.   /*                      emitter during the decomposition.  It can be     */
  1077.   /*                      used to store the state during the               */
  1078.   /*                      decomposition.                                   */
  1079.   /*                                                                       */
  1080.   /* <Return>                                                              */
  1081.   /*    Error code.  0 means success.                                      */
  1082.   /*                                                                       */
  1083.   static
  1084.   int  FT_Outline_Decompose( const FT_Outline*        outline,
  1085.                              const FT_Outline_Funcs*  func_interface,
  1086.                              void*                    user )
  1087.   {
  1088. #undef SCALED
  1089. #if 0
  1090. #define SCALED( x )  ( ( (x) << shift ) - delta )
  1091. #else
  1092. #define SCALED( x )  (x)
  1093. #endif
  1094.     FT_Vector   v_last;
  1095.     FT_Vector   v_control;
  1096.     FT_Vector   v_start;
  1097.     FT_Vector*  point;
  1098.     FT_Vector*  limit;
  1099.     char*       tags;
  1100.     int   n;         /* index of contour in outline     */
  1101.     int   first;     /* index of first point in contour */
  1102.     int   error;
  1103.     char  tag;       /* current point's state           */
  1104. #if 0
  1105.     int   shift = func_interface->shift;
  1106.     TPos  delta = func_interface->delta;
  1107. #endif
  1108.     first = 0;
  1109.     for ( n = 0; n < outline->n_contours; n++ )
  1110.     {
  1111.       int  last;  /* index of last point in contour */
  1112.       last  = outline->contours[n];
  1113.       limit = outline->points + last;
  1114.       v_start = outline->points[first];
  1115.       v_last  = outline->points[last];
  1116.       v_start.x = SCALED( v_start.x );
  1117.       v_start.y = SCALED( v_start.y );
  1118.       v_last.x  = SCALED( v_last.x );
  1119.       v_last.y  = SCALED( v_last.y );
  1120.       v_control = v_start;
  1121.       point = outline->points + first;
  1122.       tags  = outline->tags  + first;
  1123.       tag   = FT_CURVE_TAG( tags[0] );
  1124.       /* A contour cannot start with a cubic control point! */
  1125.       if ( tag == FT_CURVE_TAG_CUBIC )
  1126.         goto Invalid_Outline;
  1127.       /* check first point to determine origin */
  1128.       if ( tag == FT_CURVE_TAG_CONIC )
  1129.       {
  1130.         /* first point is conic control.  Yes, this happens. */
  1131.         if ( FT_CURVE_TAG( outline->tags[last] ) == FT_CURVE_TAG_ON )
  1132.         {
  1133.           /* start at last point if it is on the curve */
  1134.           v_start = v_last;
  1135.           limit--;
  1136.         }
  1137.         else
  1138.         {
  1139.           /* if both first and last points are conic,         */
  1140.           /* start at their middle and record its position    */
  1141.           /* for closure                                      */
  1142.           v_start.x = ( v_start.x + v_last.x ) / 2;
  1143.           v_start.y = ( v_start.y + v_last.y ) / 2;
  1144.           v_last = v_start;
  1145.         }
  1146.         point--;
  1147.         tags--;
  1148.       }
  1149.       error = func_interface->move_to( &v_start, user );
  1150.       if ( error )
  1151.         goto Exit;
  1152.       while ( point < limit )
  1153.       {
  1154.         point++;
  1155.         tags++;
  1156.         tag = FT_CURVE_TAG( tags[0] );
  1157.         switch ( tag )
  1158.         {
  1159.         case FT_CURVE_TAG_ON:  /* emit a single line_to */
  1160.           {
  1161.             FT_Vector  vec;
  1162.             vec.x = SCALED( point->x );
  1163.             vec.y = SCALED( point->y );
  1164.             error = func_interface->line_to( &vec, user );
  1165.             if ( error )
  1166.               goto Exit;
  1167.             continue;
  1168.           }
  1169.         case FT_CURVE_TAG_CONIC:  /* consume conic arcs */
  1170.           {
  1171.             v_control.x = SCALED( point->x );
  1172.             v_control.y = SCALED( point->y );
  1173.           Do_Conic:
  1174.             if ( point < limit )
  1175.             {
  1176.               FT_Vector  vec;
  1177.               FT_Vector  v_middle;
  1178.               point++;
  1179.               tags++;
  1180.               tag = FT_CURVE_TAG( tags[0] );
  1181.               vec.x = SCALED( point->x );
  1182.               vec.y = SCALED( point->y );
  1183.               if ( tag == FT_CURVE_TAG_ON )
  1184.               {
  1185.                 error = func_interface->conic_to( &v_control, &vec,
  1186.                                                   user );
  1187.                 if ( error )
  1188.                   goto Exit;
  1189.                 continue;
  1190.               }
  1191.               if ( tag != FT_CURVE_TAG_CONIC )
  1192.                 goto Invalid_Outline;
  1193.               v_middle.x = ( v_control.x + vec.x ) / 2;
  1194.               v_middle.y = ( v_control.y + vec.y ) / 2;
  1195.               error = func_interface->conic_to( &v_control, &v_middle,
  1196.                                                 user );
  1197.               if ( error )
  1198.                 goto Exit;
  1199.               v_control = vec;
  1200.               goto Do_Conic;
  1201.             }
  1202.             error = func_interface->conic_to( &v_control, &v_start,
  1203.                                               user );
  1204.             goto Close;
  1205.           }
  1206.         default:  /* FT_CURVE_TAG_CUBIC */
  1207.           {
  1208.             FT_Vector  vec1, vec2;
  1209.             if ( point + 1 > limit                             ||
  1210.                  FT_CURVE_TAG( tags[1] ) != FT_CURVE_TAG_CUBIC )
  1211.               goto Invalid_Outline;
  1212.             point += 2;
  1213.             tags  += 2;
  1214.             vec1.x = SCALED( point[-2].x );
  1215.             vec1.y = SCALED( point[-2].y );
  1216.             vec2.x = SCALED( point[-1].x );
  1217.             vec2.y = SCALED( point[-1].y );
  1218.             if ( point <= limit )
  1219.             {
  1220.               FT_Vector  vec;
  1221.               vec.x = SCALED( point->x );
  1222.               vec.y = SCALED( point->y );
  1223.               error = func_interface->cubic_to( &vec1, &vec2, &vec, user );
  1224.               if ( error )
  1225.                 goto Exit;
  1226.               continue;
  1227.             }
  1228.             error = func_interface->cubic_to( &vec1, &vec2, &v_start, user );
  1229.             goto Close;
  1230.           }
  1231.         }
  1232.       }
  1233.       /* close the contour with a line segment */
  1234.       error = func_interface->line_to( &v_start, user );
  1235.    Close:
  1236.       if ( error )
  1237.         goto Exit;
  1238.       first = last + 1;
  1239.     }
  1240.     return 0;
  1241.   Exit:
  1242.     return error;
  1243.   Invalid_Outline:
  1244.     return ErrRaster_Invalid_Outline;
  1245.   }
  1246. #endif /* _STANDALONE_ */
  1247.   typedef struct  TBand_
  1248.   {
  1249.     TPos  min, max;
  1250.   } TBand;
  1251.   static int
  1252.   gray_convert_glyph_inner( RAS_ARG )
  1253.   {
  1254.     static
  1255.     const FT_Outline_Funcs  func_interface =
  1256.     {
  1257.       (FT_Outline_MoveTo_Func) gray_move_to,
  1258.       (FT_Outline_LineTo_Func) gray_line_to,
  1259.       (FT_Outline_ConicTo_Func)gray_conic_to,
  1260.       (FT_Outline_CubicTo_Func)gray_cubic_to,
  1261.       0,
  1262.       0
  1263.     };
  1264.     volatile int  error = 0;
  1265.     if ( ft_setjmp( ras.jump_buffer ) == 0 )
  1266.     {
  1267.       error = FT_Outline_Decompose( &ras.outline, &func_interface, &ras );
  1268.       gray_record_cell( RAS_VAR );
  1269.     }
  1270.     else
  1271.     {
  1272.       error = ErrRaster_Memory_Overflow;
  1273.     }
  1274.     return error;
  1275.   }
  1276.   static int
  1277.   gray_convert_glyph( RAS_ARG )
  1278.   {
  1279.     TBand            bands[40];
  1280.     TBand* volatile  band;
  1281.     int volatile     n, num_bands;
  1282.     TPos volatile    min, max, max_y;
  1283.     FT_BBox*         clip;
  1284.     /* Set up state in the raster object */
  1285.     gray_compute_cbox( RAS_VAR );
  1286.     /* clip to target bitmap, exit if nothing to do */
  1287.     clip = &ras.clip_box;
  1288.     if ( ras.max_ex <= clip->xMin || ras.min_ex >= clip->xMax ||
  1289.          ras.max_ey <= clip->yMin || ras.min_ey >= clip->yMax )
  1290.       return 0;
  1291.     if ( ras.min_ex < clip->xMin ) ras.min_ex = clip->xMin;
  1292.     if ( ras.min_ey < clip->yMin ) ras.min_ey = clip->yMin;
  1293.     if ( ras.max_ex > clip->xMax ) ras.max_ex = clip->xMax;
  1294.     if ( ras.max_ey > clip->yMax ) ras.max_ey = clip->yMax;
  1295.     ras.count_ex = ras.max_ex - ras.min_ex;
  1296.     ras.count_ey = ras.max_ey - ras.min_ey;
  1297.     /* simple heuristic used to speed-up the bezier decomposition -- see */
  1298.     /* the code in gray_render_conic() and gray_render_cubic() for more  */
  1299.     /* details                                                           */
  1300.     ras.conic_level = 32;
  1301.     ras.cubic_level = 16;
  1302.     {
  1303.       int level = 0;
  1304.       if ( ras.count_ex > 24 || ras.count_ey > 24 )
  1305.         level++;
  1306.       if ( ras.count_ex > 120 || ras.count_ey > 120 )
  1307.         level++;
  1308.       ras.conic_level <<= level;
  1309.       ras.cubic_level <<= level;
  1310.     }
  1311.     /* setup vertical bands */
  1312.     num_bands = (int)( ( ras.max_ey - ras.min_ey ) / ras.band_size );
  1313.     if ( num_bands == 0 )  num_bands = 1;
  1314.     if ( num_bands >= 39 ) num_bands = 39;
  1315.     ras.band_shoot = 0;
  1316.     min   = ras.min_ey;
  1317.     max_y = ras.max_ey;
  1318.     for ( n = 0; n < num_bands; n++, min = max )
  1319.     {
  1320.       max = min + ras.band_size;
  1321.       if ( n == num_bands - 1 || max > max_y )
  1322.         max = max_y;
  1323.       bands[0].min = min;
  1324.       bands[0].max = max;
  1325.       band         = bands;
  1326.       while ( band >= bands )
  1327.       {
  1328.         TPos  bottom, top, middle;
  1329.         int   error;
  1330.         {
  1331.           PCell  cells_max;
  1332.           int    yindex;
  1333.           long   cell_start, cell_end, cell_mod;
  1334.           ras.ycells = (PCell*)ras.buffer;
  1335.           ras.ycount = band->max - band->min;
  1336.           cell_start = sizeof ( PCell ) * ras.ycount;
  1337.           cell_mod   = cell_start % sizeof ( TCell );
  1338.           if ( cell_mod > 0 )
  1339.             cell_start += sizeof ( TCell ) - cell_mod;
  1340.           cell_end  = ras.buffer_size;
  1341.           cell_end -= cell_end % sizeof( TCell );
  1342.           cells_max = (PCell)( (char*)ras.buffer + cell_end );
  1343.           ras.cells = (PCell)( (char*)ras.buffer + cell_start );
  1344.           if ( ras.cells >= cells_max )
  1345.             goto ReduceBands;
  1346.           ras.max_cells = cells_max - ras.cells;
  1347.           if ( ras.max_cells < 2 )
  1348.             goto ReduceBands;
  1349.           for ( yindex = 0; yindex < ras.ycount; yindex++ )
  1350.             ras.ycells[yindex] = NULL;
  1351.         }
  1352.         ras.num_cells = 0;
  1353.         ras.invalid   = 1;
  1354.         ras.min_ey    = band->min;
  1355.         ras.max_ey    = band->max;
  1356.         ras.count_ey  = band->max - band->min;
  1357.         error = gray_convert_glyph_inner( RAS_VAR );
  1358.         if ( !error )
  1359.         {
  1360.           gray_sweep( RAS_VAR_ &ras.target );
  1361.           band--;
  1362.           continue;
  1363.         }
  1364.         else if ( error != ErrRaster_Memory_Overflow )
  1365.           return 1;
  1366.       ReduceBands:
  1367.         /* render pool overflow; we will reduce the render band by half */
  1368.         bottom = band->min;
  1369.         top    = band->max;
  1370.         middle = bottom + ( ( top - bottom ) >> 1 );
  1371.         /* This is too complex for a single scanline; there must */
  1372.         /* be some problems.                                     */
  1373.         if ( middle == bottom )
  1374.         {
  1375. #ifdef DEBUG_GRAYS
  1376.           fprintf( stderr, "Rotten glyph!n" );
  1377. #endif
  1378.           return 1;
  1379.         }
  1380.         if ( bottom-top >= ras.band_size )
  1381.           ras.band_shoot++;
  1382.         band[1].min = bottom;
  1383.         band[1].max = middle;
  1384.         band[0].min = middle;
  1385.         band[0].max = top;
  1386.         band++;
  1387.       }
  1388.     }
  1389.     if ( ras.band_shoot > 8 && ras.band_size > 16 )
  1390.       ras.band_size = ras.band_size / 2;
  1391.     return 0;
  1392.   }
  1393.   static int
  1394.   gray_raster_render( PRaster                  raster,
  1395.                       const FT_Raster_Params*  params )
  1396.   {
  1397.     const FT_Outline*  outline    = (const FT_Outline*)params->source;
  1398.     const FT_Bitmap*   target_map = params->target;
  1399.     PWorker            worker;
  1400.     if ( !raster || !raster->buffer || !raster->buffer_size )
  1401.       return ErrRaster_Invalid_Argument;
  1402.     /* return immediately if the outline is empty */
  1403.     if ( outline->n_points == 0 || outline->n_contours <= 0 )
  1404.       return 0;
  1405.     if ( !outline || !outline->contours || !outline->points )
  1406.       return ErrRaster_Invalid_Outline;
  1407.     if ( outline->n_points !=
  1408.            outline->contours[outline->n_contours - 1] + 1 )
  1409.       return ErrRaster_Invalid_Outline;
  1410.     worker = raster->worker;
  1411.     /* if direct mode is not set, we must have a target bitmap */
  1412.     if ( ( params->flags & FT_RASTER_FLAG_DIRECT ) == 0 )
  1413.     {
  1414.       if ( !target_map )
  1415.         return ErrRaster_Invalid_Argument;
  1416.       /* nothing to do */
  1417.       if ( !target_map->width || !target_map->rows )
  1418.         return 0;
  1419.       if ( !target_map->buffer )
  1420.         return ErrRaster_Invalid_Argument;
  1421.     }
  1422.     /* this version does not support monochrome rendering */
  1423.     if ( !( params->flags & FT_RASTER_FLAG_AA ) )
  1424.       return ErrRaster_Invalid_Mode;
  1425.     /* compute clipping box */
  1426.     if ( ( params->flags & FT_RASTER_FLAG_DIRECT ) == 0 )
  1427.     {
  1428.       /* compute clip box from target pixmap */
  1429.       ras.clip_box.xMin = 0;
  1430.       ras.clip_box.yMin = 0;
  1431.       ras.clip_box.xMax = target_map->width;
  1432.       ras.clip_box.yMax = target_map->rows;
  1433.     }
  1434.     else if ( params->flags & FT_RASTER_FLAG_CLIP )
  1435.     {
  1436.       ras.clip_box = params->clip_box;
  1437.     }
  1438.     else
  1439.     {
  1440.       ras.clip_box.xMin = -32768L;
  1441.       ras.clip_box.yMin = -32768L;
  1442.       ras.clip_box.xMax =  32767L;
  1443.       ras.clip_box.yMax =  32767L;
  1444.     }
  1445.     gray_init_cells( worker, raster->buffer, raster->buffer_size );
  1446.     ras.outline   = *outline;
  1447.     ras.num_cells = 0;
  1448.     ras.invalid   = 1;
  1449.     ras.band_size = raster->band_size;
  1450.     ras.num_gray_spans = 0;
  1451.     if ( target_map )
  1452.       ras.target = *target_map;
  1453.     ras.render_span      = (FT_Raster_Span_Func)gray_render_span;
  1454.     ras.render_span_data = &ras;
  1455.     if ( params->flags & FT_RASTER_FLAG_DIRECT )
  1456.     {
  1457.       ras.render_span      = (FT_Raster_Span_Func)params->gray_spans;
  1458.       ras.render_span_data = params->user;
  1459.     }
  1460.     return gray_convert_glyph( worker );
  1461.   }
  1462.   /**** RASTER OBJECT CREATION: In standalone mode, we simply use *****/
  1463.   /****                         a static object.                  *****/
  1464. #ifdef _STANDALONE_
  1465.   static int
  1466.   gray_raster_new( void*       memory,
  1467.                    FT_Raster*  araster )
  1468.   {
  1469.     static TRaster  the_raster;
  1470.     FT_UNUSED( memory );
  1471.     *araster = (FT_Raster)&the_raster;
  1472.     FT_MEM_ZERO( &the_raster, sizeof ( the_raster ) );
  1473.     return 0;
  1474.   }
  1475.   static void
  1476.   gray_raster_done( FT_Raster  raster )
  1477.   {
  1478.     /* nothing */
  1479.     FT_UNUSED( raster );
  1480.   }
  1481. #else /* _STANDALONE_ */
  1482.   static int
  1483.   gray_raster_new( FT_Memory   memory,
  1484.                    FT_Raster*  araster )
  1485.   {
  1486.     FT_Error  error;
  1487.     PRaster   raster;
  1488.     *araster = 0;
  1489.     if ( !FT_ALLOC( raster, sizeof ( TRaster ) ) )
  1490.     {
  1491.       raster->memory = memory;
  1492.       *araster = (FT_Raster)raster;
  1493.     }
  1494.     return error;
  1495.   }
  1496.   static void
  1497.   gray_raster_done( FT_Raster  raster )
  1498.   {
  1499.     FT_Memory  memory = (FT_Memory)((PRaster)raster)->memory;
  1500.     FT_FREE( raster );
  1501.   }
  1502. #endif /* _STANDALONE_ */
  1503.   static void
  1504.   gray_raster_reset( FT_Raster  raster,
  1505.                      char*      pool_base,
  1506.                      long       pool_size )
  1507.   {
  1508.     PRaster  rast = (PRaster)raster;
  1509.     if ( raster )
  1510.     {
  1511.       if ( pool_base && pool_size >= (long)sizeof ( TWorker ) + 2048 )
  1512.       {
  1513.         PWorker  worker = (PWorker)pool_base;
  1514.         rast->worker      = worker;
  1515.         rast->buffer      = pool_base +
  1516.                               ( ( sizeof ( TWorker ) + sizeof ( TCell ) - 1 ) &
  1517.                                 ~( sizeof ( TCell ) - 1 ) );
  1518.         rast->buffer_size = (long)( ( pool_base + pool_size ) -
  1519.                                     (char*)rast->buffer ) &
  1520.                                       ~( sizeof ( TCell ) - 1 );
  1521.         rast->band_size   = (int)( rast->buffer_size /
  1522.                                      ( sizeof ( TCell ) * 8 ) );
  1523.       }
  1524.       else
  1525.       {
  1526.         rast->buffer      = NULL;
  1527.         rast->buffer_size = 0;
  1528.         rast->worker      = NULL;
  1529.       }
  1530.     }
  1531.   }
  1532.   const FT_Raster_Funcs  ft_grays_raster =
  1533.   {
  1534.     FT_GLYPH_FORMAT_OUTLINE,
  1535.     (FT_Raster_New_Func)     gray_raster_new,
  1536.     (FT_Raster_Reset_Func)   gray_raster_reset,
  1537.     (FT_Raster_Set_Mode_Func)0,
  1538.     (FT_Raster_Render_Func)  gray_raster_render,
  1539.     (FT_Raster_Done_Func)    gray_raster_done
  1540.   };
  1541. /* END */