[CMAKE]
[reactos.git] / subsystems / win32 / win32k / objects / region.c
1 /*
2 * ReactOS W32 Subsystem
3 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 /*
21 * GDI region objects. Shamelessly ripped out from the X11 distribution
22 * Thanks for the nice licence.
23 *
24 * Copyright 1993, 1994, 1995 Alexandre Julliard
25 * Modifications and additions: Copyright 1998 Huw Davies
26 * 1999 Alex Korobka
27 *
28 * This library is free software; you can redistribute it and/or
29 * modify it under the terms of the GNU Lesser General Public
30 * License as published by the Free Software Foundation; either
31 * version 2.1 of the License, or (at your option) any later version.
32 *
33 * This library is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36 * Lesser General Public License for more details.
37 *
38 * You should have received a copy of the GNU Lesser General Public
39 * License along with this library; if not, write to the Free Software
40 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 */
42
43 /************************************************************************
44
45 Copyright (c) 1987, 1988 X Consortium
46
47 Permission is hereby granted, free of charge, to any person obtaining a copy
48 of this software and associated documentation files (the "Software"), to deal
49 in the Software without restriction, including without limitation the rights
50 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
51 copies of the Software, and to permit persons to whom the Software is
52 furnished to do so, subject to the following conditions:
53
54 The above copyright notice and this permission notice shall be included in
55 all copies or substantial portions of the Software.
56
57 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
59 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
60 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
61 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
62 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63
64 Except as contained in this notice, the name of the X Consortium shall not be
65 used in advertising or otherwise to promote the sale, use or other dealings
66 in this Software without prior written authorization from the X Consortium.
67
68
69 Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
70
71 All Rights Reserved
72
73 Permission to use, copy, modify, and distribute this software and its
74 documentation for any purpose and without fee is hereby granted,
75 provided that the above copyright notice appear in all copies and that
76 both that copyright notice and this permission notice appear in
77 supporting documentation, and that the name of Digital not be
78 used in advertising or publicity pertaining to distribution of the
79 software without specific, written prior permission.
80
81 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
82 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
83 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
84 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
85 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
86 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
87 SOFTWARE.
88
89 ************************************************************************/
90 /*
91 * The functions in this file implement the Region abstraction, similar to one
92 * used in the X11 sample server. A Region is simply an area, as the name
93 * implies, and is implemented as a "y-x-banded" array of rectangles. To
94 * explain: Each Region is made up of a certain number of rectangles sorted
95 * by y coordinate first, and then by x coordinate.
96 *
97 * Furthermore, the rectangles are banded such that every rectangle with a
98 * given upper-left y coordinate (y1) will have the same lower-right y
99 * coordinate (y2) and vice versa. If a rectangle has scanlines in a band, it
100 * will span the entire vertical distance of the band. This means that some
101 * areas that could be merged into a taller rectangle will be represented as
102 * several shorter rectangles to account for shorter rectangles to its left
103 * or right but within its "vertical scope".
104 *
105 * An added constraint on the rectangles is that they must cover as much
106 * horizontal area as possible. E.g. no two rectangles in a band are allowed
107 * to touch.
108 *
109 * Whenever possible, bands will be merged together to cover a greater vertical
110 * distance (and thus reduce the number of rectangles). Two bands can be merged
111 * only if the bottom of one touches the top of the other and they have
112 * rectangles in the same places (of the same width, of course). This maintains
113 * the y-x-banding that's so nice to have...
114 */
115
116 #include <win32k.h>
117
118 #define NDEBUG
119 #include <debug.h>
120
121 PROSRGNDATA prgnDefault = NULL;
122 HRGN hrgnDefault = NULL;
123
124 // Internal Functions
125
126 #if 1
127 #define COPY_RECTS(dest, src, nRects) \
128 do { \
129 PRECTL xDest = (dest); \
130 PRECTL xSrc = (src); \
131 UINT xRects = (nRects); \
132 while(xRects-- > 0) { \
133 *(xDest++) = *(xSrc++); \
134 } \
135 } while(0)
136 #else
137 #define COPY_RECTS(dest, src, nRects) RtlCopyMemory(dest, src, (nRects) * sizeof(RECTL))
138 #endif
139
140 #define EMPTY_REGION(pReg) { \
141 (pReg)->rdh.nCount = 0; \
142 (pReg)->rdh.rcBound.left = (pReg)->rdh.rcBound.top = 0; \
143 (pReg)->rdh.rcBound.right = (pReg)->rdh.rcBound.bottom = 0; \
144 (pReg)->rdh.iType = RDH_RECTANGLES; \
145 }
146
147 #define REGION_NOT_EMPTY(pReg) pReg->rdh.nCount
148
149 #define INRECT(r, x, y) \
150 ( ( ((r).right > x)) && \
151 ( ((r).left <= x)) && \
152 ( ((r).bottom > y)) && \
153 ( ((r).top <= y)) )
154
155 /* 1 if two RECTs overlap.
156 * 0 if two RECTs do not overlap.
157 */
158 #define EXTENTCHECK(r1, r2) \
159 ((r1)->right > (r2)->left && \
160 (r1)->left < (r2)->right && \
161 (r1)->bottom > (r2)->top && \
162 (r1)->top < (r2)->bottom)
163
164 /*
165 * In scan converting polygons, we want to choose those pixels
166 * which are inside the polygon. Thus, we add .5 to the starting
167 * x coordinate for both left and right edges. Now we choose the
168 * first pixel which is inside the pgon for the left edge and the
169 * first pixel which is outside the pgon for the right edge.
170 * Draw the left pixel, but not the right.
171 *
172 * How to add .5 to the starting x coordinate:
173 * If the edge is moving to the right, then subtract dy from the
174 * error term from the general form of the algorithm.
175 * If the edge is moving to the left, then add dy to the error term.
176 *
177 * The reason for the difference between edges moving to the left
178 * and edges moving to the right is simple: If an edge is moving
179 * to the right, then we want the algorithm to flip immediately.
180 * If it is moving to the left, then we don't want it to flip until
181 * we traverse an entire pixel.
182 */
183 #define BRESINITPGON(dy, x1, x2, xStart, d, m, m1, incr1, incr2) { \
184 int dx; /* local storage */ \
185 \
186 /* \
187 * if the edge is horizontal, then it is ignored \
188 * and assumed not to be processed. Otherwise, do this stuff. \
189 */ \
190 if ((dy) != 0) { \
191 xStart = (x1); \
192 dx = (x2) - xStart; \
193 if (dx < 0) { \
194 m = dx / (dy); \
195 m1 = m - 1; \
196 incr1 = -2 * dx + 2 * (dy) * m1; \
197 incr2 = -2 * dx + 2 * (dy) * m; \
198 d = 2 * m * (dy) - 2 * dx - 2 * (dy); \
199 } else { \
200 m = dx / (dy); \
201 m1 = m + 1; \
202 incr1 = 2 * dx - 2 * (dy) * m1; \
203 incr2 = 2 * dx - 2 * (dy) * m; \
204 d = -2 * m * (dy) + 2 * dx; \
205 } \
206 } \
207 }
208
209 #define BRESINCRPGON(d, minval, m, m1, incr1, incr2) { \
210 if (m1 > 0) { \
211 if (d > 0) { \
212 minval += m1; \
213 d += incr1; \
214 } \
215 else { \
216 minval += m; \
217 d += incr2; \
218 } \
219 } else {\
220 if (d >= 0) { \
221 minval += m1; \
222 d += incr1; \
223 } \
224 else { \
225 minval += m; \
226 d += incr2; \
227 } \
228 } \
229 }
230
231 /*
232 * This structure contains all of the information needed
233 * to run the bresenham algorithm.
234 * The variables may be hardcoded into the declarations
235 * instead of using this structure to make use of
236 * register declarations.
237 */
238 typedef struct
239 {
240 INT minor_axis; /* minor axis */
241 INT d; /* decision variable */
242 INT m, m1; /* slope and slope+1 */
243 INT incr1, incr2; /* error increments */
244 } BRESINFO;
245
246
247 #define BRESINITPGONSTRUCT(dmaj, min1, min2, bres) \
248 BRESINITPGON(dmaj, min1, min2, bres.minor_axis, bres.d, \
249 bres.m, bres.m1, bres.incr1, bres.incr2)
250
251 #define BRESINCRPGONSTRUCT(bres) \
252 BRESINCRPGON(bres.d, bres.minor_axis, bres.m, bres.m1, bres.incr1, bres.incr2)
253
254
255
256 /*
257 * These are the data structures needed to scan
258 * convert regions. Two different scan conversion
259 * methods are available -- the even-odd method, and
260 * the winding number method.
261 * The even-odd rule states that a point is inside
262 * the polygon if a ray drawn from that point in any
263 * direction will pass through an odd number of
264 * path segments.
265 * By the winding number rule, a point is decided
266 * to be inside the polygon if a ray drawn from that
267 * point in any direction passes through a different
268 * number of clockwise and counter-clockwise path
269 * segments.
270 *
271 * These data structures are adapted somewhat from
272 * the algorithm in (Foley/Van Dam) for scan converting
273 * polygons.
274 * The basic algorithm is to start at the top (smallest y)
275 * of the polygon, stepping down to the bottom of
276 * the polygon by incrementing the y coordinate. We
277 * keep a list of edges which the current scanline crosses,
278 * sorted by x. This list is called the Active Edge Table (AET)
279 * As we change the y-coordinate, we update each entry in
280 * in the active edge table to reflect the edges new xcoord.
281 * This list must be sorted at each scanline in case
282 * two edges intersect.
283 * We also keep a data structure known as the Edge Table (ET),
284 * which keeps track of all the edges which the current
285 * scanline has not yet reached. The ET is basically a
286 * list of ScanLineList structures containing a list of
287 * edges which are entered at a given scanline. There is one
288 * ScanLineList per scanline at which an edge is entered.
289 * When we enter a new edge, we move it from the ET to the AET.
290 *
291 * From the AET, we can implement the even-odd rule as in
292 * (Foley/Van Dam).
293 * The winding number rule is a little trickier. We also
294 * keep the EdgeTableEntries in the AET linked by the
295 * nextWETE (winding EdgeTableEntry) link. This allows
296 * the edges to be linked just as before for updating
297 * purposes, but only uses the edges linked by the nextWETE
298 * link as edges representing spans of the polygon to
299 * drawn (as with the even-odd rule).
300 */
301
302 /*
303 * for the winding number rule
304 */
305 #define CLOCKWISE 1
306 #define COUNTERCLOCKWISE -1
307
308 typedef struct _EdgeTableEntry
309 {
310 INT ymax; /* ycoord at which we exit this edge. */
311 BRESINFO bres; /* Bresenham info to run the edge */
312 struct _EdgeTableEntry *next; /* next in the list */
313 struct _EdgeTableEntry *back; /* for insertion sort */
314 struct _EdgeTableEntry *nextWETE; /* for winding num rule */
315 int ClockWise; /* flag for winding number rule */
316 } EdgeTableEntry;
317
318
319 typedef struct _ScanLineList
320 {
321 INT scanline; /* the scanline represented */
322 EdgeTableEntry *edgelist; /* header node */
323 struct _ScanLineList *next; /* next in the list */
324 } ScanLineList;
325
326
327 typedef struct
328 {
329 INT ymax; /* ymax for the polygon */
330 INT ymin; /* ymin for the polygon */
331 ScanLineList scanlines; /* header node */
332 } EdgeTable;
333
334
335 /*
336 * Here is a struct to help with storage allocation
337 * so we can allocate a big chunk at a time, and then take
338 * pieces from this heap when we need to.
339 */
340 #define SLLSPERBLOCK 25
341
342 typedef struct _ScanLineListBlock
343 {
344 ScanLineList SLLs[SLLSPERBLOCK];
345 struct _ScanLineListBlock *next;
346 } ScanLineListBlock;
347
348
349 /*
350 *
351 * a few macros for the inner loops of the fill code where
352 * performance considerations don't allow a procedure call.
353 *
354 * Evaluate the given edge at the given scanline.
355 * If the edge has expired, then we leave it and fix up
356 * the active edge table; otherwise, we increment the
357 * x value to be ready for the next scanline.
358 * The winding number rule is in effect, so we must notify
359 * the caller when the edge has been removed so he
360 * can reorder the Winding Active Edge Table.
361 */
362 #define EVALUATEEDGEWINDING(pAET, pPrevAET, y, fixWAET) { \
363 if (pAET->ymax == y) { /* leaving this edge */ \
364 pPrevAET->next = pAET->next; \
365 pAET = pPrevAET->next; \
366 fixWAET = 1; \
367 if (pAET) \
368 pAET->back = pPrevAET; \
369 } \
370 else { \
371 BRESINCRPGONSTRUCT(pAET->bres); \
372 pPrevAET = pAET; \
373 pAET = pAET->next; \
374 } \
375 }
376
377
378 /*
379 * Evaluate the given edge at the given scanline.
380 * If the edge has expired, then we leave it and fix up
381 * the active edge table; otherwise, we increment the
382 * x value to be ready for the next scanline.
383 * The even-odd rule is in effect.
384 */
385 #define EVALUATEEDGEEVENODD(pAET, pPrevAET, y) { \
386 if (pAET->ymax == y) { /* leaving this edge */ \
387 pPrevAET->next = pAET->next; \
388 pAET = pPrevAET->next; \
389 if (pAET) \
390 pAET->back = pPrevAET; \
391 } \
392 else { \
393 BRESINCRPGONSTRUCT(pAET->bres); \
394 pPrevAET = pAET; \
395 pAET = pAET->next; \
396 } \
397 }
398
399 /**************************************************************************
400 *
401 * Poly Regions
402 *
403 *************************************************************************/
404
405 #define LARGE_COORDINATE 0x7fffffff /* FIXME */
406 #define SMALL_COORDINATE 0x80000000
407
408 /*
409 * Check to see if there is enough memory in the present region.
410 */
411 static __inline int xmemcheck(ROSRGNDATA *reg, PRECTL *rect, PRECTL *firstrect)
412 {
413 if ( (reg->rdh.nCount+1) * sizeof(RECT) >= reg->rdh.nRgnSize )
414 {
415 PRECTL temp;
416 DWORD NewSize = 2 * reg->rdh.nRgnSize;
417 if (NewSize < (reg->rdh.nCount + 1) * sizeof(RECT))
418 {
419 NewSize = (reg->rdh.nCount + 1) * sizeof(RECT);
420 }
421 temp = ExAllocatePoolWithTag(PagedPool, NewSize, TAG_REGION);
422
423 if (temp == NULL)
424 {
425 return 0;
426 }
427
428 /* Copy the rectangles */
429 COPY_RECTS(temp, *firstrect, reg->rdh.nCount);
430
431 reg->rdh.nRgnSize = NewSize;
432 if (*firstrect != &reg->rdh.rcBound)
433 {
434 ExFreePoolWithTag(*firstrect, TAG_REGION);
435 }
436 *firstrect = temp;
437 *rect = (*firstrect)+reg->rdh.nCount;
438 }
439 return 1;
440 }
441
442 #define MEMCHECK(reg, rect, firstrect) xmemcheck(reg,&(rect),(PRECTL *)&(firstrect))
443
444 typedef void (FASTCALL *overlapProcp)(PROSRGNDATA, PRECT, PRECT, PRECT, PRECT, INT, INT);
445 typedef void (FASTCALL *nonOverlapProcp)(PROSRGNDATA, PRECT, PRECT, INT, INT);
446
447 // Number of points to buffer before sending them off to scanlines() : Must be an even number
448 #define NUMPTSTOBUFFER 200
449
450 #define RGN_DEFAULT_RECTS 2
451
452 // used to allocate buffers for points and link the buffers together
453
454 typedef struct _POINTBLOCK
455 {
456 POINT pts[NUMPTSTOBUFFER];
457 struct _POINTBLOCK *next;
458 } POINTBLOCK;
459
460 #ifndef NDEBUG
461 /*
462 * This function is left there for debugging purposes.
463 */
464
465 VOID FASTCALL
466 IntDumpRegion(HRGN hRgn)
467 {
468 ROSRGNDATA *Data;
469
470 Data = RGNOBJAPI_Lock(hRgn, NULL);
471 if (Data == NULL)
472 {
473 DbgPrint("IntDumpRegion called with invalid region!\n");
474 return;
475 }
476
477 DbgPrint("IntDumpRegion(%x): %d,%d-%d,%d %d\n",
478 hRgn,
479 Data->rdh.rcBound.left,
480 Data->rdh.rcBound.top,
481 Data->rdh.rcBound.right,
482 Data->rdh.rcBound.bottom,
483 Data->rdh.iType);
484
485 RGNOBJAPI_Unlock(Data);
486 }
487 #endif /* not NDEBUG */
488
489
490 INT
491 FASTCALL
492 REGION_Complexity( PROSRGNDATA obj )
493 {
494 if (!obj) return NULLREGION;
495 switch(obj->rdh.nCount)
496 {
497 DPRINT("Region Complexity -> %d",obj->rdh.nCount);
498 case 0: return NULLREGION;
499 case 1: return SIMPLEREGION;
500 default: return COMPLEXREGION;
501 }
502 }
503
504 static
505 BOOL
506 FASTCALL
507 REGION_CopyRegion(
508 PROSRGNDATA dst,
509 PROSRGNDATA src
510 )
511 {
512 if (dst != src) // don't want to copy to itself
513 {
514 if (dst->rdh.nRgnSize < src->rdh.nCount * sizeof(RECT))
515 {
516 PRECTL temp;
517
518 temp = ExAllocatePoolWithTag(PagedPool, src->rdh.nCount * sizeof(RECT), TAG_REGION );
519 if (!temp)
520 return FALSE;
521
522 if (dst->Buffer && dst->Buffer != &dst->rdh.rcBound)
523 ExFreePoolWithTag(dst->Buffer, TAG_REGION); //free the old buffer
524 dst->Buffer = temp;
525 dst->rdh.nRgnSize = src->rdh.nCount * sizeof(RECT); //size of region buffer
526 }
527 dst->rdh.nCount = src->rdh.nCount; //number of rectangles present in Buffer
528 dst->rdh.rcBound.left = src->rdh.rcBound.left;
529 dst->rdh.rcBound.top = src->rdh.rcBound.top;
530 dst->rdh.rcBound.right = src->rdh.rcBound.right;
531 dst->rdh.rcBound.bottom = src->rdh.rcBound.bottom;
532 dst->rdh.iType = src->rdh.iType;
533 COPY_RECTS(dst->Buffer, src->Buffer, src->rdh.nCount);
534 }
535 return TRUE;
536 }
537
538 static void FASTCALL
539 REGION_SetExtents(ROSRGNDATA *pReg)
540 {
541 RECTL *pRect, *pRectEnd, *pExtents;
542
543 if (pReg->rdh.nCount == 0)
544 {
545 pReg->rdh.rcBound.left = 0;
546 pReg->rdh.rcBound.top = 0;
547 pReg->rdh.rcBound.right = 0;
548 pReg->rdh.rcBound.bottom = 0;
549 pReg->rdh.iType = RDH_RECTANGLES;
550 return;
551 }
552
553 pExtents = &pReg->rdh.rcBound;
554 pRect = pReg->Buffer;
555 pRectEnd = pReg->Buffer + pReg->rdh.nCount - 1;
556
557 /*
558 * Since pRect is the first rectangle in the region, it must have the
559 * smallest top and since pRectEnd is the last rectangle in the region,
560 * it must have the largest bottom, because of banding. Initialize left and
561 * right from pRect and pRectEnd, resp., as good things to initialize them
562 * to...
563 */
564 pExtents->left = pRect->left;
565 pExtents->top = pRect->top;
566 pExtents->right = pRectEnd->right;
567 pExtents->bottom = pRectEnd->bottom;
568
569 while (pRect <= pRectEnd)
570 {
571 if (pRect->left < pExtents->left)
572 pExtents->left = pRect->left;
573 if (pRect->right > pExtents->right)
574 pExtents->right = pRect->right;
575 pRect++;
576 }
577 pReg->rdh.iType = RDH_RECTANGLES;
578 }
579
580 // FIXME: This seems to be wrong
581 /***********************************************************************
582 * REGION_CropAndOffsetRegion
583 */
584 BOOL FASTCALL
585 REGION_CropAndOffsetRegion(
586 PROSRGNDATA rgnDst,
587 PROSRGNDATA rgnSrc,
588 const RECTL *rect,
589 const POINTL *offset
590 )
591 {
592 POINT pt = {0,0};
593 const POINT *off = offset;
594
595 if (!off) off = &pt;
596
597 if (!rect) // just copy and offset
598 {
599 PRECTL xrect;
600 if (rgnDst == rgnSrc)
601 {
602 if (off->x || off->y)
603 xrect = rgnDst->Buffer;
604 else
605 return TRUE;
606 }
607 else
608 {
609 xrect = ExAllocatePoolWithTag(PagedPool, rgnSrc->rdh.nCount * sizeof(RECT), TAG_REGION);
610 if(!xrect)
611 return FALSE;
612 if (rgnDst->Buffer && rgnDst->Buffer != &rgnDst->rdh.rcBound)
613 ExFreePoolWithTag(rgnDst->Buffer, TAG_REGION); //free the old buffer. will be assigned to xrect below.
614 }
615
616 if (rgnDst != rgnSrc)
617 {
618 *rgnDst = *rgnSrc;
619 }
620
621 if (off->x || off->y)
622 {
623 ULONG i;
624 for (i = 0; i < rgnDst->rdh.nCount; i++)
625 {
626 xrect[i].left = (rgnSrc->Buffer + i)->left + off->x;
627 xrect[i].right = (rgnSrc->Buffer + i)->right + off->x;
628 xrect[i].top = (rgnSrc->Buffer + i)->top + off->y;
629 xrect[i].bottom = (rgnSrc->Buffer + i)->bottom + off->y;
630 }
631 rgnDst->rdh.rcBound.left += off->x;
632 rgnDst->rdh.rcBound.right += off->x;
633 rgnDst->rdh.rcBound.top += off->y;
634 rgnDst->rdh.rcBound.bottom += off->y;
635 }
636 else
637 {
638 COPY_RECTS(xrect, rgnSrc->Buffer, rgnDst->rdh.nCount);
639 }
640
641 rgnDst->Buffer = xrect;
642 }
643 else if ((rect->left >= rect->right) ||
644 (rect->top >= rect->bottom) ||
645 !EXTENTCHECK(rect, &rgnSrc->rdh.rcBound))
646 {
647 goto empty;
648 }
649 else // region box and clipping rect appear to intersect
650 {
651 PRECTL lpr, rpr;
652 ULONG i, j, clipa, clipb;
653 INT left = rgnSrc->rdh.rcBound.right + off->x;
654 INT right = rgnSrc->rdh.rcBound.left + off->x;
655
656 for (clipa = 0; (rgnSrc->Buffer + clipa)->bottom <= rect->top; clipa++)
657 //region and rect intersect so we stop before clipa > rgnSrc->rdh.nCount
658 ; // skip bands above the clipping rectangle
659
660 for (clipb = clipa; clipb < rgnSrc->rdh.nCount; clipb++)
661 if ((rgnSrc->Buffer + clipb)->top >= rect->bottom)
662 break; // and below it
663
664 // clipa - index of the first rect in the first intersecting band
665 // clipb - index of the last rect in the last intersecting band
666
667 if ((rgnDst != rgnSrc) && (rgnDst->rdh.nCount < (i = (clipb - clipa))))
668 {
669 PRECTL temp;
670 temp = ExAllocatePoolWithTag(PagedPool, i * sizeof(RECT), TAG_REGION);
671 if (!temp)
672 return FALSE;
673
674 if (rgnDst->Buffer && rgnDst->Buffer != &rgnDst->rdh.rcBound)
675 ExFreePoolWithTag(rgnDst->Buffer, TAG_REGION); //free the old buffer
676 rgnDst->Buffer = temp;
677 rgnDst->rdh.nCount = i;
678 rgnDst->rdh.nRgnSize = i * sizeof(RECT);
679 }
680
681 for (i = clipa, j = 0; i < clipb ; i++)
682 {
683 // i - src index, j - dst index, j is always <= i for obvious reasons
684
685 lpr = rgnSrc->Buffer + i;
686
687 if (lpr->left < rect->right && lpr->right > rect->left)
688 {
689 rpr = rgnDst->Buffer + j;
690
691 rpr->top = lpr->top + off->y;
692 rpr->bottom = lpr->bottom + off->y;
693 rpr->left = ((lpr->left > rect->left) ? lpr->left : rect->left) + off->x;
694 rpr->right = ((lpr->right < rect->right) ? lpr->right : rect->right) + off->x;
695
696 if (rpr->left < left) left = rpr->left;
697 if (rpr->right > right) right = rpr->right;
698
699 j++;
700 }
701 }
702
703 if (j == 0) goto empty;
704
705 rgnDst->rdh.rcBound.left = left;
706 rgnDst->rdh.rcBound.right = right;
707
708 left = rect->top + off->y;
709 right = rect->bottom + off->y;
710
711 rgnDst->rdh.nCount = j--;
712 for (i = 0; i <= j; i++) // fixup top band
713 if ((rgnDst->Buffer + i)->top < left)
714 (rgnDst->Buffer + i)->top = left;
715 else
716 break;
717
718 for (i = j; i > 0; i--) // fixup bottom band
719 if ((rgnDst->Buffer + i)->bottom > right)
720 (rgnDst->Buffer + i)->bottom = right;
721 else
722 break;
723
724 rgnDst->rdh.rcBound.top = (rgnDst->Buffer)->top;
725 rgnDst->rdh.rcBound.bottom = (rgnDst->Buffer + j)->bottom;
726
727 rgnDst->rdh.iType = RDH_RECTANGLES;
728 }
729
730 return TRUE;
731
732 empty:
733 if (!rgnDst->Buffer)
734 {
735 rgnDst->Buffer = ExAllocatePoolWithTag(PagedPool, RGN_DEFAULT_RECTS * sizeof(RECT), TAG_REGION);
736 if (rgnDst->Buffer)
737 {
738 rgnDst->rdh.nCount = RGN_DEFAULT_RECTS;
739 rgnDst->rdh.nRgnSize = RGN_DEFAULT_RECTS * sizeof(RECT);
740 }
741 else
742 return FALSE;
743 }
744 EMPTY_REGION(rgnDst);
745 return TRUE;
746 }
747
748
749 /*!
750 * Attempt to merge the rects in the current band with those in the
751 * previous one. Used only by REGION_RegionOp.
752 *
753 * Results:
754 * The new index for the previous band.
755 *
756 * \note Side Effects:
757 * If coalescing takes place:
758 * - rectangles in the previous band will have their bottom fields
759 * altered.
760 * - pReg->numRects will be decreased.
761 *
762 */
763 static INT FASTCALL
764 REGION_Coalesce(
765 PROSRGNDATA pReg, /* Region to coalesce */
766 INT prevStart, /* Index of start of previous band */
767 INT curStart /* Index of start of current band */
768 )
769 {
770 RECTL *pPrevRect; /* Current rect in previous band */
771 RECTL *pCurRect; /* Current rect in current band */
772 RECTL *pRegEnd; /* End of region */
773 INT curNumRects; /* Number of rectangles in current band */
774 INT prevNumRects; /* Number of rectangles in previous band */
775 INT bandtop; /* top coordinate for current band */
776
777 pRegEnd = pReg->Buffer + pReg->rdh.nCount;
778 pPrevRect = pReg->Buffer + prevStart;
779 prevNumRects = curStart - prevStart;
780
781 /*
782 * Figure out how many rectangles are in the current band. Have to do
783 * this because multiple bands could have been added in REGION_RegionOp
784 * at the end when one region has been exhausted.
785 */
786 pCurRect = pReg->Buffer + curStart;
787 bandtop = pCurRect->top;
788 for (curNumRects = 0;
789 (pCurRect != pRegEnd) && (pCurRect->top == bandtop);
790 curNumRects++)
791 {
792 pCurRect++;
793 }
794
795 if (pCurRect != pRegEnd)
796 {
797 /*
798 * If more than one band was added, we have to find the start
799 * of the last band added so the next coalescing job can start
800 * at the right place... (given when multiple bands are added,
801 * this may be pointless -- see above).
802 */
803 pRegEnd--;
804 while ((pRegEnd-1)->top == pRegEnd->top)
805 {
806 pRegEnd--;
807 }
808 curStart = pRegEnd - pReg->Buffer;
809 pRegEnd = pReg->Buffer + pReg->rdh.nCount;
810 }
811
812 if ((curNumRects == prevNumRects) && (curNumRects != 0))
813 {
814 pCurRect -= curNumRects;
815 /*
816 * The bands may only be coalesced if the bottom of the previous
817 * matches the top scanline of the current.
818 */
819 if (pPrevRect->bottom == pCurRect->top)
820 {
821 /*
822 * Make sure the bands have rects in the same places. This
823 * assumes that rects have been added in such a way that they
824 * cover the most area possible. I.e. two rects in a band must
825 * have some horizontal space between them.
826 */
827 do
828 {
829 if ((pPrevRect->left != pCurRect->left) ||
830 (pPrevRect->right != pCurRect->right))
831 {
832 /*
833 * The bands don't line up so they can't be coalesced.
834 */
835 return (curStart);
836 }
837 pPrevRect++;
838 pCurRect++;
839 prevNumRects -= 1;
840 }
841 while (prevNumRects != 0);
842
843 pReg->rdh.nCount -= curNumRects;
844 pCurRect -= curNumRects;
845 pPrevRect -= curNumRects;
846
847 /*
848 * The bands may be merged, so set the bottom of each rect
849 * in the previous band to that of the corresponding rect in
850 * the current band.
851 */
852 do
853 {
854 pPrevRect->bottom = pCurRect->bottom;
855 pPrevRect++;
856 pCurRect++;
857 curNumRects -= 1;
858 }
859 while (curNumRects != 0);
860
861 /*
862 * If only one band was added to the region, we have to backup
863 * curStart to the start of the previous band.
864 *
865 * If more than one band was added to the region, copy the
866 * other bands down. The assumption here is that the other bands
867 * came from the same region as the current one and no further
868 * coalescing can be done on them since it's all been done
869 * already... curStart is already in the right place.
870 */
871 if (pCurRect == pRegEnd)
872 {
873 curStart = prevStart;
874 }
875 else
876 {
877 do
878 {
879 *pPrevRect++ = *pCurRect++;
880 }
881 while (pCurRect != pRegEnd);
882 }
883 }
884 }
885 return (curStart);
886 }
887
888 /*!
889 * Apply an operation to two regions. Called by REGION_Union,
890 * REGION_Inverse, REGION_Subtract, REGION_Intersect...
891 *
892 * Results:
893 * None.
894 *
895 * Side Effects:
896 * The new region is overwritten.
897 *
898 *\note The idea behind this function is to view the two regions as sets.
899 * Together they cover a rectangle of area that this function divides
900 * into horizontal bands where points are covered only by one region
901 * or by both. For the first case, the nonOverlapFunc is called with
902 * each the band and the band's upper and lower extents. For the
903 * second, the overlapFunc is called to process the entire band. It
904 * is responsible for clipping the rectangles in the band, though
905 * this function provides the boundaries.
906 * At the end of each band, the new region is coalesced, if possible,
907 * to reduce the number of rectangles in the region.
908 *
909 */
910 static void FASTCALL
911 REGION_RegionOp(
912 ROSRGNDATA *newReg, /* Place to store result */
913 ROSRGNDATA *reg1, /* First region in operation */
914 ROSRGNDATA *reg2, /* 2nd region in operation */
915 overlapProcp overlapFunc, /* Function to call for over-lapping bands */
916 nonOverlapProcp nonOverlap1Func, /* Function to call for non-overlapping bands in region 1 */
917 nonOverlapProcp nonOverlap2Func /* Function to call for non-overlapping bands in region 2 */
918 )
919 {
920 RECTL *r1; /* Pointer into first region */
921 RECTL *r2; /* Pointer into 2d region */
922 RECTL *r1End; /* End of 1st region */
923 RECTL *r2End; /* End of 2d region */
924 INT ybot; /* Bottom of intersection */
925 INT ytop; /* Top of intersection */
926 RECTL *oldRects; /* Old rects for newReg */
927 ULONG prevBand; /* Index of start of
928 * previous band in newReg */
929 ULONG curBand; /* Index of start of current band in newReg */
930 RECTL *r1BandEnd; /* End of current band in r1 */
931 RECTL *r2BandEnd; /* End of current band in r2 */
932 ULONG top; /* Top of non-overlapping band */
933 ULONG bot; /* Bottom of non-overlapping band */
934
935 /*
936 * Initialization:
937 * set r1, r2, r1End and r2End appropriately, preserve the important
938 * parts of the destination region until the end in case it's one of
939 * the two source regions, then mark the "new" region empty, allocating
940 * another array of rectangles for it to use.
941 */
942 r1 = reg1->Buffer;
943 r2 = reg2->Buffer;
944 r1End = r1 + reg1->rdh.nCount;
945 r2End = r2 + reg2->rdh.nCount;
946
947
948 /*
949 * newReg may be one of the src regions so we can't empty it. We keep a
950 * note of its rects pointer (so that we can free them later), preserve its
951 * extents and simply set numRects to zero.
952 */
953
954 oldRects = newReg->Buffer;
955 newReg->rdh.nCount = 0;
956
957 /*
958 * Allocate a reasonable number of rectangles for the new region. The idea
959 * is to allocate enough so the individual functions don't need to
960 * reallocate and copy the array, which is time consuming, yet we don't
961 * have to worry about using too much memory. I hope to be able to
962 * nuke the Xrealloc() at the end of this function eventually.
963 */
964 newReg->rdh.nRgnSize = max(reg1->rdh.nCount,reg2->rdh.nCount) * 2 * sizeof(RECT);
965
966 if (! (newReg->Buffer = ExAllocatePoolWithTag(PagedPool, newReg->rdh.nRgnSize, TAG_REGION)))
967 {
968 newReg->rdh.nRgnSize = 0;
969 return;
970 }
971
972 /*
973 * Initialize ybot and ytop.
974 * In the upcoming loop, ybot and ytop serve different functions depending
975 * on whether the band being handled is an overlapping or non-overlapping
976 * band.
977 * In the case of a non-overlapping band (only one of the regions
978 * has points in the band), ybot is the bottom of the most recent
979 * intersection and thus clips the top of the rectangles in that band.
980 * ytop is the top of the next intersection between the two regions and
981 * serves to clip the bottom of the rectangles in the current band.
982 * For an overlapping band (where the two regions intersect), ytop clips
983 * the top of the rectangles of both regions and ybot clips the bottoms.
984 */
985 if (reg1->rdh.rcBound.top < reg2->rdh.rcBound.top)
986 ybot = reg1->rdh.rcBound.top;
987 else
988 ybot = reg2->rdh.rcBound.top;
989
990 /*
991 * prevBand serves to mark the start of the previous band so rectangles
992 * can be coalesced into larger rectangles. qv. miCoalesce, above.
993 * In the beginning, there is no previous band, so prevBand == curBand
994 * (curBand is set later on, of course, but the first band will always
995 * start at index 0). prevBand and curBand must be indices because of
996 * the possible expansion, and resultant moving, of the new region's
997 * array of rectangles.
998 */
999 prevBand = 0;
1000
1001 do
1002 {
1003 curBand = newReg->rdh.nCount;
1004
1005 /*
1006 * This algorithm proceeds one source-band (as opposed to a
1007 * destination band, which is determined by where the two regions
1008 * intersect) at a time. r1BandEnd and r2BandEnd serve to mark the
1009 * rectangle after the last one in the current band for their
1010 * respective regions.
1011 */
1012 r1BandEnd = r1;
1013 while ((r1BandEnd != r1End) && (r1BandEnd->top == r1->top))
1014 {
1015 r1BandEnd++;
1016 }
1017
1018 r2BandEnd = r2;
1019 while ((r2BandEnd != r2End) && (r2BandEnd->top == r2->top))
1020 {
1021 r2BandEnd++;
1022 }
1023
1024 /*
1025 * First handle the band that doesn't intersect, if any.
1026 *
1027 * Note that attention is restricted to one band in the
1028 * non-intersecting region at once, so if a region has n
1029 * bands between the current position and the next place it overlaps
1030 * the other, this entire loop will be passed through n times.
1031 */
1032 if (r1->top < r2->top)
1033 {
1034 top = max(r1->top,ybot);
1035 bot = min(r1->bottom,r2->top);
1036
1037 if ((top != bot) && (nonOverlap1Func != NULL))
1038 {
1039 (* nonOverlap1Func) (newReg, r1, r1BandEnd, top, bot);
1040 }
1041
1042 ytop = r2->top;
1043 }
1044 else if (r2->top < r1->top)
1045 {
1046 top = max(r2->top,ybot);
1047 bot = min(r2->bottom,r1->top);
1048
1049 if ((top != bot) && (nonOverlap2Func != NULL))
1050 {
1051 (* nonOverlap2Func) (newReg, r2, r2BandEnd, top, bot);
1052 }
1053
1054 ytop = r1->top;
1055 }
1056 else
1057 {
1058 ytop = r1->top;
1059 }
1060
1061 /*
1062 * If any rectangles got added to the region, try and coalesce them
1063 * with rectangles from the previous band. Note we could just do
1064 * this test in miCoalesce, but some machines incur a not
1065 * inconsiderable cost for function calls, so...
1066 */
1067 if (newReg->rdh.nCount != curBand)
1068 {
1069 prevBand = REGION_Coalesce (newReg, prevBand, curBand);
1070 }
1071
1072 /*
1073 * Now see if we've hit an intersecting band. The two bands only
1074 * intersect if ybot > ytop
1075 */
1076 ybot = min(r1->bottom, r2->bottom);
1077 curBand = newReg->rdh.nCount;
1078 if (ybot > ytop)
1079 {
1080 (* overlapFunc) (newReg, r1, r1BandEnd, r2, r2BandEnd, ytop, ybot);
1081 }
1082
1083 if (newReg->rdh.nCount != curBand)
1084 {
1085 prevBand = REGION_Coalesce (newReg, prevBand, curBand);
1086 }
1087
1088 /*
1089 * If we've finished with a band (bottom == ybot) we skip forward
1090 * in the region to the next band.
1091 */
1092 if (r1->bottom == ybot)
1093 {
1094 r1 = r1BandEnd;
1095 }
1096 if (r2->bottom == ybot)
1097 {
1098 r2 = r2BandEnd;
1099 }
1100 }
1101 while ((r1 != r1End) && (r2 != r2End));
1102
1103 /*
1104 * Deal with whichever region still has rectangles left.
1105 */
1106 curBand = newReg->rdh.nCount;
1107 if (r1 != r1End)
1108 {
1109 if (nonOverlap1Func != NULL)
1110 {
1111 do
1112 {
1113 r1BandEnd = r1;
1114 while ((r1BandEnd < r1End) && (r1BandEnd->top == r1->top))
1115 {
1116 r1BandEnd++;
1117 }
1118 (* nonOverlap1Func) (newReg, r1, r1BandEnd,
1119 max(r1->top,ybot), r1->bottom);
1120 r1 = r1BandEnd;
1121 }
1122 while (r1 != r1End);
1123 }
1124 }
1125 else if ((r2 != r2End) && (nonOverlap2Func != NULL))
1126 {
1127 do
1128 {
1129 r2BandEnd = r2;
1130 while ((r2BandEnd < r2End) && (r2BandEnd->top == r2->top))
1131 {
1132 r2BandEnd++;
1133 }
1134 (* nonOverlap2Func) (newReg, r2, r2BandEnd,
1135 max(r2->top,ybot), r2->bottom);
1136 r2 = r2BandEnd;
1137 }
1138 while (r2 != r2End);
1139 }
1140
1141 if (newReg->rdh.nCount != curBand)
1142 {
1143 (void) REGION_Coalesce (newReg, prevBand, curBand);
1144 }
1145
1146 /*
1147 * A bit of cleanup. To keep regions from growing without bound,
1148 * we shrink the array of rectangles to match the new number of
1149 * rectangles in the region. This never goes to 0, however...
1150 *
1151 * Only do this stuff if the number of rectangles allocated is more than
1152 * twice the number of rectangles in the region (a simple optimization...).
1153 */
1154 if ((2 * newReg->rdh.nCount*sizeof(RECT) < newReg->rdh.nRgnSize && (newReg->rdh.nCount > 2)))
1155 {
1156 if (REGION_NOT_EMPTY(newReg))
1157 {
1158 RECTL *prev_rects = newReg->Buffer;
1159 newReg->Buffer = ExAllocatePoolWithTag(PagedPool, newReg->rdh.nCount*sizeof(RECT), TAG_REGION);
1160
1161 if (! newReg->Buffer)
1162 newReg->Buffer = prev_rects;
1163 else
1164 {
1165 newReg->rdh.nRgnSize = newReg->rdh.nCount*sizeof(RECT);
1166 COPY_RECTS(newReg->Buffer, prev_rects, newReg->rdh.nCount);
1167 if (prev_rects != &newReg->rdh.rcBound)
1168 ExFreePoolWithTag(prev_rects, TAG_REGION);
1169 }
1170 }
1171 else
1172 {
1173 /*
1174 * No point in doing the extra work involved in an Xrealloc if
1175 * the region is empty
1176 */
1177 newReg->rdh.nRgnSize = sizeof(RECT);
1178 if (newReg->Buffer != &newReg->rdh.rcBound)
1179 ExFreePoolWithTag(newReg->Buffer, TAG_REGION);
1180 newReg->Buffer = ExAllocatePoolWithTag(PagedPool, sizeof(RECT), TAG_REGION);
1181 ASSERT(newReg->Buffer);
1182 }
1183 }
1184 newReg->rdh.iType = RDH_RECTANGLES;
1185
1186 if (oldRects != &newReg->rdh.rcBound)
1187 ExFreePoolWithTag(oldRects, TAG_REGION);
1188 return;
1189 }
1190
1191 /***********************************************************************
1192 * Region Intersection
1193 ***********************************************************************/
1194
1195
1196 /*!
1197 * Handle an overlapping band for REGION_Intersect.
1198 *
1199 * Results:
1200 * None.
1201 *
1202 * \note Side Effects:
1203 * Rectangles may be added to the region.
1204 *
1205 */
1206 static void FASTCALL
1207 REGION_IntersectO(
1208 PROSRGNDATA pReg,
1209 PRECTL r1,
1210 PRECTL r1End,
1211 PRECTL r2,
1212 PRECTL r2End,
1213 INT top,
1214 INT bottom
1215 )
1216 {
1217 INT left, right;
1218 RECTL *pNextRect;
1219
1220 pNextRect = pReg->Buffer + pReg->rdh.nCount;
1221
1222 while ((r1 != r1End) && (r2 != r2End))
1223 {
1224 left = max(r1->left, r2->left);
1225 right = min(r1->right, r2->right);
1226
1227 /*
1228 * If there's any overlap between the two rectangles, add that
1229 * overlap to the new region.
1230 * There's no need to check for subsumption because the only way
1231 * such a need could arise is if some region has two rectangles
1232 * right next to each other. Since that should never happen...
1233 */
1234 if (left < right)
1235 {
1236 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1237 pNextRect->left = left;
1238 pNextRect->top = top;
1239 pNextRect->right = right;
1240 pNextRect->bottom = bottom;
1241 pReg->rdh.nCount += 1;
1242 pNextRect++;
1243 }
1244
1245 /*
1246 * Need to advance the pointers. Shift the one that extends
1247 * to the right the least, since the other still has a chance to
1248 * overlap with that region's next rectangle, if you see what I mean.
1249 */
1250 if (r1->right < r2->right)
1251 {
1252 r1++;
1253 }
1254 else if (r2->right < r1->right)
1255 {
1256 r2++;
1257 }
1258 else
1259 {
1260 r1++;
1261 r2++;
1262 }
1263 }
1264 return;
1265 }
1266
1267 /***********************************************************************
1268 * REGION_IntersectRegion
1269 */
1270 static void FASTCALL
1271 REGION_IntersectRegion(
1272 ROSRGNDATA *newReg,
1273 ROSRGNDATA *reg1,
1274 ROSRGNDATA *reg2
1275 )
1276 {
1277 /* check for trivial reject */
1278 if ( (!(reg1->rdh.nCount)) || (!(reg2->rdh.nCount)) ||
1279 (!EXTENTCHECK(&reg1->rdh.rcBound, &reg2->rdh.rcBound)) )
1280 newReg->rdh.nCount = 0;
1281 else
1282 REGION_RegionOp (newReg, reg1, reg2,
1283 REGION_IntersectO, NULL, NULL);
1284
1285 /*
1286 * Can't alter newReg's extents before we call miRegionOp because
1287 * it might be one of the source regions and miRegionOp depends
1288 * on the extents of those regions being the same. Besides, this
1289 * way there's no checking against rectangles that will be nuked
1290 * due to coalescing, so we have to examine fewer rectangles.
1291 */
1292
1293 REGION_SetExtents(newReg);
1294 }
1295
1296 /***********************************************************************
1297 * Region Union
1298 ***********************************************************************/
1299
1300 /*!
1301 * Handle a non-overlapping band for the union operation. Just
1302 * Adds the rectangles into the region. Doesn't have to check for
1303 * subsumption or anything.
1304 *
1305 * Results:
1306 * None.
1307 *
1308 * \note Side Effects:
1309 * pReg->numRects is incremented and the final rectangles overwritten
1310 * with the rectangles we're passed.
1311 *
1312 */
1313 static void FASTCALL
1314 REGION_UnionNonO (
1315 PROSRGNDATA pReg,
1316 PRECTL r,
1317 PRECTL rEnd,
1318 INT top,
1319 INT bottom
1320 )
1321 {
1322 RECTL *pNextRect;
1323
1324 pNextRect = pReg->Buffer + pReg->rdh.nCount;
1325
1326 while (r != rEnd)
1327 {
1328 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1329 pNextRect->left = r->left;
1330 pNextRect->top = top;
1331 pNextRect->right = r->right;
1332 pNextRect->bottom = bottom;
1333 pReg->rdh.nCount += 1;
1334 pNextRect++;
1335 r++;
1336 }
1337 return;
1338 }
1339
1340 /*!
1341 * Handle an overlapping band for the union operation. Picks the
1342 * left-most rectangle each time and merges it into the region.
1343 *
1344 * Results:
1345 * None.
1346 *
1347 * \note Side Effects:
1348 * Rectangles are overwritten in pReg->rects and pReg->numRects will
1349 * be changed.
1350 *
1351 */
1352 static void FASTCALL
1353 REGION_UnionO (
1354 PROSRGNDATA pReg,
1355 PRECTL r1,
1356 PRECTL r1End,
1357 PRECTL r2,
1358 PRECTL r2End,
1359 INT top,
1360 INT bottom
1361 )
1362 {
1363 RECTL *pNextRect;
1364
1365 pNextRect = pReg->Buffer + pReg->rdh.nCount;
1366
1367 #define MERGERECT(r) \
1368 if ((pReg->rdh.nCount != 0) && \
1369 ((pNextRect-1)->top == top) && \
1370 ((pNextRect-1)->bottom == bottom) && \
1371 ((pNextRect-1)->right >= r->left)) \
1372 { \
1373 if ((pNextRect-1)->right < r->right) \
1374 { \
1375 (pNextRect-1)->right = r->right; \
1376 } \
1377 } \
1378 else \
1379 { \
1380 MEMCHECK(pReg, pNextRect, pReg->Buffer); \
1381 pNextRect->top = top; \
1382 pNextRect->bottom = bottom; \
1383 pNextRect->left = r->left; \
1384 pNextRect->right = r->right; \
1385 pReg->rdh.nCount += 1; \
1386 pNextRect += 1; \
1387 } \
1388 r++;
1389
1390 while ((r1 != r1End) && (r2 != r2End))
1391 {
1392 if (r1->left < r2->left)
1393 {
1394 MERGERECT(r1);
1395 }
1396 else
1397 {
1398 MERGERECT(r2);
1399 }
1400 }
1401
1402 if (r1 != r1End)
1403 {
1404 do
1405 {
1406 MERGERECT(r1);
1407 }
1408 while (r1 != r1End);
1409 }
1410 else while (r2 != r2End)
1411 {
1412 MERGERECT(r2);
1413 }
1414 return;
1415 }
1416
1417 /***********************************************************************
1418 * REGION_UnionRegion
1419 */
1420 static void FASTCALL
1421 REGION_UnionRegion(
1422 ROSRGNDATA *newReg,
1423 ROSRGNDATA *reg1,
1424 ROSRGNDATA *reg2
1425 )
1426 {
1427 /* checks all the simple cases */
1428
1429 /*
1430 * Region 1 and 2 are the same or region 1 is empty
1431 */
1432 if (reg1 == reg2 || 0 == reg1->rdh.nCount ||
1433 reg1->rdh.rcBound.right <= reg1->rdh.rcBound.left ||
1434 reg1->rdh.rcBound.bottom <= reg1->rdh.rcBound.top)
1435 {
1436 if (newReg != reg2)
1437 {
1438 REGION_CopyRegion(newReg, reg2);
1439 }
1440 return;
1441 }
1442
1443 /*
1444 * if nothing to union (region 2 empty)
1445 */
1446 if (0 == reg2->rdh.nCount ||
1447 reg2->rdh.rcBound.right <= reg2->rdh.rcBound.left ||
1448 reg2->rdh.rcBound.bottom <= reg2->rdh.rcBound.top)
1449 {
1450 if (newReg != reg1)
1451 {
1452 REGION_CopyRegion(newReg, reg1);
1453 }
1454 return;
1455 }
1456
1457 /*
1458 * Region 1 completely subsumes region 2
1459 */
1460 if (1 == reg1->rdh.nCount &&
1461 reg1->rdh.rcBound.left <= reg2->rdh.rcBound.left &&
1462 reg1->rdh.rcBound.top <= reg2->rdh.rcBound.top &&
1463 reg2->rdh.rcBound.right <= reg1->rdh.rcBound.right &&
1464 reg2->rdh.rcBound.bottom <= reg1->rdh.rcBound.bottom)
1465 {
1466 if (newReg != reg1)
1467 {
1468 REGION_CopyRegion(newReg, reg1);
1469 }
1470 return;
1471 }
1472
1473 /*
1474 * Region 2 completely subsumes region 1
1475 */
1476 if (1 == reg2->rdh.nCount &&
1477 reg2->rdh.rcBound.left <= reg1->rdh.rcBound.left &&
1478 reg2->rdh.rcBound.top <= reg1->rdh.rcBound.top &&
1479 reg1->rdh.rcBound.right <= reg2->rdh.rcBound.right &&
1480 reg1->rdh.rcBound.bottom <= reg2->rdh.rcBound.bottom)
1481 {
1482 if (newReg != reg2)
1483 {
1484 REGION_CopyRegion(newReg, reg2);
1485 }
1486 return;
1487 }
1488
1489 REGION_RegionOp (newReg, reg1, reg2, REGION_UnionO,
1490 REGION_UnionNonO, REGION_UnionNonO);
1491 newReg->rdh.rcBound.left = min(reg1->rdh.rcBound.left, reg2->rdh.rcBound.left);
1492 newReg->rdh.rcBound.top = min(reg1->rdh.rcBound.top, reg2->rdh.rcBound.top);
1493 newReg->rdh.rcBound.right = max(reg1->rdh.rcBound.right, reg2->rdh.rcBound.right);
1494 newReg->rdh.rcBound.bottom = max(reg1->rdh.rcBound.bottom, reg2->rdh.rcBound.bottom);
1495 }
1496
1497 /***********************************************************************
1498 * Region Subtraction
1499 ***********************************************************************/
1500
1501 /*!
1502 * Deal with non-overlapping band for subtraction. Any parts from
1503 * region 2 we discard. Anything from region 1 we add to the region.
1504 *
1505 * Results:
1506 * None.
1507 *
1508 * \note Side Effects:
1509 * pReg may be affected.
1510 *
1511 */
1512 static void FASTCALL
1513 REGION_SubtractNonO1(
1514 PROSRGNDATA pReg,
1515 PRECTL r,
1516 PRECTL rEnd,
1517 INT top,
1518 INT bottom
1519 )
1520 {
1521 RECTL *pNextRect;
1522
1523 pNextRect = pReg->Buffer + pReg->rdh.nCount;
1524
1525 while (r != rEnd)
1526 {
1527 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1528 pNextRect->left = r->left;
1529 pNextRect->top = top;
1530 pNextRect->right = r->right;
1531 pNextRect->bottom = bottom;
1532 pReg->rdh.nCount += 1;
1533 pNextRect++;
1534 r++;
1535 }
1536 return;
1537 }
1538
1539
1540 /*!
1541 * Overlapping band subtraction. x1 is the left-most point not yet
1542 * checked.
1543 *
1544 * Results:
1545 * None.
1546 *
1547 * \note Side Effects:
1548 * pReg may have rectangles added to it.
1549 *
1550 */
1551 static void FASTCALL
1552 REGION_SubtractO(
1553 PROSRGNDATA pReg,
1554 PRECTL r1,
1555 PRECTL r1End,
1556 PRECTL r2,
1557 PRECTL r2End,
1558 INT top,
1559 INT bottom
1560 )
1561 {
1562 RECTL *pNextRect;
1563 INT left;
1564
1565 left = r1->left;
1566 pNextRect = pReg->Buffer + pReg->rdh.nCount;
1567
1568 while ((r1 != r1End) && (r2 != r2End))
1569 {
1570 if (r2->right <= left)
1571 {
1572 /*
1573 * Subtrahend missed the boat: go to next subtrahend.
1574 */
1575 r2++;
1576 }
1577 else if (r2->left <= left)
1578 {
1579 /*
1580 * Subtrahend preceeds minuend: nuke left edge of minuend.
1581 */
1582 left = r2->right;
1583 if (left >= r1->right)
1584 {
1585 /*
1586 * Minuend completely covered: advance to next minuend and
1587 * reset left fence to edge of new minuend.
1588 */
1589 r1++;
1590 if (r1 != r1End)
1591 left = r1->left;
1592 }
1593 else
1594 {
1595 /*
1596 * Subtrahend now used up since it doesn't extend beyond
1597 * minuend
1598 */
1599 r2++;
1600 }
1601 }
1602 else if (r2->left < r1->right)
1603 {
1604 /*
1605 * Left part of subtrahend covers part of minuend: add uncovered
1606 * part of minuend to region and skip to next subtrahend.
1607 */
1608 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1609 pNextRect->left = left;
1610 pNextRect->top = top;
1611 pNextRect->right = r2->left;
1612 pNextRect->bottom = bottom;
1613 pReg->rdh.nCount += 1;
1614 pNextRect++;
1615 left = r2->right;
1616 if (left >= r1->right)
1617 {
1618 /*
1619 * Minuend used up: advance to new...
1620 */
1621 r1++;
1622 if (r1 != r1End)
1623 left = r1->left;
1624 }
1625 else
1626 {
1627 /*
1628 * Subtrahend used up
1629 */
1630 r2++;
1631 }
1632 }
1633 else
1634 {
1635 /*
1636 * Minuend used up: add any remaining piece before advancing.
1637 */
1638 if (r1->right > left)
1639 {
1640 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1641 pNextRect->left = left;
1642 pNextRect->top = top;
1643 pNextRect->right = r1->right;
1644 pNextRect->bottom = bottom;
1645 pReg->rdh.nCount += 1;
1646 pNextRect++;
1647 }
1648 r1++;
1649 if (r1 != r1End)
1650 left = r1->left;
1651 }
1652 }
1653
1654 /*
1655 * Add remaining minuend rectangles to region.
1656 */
1657 while (r1 != r1End)
1658 {
1659 MEMCHECK(pReg, pNextRect, pReg->Buffer);
1660 pNextRect->left = left;
1661 pNextRect->top = top;
1662 pNextRect->right = r1->right;
1663 pNextRect->bottom = bottom;
1664 pReg->rdh.nCount += 1;
1665 pNextRect++;
1666 r1++;
1667 if (r1 != r1End)
1668 {
1669 left = r1->left;
1670 }
1671 }
1672 return;
1673 }
1674
1675 /*!
1676 * Subtract regS from regM and leave the result in regD.
1677 * S stands for subtrahend, M for minuend and D for difference.
1678 *
1679 * Results:
1680 * TRUE.
1681 *
1682 * \note Side Effects:
1683 * regD is overwritten.
1684 *
1685 */
1686 static void FASTCALL
1687 REGION_SubtractRegion(
1688 ROSRGNDATA *regD,
1689 ROSRGNDATA *regM,
1690 ROSRGNDATA *regS
1691 )
1692 {
1693 /* check for trivial reject */
1694 if ( (!(regM->rdh.nCount)) || (!(regS->rdh.nCount)) ||
1695 (!EXTENTCHECK(&regM->rdh.rcBound, &regS->rdh.rcBound)) )
1696 {
1697 REGION_CopyRegion(regD, regM);
1698 return;
1699 }
1700
1701 REGION_RegionOp (regD, regM, regS, REGION_SubtractO,
1702 REGION_SubtractNonO1, NULL);
1703
1704 /*
1705 * Can't alter newReg's extents before we call miRegionOp because
1706 * it might be one of the source regions and miRegionOp depends
1707 * on the extents of those regions being the unaltered. Besides, this
1708 * way there's no checking against rectangles that will be nuked
1709 * due to coalescing, so we have to examine fewer rectangles.
1710 */
1711 REGION_SetExtents (regD);
1712 }
1713
1714 /***********************************************************************
1715 * REGION_XorRegion
1716 */
1717 static void FASTCALL
1718 REGION_XorRegion(
1719 ROSRGNDATA *dr,
1720 ROSRGNDATA *sra,
1721 ROSRGNDATA *srb
1722 )
1723 {
1724 HRGN htra, htrb;
1725 ROSRGNDATA *tra, *trb;
1726
1727 // FIXME: don't use a handle
1728 tra = REGION_AllocRgnWithHandle(sra->rdh.nCount + 1);
1729 if (!tra )
1730 {
1731 return;
1732 }
1733 htra = tra->BaseObject.hHmgr;
1734
1735 // FIXME: don't use a handle
1736 trb = REGION_AllocRgnWithHandle(srb->rdh.nCount + 1);
1737 if (!trb)
1738 {
1739 RGNOBJAPI_Unlock(tra);
1740 GreDeleteObject(htra);
1741 return;
1742 }
1743 htrb = trb->BaseObject.hHmgr;
1744
1745 REGION_SubtractRegion(tra, sra, srb);
1746 REGION_SubtractRegion(trb, srb, sra);
1747 REGION_UnionRegion(dr, tra, trb);
1748 RGNOBJAPI_Unlock(tra);
1749 RGNOBJAPI_Unlock(trb);
1750
1751 GreDeleteObject(htra);
1752 GreDeleteObject(htrb);
1753 return;
1754 }
1755
1756
1757 /*!
1758 * Adds a rectangle to a REGION
1759 */
1760 VOID FASTCALL
1761 REGION_UnionRectWithRgn(
1762 ROSRGNDATA *rgn,
1763 const RECTL *rect
1764 )
1765 {
1766 ROSRGNDATA region;
1767
1768 region.Buffer = &region.rdh.rcBound;
1769 region.rdh.nCount = 1;
1770 region.rdh.nRgnSize = sizeof(RECT);
1771 region.rdh.rcBound = *rect;
1772 REGION_UnionRegion(rgn, rgn, &region);
1773 }
1774
1775 BOOL FASTCALL
1776 REGION_CreateSimpleFrameRgn(
1777 PROSRGNDATA rgn,
1778 INT x,
1779 INT y
1780 )
1781 {
1782 RECTL rc[4];
1783 PRECTL prc;
1784
1785 if (x != 0 || y != 0)
1786 {
1787 prc = rc;
1788
1789 if (rgn->rdh.rcBound.bottom - rgn->rdh.rcBound.top > y * 2 &&
1790 rgn->rdh.rcBound.right - rgn->rdh.rcBound.left > x * 2)
1791 {
1792 if (y != 0)
1793 {
1794 /* top rectangle */
1795 prc->left = rgn->rdh.rcBound.left;
1796 prc->top = rgn->rdh.rcBound.top;
1797 prc->right = rgn->rdh.rcBound.right;
1798 prc->bottom = prc->top + y;
1799 prc++;
1800 }
1801
1802 if (x != 0)
1803 {
1804 /* left rectangle */
1805 prc->left = rgn->rdh.rcBound.left;
1806 prc->top = rgn->rdh.rcBound.top + y;
1807 prc->right = prc->left + x;
1808 prc->bottom = rgn->rdh.rcBound.bottom - y;
1809 prc++;
1810
1811 /* right rectangle */
1812 prc->left = rgn->rdh.rcBound.right - x;
1813 prc->top = rgn->rdh.rcBound.top + y;
1814 prc->right = rgn->rdh.rcBound.right;
1815 prc->bottom = rgn->rdh.rcBound.bottom - y;
1816 prc++;
1817 }
1818
1819 if (y != 0)
1820 {
1821 /* bottom rectangle */
1822 prc->left = rgn->rdh.rcBound.left;
1823 prc->top = rgn->rdh.rcBound.bottom - y;
1824 prc->right = rgn->rdh.rcBound.right;
1825 prc->bottom = rgn->rdh.rcBound.bottom;
1826 prc++;
1827 }
1828 }
1829
1830 if (prc != rc)
1831 {
1832 /* The frame results in a complex region. rcBounds remains
1833 the same, though. */
1834 rgn->rdh.nCount = (DWORD)(prc - rc);
1835 ASSERT(rgn->rdh.nCount > 1);
1836 rgn->rdh.nRgnSize = rgn->rdh.nCount * sizeof(RECT);
1837 rgn->Buffer = ExAllocatePoolWithTag(PagedPool, rgn->rdh.nRgnSize, TAG_REGION);
1838 if (!rgn->Buffer)
1839 {
1840 rgn->rdh.nRgnSize = 0;
1841 return FALSE;
1842 }
1843
1844 COPY_RECTS(rgn->Buffer, rc, rgn->rdh.nCount);
1845 }
1846 }
1847
1848 return TRUE;
1849 }
1850
1851 BOOL FASTCALL
1852 REGION_CreateFrameRgn(
1853 HRGN hDest,
1854 HRGN hSrc,
1855 INT x,
1856 INT y
1857 )
1858 {
1859 PROSRGNDATA srcObj, destObj;
1860 PRECTL rc;
1861 ULONG i;
1862
1863 if (!(srcObj = RGNOBJAPI_Lock(hSrc, NULL)))
1864 {
1865 return FALSE;
1866 }
1867 if (!REGION_NOT_EMPTY(srcObj))
1868 {
1869 RGNOBJAPI_Unlock(srcObj);
1870 return FALSE;
1871 }
1872 if (!(destObj = RGNOBJAPI_Lock(hDest, NULL)))
1873 {
1874 RGNOBJAPI_Unlock(srcObj);
1875 return FALSE;
1876 }
1877
1878 EMPTY_REGION(destObj);
1879 if (!REGION_CopyRegion(destObj, srcObj))
1880 {
1881 RGNOBJAPI_Unlock(destObj);
1882 RGNOBJAPI_Unlock(srcObj);
1883 return FALSE;
1884 }
1885
1886 if (REGION_Complexity(srcObj) == SIMPLEREGION)
1887 {
1888 if (!REGION_CreateSimpleFrameRgn(destObj, x, y))
1889 {
1890 EMPTY_REGION(destObj);
1891 RGNOBJAPI_Unlock(destObj);
1892 RGNOBJAPI_Unlock(srcObj);
1893 return FALSE;
1894 }
1895 }
1896 else
1897 {
1898 /* Original region moved to right */
1899 rc = srcObj->Buffer;
1900 for (i = 0; i < srcObj->rdh.nCount; i++)
1901 {
1902 rc->left += x;
1903 rc->right += x;
1904 rc++;
1905 }
1906 REGION_IntersectRegion(destObj, destObj, srcObj);
1907
1908 /* Original region moved to left */
1909 rc = srcObj->Buffer;
1910 for (i = 0; i < srcObj->rdh.nCount; i++)
1911 {
1912 rc->left -= 2 * x;
1913 rc->right -= 2 * x;
1914 rc++;
1915 }
1916 REGION_IntersectRegion(destObj, destObj, srcObj);
1917
1918 /* Original region moved down */
1919 rc = srcObj->Buffer;
1920 for (i = 0; i < srcObj->rdh.nCount; i++)
1921 {
1922 rc->left += x;
1923 rc->right += x;
1924 rc->top += y;
1925 rc->bottom += y;
1926 rc++;
1927 }
1928 REGION_IntersectRegion(destObj, destObj, srcObj);
1929
1930 /* Original region moved up */
1931 rc = srcObj->Buffer;
1932 for (i = 0; i < srcObj->rdh.nCount; i++)
1933 {
1934 rc->top -= 2 * y;
1935 rc->bottom -= 2 * y;
1936 rc++;
1937 }
1938 REGION_IntersectRegion(destObj, destObj, srcObj);
1939
1940 /* Restore the original region */
1941 rc = srcObj->Buffer;
1942 for (i = 0; i < srcObj->rdh.nCount; i++)
1943 {
1944 rc->top += y;
1945 rc->bottom += y;
1946 rc++;
1947 }
1948 REGION_SubtractRegion(destObj, srcObj, destObj);
1949 }
1950
1951 RGNOBJAPI_Unlock(destObj);
1952 RGNOBJAPI_Unlock(srcObj);
1953 return TRUE;
1954 }
1955
1956
1957 BOOL FASTCALL
1958 REGION_LPTODP(
1959 PDC dc,
1960 HRGN hDest,
1961 HRGN hSrc)
1962 {
1963 RECTL *pCurRect, *pEndRect;
1964 PROSRGNDATA srcObj = NULL;
1965 PROSRGNDATA destObj = NULL;
1966
1967 RECTL tmpRect;
1968 BOOL ret = FALSE;
1969 PDC_ATTR pdcattr;
1970
1971 if (!dc)
1972 return ret;
1973 pdcattr = dc->pdcattr;
1974
1975 if (pdcattr->iMapMode == MM_TEXT) // Requires only a translation
1976 {
1977 if (NtGdiCombineRgn(hDest, hSrc, 0, RGN_COPY) == ERROR)
1978 goto done;
1979
1980 NtGdiOffsetRgn(hDest, pdcattr->ptlViewportOrg.x - pdcattr->ptlWindowOrg.x,
1981 pdcattr->ptlViewportOrg.y - pdcattr->ptlWindowOrg.y);
1982 ret = TRUE;
1983 goto done;
1984 }
1985
1986 if ( !(srcObj = RGNOBJAPI_Lock(hSrc, NULL)) )
1987 goto done;
1988 if ( !(destObj = RGNOBJAPI_Lock(hDest, NULL)) )
1989 {
1990 RGNOBJAPI_Unlock(srcObj);
1991 goto done;
1992 }
1993 EMPTY_REGION(destObj);
1994
1995 pEndRect = srcObj->Buffer + srcObj->rdh.nCount;
1996 for (pCurRect = srcObj->Buffer; pCurRect < pEndRect; pCurRect++)
1997 {
1998 tmpRect = *pCurRect;
1999 tmpRect.left = XLPTODP(pdcattr, tmpRect.left);
2000 tmpRect.top = YLPTODP(pdcattr, tmpRect.top);
2001 tmpRect.right = XLPTODP(pdcattr, tmpRect.right);
2002 tmpRect.bottom = YLPTODP(pdcattr, tmpRect.bottom);
2003
2004 if (tmpRect.left > tmpRect.right)
2005 {
2006 INT tmp = tmpRect.left;
2007 tmpRect.left = tmpRect.right;
2008 tmpRect.right = tmp;
2009 }
2010 if (tmpRect.top > tmpRect.bottom)
2011 {
2012 INT tmp = tmpRect.top;
2013 tmpRect.top = tmpRect.bottom;
2014 tmpRect.bottom = tmp;
2015 }
2016
2017 REGION_UnionRectWithRgn(destObj, &tmpRect);
2018 }
2019 ret = TRUE;
2020
2021 RGNOBJAPI_Unlock(srcObj);
2022 RGNOBJAPI_Unlock(destObj);
2023
2024 done:
2025 return ret;
2026 }
2027
2028 PROSRGNDATA
2029 FASTCALL
2030 REGION_AllocRgnWithHandle(INT nReg)
2031 {
2032 HRGN hReg;
2033 PROSRGNDATA pReg;
2034
2035 pReg = (PROSRGNDATA)GDIOBJ_AllocObjWithHandle(GDI_OBJECT_TYPE_REGION);
2036 if(!pReg)
2037 {
2038 return NULL;
2039 }
2040
2041 hReg = pReg->BaseObject.hHmgr;
2042
2043 if (nReg == 0 || nReg == 1)
2044 {
2045 /* Testing shows that > 95% of all regions have only 1 rect.
2046 Including that here saves us from having to do another allocation */
2047 pReg->Buffer = &pReg->rdh.rcBound;
2048 }
2049 else
2050 {
2051 pReg->Buffer = ExAllocatePoolWithTag(PagedPool, nReg * sizeof(RECT), TAG_REGION);
2052 if (!pReg->Buffer)
2053 {
2054 RGNOBJAPI_Unlock(pReg);
2055 GDIOBJ_FreeObjByHandle(hReg, GDI_OBJECT_TYPE_REGION);
2056 return NULL;
2057 }
2058 }
2059
2060 EMPTY_REGION(pReg);
2061 pReg->rdh.dwSize = sizeof(RGNDATAHEADER);
2062 pReg->rdh.nCount = nReg;
2063 pReg->rdh.nRgnSize = nReg * sizeof(RECT);
2064
2065 return pReg;
2066 }
2067
2068 //
2069 // Allocate User Space Region Handle.
2070 //
2071 PROSRGNDATA
2072 FASTCALL
2073 REGION_AllocUserRgnWithHandle(INT nRgn)
2074 {
2075 PROSRGNDATA pRgn;
2076 PGDI_TABLE_ENTRY Entry;
2077
2078 pRgn = REGION_AllocRgnWithHandle(nRgn);
2079 if (pRgn)
2080 {
2081 Entry = GDI_HANDLE_GET_ENTRY(GdiHandleTable, pRgn->BaseObject.hHmgr);
2082 Entry->UserData = AllocateObjectAttr();
2083 }
2084 return pRgn;
2085 }
2086
2087 PROSRGNDATA
2088 FASTCALL
2089 RGNOBJAPI_Lock(HRGN hRgn, PRGN_ATTR *ppRgn_Attr)
2090 {
2091 PGDI_TABLE_ENTRY Entry;
2092 PRGN_ATTR pRgn_Attr;
2093 PROSRGNDATA pRgn = NULL;
2094
2095 pRgn = REGION_LockRgn(hRgn);
2096
2097 if (pRgn && GDIOBJ_OwnedByCurrentProcess(hRgn))
2098 {
2099 Entry = GDI_HANDLE_GET_ENTRY(GdiHandleTable, hRgn);
2100 pRgn_Attr = Entry->UserData;
2101
2102 if ( pRgn_Attr )
2103 {
2104 _SEH2_TRY
2105 {
2106 if ( !(pRgn_Attr->AttrFlags & ATTR_CACHED) &&
2107 pRgn_Attr->AttrFlags & (ATTR_RGN_VALID|ATTR_RGN_DIRTY) )
2108 {
2109 switch (pRgn_Attr->Flags)
2110 {
2111 case NULLREGION:
2112 EMPTY_REGION( pRgn );
2113 break;
2114
2115 case SIMPLEREGION:
2116 REGION_SetRectRgn( pRgn,
2117 pRgn_Attr->Rect.left,
2118 pRgn_Attr->Rect.top,
2119 pRgn_Attr->Rect.right,
2120 pRgn_Attr->Rect.bottom );
2121 break;
2122 }
2123 pRgn_Attr->AttrFlags &= ~ATTR_RGN_DIRTY;
2124 }
2125 }
2126 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
2127 {
2128 }
2129 _SEH2_END;
2130
2131 if (ppRgn_Attr)
2132 *ppRgn_Attr = pRgn_Attr;
2133 }
2134 else
2135 {
2136 if (ppRgn_Attr)
2137 *ppRgn_Attr = NULL;
2138 }
2139 }
2140 return pRgn;
2141 }
2142
2143 VOID
2144 FASTCALL
2145 RGNOBJAPI_Unlock(PROSRGNDATA pRgn)
2146 {
2147 PGDI_TABLE_ENTRY Entry;
2148 PRGN_ATTR pRgn_Attr;
2149
2150 if (pRgn && GDIOBJ_OwnedByCurrentProcess(pRgn->BaseObject.hHmgr))
2151 {
2152 Entry = GDI_HANDLE_GET_ENTRY(GdiHandleTable, pRgn->BaseObject.hHmgr);
2153 pRgn_Attr = Entry->UserData;
2154
2155 if ( pRgn_Attr )
2156 {
2157 _SEH2_TRY
2158 {
2159 if ( pRgn_Attr->AttrFlags & ATTR_RGN_VALID )
2160 {
2161 pRgn_Attr->Flags = REGION_Complexity( pRgn );
2162 pRgn_Attr->Rect.left = pRgn->rdh.rcBound.left;
2163 pRgn_Attr->Rect.top = pRgn->rdh.rcBound.top;
2164 pRgn_Attr->Rect.right = pRgn->rdh.rcBound.right;
2165 pRgn_Attr->Rect.bottom = pRgn->rdh.rcBound.bottom;
2166 }
2167 }
2168 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
2169 {
2170 }
2171 _SEH2_END;
2172 }
2173 }
2174 REGION_UnlockRgn(pRgn);
2175 }
2176
2177 /*
2178 System Regions:
2179 These regions do not use attribute sections and when allocated, use gdiobj
2180 level functions.
2181 */
2182 //
2183 // System Region Functions
2184 //
2185 PROSRGNDATA
2186 FASTCALL
2187 IntSysCreateRectpRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
2188 {
2189 PROSRGNDATA pRgn;
2190
2191 pRgn = (PROSRGNDATA)GDIOBJ_AllocObjWithHandle(GDI_OBJECT_TYPE_REGION);
2192 if (!pRgn)
2193 {
2194 return NULL;
2195 }
2196 pRgn->Buffer = &pRgn->rdh.rcBound;
2197 REGION_SetRectRgn(pRgn, LeftRect, TopRect, RightRect, BottomRect);
2198 REGION_UnlockRgn(pRgn);
2199 return pRgn;
2200 }
2201
2202 HRGN
2203 FASTCALL
2204 IntSysCreateRectRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
2205 {
2206 PROSRGNDATA pRgn = IntSysCreateRectpRgn(LeftRect,TopRect,RightRect,BottomRect);
2207 return (pRgn ? pRgn->BaseObject.hHmgr : NULL);
2208 }
2209
2210 BOOL INTERNAL_CALL
2211 REGION_Cleanup(PVOID ObjectBody)
2212 {
2213 PROSRGNDATA pRgn = (PROSRGNDATA)ObjectBody;
2214 if (pRgn->Buffer && pRgn->Buffer != &pRgn->rdh.rcBound)
2215 ExFreePoolWithTag(pRgn->Buffer, TAG_REGION);
2216 return TRUE;
2217 }
2218
2219 // use REGION_FreeRgnByHandle(hRgn); for systems regions.
2220 VOID FASTCALL
2221 REGION_Delete(PROSRGNDATA pRgn)
2222 {
2223 if ( pRgn == prgnDefault) return;
2224 REGION_FreeRgn(pRgn);
2225 }
2226
2227 VOID FASTCALL
2228 IntGdiReleaseRaoRgn(PDC pDC)
2229 {
2230 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2231 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2232 pDC->fs |= DC_FLAG_DIRTY_RAO;
2233 Entry->Flags |= GDI_ENTRY_VALIDATE_VIS;
2234 RECTL_vSetEmptyRect(&pDC->erclClip);
2235 }
2236
2237 VOID FASTCALL
2238 IntGdiReleaseVisRgn(PDC pDC)
2239 {
2240 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2241 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2242 pDC->fs |= DC_FLAG_DIRTY_RAO;
2243 Entry->Flags |= GDI_ENTRY_VALIDATE_VIS;
2244 RECTL_vSetEmptyRect(&pDC->erclClip);
2245 REGION_Delete(pDC->prgnVis);
2246 pDC->prgnVis = prgnDefault;
2247 }
2248
2249 VOID FASTCALL
2250 IntUpdateVisRectRgn(PDC pDC, PROSRGNDATA pRgn)
2251 {
2252 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2253 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2254 PDC_ATTR pdcattr;
2255 RECTL rcl;
2256
2257 if (Entry->Flags & GDI_ENTRY_VALIDATE_VIS)
2258 {
2259 pdcattr = pDC->pdcattr;
2260
2261 pdcattr->VisRectRegion.Flags = REGION_Complexity(pRgn);
2262
2263 if (pRgn && pdcattr->VisRectRegion.Flags != NULLREGION)
2264 {
2265 rcl.left = pRgn->rdh.rcBound.left;
2266 rcl.top = pRgn->rdh.rcBound.top;
2267 rcl.right = pRgn->rdh.rcBound.right;
2268 rcl.bottom = pRgn->rdh.rcBound.bottom;
2269
2270 rcl.left -= pDC->erclWindow.left;
2271 rcl.top -= pDC->erclWindow.top;
2272 rcl.right -= pDC->erclWindow.left;
2273 rcl.bottom -= pDC->erclWindow.top;
2274 }
2275 else
2276 RECTL_vSetEmptyRect(&rcl);
2277
2278 pdcattr->VisRectRegion.Rect = rcl;
2279
2280 Entry->Flags &= ~GDI_ENTRY_VALIDATE_VIS;
2281 }
2282 }
2283
2284 INT
2285 FASTCALL
2286 IntGdiCombineRgn(PROSRGNDATA destRgn,
2287 PROSRGNDATA src1Rgn,
2288 PROSRGNDATA src2Rgn,
2289 INT CombineMode)
2290 {
2291 INT result = ERROR;
2292
2293 if (destRgn)
2294 {
2295 if (src1Rgn)
2296 {
2297 if (CombineMode == RGN_COPY)
2298 {
2299 if ( !REGION_CopyRegion(destRgn, src1Rgn) )
2300 return ERROR;
2301 result = REGION_Complexity(destRgn);
2302 }
2303 else
2304 {
2305 if (src2Rgn)
2306 {
2307 switch (CombineMode)
2308 {
2309 case RGN_AND:
2310 REGION_IntersectRegion(destRgn, src1Rgn, src2Rgn);
2311 break;
2312 case RGN_OR:
2313 REGION_UnionRegion(destRgn, src1Rgn, src2Rgn);
2314 break;
2315 case RGN_XOR:
2316 REGION_XorRegion(destRgn, src1Rgn, src2Rgn);
2317 break;
2318 case RGN_DIFF:
2319 REGION_SubtractRegion(destRgn, src1Rgn, src2Rgn);
2320 break;
2321 }
2322 result = REGION_Complexity(destRgn);
2323 }
2324 else if (src2Rgn == NULL)
2325 {
2326 DPRINT1("IntGdiCombineRgn requires hSrc2 != NULL for combine mode %d!\n", CombineMode);
2327 EngSetLastError(ERROR_INVALID_HANDLE);
2328 }
2329 }
2330 }
2331 else
2332 {
2333 DPRINT("IntGdiCombineRgn: hSrc1 unavailable\n");
2334 EngSetLastError(ERROR_INVALID_HANDLE);
2335 }
2336 }
2337 else
2338 {
2339 DPRINT("IntGdiCombineRgn: hDest unavailable\n");
2340 EngSetLastError(ERROR_INVALID_HANDLE);
2341 }
2342 return result;
2343 }
2344
2345 INT FASTCALL
2346 REGION_GetRgnBox(
2347 PROSRGNDATA Rgn,
2348 PRECTL pRect
2349 )
2350 {
2351 DWORD ret;
2352
2353 if (Rgn)
2354 {
2355 *pRect = Rgn->rdh.rcBound;
2356 ret = REGION_Complexity(Rgn);
2357
2358 return ret;
2359 }
2360 return 0; //if invalid region return zero
2361 }
2362
2363 INT APIENTRY
2364 IntGdiGetRgnBox(
2365 HRGN hRgn,
2366 PRECTL pRect
2367 )
2368 {
2369 PROSRGNDATA Rgn;
2370 DWORD ret;
2371
2372 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
2373 {
2374 return ERROR;
2375 }
2376
2377 ret = REGION_GetRgnBox(Rgn, pRect);
2378 RGNOBJAPI_Unlock(Rgn);
2379
2380 return ret;
2381 }
2382
2383 BOOL
2384 FASTCALL
2385 IntGdiPaintRgn(
2386 PDC dc,
2387 HRGN hRgn
2388 )
2389 {
2390 HRGN tmpVisRgn;
2391 PROSRGNDATA visrgn;
2392 CLIPOBJ* ClipRegion;
2393 BOOL bRet = FALSE;
2394 POINTL BrushOrigin;
2395 SURFACE *psurf;
2396 PDC_ATTR pdcattr;
2397
2398 if (!dc) return FALSE;
2399 pdcattr = dc->pdcattr;
2400
2401 ASSERT(!(pdcattr->ulDirty_ & (DIRTY_FILL | DC_BRUSH_DIRTY)));
2402
2403 if (!(tmpVisRgn = IntSysCreateRectRgn(0, 0, 0, 0))) return FALSE;
2404
2405 // Transform region into device co-ords
2406 if (!REGION_LPTODP(dc, tmpVisRgn, hRgn) ||
2407 NtGdiOffsetRgn(tmpVisRgn, dc->ptlDCOrig.x, dc->ptlDCOrig.y) == ERROR)
2408 {
2409 REGION_FreeRgnByHandle(tmpVisRgn);
2410 return FALSE;
2411 }
2412
2413 NtGdiCombineRgn(tmpVisRgn, tmpVisRgn, dc->rosdc.hGCClipRgn, RGN_AND);
2414
2415 visrgn = RGNOBJAPI_Lock(tmpVisRgn, NULL);
2416 if (visrgn == NULL)
2417 {
2418 REGION_FreeRgnByHandle(tmpVisRgn);
2419 return FALSE;
2420 }
2421
2422 ClipRegion = IntEngCreateClipRegion(visrgn->rdh.nCount,
2423 visrgn->Buffer,
2424 &visrgn->rdh.rcBound );
2425 ASSERT(ClipRegion);
2426
2427 BrushOrigin.x = pdcattr->ptlBrushOrigin.x;
2428 BrushOrigin.y = pdcattr->ptlBrushOrigin.y;
2429 psurf = dc->dclevel.pSurface;
2430 /* FIXME - Handle psurf == NULL !!!! */
2431
2432 bRet = IntEngPaint(&psurf->SurfObj,
2433 ClipRegion,
2434 &dc->eboFill.BrushObject,
2435 &BrushOrigin,
2436 0xFFFF);//FIXME:don't know what to put here
2437
2438 RGNOBJAPI_Unlock(visrgn);
2439 REGION_FreeRgnByHandle(tmpVisRgn);
2440
2441 // Fill the region
2442 return bRet;
2443 }
2444
2445 BOOL
2446 FASTCALL
2447 REGION_RectInRegion(
2448 PROSRGNDATA Rgn,
2449 const RECTL *rect
2450 )
2451 {
2452 PRECTL pCurRect, pRectEnd;
2453 RECT rc;
2454
2455 /* swap the coordinates to make right >= left and bottom >= top */
2456 /* (region building rectangles are normalized the same way) */
2457 if( rect->top > rect->bottom) {
2458 rc.top = rect->bottom;
2459 rc.bottom = rect->top;
2460 } else {
2461 rc.top = rect->top;
2462 rc.bottom = rect->bottom;
2463 }
2464 if( rect->right < rect->left) {
2465 rc.right = rect->left;
2466 rc.left = rect->right;
2467 } else {
2468 rc.right = rect->right;
2469 rc.left = rect->left;
2470 }
2471
2472 /* this is (just) a useful optimization */
2473 if ((Rgn->rdh.nCount > 0) && EXTENTCHECK(&Rgn->rdh.rcBound, &rc))
2474 {
2475 for (pCurRect = Rgn->Buffer, pRectEnd = pCurRect +
2476 Rgn->rdh.nCount; pCurRect < pRectEnd; pCurRect++)
2477 {
2478 if (pCurRect->bottom <= rc.top)
2479 continue; /* not far enough down yet */
2480
2481 if (pCurRect->top >= rc.bottom)
2482 break; /* too far down */
2483
2484 if (pCurRect->right <= rc.left)
2485 continue; /* not far enough over yet */
2486
2487 if (pCurRect->left >= rc.right) {
2488 continue;
2489 }
2490
2491 return TRUE;
2492 }
2493 }
2494 return FALSE;
2495 }
2496
2497 VOID
2498 FASTCALL
2499 REGION_SetRectRgn(
2500 PROSRGNDATA rgn,
2501 INT LeftRect,
2502 INT TopRect,
2503 INT RightRect,
2504 INT BottomRect
2505 )
2506 {
2507 PRECTL firstRect;
2508
2509 if (LeftRect > RightRect)
2510 {
2511 INT tmp = LeftRect;
2512 LeftRect = RightRect;
2513 RightRect = tmp;
2514 }
2515 if (TopRect > BottomRect)
2516 {
2517 INT tmp = TopRect;
2518 TopRect = BottomRect;
2519 BottomRect = tmp;
2520 }
2521
2522 if ((LeftRect != RightRect) && (TopRect != BottomRect))
2523 {
2524 firstRect = rgn->Buffer;
2525 ASSERT(firstRect);
2526 firstRect->left = rgn->rdh.rcBound.left = LeftRect;
2527 firstRect->top = rgn->rdh.rcBound.top = TopRect;
2528 firstRect->right = rgn->rdh.rcBound.right = RightRect;
2529 firstRect->bottom = rgn->rdh.rcBound.bottom = BottomRect;
2530 rgn->rdh.nCount = 1;
2531 rgn->rdh.iType = RDH_RECTANGLES;
2532 }
2533 else
2534 {
2535 EMPTY_REGION(rgn);
2536 }
2537 }
2538
2539 INT
2540 FASTCALL
2541 IntGdiOffsetRgn(
2542 PROSRGNDATA rgn,
2543 INT XOffset,
2544 INT YOffset )
2545 {
2546 if (XOffset || YOffset)
2547 {
2548 int nbox = rgn->rdh.nCount;
2549 PRECTL pbox = rgn->Buffer;
2550
2551 if (nbox && pbox)
2552 {
2553 while (nbox--)
2554 {
2555 pbox->left += XOffset;
2556 pbox->right += XOffset;
2557 pbox->top += YOffset;
2558 pbox->bottom += YOffset;
2559 pbox++;
2560 }
2561 if (rgn->Buffer != &rgn->rdh.rcBound)
2562 {
2563 rgn->rdh.rcBound.left += XOffset;
2564 rgn->rdh.rcBound.right += XOffset;
2565 rgn->rdh.rcBound.top += YOffset;
2566 rgn->rdh.rcBound.bottom += YOffset;
2567 }
2568 }
2569 }
2570 return REGION_Complexity(rgn);
2571 }
2572
2573 /***********************************************************************
2574 * REGION_InsertEdgeInET
2575 *
2576 * Insert the given edge into the edge table.
2577 * First we must find the correct bucket in the
2578 * Edge table, then find the right slot in the
2579 * bucket. Finally, we can insert it.
2580 *
2581 */
2582 static void FASTCALL
2583 REGION_InsertEdgeInET(
2584 EdgeTable *ET,
2585 EdgeTableEntry *ETE,
2586 INT scanline,
2587 ScanLineListBlock **SLLBlock,
2588 INT *iSLLBlock
2589 )
2590 {
2591 EdgeTableEntry *start, *prev;
2592 ScanLineList *pSLL, *pPrevSLL;
2593 ScanLineListBlock *tmpSLLBlock;
2594
2595 /*
2596 * find the right bucket to put the edge into
2597 */
2598 pPrevSLL = &ET->scanlines;
2599 pSLL = pPrevSLL->next;
2600 while (pSLL && (pSLL->scanline < scanline))
2601 {
2602 pPrevSLL = pSLL;
2603 pSLL = pSLL->next;
2604 }
2605
2606 /*
2607 * reassign pSLL (pointer to ScanLineList) if necessary
2608 */
2609 if ((!pSLL) || (pSLL->scanline > scanline))
2610 {
2611 if (*iSLLBlock > SLLSPERBLOCK-1)
2612 {
2613 tmpSLLBlock = ExAllocatePoolWithTag(PagedPool, sizeof(ScanLineListBlock), TAG_REGION);
2614 if (!tmpSLLBlock)
2615 {
2616 DPRINT1("REGION_InsertEdgeInETL(): Can't alloc SLLB\n");
2617 /* FIXME - free resources? */
2618 return;
2619 }
2620 (*SLLBlock)->next = tmpSLLBlock;
2621 tmpSLLBlock->next = (ScanLineListBlock *)NULL;
2622 *SLLBlock = tmpSLLBlock;
2623 *iSLLBlock = 0;
2624 }
2625 pSLL = &((*SLLBlock)->SLLs[(*iSLLBlock)++]);
2626
2627 pSLL->next = pPrevSLL->next;
2628 pSLL->edgelist = (EdgeTableEntry *)NULL;
2629 pPrevSLL->next = pSLL;
2630 }
2631 pSLL->scanline = scanline;
2632
2633 /*
2634 * now insert the edge in the right bucket
2635 */
2636 prev = (EdgeTableEntry *)NULL;
2637 start = pSLL->edgelist;
2638 while (start && (start->bres.minor_axis < ETE->bres.minor_axis))
2639 {
2640 prev = start;
2641 start = start->next;
2642 }
2643 ETE->next = start;
2644
2645 if (prev)
2646 prev->next = ETE;
2647 else
2648 pSLL->edgelist = ETE;
2649 }
2650
2651 /***********************************************************************
2652 * REGION_loadAET
2653 *
2654 * This routine moves EdgeTableEntries from the
2655 * EdgeTable into the Active Edge Table,
2656 * leaving them sorted by smaller x coordinate.
2657 *
2658 */
2659 static void FASTCALL
2660 REGION_loadAET(
2661 EdgeTableEntry *AET,
2662 EdgeTableEntry *ETEs
2663 )
2664 {
2665 EdgeTableEntry *pPrevAET;
2666 EdgeTableEntry *tmp;
2667
2668 pPrevAET = AET;
2669 AET = AET->next;
2670 while (ETEs)
2671 {
2672 while (AET && (AET->bres.minor_axis < ETEs->bres.minor_axis))
2673 {
2674 pPrevAET = AET;
2675 AET = AET->next;
2676 }
2677 tmp = ETEs->next;
2678 ETEs->next = AET;
2679 if (AET)
2680 AET->back = ETEs;
2681 ETEs->back = pPrevAET;
2682 pPrevAET->next = ETEs;
2683 pPrevAET = ETEs;
2684
2685 ETEs = tmp;
2686 }
2687 }
2688
2689 /***********************************************************************
2690 * REGION_computeWAET
2691 *
2692 * This routine links the AET by the
2693 * nextWETE (winding EdgeTableEntry) link for
2694 * use by the winding number rule. The final
2695 * Active Edge Table (AET) might look something
2696 * like:
2697 *
2698 * AET
2699 * ---------- --------- ---------
2700 * |ymax | |ymax | |ymax |
2701 * | ... | |... | |... |
2702 * |next |->|next |->|next |->...
2703 * |nextWETE| |nextWETE| |nextWETE|
2704 * --------- --------- ^--------
2705 * | | |
2706 * V-------------------> V---> ...
2707 *
2708 */
2709 static void FASTCALL
2710 REGION_computeWAET(EdgeTableEntry *AET)
2711 {
2712 register EdgeTableEntry *pWETE;
2713 register int inside = 1;
2714 register int isInside = 0;
2715
2716 AET->nextWETE = (EdgeTableEntry *)NULL;
2717 pWETE = AET;
2718 AET = AET->next;
2719 while (AET)
2720 {
2721 if (AET->ClockWise)
2722 isInside++;
2723 else
2724 isInside--;
2725
2726 if ( (!inside && !isInside) ||
2727 ( inside && isInside) )
2728 {
2729 pWETE->nextWETE = AET;
2730 pWETE = AET;
2731 inside = !inside;
2732 }
2733 AET = AET->next;
2734 }
2735 pWETE->nextWETE = (EdgeTableEntry *)NULL;
2736 }
2737
2738 /***********************************************************************
2739 * REGION_InsertionSort
2740 *
2741 * Just a simple insertion sort using
2742 * pointers and back pointers to sort the Active
2743 * Edge Table.
2744 *
2745 */
2746 static BOOL FASTCALL
2747 REGION_InsertionSort(EdgeTableEntry *AET)
2748 {
2749 EdgeTableEntry *pETEchase;
2750 EdgeTableEntry *pETEinsert;
2751 EdgeTableEntry *pETEchaseBackTMP;
2752 BOOL changed = FALSE;
2753
2754 AET = AET->next;
2755 while (AET)
2756 {
2757 pETEinsert = AET;
2758 pETEchase = AET;
2759 while (pETEchase->back->bres.minor_axis > AET->bres.minor_axis)
2760 pETEchase = pETEchase->back;
2761
2762 AET = AET->next;
2763 if (pETEchase != pETEinsert)
2764 {
2765 pETEchaseBackTMP = pETEchase->back;
2766 pETEinsert->back->next = AET;
2767 if (AET)
2768 AET->back = pETEinsert->back;
2769 pETEinsert->next = pETEchase;
2770 pETEchase->back->next = pETEinsert;
2771 pETEchase->back = pETEinsert;
2772 pETEinsert->back = pETEchaseBackTMP;
2773 changed = TRUE;
2774 }
2775 }
2776 return changed;
2777 }
2778
2779 /***********************************************************************
2780 * REGION_FreeStorage
2781 *
2782 * Clean up our act.
2783 */
2784 static void FASTCALL
2785 REGION_FreeStorage(ScanLineListBlock *pSLLBlock)
2786 {
2787 ScanLineListBlock *tmpSLLBlock;
2788
2789 while (pSLLBlock)
2790 {
2791 tmpSLLBlock = pSLLBlock->next;
2792 ExFreePool(pSLLBlock);
2793 pSLLBlock = tmpSLLBlock;
2794 }
2795 }
2796
2797
2798 /***********************************************************************
2799 * REGION_PtsToRegion
2800 *
2801 * Create an array of rectangles from a list of points.
2802 */
2803 static int FASTCALL
2804 REGION_PtsToRegion(
2805 int numFullPtBlocks,
2806 int iCurPtBlock,
2807 POINTBLOCK *FirstPtBlock,
2808 ROSRGNDATA *reg)
2809 {
2810 RECTL *rects;
2811 POINT *pts;
2812 POINTBLOCK *CurPtBlock;
2813 int i;
2814 RECTL *extents, *temp;
2815 INT numRects;
2816
2817 extents = &reg->rdh.rcBound;
2818
2819 numRects = ((numFullPtBlocks * NUMPTSTOBUFFER) + iCurPtBlock) >> 1;
2820
2821 if (!(temp = ExAllocatePoolWithTag(PagedPool, numRects * sizeof(RECT), TAG_REGION)))
2822 {
2823 return 0;
2824 }
2825 if (reg->Buffer != NULL)
2826 {
2827 COPY_RECTS(temp, reg->Buffer, reg->rdh.nCount);
2828 if (reg->Buffer != &reg->rdh.rcBound)
2829 ExFreePoolWithTag(reg->Buffer, TAG_REGION);
2830 }
2831 reg->Buffer = temp;
2832
2833 reg->rdh.nCount = numRects;
2834 CurPtBlock = FirstPtBlock;
2835 rects = reg->Buffer - 1;
2836 numRects = 0;
2837 extents->left = LARGE_COORDINATE, extents->right = SMALL_COORDINATE;
2838
2839 for ( ; numFullPtBlocks >= 0; numFullPtBlocks--)
2840 {
2841 /* the loop uses 2 points per iteration */
2842 i = NUMPTSTOBUFFER >> 1;
2843 if (!numFullPtBlocks)
2844 i = iCurPtBlock >> 1;
2845 for (pts = CurPtBlock->pts; i--; pts += 2)
2846 {
2847 if (pts->x == pts[1].x)
2848 continue;
2849 if (numRects && pts->x == rects->left && pts->y == rects->bottom &&
2850 pts[1].x == rects->right &&
2851 (numRects == 1 || rects[-1].top != rects->top) &&
2852 (i && pts[2].y > pts[1].y))
2853 {
2854 rects->bottom = pts[1].y + 1;
2855 continue;
2856 }
2857 numRects++;
2858 rects++;
2859 rects->left = pts->x;
2860 rects->top = pts->y;
2861 rects->right = pts[1].x;
2862 rects->bottom = pts[1].y + 1;
2863 if (rects->left < extents->left)
2864 extents->left = rects->left;
2865 if (rects->right > extents->right)
2866 extents->right = rects->right;
2867 }
2868 CurPtBlock = CurPtBlock->next;
2869 }
2870
2871 if (numRects)
2872 {
2873 extents->top = reg->Buffer->top;
2874 extents->bottom = rects->bottom;
2875 }
2876 else
2877 {
2878 extents->left = 0;
2879 extents->top = 0;
2880 extents->right = 0;
2881 extents->bottom = 0;
2882 }
2883 reg->rdh.nCount = numRects;
2884
2885 return(TRUE);
2886 }
2887
2888 /***********************************************************************
2889 * REGION_CreateEdgeTable
2890 *
2891 * This routine creates the edge table for
2892 * scan converting polygons.
2893 * The Edge Table (ET) looks like:
2894 *
2895 * EdgeTable
2896 * --------
2897 * | ymax | ScanLineLists
2898 * |scanline|-->------------>-------------->...
2899 * -------- |scanline| |scanline|
2900 * |edgelist| |edgelist|
2901 * --------- ---------
2902 * | |
2903 * | |
2904 * V V
2905 * list of ETEs list of ETEs
2906 *
2907 * where ETE is an EdgeTableEntry data structure,
2908 * and there is one ScanLineList per scanline at
2909 * which an edge is initially entered.
2910 *
2911 */
2912 static void FASTCALL
2913 REGION_CreateETandAET(
2914 const ULONG *Count,
2915 INT nbpolygons,
2916 const POINT *pts,
2917 EdgeTable *ET,
2918 EdgeTableEntry *AET,
2919 EdgeTableEntry *pETEs,
2920 ScanLineListBlock *pSLLBlock
2921 )
2922 {
2923 const POINT *top, *bottom;
2924 const POINT *PrevPt, *CurrPt, *EndPt;
2925 INT poly, count;
2926 int iSLLBlock = 0;
2927 int dy;
2928
2929
2930 /*
2931 * initialize the Active Edge Table
2932 */
2933 AET->next = (EdgeTableEntry *)NULL;
2934 AET->back = (EdgeTableEntry *)NULL;
2935 AET->nextWETE = (EdgeTableEntry *)NULL;
2936 AET->bres.minor_axis = SMALL_COORDINATE;
2937
2938 /*
2939 * initialize the Edge Table.
2940 */
2941 ET->scanlines.next = (ScanLineList *)NULL;
2942 ET->ymax = SMALL_COORDINATE;
2943 ET->ymin = LARGE_COORDINATE;
2944 pSLLBlock->next = (ScanLineListBlock *)NULL;
2945
2946 EndPt = pts - 1;
2947 for (poly = 0; poly < nbpolygons; poly++)
2948 {
2949 count = Count[poly];
2950 EndPt += count;
2951 if (count < 2)
2952 continue;
2953
2954 PrevPt = EndPt;
2955
2956 /*
2957 * for each vertex in the array of points.
2958 * In this loop we are dealing with two vertices at
2959 * a time -- these make up one edge of the polygon.
2960 */
2961 while (count--)
2962 {
2963 CurrPt = pts++;
2964
2965 /*
2966 * find out which point is above and which is below.
2967 */
2968 if (PrevPt->y > CurrPt->y)
2969 {
2970 bottom = PrevPt, top = CurrPt;
2971 pETEs->ClockWise = 0;
2972 }
2973 else
2974 {
2975 bottom = CurrPt, top = PrevPt;
2976 pETEs->ClockWise = 1;
2977 }
2978
2979 /*
2980 * don't add horizontal edges to the Edge table.
2981 */
2982 if (bottom->y != top->y)
2983 {
2984 pETEs->ymax = bottom->y-1;
2985 /* -1 so we don't get last scanline */
2986
2987 /*
2988 * initialize integer edge algorithm
2989 */
2990 dy = bottom->y - top->y;
2991 BRESINITPGONSTRUCT(dy, top->x, bottom->x, pETEs->bres);
2992
2993 REGION_InsertEdgeInET(ET, pETEs, top->y, &pSLLBlock,
2994 &iSLLBlock);
2995
2996 if (PrevPt->y > ET->ymax)
2997 ET->ymax = PrevPt->y;
2998 if (PrevPt->y < ET->ymin)
2999 ET->ymin = PrevPt->y;
3000 pETEs++;
3001 }
3002
3003 PrevPt = CurrPt;
3004 }
3005 }
3006 }
3007
3008 HRGN FASTCALL
3009 IntCreatePolyPolygonRgn(
3010 POINT *Pts,
3011 PULONG Count,
3012 INT nbpolygons,
3013 INT mode
3014 )
3015 {
3016 HRGN hrgn;
3017 ROSRGNDATA *region;
3018 EdgeTableEntry *pAET; /* Active Edge Table */
3019 INT y; /* current scanline */
3020 int iPts = 0; /* number of pts in buffer */
3021 EdgeTableEntry *pWETE; /* Winding Edge Table Entry*/
3022 ScanLineList *pSLL; /* current scanLineList */
3023 POINT *pts; /* output buffer */
3024 EdgeTableEntry *pPrevAET; /* ptr to previous AET */
3025 EdgeTable ET; /* header node for ET */
3026 EdgeTableEntry AET; /* header node for AET */
3027 EdgeTableEntry *pETEs; /* EdgeTableEntries pool */
3028 ScanLineListBlock SLLBlock; /* header for scanlinelist */
3029 int fixWAET = FALSE;
3030 POINTBLOCK FirstPtBlock, *curPtBlock; /* PtBlock buffers */
3031 POINTBLOCK *tmpPtBlock;
3032 int numFullPtBlocks = 0;
3033 INT poly, total;
3034
3035 if (mode == 0 || mode > 2) return 0;
3036
3037 if (!(region = REGION_AllocUserRgnWithHandle(nbpolygons)))
3038 return 0;
3039 hrgn = region->BaseObject.hHmgr;
3040
3041 /* special case a rectangle */
3042
3043 if (((nbpolygons == 1) && ((*Count == 4) ||
3044 ((*Count == 5) && (Pts[4].x == Pts[0].x) && (Pts[4].y == Pts[0].y)))) &&
3045 (((Pts[0].y == Pts[1].y) &&
3046 (Pts[1].x == Pts[2].x) &&
3047 (Pts[2].y == Pts[3].y) &&
3048 (Pts[3].x == Pts[0].x)) ||
3049 ((Pts[0].x == Pts[1].x) &&
3050 (Pts[1].y == Pts[2].y) &&
3051 (Pts[2].x == Pts[3].x) &&
3052 (Pts[3].y == Pts[0].y))))
3053 {
3054 RGNOBJAPI_Unlock(region);
3055 NtGdiSetRectRgn(hrgn, min(Pts[0].x, Pts[2].x), min(Pts[0].y, Pts[2].y),
3056 max(Pts[0].x, Pts[2].x), max(Pts[0].y, Pts[2].y));
3057 return hrgn;
3058 }
3059
3060 for (poly = total = 0; poly < nbpolygons; poly++)
3061 total += Count[poly];
3062 if (! (pETEs = ExAllocatePoolWithTag(PagedPool, sizeof(EdgeTableEntry) * total, TAG_REGION)) )
3063 {
3064 GreDeleteObject(hrgn);
3065 return 0;
3066 }
3067 pts = FirstPtBlock.pts;
3068 REGION_CreateETandAET(Count, nbpolygons, Pts, &ET, &AET, pETEs, &SLLBlock);
3069 pSLL = ET.scanlines.next;
3070 curPtBlock = &FirstPtBlock;
3071
3072 if (mode != WINDING)
3073 {
3074 /*
3075 * for each scanline
3076 */
3077 for (y = ET.ymin; y < ET.ymax; y++)
3078 {
3079 /*
3080 * Add a new edge to the active edge table when we
3081 * get to the next edge.
3082 */
3083 if (pSLL != NULL && y == pSLL->scanline)
3084 {
3085 REGION_loadAET(&AET, pSLL->edgelist);
3086 pSLL = pSLL->next;
3087 }
3088 pPrevAET = &AET;
3089 pAET = AET.next;
3090
3091 /*
3092 * for each active edge
3093 */
3094 while (pAET)
3095 {
3096 pts->x = pAET->bres.minor_axis, pts->y = y;
3097 pts++, iPts++;
3098
3099 /*
3100 * send out the buffer
3101 */
3102 if (iPts == NUMPTSTOBUFFER)
3103 {
3104 tmpPtBlock = ExAllocatePoolWithTag(PagedPool, sizeof(POINTBLOCK), TAG_REGION);
3105 if (!tmpPtBlock)
3106 {
3107 DPRINT1("Can't alloc tPB\n");
3108 ExFreePoolWithTag(pETEs, TAG_REGION);
3109 return 0;
3110 }
3111 curPtBlock->next = tmpPtBlock;
3112 curPtBlock = tmpPtBlock;
3113 pts = curPtBlock->pts;
3114 numFullPtBlocks++;
3115 iPts = 0;
3116 }
3117 EVALUATEEDGEEVENODD(pAET, pPrevAET, y);
3118 }
3119 REGION_InsertionSort(&AET);
3120 }
3121 }
3122 else
3123 {
3124 /*
3125 * for each scanline
3126 */
3127 for (y = ET.ymin; y < ET.ymax; y++)
3128 {
3129 /*
3130 * Add a new edge to the active edge table when we
3131 * get to the next edge.
3132 */
3133 if (pSLL != NULL && y == pSLL->scanline)
3134 {
3135 REGION_loadAET(&AET, pSLL->edgelist);
3136 REGION_computeWAET(&AET);
3137 pSLL = pSLL->next;
3138 }
3139 pPrevAET = &AET;
3140 pAET = AET.next;
3141 pWETE = pAET;
3142
3143 /*
3144 * for each active edge
3145 */
3146 while (pAET)
3147 {
3148 /*
3149 * add to the buffer only those edges that
3150 * are in the Winding active edge table.
3151 */
3152 if (pWETE == pAET)
3153 {
3154 pts->x = pAET->bres.minor_axis, pts->y = y;
3155 pts++, iPts++;
3156
3157 /*
3158 * send out the buffer
3159 */
3160 if (iPts == NUMPTSTOBUFFER)
3161 {
3162 tmpPtBlock = ExAllocatePoolWithTag(PagedPool,
3163 sizeof(POINTBLOCK), TAG_REGION);
3164 if (!tmpPtBlock)
3165 {
3166 DPRINT1("Can't alloc tPB\n");
3167 ExFreePoolWithTag(pETEs, TAG_REGION);
3168 GreDeleteObject(hrgn);
3169 return 0;
3170 }
3171 curPtBlock->next = tmpPtBlock;
3172 curPtBlock = tmpPtBlock;
3173 pts = curPtBlock->pts;
3174 numFullPtBlocks++;
3175 iPts = 0;
3176 }
3177 pWETE = pWETE->nextWETE;
3178 }
3179 EVALUATEEDGEWINDING(pAET, pPrevAET, y, fixWAET);
3180 }
3181
3182 /*
3183 * recompute the winding active edge table if
3184 * we just resorted or have exited an edge.
3185 */
3186 if (REGION_InsertionSort(&AET) || fixWAET)
3187 {
3188 REGION_computeWAET(&AET);
3189 fixWAET = FALSE;
3190 }
3191 }
3192 }
3193 REGION_FreeStorage(SLLBlock.next);
3194 REGION_PtsToRegion(numFullPtBlocks, iPts, &FirstPtBlock, region);
3195
3196 for (curPtBlock = FirstPtBlock.next; --numFullPtBlocks >= 0;)
3197 {
3198 tmpPtBlock = curPtBlock->next;
3199 ExFreePoolWithTag(curPtBlock, TAG_REGION);
3200 curPtBlock = tmpPtBlock;
3201 }
3202 ExFreePoolWithTag(pETEs, TAG_REGION);
3203 RGNOBJAPI_Unlock(region);
3204 return hrgn;
3205 }
3206
3207 BOOL
3208 FASTCALL
3209 IntRectInRegion(
3210 HRGN hRgn,
3211 LPRECTL rc
3212 )
3213 {
3214 PROSRGNDATA Rgn;
3215 BOOL Ret;
3216
3217 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3218 {
3219 return ERROR;
3220 }
3221
3222 Ret = REGION_RectInRegion(Rgn, rc);
3223 RGNOBJAPI_Unlock(Rgn);
3224 return Ret;
3225 }
3226
3227
3228 //
3229 // NtGdi Exported Functions
3230 //
3231 INT
3232 APIENTRY
3233 NtGdiCombineRgn(HRGN hDest,
3234 HRGN hSrc1,
3235 HRGN hSrc2,
3236 INT CombineMode)
3237 {
3238 INT result = ERROR;
3239 PROSRGNDATA destRgn, src1Rgn, src2Rgn = NULL;
3240
3241 if ( CombineMode > RGN_COPY && CombineMode < RGN_AND)
3242 {
3243 EngSetLastError(ERROR_INVALID_PARAMETER);
3244 return ERROR;
3245 }
3246
3247 destRgn = RGNOBJAPI_Lock(hDest, NULL);
3248 if (!destRgn)
3249 {
3250 EngSetLastError(ERROR_INVALID_HANDLE);
3251 return ERROR;
3252 }
3253
3254 src1Rgn = RGNOBJAPI_Lock(hSrc1, NULL);
3255 if (!src1Rgn)
3256 {
3257 RGNOBJAPI_Unlock(destRgn);
3258 EngSetLastError(ERROR_INVALID_HANDLE);
3259 return ERROR;
3260 }
3261
3262 if (hSrc2)
3263 src2Rgn = RGNOBJAPI_Lock(hSrc2, NULL);
3264
3265 result = IntGdiCombineRgn( destRgn, src1Rgn, src2Rgn, CombineMode);
3266
3267 if (src2Rgn)
3268 RGNOBJAPI_Unlock(src2Rgn);
3269 RGNOBJAPI_Unlock(src1Rgn);
3270 RGNOBJAPI_Unlock(destRgn);
3271
3272 return result;
3273 }
3274
3275 HRGN
3276 APIENTRY
3277 NtGdiCreateEllipticRgn(
3278 INT Left,
3279 INT Top,
3280 INT Right,
3281 INT Bottom
3282 )
3283 {
3284 return NtGdiCreateRoundRectRgn(Left, Top, Right, Bottom,
3285 Right - Left, Bottom - Top);
3286 }
3287
3288 HRGN APIENTRY
3289 NtGdiCreateRectRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
3290 {
3291 PROSRGNDATA pRgn;
3292 HRGN hRgn;
3293
3294 /* Allocate region data structure with space for 1 RECTL */
3295 if (!(pRgn = REGION_AllocUserRgnWithHandle(1)))
3296 {
3297 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY);
3298 return NULL;
3299 }
3300 hRgn = pRgn->BaseObject.hHmgr;
3301
3302 REGION_SetRectRgn(pRgn, LeftRect, TopRect, RightRect, BottomRect);
3303 RGNOBJAPI_Unlock(pRgn);
3304
3305 return hRgn;
3306 }
3307
3308 HRGN
3309 APIENTRY
3310 NtGdiCreateRoundRectRgn(
3311 INT left,
3312 INT top,
3313 INT right,
3314 INT bottom,
3315 INT ellipse_width,
3316 INT ellipse_height
3317 )
3318 {
3319 PROSRGNDATA obj;
3320 HRGN hrgn;
3321 int asq, bsq, d, xd, yd;
3322 RECTL rect;
3323
3324 /* Make the dimensions sensible */
3325
3326 if (left > right)
3327 {
3328 INT tmp = left;
3329 left = right;
3330 right = tmp;
3331 }
3332 if (top > bottom)
3333 {
3334 INT tmp = top;
3335 top = bottom;
3336 bottom = tmp;
3337 }
3338
3339 ellipse_width = abs(ellipse_width);
3340 ellipse_height = abs(ellipse_height);
3341
3342 /* Check parameters */
3343
3344 if (ellipse_width > right-left) ellipse_width = right-left;
3345 if (ellipse_height > bottom-top) ellipse_height = bottom-top;
3346
3347 /* Check if we can do a normal rectangle instead */
3348
3349 if ((ellipse_width < 2) || (ellipse_height < 2))
3350 return NtGdiCreateRectRgn(left, top, right, bottom);
3351
3352 /* Create region */
3353
3354 d = (ellipse_height < 128) ? ((3 * ellipse_height) >> 2) : 64;
3355 if (!(obj = REGION_AllocUserRgnWithHandle(d))) return 0;
3356 hrgn = obj->BaseObject.hHmgr;
3357
3358 /* Ellipse algorithm, based on an article by K. Porter */
3359 /* in DDJ Graphics Programming Column, 8/89 */
3360
3361 asq = ellipse_width * ellipse_width / 4; /* a^2 */
3362 bsq = ellipse_height * ellipse_height / 4; /* b^2 */
3363 d = bsq - asq * ellipse_height / 2 + asq / 4; /* b^2 - a^2b + a^2/4 */
3364 xd = 0;
3365 yd = asq * ellipse_height; /* 2a^2b */
3366
3367 rect.left = left + ellipse_width / 2;
3368 rect.right = right - ellipse_width / 2;
3369
3370 /* Loop to draw first half of quadrant */
3371
3372 while (xd < yd)
3373 {
3374 if (d > 0) /* if nearest pixel is toward the center */
3375 {
3376 /* move toward center */
3377 rect.top = top++;
3378 rect.bottom = rect.top + 1;
3379 REGION_UnionRectWithRgn(obj, &rect);
3380 rect.top = --bottom;
3381 rect.bottom = rect.top + 1;
3382 REGION_UnionRectWithRgn(obj, &rect);
3383 yd -= 2*asq;
3384 d -= yd;
3385 }
3386 rect.left--; /* next horiz point */
3387 rect.right++;
3388 xd += 2*bsq;
3389 d += bsq + xd;
3390 }
3391 /* Loop to draw second half of quadrant */
3392
3393 d += (3 * (asq-bsq) / 2 - (xd+yd)) / 2;
3394 while (yd >= 0)
3395 {
3396 /* next vertical point */
3397 rect.top = top++;
3398 rect.bottom = rect.top + 1;
3399 REGION_UnionRectWithRgn(obj, &rect);
3400 rect.top = --bottom;
3401 rect.bottom = rect.top + 1;
3402 REGION_UnionRectWithRgn(obj, &rect);
3403 if (d < 0) /* if nearest pixel is outside ellipse */
3404 {
3405 rect.left--; /* move away from center */
3406 rect.right++;
3407 xd += 2*bsq;
3408 d += xd;
3409 }
3410 yd -= 2*asq;
3411 d += asq - yd;
3412 }
3413 /* Add the inside rectangle */
3414
3415 if (top <= bottom)
3416 {
3417 rect.top = top;
3418 rect.bottom = bottom;
3419 REGION_UnionRectWithRgn(obj, &rect);
3420 }
3421
3422 RGNOBJAPI_Unlock(obj);
3423 return hrgn;
3424 }
3425
3426 BOOL
3427 APIENTRY
3428 NtGdiEqualRgn(
3429 HRGN hSrcRgn1,
3430 HRGN hSrcRgn2
3431 )
3432 {
3433 PROSRGNDATA rgn1, rgn2;
3434 PRECTL tRect1, tRect2;
3435 ULONG i;
3436 BOOL bRet = FALSE;
3437
3438 if ( !(rgn1 = RGNOBJAPI_Lock(hSrcRgn1, NULL)) )
3439 return ERROR;
3440
3441 if ( !(rgn2 = RGNOBJAPI_Lock(hSrcRgn2, NULL)) )
3442 {
3443 RGNOBJAPI_Unlock(rgn1);
3444 return ERROR;
3445 }
3446
3447 if ( rgn1->rdh.nCount != rgn2->rdh.nCount ) goto exit;
3448
3449 if ( rgn1->rdh.nCount == 0 )
3450 {
3451 bRet = TRUE;
3452 goto exit;
3453 }
3454
3455 if ( rgn1->rdh.rcBound.left != rgn2->rdh.rcBound.left ||
3456 rgn1->rdh.rcBound.right != rgn2->rdh.rcBound.right ||
3457 rgn1->rdh.rcBound.top != rgn2->rdh.rcBound.top ||
3458 rgn1->rdh.rcBound.bottom != rgn2->rdh.rcBound.bottom )
3459 goto exit;
3460
3461 tRect1 = rgn1->Buffer;
3462 tRect2 = rgn2->Buffer;
3463
3464 if (!tRect1 || !tRect2)
3465 goto exit;
3466
3467 for (i=0; i < rgn1->rdh.nCount; i++)
3468 {
3469 if ( tRect1[i].left != tRect2[i].left ||
3470 tRect1[i].right != tRect2[i].right ||
3471 tRect1[i].top != tRect2[i].top ||
3472 tRect1[i].bottom != tRect2[i].bottom )
3473 goto exit;
3474 }
3475 bRet = TRUE;
3476
3477 exit:
3478 RGNOBJAPI_Unlock(rgn1);
3479 RGNOBJAPI_Unlock(rgn2);
3480 return bRet;
3481 }
3482
3483 HRGN
3484 APIENTRY
3485 NtGdiExtCreateRegion(
3486 OPTIONAL LPXFORM Xform,
3487 DWORD Count,
3488 LPRGNDATA RgnData
3489 )
3490 {
3491 HRGN hRgn;
3492 PROSRGNDATA Region;
3493 DWORD nCount = 0;
3494 DWORD iType = 0;
3495 DWORD dwSize = 0;
3496 NTSTATUS Status = STATUS_SUCCESS;
3497 MATRIX matrix;
3498 XFORMOBJ xo;
3499
3500 DPRINT("NtGdiExtCreateRegion\n");
3501 _SEH2_TRY
3502 {
3503 ProbeForRead(RgnData, Count, 1);
3504 nCount = RgnData->rdh.nCount;
3505 iType = RgnData->rdh.iType;
3506 dwSize = RgnData->rdh.dwSize;
3507 }
3508 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3509 {
3510 Status = _SEH2_GetExceptionCode();
3511 }
3512 _SEH2_END;
3513 if (!NT_SUCCESS(Status))
3514 {
3515 SetLastNtError(Status);
3516 return NULL;
3517 }
3518
3519 /* Check parameters, but don't set last error here */
3520 if (Count < sizeof(RGNDATAHEADER) + nCount * sizeof(RECT) ||
3521 iType != RDH_RECTANGLES ||
3522 dwSize != sizeof(RGNDATAHEADER))
3523 {
3524 return NULL;
3525 }
3526
3527 Region = REGION_AllocUserRgnWithHandle(nCount);
3528
3529 if (Region == NULL)
3530 {
3531 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY);
3532 return FALSE;
3533 }
3534 hRgn = Region->BaseObject.hHmgr;
3535
3536 _SEH2_TRY
3537 {
3538 if (Xform)
3539 {
3540 ULONG ret;
3541
3542 /* Init the XFORMOBJ from the Xform struct */
3543 Status = STATUS_INVALID_PARAMETER;
3544 XFORMOBJ_vInit(&xo, &matrix);
3545 ret = XFORMOBJ_iSetXform(&xo, (XFORML*)Xform);
3546
3547 /* Check for error, also no scale and shear allowed */
3548 if (ret != DDI_ERROR && ret != GX_GENERAL)
3549 {
3550 /* Apply the coordinate transformation on the rects */
3551 if (XFORMOBJ_bApplyXform(&xo,
3552 XF_LTOL,
3553 nCount * 2,
3554 RgnData->Buffer,
3555 Region->Buffer))
3556 {
3557 Status = STATUS_SUCCESS;
3558 }
3559 }
3560 }
3561 else
3562 {
3563 /* Copy rect coordinates */
3564 RtlCopyMemory(Region->Buffer,
3565 RgnData->Buffer,
3566 nCount * sizeof(RECT));
3567 }
3568 }
3569 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3570 {
3571 Status = _SEH2_GetExceptionCode();
3572 }
3573 _SEH2_END;
3574 if (!NT_SUCCESS(Status))
3575 {
3576 EngSetLastError(ERROR_INVALID_PARAMETER);
3577 RGNOBJAPI_Unlock(Region);
3578 GreDeleteObject(hRgn);
3579 return NULL;
3580 }
3581
3582 RGNOBJAPI_Unlock(Region);
3583
3584 return hRgn;
3585 }
3586
3587 BOOL
3588 APIENTRY
3589 NtGdiFillRgn(
3590 HDC hDC,
3591 HRGN hRgn,
3592 HBRUSH hBrush
3593 )
3594 {
3595 HBRUSH oldhBrush;
3596 PROSRGNDATA rgn;
3597 PRECTL r;
3598
3599 if (NULL == (rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3600 {
3601 return FALSE;
3602 }
3603
3604 if (NULL == (oldhBrush = NtGdiSelectBrush(hDC, hBrush)))
3605 {
3606 RGNOBJAPI_Unlock(rgn);
3607 return FALSE;
3608 }
3609
3610 for (r = rgn->Buffer; r < rgn->Buffer + rgn->rdh.nCount; r++)
3611 {
3612 NtGdiPatBlt(hDC, r->left, r->top, r->right - r->left, r->bottom - r->top, PATCOPY);
3613 }
3614
3615 RGNOBJAPI_Unlock(rgn);
3616 NtGdiSelectBrush(hDC, oldhBrush);
3617
3618 return TRUE;
3619 }
3620
3621 BOOL
3622 APIENTRY
3623 NtGdiFrameRgn(
3624 HDC hDC,
3625 HRGN hRgn,
3626 HBRUSH hBrush,
3627 INT Width,
3628 INT Height
3629 )
3630 {
3631 HRGN FrameRgn;
3632 BOOL Ret;
3633
3634 if (!(FrameRgn = IntSysCreateRectRgn(0, 0, 0, 0)))
3635 {
3636 return FALSE;
3637 }
3638 if (!REGION_CreateFrameRgn(FrameRgn, hRgn, Width, Height))
3639 {
3640 REGION_FreeRgnByHandle(FrameRgn);
3641 return FALSE;
3642 }
3643
3644 Ret = NtGdiFillRgn(hDC, FrameRgn, hBrush);
3645
3646 REGION_FreeRgnByHandle(FrameRgn);
3647 return Ret;
3648 }
3649
3650
3651 INT APIENTRY
3652 NtGdiGetRgnBox(
3653 HRGN hRgn,
3654 PRECTL pRect
3655 )
3656 {
3657 PROSRGNDATA Rgn;
3658 RECTL SafeRect;
3659 DWORD ret;
3660 NTSTATUS Status = STATUS_SUCCESS;
3661
3662 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3663 {
3664 return ERROR;
3665 }
3666
3667 ret = REGION_GetRgnBox(Rgn, &SafeRect);
3668 RGNOBJAPI_Unlock(Rgn);
3669 if (ERROR == ret)
3670 {
3671 return ret;
3672 }
3673
3674 _SEH2_TRY
3675 {
3676 ProbeForWrite(pRect, sizeof(RECT), 1);
3677 *pRect = SafeRect;
3678 }
3679 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3680 {
3681 Status = _SEH2_GetExceptionCode();
3682 }
3683 _SEH2_END;
3684 if (!NT_SUCCESS(Status))
3685 {
3686 return ERROR;
3687 }
3688
3689 return ret;
3690 }
3691
3692 BOOL
3693 APIENTRY
3694 NtGdiInvertRgn(
3695 HDC hDC,
3696 HRGN hRgn
3697 )
3698 {
3699 PROSRGNDATA RgnData;
3700 ULONG i;
3701 PRECTL rc;
3702
3703 if (!(RgnData = RGNOBJAPI_Lock(hRgn, NULL)))
3704 {
3705 EngSetLastError(ERROR_INVALID_HANDLE);
3706 return FALSE;
3707 }
3708
3709 rc = RgnData->Buffer;
3710 for (i = 0; i < RgnData->rdh.nCount; i++)
3711 {
3712
3713 if (!NtGdiPatBlt(hDC, rc->left, rc->top, rc->right - rc->left, rc->bottom - rc->top, DSTINVERT))
3714 {
3715 RGNOBJAPI_Unlock(RgnData);
3716 return FALSE;
3717 }
3718 rc++;
3719 }
3720
3721 RGNOBJAPI_Unlock(RgnData);
3722 return TRUE;
3723 }
3724
3725 INT
3726 APIENTRY
3727 NtGdiOffsetRgn(
3728 HRGN hRgn,
3729 INT XOffset,
3730 INT YOffset
3731 )
3732 {
3733 PROSRGNDATA rgn = RGNOBJAPI_Lock(hRgn, NULL);
3734 INT ret;
3735
3736 DPRINT("NtGdiOffsetRgn: hRgn %d Xoffs %d Yoffs %d rgn %x\n", hRgn, XOffset, YOffset, rgn );
3737
3738 if (!rgn)
3739 {
3740 DPRINT("NtGdiOffsetRgn: hRgn error\n");
3741 return ERROR;
3742 }
3743
3744 ret = IntGdiOffsetRgn(rgn, XOffset, YOffset);
3745
3746 RGNOBJAPI_Unlock(rgn);
3747 return ret;
3748 }
3749
3750 BOOL
3751 APIENTRY
3752 NtGdiPtInRegion(
3753 HRGN hRgn,
3754 INT X,
3755 INT Y
3756 )
3757 {
3758 PROSRGNDATA rgn;
3759 ULONG i;
3760 PRECTL r;
3761
3762 if (!(rgn = RGNOBJAPI_Lock(hRgn, NULL) ) )
3763 return FALSE;
3764
3765 if (rgn->rdh.nCount > 0 && INRECT(rgn->rdh.rcBound, X, Y))
3766 {
3767 r = rgn->Buffer;
3768 for (i = 0; i < rgn->rdh.nCount; i++)
3769 {
3770 if (INRECT(*r, X, Y))
3771 {
3772 RGNOBJAPI_Unlock(rgn);
3773 return TRUE;
3774 }
3775 r++;
3776 }
3777 }
3778 RGNOBJAPI_Unlock(rgn);
3779 return FALSE;
3780 }
3781
3782 BOOL
3783 APIENTRY
3784 NtGdiRectInRegion(
3785 HRGN hRgn,
3786 LPRECTL unsaferc
3787 )
3788 {
3789 RECTL rc = {0};
3790 NTSTATUS Status = STATUS_SUCCESS;
3791
3792 _SEH2_TRY
3793 {
3794 ProbeForRead(unsaferc, sizeof(RECT), 1);
3795 rc = *unsaferc;
3796 }
3797 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3798 {
3799 Status = _SEH2_GetExceptionCode();
3800 }
3801 _SEH2_END;
3802
3803 if (!NT_SUCCESS(Status))
3804 {
3805 SetLastNtError(Status);
3806 DPRINT1("NtGdiRectInRegion: bogus rc\n");
3807 return ERROR;
3808 }
3809
3810 return IntRectInRegion(hRgn, &rc);
3811 }
3812
3813 BOOL
3814 APIENTRY
3815 NtGdiSetRectRgn(
3816 HRGN hRgn,
3817 INT LeftRect,
3818 INT TopRect,
3819 INT RightRect,
3820 INT BottomRect
3821 )
3822 {
3823 PROSRGNDATA rgn;
3824
3825 if ( !(rgn = RGNOBJAPI_Lock(hRgn, NULL)) )
3826 {
3827 return 0; //per documentation
3828 }
3829
3830 REGION_SetRectRgn(rgn, LeftRect, TopRect, RightRect, BottomRect);
3831
3832 RGNOBJAPI_Unlock(rgn);
3833 return TRUE;
3834 }
3835
3836 HRGN APIENTRY
3837 NtGdiUnionRectWithRgn(
3838 HRGN hDest,
3839 const RECTL *UnsafeRect
3840 )
3841 {
3842 RECTL SafeRect = {0};
3843 PROSRGNDATA Rgn;
3844 NTSTATUS Status = STATUS_SUCCESS;
3845
3846 if (!(Rgn = RGNOBJAPI_Lock(hDest, NULL)))
3847 {
3848 EngSetLastError(ERROR_INVALID_HANDLE);
3849 return NULL;
3850 }
3851
3852 _SEH2_TRY
3853 {
3854 ProbeForRead(UnsafeRect, sizeof(RECT), 1);
3855 SafeRect = *UnsafeRect;
3856 }
3857 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3858 {
3859 Status = _SEH2_GetExceptionCode();
3860 }
3861 _SEH2_END;
3862
3863 if (! NT_SUCCESS(Status))
3864 {
3865 RGNOBJAPI_Unlock(Rgn);
3866 SetLastNtError(Status);
3867 return NULL;
3868 }
3869
3870 REGION_UnionRectWithRgn(Rgn, &SafeRect);
3871 RGNOBJAPI_Unlock(Rgn);
3872 return hDest;
3873 }
3874
3875 /*!
3876 * MSDN: GetRegionData, Return Values:
3877 *
3878 * "If the function succeeds and dwCount specifies an adequate number of bytes,
3879 * the return value is always dwCount. If dwCount is too small or the function
3880 * fails, the return value is 0. If lpRgnData is NULL, the return value is the
3881 * required number of bytes.
3882 *
3883 * If the function fails, the return value is zero."
3884 */
3885 DWORD APIENTRY
3886 NtGdiGetRegionData(
3887 HRGN hrgn,
3888 DWORD count,
3889 LPRGNDATA rgndata
3890 )
3891 {
3892 DWORD size;
3893 PROSRGNDATA obj = RGNOBJAPI_Lock(hrgn, NULL);
3894 NTSTATUS Status = STATUS_SUCCESS;
3895
3896 if (!obj)
3897 return 0;
3898
3899 size = obj->rdh.nCount * sizeof(RECT);
3900 if (count < (size + sizeof(RGNDATAHEADER)) || rgndata == NULL)
3901 {
3902 RGNOBJAPI_Unlock(obj);
3903 if (rgndata) /* buffer is too small, signal it by return 0 */
3904 return 0;
3905 else /* user requested buffer size with rgndata NULL */
3906 return size + sizeof(RGNDATAHEADER);
3907 }
3908
3909 _SEH2_TRY
3910 {
3911 ProbeForWrite(rgndata, count, 1);
3912 RtlCopyMemory(rgndata, &obj->rdh, sizeof(RGNDATAHEADER));
3913 RtlCopyMemory(rgndata->Buffer, obj->Buffer, size);
3914 }
3915 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3916 {
3917 Status = _SEH2_GetExceptionCode();
3918 }
3919 _SEH2_END;
3920
3921 if (!NT_SUCCESS(Status))
3922 {
3923 SetLastNtError(Status);
3924 RGNOBJAPI_Unlock(obj);
3925 return 0;
3926 }
3927
3928 RGNOBJAPI_Unlock(obj);
3929 return size + sizeof(RGNDATAHEADER);
3930 }
3931
3932 /* EOF */