region.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:11k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: region.h,v 1.1.1.1.42.1 2004/07/09 01:58:56 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /************************************************************************
  50. Copyright (c) 1987  X Consortium
  51. Permission is hereby granted, free of charge, to any person obtaining a copy
  52. of this software and associated documentation files (the "Software"), to deal
  53. in the Software without restriction, including without limitation the rights
  54. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  55. copies of the Software, and to permit persons to whom the Software is
  56. furnished to do so, subject to the following conditions:
  57. The above copyright notice and this permission notice shall be included in
  58. all copies or substantial portions of the Software.
  59. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  60. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  61. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  62. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  63. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  64. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  65. Except as contained in this notice, the name of the X Consortium shall not be
  66. used in advertising or otherwise to promote the sale, use or other dealings
  67. in this Software without prior written authorization from the X Consortium.
  68. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  69.                         All Rights Reserved
  70. Permission to use, copy, modify, and distribute this software and its 
  71. documentation for any purpose and without fee is hereby granted, 
  72. provided that the above copyright notice appear in all copies and that
  73. both that copyright notice and this permission notice appear in 
  74. supporting documentation, and that the name of Digital not be
  75. used in advertising or publicity pertaining to distribution of the
  76. software without specific, written prior permission.  
  77. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  78. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  79. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  80. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  81. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  82. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  83. SOFTWARE.
  84. ************************************************************************/
  85. #ifndef _HXREGION_H
  86. #define _HXREGION_H
  87.  
  88. #include "hxwintyp.h"
  89. /*
  90.  * XXXgfw
  91.  * 
  92.  * Moved the below definitions to hxwintyp.h so we can pass this
  93.  * stuff back and forth from renderers.
  94.  *
  95.  */
  96. /* #ifndef _REGION_DEFINED */
  97. /* #define _REGION_DEFINED */
  98. /* typedef struct { */
  99. /*     short x1, x2, y1, y2; */
  100. /* } HXBOX, *HXBoxPtr; */
  101. /* typedef struct _HXxRegion */
  102. /* { */
  103. /*     HXBOX* rects; */
  104. /*     long    numRects; */
  105. /* } HXxBoxRegion, *HXxRegionPtr; */
  106. /* #endif */
  107. typedef struct _stHXRegion
  108. {
  109.     long    size;
  110.     long    numRects;
  111.     HXBOX* rects;
  112.     HXBOX  extents;
  113. } HXREGION, *HXREGIONPtr;
  114. typedef HXREGION* _HXRegion;
  115. typedef struct {
  116.     short x, y, width, height;
  117. }HXRECTANGLE, *HXRECTANGLEPtr;
  118. typedef enum _HXRegionArithmetic
  119. {
  120.    HX_RGN_DIFF = 0,
  121.    HX_RGN_AND,
  122.    HX_RGN_OR,
  123.    HX_RGN_XOR
  124. } HXRegionArithmetic;
  125. #define TRUE 1
  126. #define FALSE 0
  127. #ifndef MAXSHORT 
  128. #define MAXSHORT 32767
  129. #endif
  130. #ifndef MINSHORT
  131. #define MINSHORT -MAXSHORT
  132. #endif
  133. #ifndef MAX
  134. #define MAX(a,b) (((a) > (b)) ? (a) : (b))
  135. #endif
  136. #ifndef MIN
  137. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  138. #endif
  139. /*  1 if two HXBOXs overlap.
  140.  *  0 if two HXBOXs do not overlap.
  141.  *  Remember, x2 and y2 are not in the region 
  142.  */
  143. #define EXTENTCHECK(r1, r2) 
  144. ((r1)->x2 > (r2)->x1 && 
  145.  (r1)->x1 < (r2)->x2 && 
  146.  (r1)->y2 > (r2)->y1 && 
  147.  (r1)->y1 < (r2)->y2)
  148. /*
  149.  *  update region extents
  150.  */
  151. #define EXTENTS(r,idRect){
  152.             if((r)->x1 < (idRect)->extents.x1)
  153.               (idRect)->extents.x1 = (r)->x1;
  154.             if((r)->y1 < (idRect)->extents.y1)
  155.               (idRect)->extents.y1 = (r)->y1;
  156.             if((r)->x2 > (idRect)->extents.x2)
  157.               (idRect)->extents.x2 = (r)->x2;
  158.             if((r)->y2 > (idRect)->extents.y2)
  159.               (idRect)->extents.y2 = (r)->y2;
  160.         }
  161. /*
  162.  *   Check to see if there is enough memory in the present region.
  163.  */
  164. #define MEMCHECK(reg, rect, firstrect){
  165.         if ((reg)->numRects >= ((reg)->size - 1)){
  166.           (firstrect) = (HXBOX *) realloc 
  167.           ((char *)(firstrect), (unsigned) (2 * (sizeof(HXBOX)) * ((reg)->size)));
  168.           if ((firstrect) == 0)
  169.             return(0);
  170.           (reg)->size *= 2;
  171.           (rect) = &(firstrect)[(reg)->numRects];
  172.          }
  173.        }
  174. /*  this routine checks to see if the previous rectangle is the same
  175.  *  or subsumes the new rectangle to add.
  176.  */
  177. #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)
  178.                (!(((Reg)->numRects > 0)&&
  179.                   ((R-1)->y1 == (Ry1)) &&
  180.                   ((R-1)->y2 == (Ry2)) &&
  181.                   ((R-1)->x1 <= (Rx1)) &&
  182.                   ((R-1)->x2 >= (Rx2))))
  183. /*  add a rectangle to the given _HXRegion */
  184. #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){
  185.     if (((rx1) < (rx2)) && ((ry1) < (ry2)) &&
  186.         CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){
  187.               (r)->x1 = (rx1);
  188.               (r)->y1 = (ry1);
  189.               (r)->x2 = (rx2);
  190.               (r)->y2 = (ry2);
  191.               EXTENTS((r), (reg));
  192.               (reg)->numRects++;
  193.               (r)++;
  194.             }
  195.         }
  196. /*  add a rectangle to the given _HXRegion */
  197. #define ADDRECTNOX(reg, r, rx1, ry1, rx2, ry2){
  198.             if ((rx1 < rx2) && (ry1 < ry2) &&
  199.                 CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){
  200.               (r)->x1 = (rx1);
  201.               (r)->y1 = (ry1);
  202.               (r)->x2 = (rx2);
  203.               (r)->y2 = (ry2);
  204.               (reg)->numRects++;
  205.               (r)++;
  206.             }
  207.         }
  208. #define EMPTY_REGION(pReg) pReg->numRects = 0
  209. #define REGION_NOT_EMPTY(pReg) pReg->numRects
  210. #define INHXBOX(r, x, y) 
  211.       ( ( ((r).x2 >  x)) && 
  212.         ( ((r).x1 <= x)) && 
  213.         ( ((r).y2 >  y)) && 
  214.         ( ((r).y1 <= y)) )
  215. /*
  216.  * number of points to buffer before sending them off
  217.  * to scanlines() :  Must be an even number
  218.  */
  219. #define NUMPTSTOBUFFER 200
  220. /*
  221.  * used to allocate buffers for points and link
  222.  * the buffers together
  223.  */
  224. typedef struct _POINTBLOCK {
  225.     HXxPoint pts[NUMPTSTOBUFFER];
  226.     struct _POINTBLOCK *next;
  227. } POINTBLOCK;
  228. #define HXRectangleOut   -1
  229. #define HXRectanglePart   1
  230. #define HXRectangleIn 0
  231. /* PROTOTYPES */
  232. /* Internal Functions */
  233. static void miSetExtents (_HXRegion pReg);
  234. static void Compress(_HXRegion r, _HXRegion s, _HXRegion t, unsigned dx, int xdir, int grow);
  235. static HXBOX *IndexRects(HXBOX *rects, int numRects, int y);
  236. static int miIntersectO (_HXRegion pReg, HXBoxPtr r1, HXBoxPtr r1End, HXBoxPtr r2, HXBoxPtr r2End, short y1, short y2);
  237. static void miRegionCopy(_HXRegion dstrgn, _HXRegion rgn);
  238. static void CombineRegs(_HXRegion newReg, _HXRegion reg1, _HXRegion reg2);
  239. static int QuickCheck(_HXRegion newReg, _HXRegion reg1, _HXRegion reg2);
  240. static int TopRects(_HXRegion newReg, HXBOX *rects, _HXRegion reg1, _HXRegion reg2, HXBOX *FirstRect);
  241. /* Interfaces */
  242. #ifdef __cplusplus
  243. extern  "C"
  244. {
  245. #endif
  246.     _HXRegion HXCreateRegion();
  247.     _HXRegion HXCreateRectRegion(int, int, int, int);
  248.     int HXClipBox( _HXRegion r, HXRECTANGLE* rect);
  249.     int HXUnionRectWithRegion(HXRECTANGLE* rect, _HXRegion source, _HXRegion dest);
  250.     int HXDestroyRegion(_HXRegion r);
  251.     int HXOffsetRegion(_HXRegion pRegion, int x, int y);
  252.     int HXShrinkRegion(_HXRegion r, int dx, int dy);
  253.     int HXUnionRegion(_HXRegion reg1, _HXRegion reg2, _HXRegion newReg);
  254.     int HXXorRegion( _HXRegion sra, _HXRegion srb, _HXRegion dr );
  255.     int HXIntersectRegion(_HXRegion reg1, _HXRegion reg2, _HXRegion  newReg);
  256.     int HXRectInRegion(_HXRegion region, int rx, int ry, unsigned int rwidth, unsigned int rheight);
  257.     int HXPointInRegion( _HXRegion pRegion, int x, int y );
  258.     int HXEqualRegion( _HXRegion r1, _HXRegion r2);
  259.     int HXSubtractRegion(_HXRegion regM, _HXRegion regS, _HXRegion regD);
  260.     int HXEmptyRegion( _HXRegion r);
  261.     int HXCombineRgn( _HXRegion destRgn,
  262.                        _HXRegion srcRgn1,
  263.                        _HXRegion srcRgn2,
  264.                        HXRegionArithmetic rgnOperation
  265.                        );
  266.     int HXZeroOutRegion(_HXRegion r);
  267. #ifdef _DEBUG
  268.    void _DumpRegion(_HXRegion pRegion );
  269.    void _DumpString(const char *);
  270. #endif
  271.          
  272. #ifdef __cplusplus
  273. }
  274. #endif
  275. #endif