home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / mpel / mpelArc.c < prev    next >
C/C++ Source or Header  |  1991-12-12  |  6KB  |  213 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. #ifndef lint
  26. static char *rcsid = "Id: mpelArc.c,v 6.4 88/11/03 22:42:10 paul Exp $" ;
  27. #endif
  28.  
  29. #include "X.h"
  30. #include "misc.h"
  31. #include "Xprotostr.h"
  32. #include "gcstruct.h"
  33. #include "scrnintstr.h"
  34. #include "windowstr.h"
  35. #include "regionstr.h"
  36. #include "pixmapstr.h"
  37.  
  38. #include "OScompiler.h"
  39.  
  40. #include "ppc.h"
  41.  
  42. #include "ibmTrace.h"
  43.  
  44. #include "mpel.h"
  45. #include "mpelHdwr.h"
  46. #include "mpelFifo.h"
  47.  
  48. /* Cursor Stuff */
  49. extern int mpelcursorSemaphore ;
  50. extern int mpelCheckCursor() ;
  51. extern void mpelReplaceCursor() ;
  52.  
  53. #define FULLCIRCLE (360*64 )
  54.  
  55. /* mpelPolyArc --
  56.  * If the arc is drawn with zero width lines, we
  57.  * don't have to worry about the rasterop or join styles.
  58.  */
  59. void
  60. mpelPolyArc(pDraw, pGC, narcs, parcs )
  61.     DrawablePtr    pDraw ;
  62.     GCPtr    pGC ;
  63.     int        narcs ;
  64.     xArc    *parcs ;
  65. {
  66.     register int    i ;
  67.     RegionPtr        pCC ;
  68.     int            nbox ;
  69.     BoxRec        *pbox,bbox ;
  70.     mpelRectangle    scissor ;
  71.     int            clockwise = 1 ;
  72.     ppcPrivGCPtr pPriv = (ppcPrivGCPtr)pGC->devPrivates[mfbGCPrivateIndex].ptr ;
  73.     mpelPrivGCPtr mpelPriv = (mpelPrivGCPtr)pPriv->devPriv ;
  74.     int cursor_saved, scissor_set = 0;
  75.  
  76.     TRACE(("mpelPolyArc( pDraw=x%x, pGC=x%x, narcs=%d, parcs=x%x )\n",
  77.                         pDraw, pGC, narcs, parcs)) ;
  78.  
  79.     if (!narcs)
  80.     return;
  81.  
  82.     if (pDraw->type != DRAWABLE_WINDOW) {
  83.     miPolyArc(pDraw, pGC, narcs, parcs);
  84.     return;
  85.     }
  86.  
  87.     pCC = pPriv->pCompositeClip;
  88.     if (!(nbox = REGION_NUM_RECTS(pCC)))
  89.     return;
  90.  
  91.     pbox = REGION_RECTS(pCC);
  92.     bbox.x2 = bbox.y2 = 0;
  93.     bbox.x1 = MPEL_WIDTH;
  94.     bbox.y1 = MPEL_HEIGHT;
  95.  
  96.     /* prepare arcs for MPEL */
  97.  
  98.     for ( i = 0 ; i < narcs ;i++ ) {
  99.     register xArc *parc;
  100.  
  101.     parc = &parcs[i];
  102.     parc->x += pDraw->x;
  103.     parc->y += pDraw->y;
  104.     bbox.x1 = MIN(bbox.x1, parc->x);
  105.     bbox.y1 = MIN(bbox.y1, parc->y);
  106.     bbox.x2 = MAX(bbox.x2, parc->x + parc->width);
  107.     bbox.y2 = MAX(bbox.y2, parc->y + parc->height);
  108.  
  109.     /* Throw out multiples of 360 degrees. */
  110.  
  111.     if ( parc->angle1 < 0 ) {
  112.         while ( parc->angle1 < -FULLCIRCLE )
  113.             parc->angle1 += FULLCIRCLE ;
  114.     }
  115.     else {
  116.         while ( parc->angle1 > FULLCIRCLE )
  117.             parc->angle1 -= FULLCIRCLE ;
  118.     }
  119.  
  120.     if ( parc->angle2 < 0 ) {
  121.         while ( parc->angle2 < -FULLCIRCLE )
  122.             parc->angle2 += FULLCIRCLE ;
  123.     }
  124.     else {
  125.         while ( parc->angle2 > FULLCIRCLE )
  126.             parc->angle2 -= FULLCIRCLE ;
  127.     }
  128.  
  129.     /* now convert to mpel */
  130.     if ( parc->angle1 < 0 )
  131.         parc->angle1 = FULLCIRCLE + parc->angle1 ;
  132.     parc->angle2 += parc->angle1 ;
  133.     if ( parc->angle2 > FULLCIRCLE )
  134.         parc->angle2 -= FULLCIRCLE ;
  135.     if (parc->angle1 > parc->angle2) {
  136.         int tmp ;
  137.         tmp = parc->angle1 ;
  138.         parc->angle1 = parc->angle2 ;
  139.         parc->angle2 = tmp ;
  140.     }
  141.     /* make mpel numbers */
  142.     parc->width = parc->width / 2 ;
  143.     parc->height = parc->height / 2 ;
  144.     parc->y = ( MPEL_HEIGHT - 1 ) - ( parc->y + parc->height ) ;
  145.     parc->x = parc->x + parc->width ;
  146.     parc->angle1 = (parc->angle1 * 10) / 64;
  147.     parc->angle2 = (parc->angle2 * 10) / 64;
  148.     TRACE(("\t[%d x %d] {%d, %d} %d -> %d\n",
  149.         parc->width, parc->height, parc->x, parc->y,
  150.         parc->angle1, parc->angle2));
  151.     }
  152.  
  153.     /* If Cursor Is In The Way Remove It */
  154.     cursor_saved = !mpelcursorSemaphore
  155.             && mpelCheckCursor( bbox.x1, bbox.y1,
  156.                 bbox.x2 - bbox.x1, bbox.y2 - bbox.y1 ) ;
  157.  
  158.     mpelSetALU( pGC->alu ) ;
  159.     mpelSetPlaneMask( pGC->planemask ) ;
  160.     if ( mpelPriv->LineType == MPEL_USERLINESTYLE_CONT )
  161.         MPELSetUserLineStyle( &mpelPriv->LineStyle ) ;
  162.     MPELSetLineType( mpelPriv->LineType ) ;
  163.     MPELSetPolylineColor( pGC->fgPixel ) ;
  164.  
  165.     for ( i = 0 ; i < nbox ; i++, pbox++ ) {
  166.     register arci ;
  167.     mpelEllipticalArc Arc ;
  168.     register xArc *pArc;
  169.  
  170.     switch(mpelRectIntersect(pbox, &bbox))
  171.       {
  172.       case rgnPART:
  173.         scissor.uright.x =     pbox->x2 - 1;
  174.         scissor.uright.y =     MPEL_HEIGHT - 1 - pbox->y1;
  175.         scissor.lleft.x  =     pbox->x1;
  176.         scissor.lleft.y  =    MPEL_HEIGHT - pbox->y2;
  177.         MPELSetScissor(&scissor);
  178.         scissor_set = 1;
  179.         break;
  180.       case rgnOUT:
  181.         continue;
  182.       case rgnIN:
  183.         if(scissor_set)
  184.           {
  185.         MPELResetScissor();
  186.         scissor_set = 0;
  187.           }
  188.         break;
  189.       }
  190.  
  191.     pArc = parcs;
  192.     for ( arci = 0 ; arci < narcs ; arci++ ) {
  193.         Arc.ellipse.center.x    = pArc->x;
  194.         Arc.ellipse.center.y    = pArc->y;
  195.         Arc.ellipse.majax    = pArc->width;
  196.         Arc.ellipse.minax    = pArc->height;
  197.         Arc.ellipse.angle    = 0 ;
  198.         Arc.start        = pArc->angle1;
  199.         Arc.end            = pArc->angle2;
  200.         pArc++;
  201.         MPELEllipticalArc( &Arc ) ;
  202.     }
  203.     }
  204.  
  205.     if(scissor_set)
  206.       MPELResetScissor();
  207.  
  208.     if ( cursor_saved )
  209.     mpelReplaceCursor() ;
  210.  
  211.     return ;
  212. }
  213.