home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / ppc / ppcFillRct.c < prev    next >
C/C++ Source or Header  |  1989-11-14  |  6KB  |  170 lines

  1. /*
  2.  * Copyright IBM Corporation 1987,1988,1989
  3.  *
  4.  * All Rights Reserved
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted,
  8.  * provided that the above copyright notice appear in all copies and that 
  9.  * both that copyright notice and this permission notice appear in
  10.  * supporting documentation, and that the name of IBM not be
  11.  * used in advertising or publicity pertaining to distribution of the
  12.  * software without specific, written prior permission.
  13.  *
  14.  * IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16.  * IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20.  * SOFTWARE.
  21.  *
  22. */
  23.  
  24. /***********************************************************
  25. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  26. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  27.  
  28.             All Rights Reserved
  29.  
  30. Permission to use, copy, modify, and distribute this software and its
  31. documentation for any purpose and without fee is hereby granted,
  32. provided that the above copyright notice appear in all copies and that
  33. both that copyright notice and this permission notice appear in
  34. supporting documentation, and that the names of Digital or MIT not be
  35. used in advertising or publicity pertaining to distribution of the
  36. software without specific, written prior permission.
  37.  
  38. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  39. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  40. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  41. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  42. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  43. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  44. SOFTWARE.
  45.  
  46. ******************************************************************/
  47.  
  48. /* $Header: /andrew/X11/r3src/release/server/ddx/ibm/ppc/RCS/ppcFillRct.c,v 30.0 89/01/23 19:29:05 paul Exp $ */
  49. /* $Source: /andrew/X11/r3src/release/server/ddx/ibm/ppc/RCS/ppcFillRct.c,v $ */
  50.  
  51. #ifndef lint
  52. static char *rcsid = "$Header: /andrew/X11/r3src/release/server/ddx/ibm/ppc/RCS/ppcFillRct.c,v 30.0 89/01/23 19:29:05 paul Exp $" ;
  53. #endif
  54.  
  55. #include "X.h"
  56. #include "pixmapstr.h"
  57. #include "gcstruct.h"
  58. #include "windowstr.h"
  59. #include "miscstruct.h"
  60. #include "regionstr.h"
  61. #include "scrnintstr.h"
  62.  
  63. #include "OScompiler.h"
  64. #include "ibmTrace.h"
  65.  
  66. #include "ppc.h"
  67. extern int mfbGCPrivateIndex;
  68.  
  69. /*
  70.     filled rectangles.
  71.     translate the rectangles, clip them, and call the
  72.     helper function in the GC.
  73. */
  74.  
  75. void
  76. ppcPolyFillRect( pDrawable, pGC, nrectFill, prectInit )
  77.     DrawablePtr pDrawable ;
  78.     GCPtr    pGC ;
  79.     int        nrectFill ;     /* number of rectangles to fill */
  80.     xRectangle    *prectInit ;      /* Pointer to first rectangle to fill */
  81. {
  82.     register int n ;        /* spare counter */
  83.     register xRectangle *prect ;    /* temporary */
  84.     RegionPtr prgnClip ;
  85.     register BoxPtr pbox ;    /* used to clip with */
  86.     register BoxPtr pboxClipped ;
  87.     BoxPtr pboxTempBase ;
  88.     BoxPtr pboxTempEnd ;
  89.     BoxPtr pboxClippedBase ;
  90.     void (* fillArea)() ;
  91.  
  92.     TRACE(("ppcPolyFillRect(0x%x,0x%x,%d,0x%x)\n",pDrawable,pGC,
  93.                           nrectFill,prectInit)) ;
  94.  
  95.     if ( pDrawable->type != DRAWABLE_WINDOW ) {
  96.     ErrorF("ppcPolyFillRect: Not a window\n") ;
  97.     return ;
  98.     }
  99.  
  100.     if ( ( pGC->alu == GXnoop ) || !pGC->planemask )
  101.     return ;
  102.  
  103.     prgnClip = ( (ppcPrivGC *) (pGC->devPrivates[mfbGCPrivateIndex].ptr))->pCompositeClip ;
  104.  
  105.     pboxTempBase = (BoxPtr)
  106.       ALLOCATE_LOCAL( ( REGION_NUM_RECTS(prgnClip) + nrectFill ) * sizeof( BoxRec ) ) ;
  107.     if ( !pboxTempBase )
  108.     return ;
  109.  
  110.     {
  111.     register const int xorg = pDrawable->x ;
  112.     register const int yorg = pDrawable->y ;
  113.  
  114.     for ( prect = prectInit, n = nrectFill ; n-- ; prect++ ) {
  115.         prect->x += xorg ;
  116.         prect->y += yorg ;
  117.     }
  118.     }
  119.  
  120.     fillArea = ( (ppcPrivGC *) ( pGC->devPrivates[mfbGCPrivateIndex].ptr ) )->FillArea ;
  121.     pboxClippedBase = ( pboxTempEnd = pboxTempBase ) + nrectFill ;
  122. /* NOTE:
  123.  *    Some VERY stupid programs may call the server with
  124.  *    very large width or height values.
  125.  *    These programs think they are using negative numbers!
  126.  *    Therefore, we must do "saturation" arithmetic for the rect's .
  127.  */
  128. #define MAXIMUM_X11_POS    (32767)
  129. #define MINIMUM_X11_POS    (-32768)
  130.     for ( prect = prectInit ; nrectFill-- ; prect++ ) {
  131.     pboxTempEnd->x1 = prect->x ;
  132.     pboxTempEnd->x2 = MIN( prect->x + prect->width, MAXIMUM_X11_POS ) ;
  133.     pboxTempEnd->y1 = prect->y ;
  134.     pboxTempEnd->y2 = MIN( prect->y + prect->height, MAXIMUM_X11_POS ) ;
  135.  
  136.     switch ( (* pGC->pScreen->RectIn)( prgnClip, pboxTempEnd ) ) {
  137.       case rgnIN:
  138.         pboxTempEnd++ ; /* Save for later ! */
  139.       case rgnOUT:
  140.         break ;
  141.       case rgnPART:
  142.         /* clip the rectangle to each box in the clip region
  143.            this is logically equivalent to calling Intersect()
  144.         */
  145.         for ( pboxClipped = pboxClippedBase,
  146.           pbox = REGION_RECTS(prgnClip),
  147.           n = REGION_NUM_RECTS(prgnClip) ;
  148.           n-- ; pbox++ ) {
  149.         pboxClipped->x1 = MAX( pboxTempEnd->x1, pbox->x1 ) ;
  150.         pboxClipped->x2 = MIN( pboxTempEnd->x2, pbox->x2 ) ;
  151.         if ( pboxClipped->x1 < pboxClipped->x2 ) {
  152.             pboxClipped->y1 = MAX( pboxTempEnd->y1, pbox->y1 ) ;
  153.             pboxClipped->y2 = MIN( pboxTempEnd->y2, pbox->y2 ) ;
  154.             /* see if clipping left anything */
  155.             if ( pboxClipped->y1 < pboxClipped->y2 )
  156.             pboxClipped++ ;
  157.         }
  158.         }
  159.         if ( n = pboxClipped - pboxClippedBase )
  160.         (* fillArea)( pDrawable, n, pboxClippedBase, pGC ) ;
  161.         break ;
  162.     }
  163.     }
  164.     if ( n = pboxTempEnd - pboxTempBase )
  165.     (* fillArea)( pDrawable, n, pboxTempBase, pGC ) ;
  166.  
  167.     DEALLOCATE_LOCAL( pboxTempBase ) ;
  168.     return ;
  169. }
  170.