[MMEBUDDY]
[reactos.git] / reactos / 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 INT Index;
2077 PGDI_TABLE_ENTRY Entry;
2078
2079 pRgn = REGION_AllocRgnWithHandle(nRgn);
2080 if (pRgn)
2081 {
2082 Index = GDI_HANDLE_GET_INDEX(pRgn->BaseObject.hHmgr);
2083 Entry = &GdiHandleTable->Entries[Index];
2084 Entry->UserData = AllocateObjectAttr();
2085 }
2086 return pRgn;
2087 }
2088
2089 PROSRGNDATA
2090 FASTCALL
2091 RGNOBJAPI_Lock(HRGN hRgn, PRGN_ATTR *ppRgn_Attr)
2092 {
2093 INT Index;
2094 PGDI_TABLE_ENTRY Entry;
2095 PROSRGNDATA pRgn;
2096 PRGN_ATTR pRgn_Attr;
2097 HANDLE pid;
2098
2099 pRgn = REGION_LockRgn(hRgn);
2100
2101 if (pRgn)
2102 {
2103 Index = GDI_HANDLE_GET_INDEX(hRgn);
2104 Entry = &GdiHandleTable->Entries[Index];
2105 pRgn_Attr = Entry->UserData;
2106 pid = (HANDLE)((ULONG_PTR)Entry->ProcessId & ~0x1);
2107
2108 if ( pid == NtCurrentTeb()->ClientId.UniqueProcess &&
2109 pRgn_Attr )
2110 {
2111 _SEH2_TRY
2112 {
2113 if ( !(pRgn_Attr->AttrFlags & ATTR_CACHED) &&
2114 pRgn_Attr->AttrFlags & (ATTR_RGN_VALID|ATTR_RGN_DIRTY) )
2115 {
2116 switch (pRgn_Attr->Flags)
2117 {
2118 case NULLREGION:
2119 EMPTY_REGION( pRgn );
2120 break;
2121
2122 case SIMPLEREGION:
2123 REGION_SetRectRgn( pRgn,
2124 pRgn_Attr->Rect.left,
2125 pRgn_Attr->Rect.top,
2126 pRgn_Attr->Rect.right,
2127 pRgn_Attr->Rect.bottom );
2128 break;
2129 }
2130 pRgn_Attr->AttrFlags &= ~ATTR_RGN_DIRTY;
2131 }
2132 }
2133 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
2134 {
2135 }
2136 _SEH2_END;
2137
2138 if (ppRgn_Attr)
2139 *ppRgn_Attr = pRgn_Attr;
2140 }
2141 else
2142 {
2143 if (ppRgn_Attr)
2144 *ppRgn_Attr = NULL;
2145 }
2146 }
2147 return pRgn;
2148 }
2149
2150 VOID
2151 FASTCALL
2152 RGNOBJAPI_Unlock(PROSRGNDATA pRgn)
2153 {
2154 INT Index;
2155 PGDI_TABLE_ENTRY Entry;
2156 PRGN_ATTR pRgn_Attr;
2157 HANDLE pid;
2158
2159 if (pRgn)
2160 {
2161 Index = GDI_HANDLE_GET_INDEX(pRgn->BaseObject.hHmgr);
2162 Entry = &GdiHandleTable->Entries[Index];
2163 pRgn_Attr = Entry->UserData;
2164 pid = (HANDLE)((ULONG_PTR)Entry->ProcessId & ~0x1);
2165
2166 if ( pid == NtCurrentTeb()->ClientId.UniqueProcess &&
2167 pRgn_Attr )
2168 {
2169 _SEH2_TRY
2170 {
2171 if ( pRgn_Attr->AttrFlags & ATTR_RGN_VALID )
2172 {
2173 pRgn_Attr->Flags = REGION_Complexity( pRgn );
2174 pRgn_Attr->Rect.left = pRgn->rdh.rcBound.left;
2175 pRgn_Attr->Rect.top = pRgn->rdh.rcBound.top;
2176 pRgn_Attr->Rect.right = pRgn->rdh.rcBound.right;
2177 pRgn_Attr->Rect.bottom = pRgn->rdh.rcBound.bottom;
2178 }
2179 }
2180 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
2181 {
2182 }
2183 _SEH2_END;
2184 }
2185 }
2186 REGION_UnlockRgn(pRgn);
2187 }
2188
2189 /*
2190 System Regions:
2191 These regions do not use attribute sections and when allocated, use gdiobj
2192 level functions.
2193 */
2194 //
2195 // System Region Functions
2196 //
2197 PROSRGNDATA
2198 FASTCALL
2199 IntSysCreateRectpRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
2200 {
2201 PROSRGNDATA pRgn;
2202
2203 pRgn = (PROSRGNDATA)GDIOBJ_AllocObjWithHandle(GDI_OBJECT_TYPE_REGION);
2204 if (!pRgn)
2205 {
2206 return NULL;
2207 }
2208 pRgn->Buffer = &pRgn->rdh.rcBound;
2209 REGION_SetRectRgn(pRgn, LeftRect, TopRect, RightRect, BottomRect);
2210 REGION_UnlockRgn(pRgn);
2211 return pRgn;
2212 }
2213
2214 HRGN
2215 FASTCALL
2216 IntSysCreateRectRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
2217 {
2218 PROSRGNDATA pRgn = IntSysCreateRectpRgn(LeftRect,TopRect,RightRect,BottomRect);
2219 return (pRgn ? pRgn->BaseObject.hHmgr : NULL);
2220 }
2221
2222 BOOL INTERNAL_CALL
2223 REGION_Cleanup(PVOID ObjectBody)
2224 {
2225 PROSRGNDATA pRgn = (PROSRGNDATA)ObjectBody;
2226 if (pRgn->Buffer && pRgn->Buffer != &pRgn->rdh.rcBound)
2227 ExFreePoolWithTag(pRgn->Buffer, TAG_REGION);
2228 return TRUE;
2229 }
2230
2231 // use REGION_FreeRgnByHandle(hRgn); for systems regions.
2232 VOID FASTCALL
2233 REGION_Delete(PROSRGNDATA pRgn)
2234 {
2235 if ( pRgn == prgnDefault) return;
2236 REGION_FreeRgn(pRgn);
2237 }
2238
2239 VOID FASTCALL
2240 IntGdiReleaseRaoRgn(PDC pDC)
2241 {
2242 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2243 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2244 pDC->fs |= DC_FLAG_DIRTY_RAO;
2245 Entry->Flags |= GDI_ENTRY_VALIDATE_VIS;
2246 RECTL_vSetEmptyRect(&pDC->erclClip);
2247 }
2248
2249 VOID FASTCALL
2250 IntGdiReleaseVisRgn(PDC pDC)
2251 {
2252 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2253 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2254 pDC->fs |= DC_FLAG_DIRTY_RAO;
2255 Entry->Flags |= GDI_ENTRY_VALIDATE_VIS;
2256 RECTL_vSetEmptyRect(&pDC->erclClip);
2257 REGION_Delete(pDC->prgnVis);
2258 pDC->prgnVis = prgnDefault;
2259 }
2260
2261 VOID FASTCALL
2262 IntUpdateVisRectRgn(PDC pDC, PROSRGNDATA pRgn)
2263 {
2264 INT Index = GDI_HANDLE_GET_INDEX(pDC->BaseObject.hHmgr);
2265 PGDI_TABLE_ENTRY Entry = &GdiHandleTable->Entries[Index];
2266 PDC_ATTR pdcattr;
2267 RECTL rcl;
2268
2269 if (Entry->Flags & GDI_ENTRY_VALIDATE_VIS)
2270 {
2271 pdcattr = pDC->pdcattr;
2272
2273 pdcattr->VisRectRegion.Flags = REGION_Complexity(pRgn);
2274
2275 if (pRgn && pdcattr->VisRectRegion.Flags != NULLREGION)
2276 {
2277 rcl.left = pRgn->rdh.rcBound.left;
2278 rcl.top = pRgn->rdh.rcBound.top;
2279 rcl.right = pRgn->rdh.rcBound.right;
2280 rcl.bottom = pRgn->rdh.rcBound.bottom;
2281
2282 rcl.left -= pDC->erclWindow.left;
2283 rcl.top -= pDC->erclWindow.top;
2284 rcl.right -= pDC->erclWindow.left;
2285 rcl.bottom -= pDC->erclWindow.top;
2286 }
2287 else
2288 RECTL_vSetEmptyRect(&rcl);
2289
2290 pdcattr->VisRectRegion.Rect = rcl;
2291
2292 Entry->Flags &= ~GDI_ENTRY_VALIDATE_VIS;
2293 }
2294 }
2295
2296 INT
2297 FASTCALL
2298 IntGdiCombineRgn(PROSRGNDATA destRgn,
2299 PROSRGNDATA src1Rgn,
2300 PROSRGNDATA src2Rgn,
2301 INT CombineMode)
2302 {
2303 INT result = ERROR;
2304
2305 if (destRgn)
2306 {
2307 if (src1Rgn)
2308 {
2309 if (CombineMode == RGN_COPY)
2310 {
2311 if ( !REGION_CopyRegion(destRgn, src1Rgn) )
2312 return ERROR;
2313 result = REGION_Complexity(destRgn);
2314 }
2315 else
2316 {
2317 if (src2Rgn)
2318 {
2319 switch (CombineMode)
2320 {
2321 case RGN_AND:
2322 REGION_IntersectRegion(destRgn, src1Rgn, src2Rgn);
2323 break;
2324 case RGN_OR:
2325 REGION_UnionRegion(destRgn, src1Rgn, src2Rgn);
2326 break;
2327 case RGN_XOR:
2328 REGION_XorRegion(destRgn, src1Rgn, src2Rgn);
2329 break;
2330 case RGN_DIFF:
2331 REGION_SubtractRegion(destRgn, src1Rgn, src2Rgn);
2332 break;
2333 }
2334 result = REGION_Complexity(destRgn);
2335 }
2336 else if (src2Rgn == NULL)
2337 {
2338 DPRINT1("IntGdiCombineRgn requires hSrc2 != NULL for combine mode %d!\n", CombineMode);
2339 EngSetLastError(ERROR_INVALID_HANDLE);
2340 }
2341 }
2342 }
2343 else
2344 {
2345 DPRINT("IntGdiCombineRgn: hSrc1 unavailable\n");
2346 EngSetLastError(ERROR_INVALID_HANDLE);
2347 }
2348 }
2349 else
2350 {
2351 DPRINT("IntGdiCombineRgn: hDest unavailable\n");
2352 EngSetLastError(ERROR_INVALID_HANDLE);
2353 }
2354 return result;
2355 }
2356
2357 INT FASTCALL
2358 REGION_GetRgnBox(
2359 PROSRGNDATA Rgn,
2360 PRECTL pRect
2361 )
2362 {
2363 DWORD ret;
2364
2365 if (Rgn)
2366 {
2367 *pRect = Rgn->rdh.rcBound;
2368 ret = REGION_Complexity(Rgn);
2369
2370 return ret;
2371 }
2372 return 0; //if invalid region return zero
2373 }
2374
2375 INT APIENTRY
2376 IntGdiGetRgnBox(
2377 HRGN hRgn,
2378 PRECTL pRect
2379 )
2380 {
2381 PROSRGNDATA Rgn;
2382 DWORD ret;
2383
2384 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
2385 {
2386 return ERROR;
2387 }
2388
2389 ret = REGION_GetRgnBox(Rgn, pRect);
2390 RGNOBJAPI_Unlock(Rgn);
2391
2392 return ret;
2393 }
2394
2395 BOOL
2396 FASTCALL
2397 IntGdiPaintRgn(
2398 PDC dc,
2399 HRGN hRgn
2400 )
2401 {
2402 HRGN tmpVisRgn;
2403 PROSRGNDATA visrgn;
2404 CLIPOBJ* ClipRegion;
2405 BOOL bRet = FALSE;
2406 POINTL BrushOrigin;
2407 SURFACE *psurf;
2408 PDC_ATTR pdcattr;
2409
2410 if (!dc) return FALSE;
2411 pdcattr = dc->pdcattr;
2412
2413 ASSERT(!(pdcattr->ulDirty_ & (DIRTY_FILL | DC_BRUSH_DIRTY)));
2414
2415 if (!(tmpVisRgn = IntSysCreateRectRgn(0, 0, 0, 0))) return FALSE;
2416
2417 // Transform region into device co-ords
2418 if (!REGION_LPTODP(dc, tmpVisRgn, hRgn) ||
2419 NtGdiOffsetRgn(tmpVisRgn, dc->ptlDCOrig.x, dc->ptlDCOrig.y) == ERROR)
2420 {
2421 REGION_FreeRgnByHandle(tmpVisRgn);
2422 return FALSE;
2423 }
2424
2425 NtGdiCombineRgn(tmpVisRgn, tmpVisRgn, dc->rosdc.hGCClipRgn, RGN_AND);
2426
2427 visrgn = RGNOBJAPI_Lock(tmpVisRgn, NULL);
2428 if (visrgn == NULL)
2429 {
2430 REGION_FreeRgnByHandle(tmpVisRgn);
2431 return FALSE;
2432 }
2433
2434 ClipRegion = IntEngCreateClipRegion(visrgn->rdh.nCount,
2435 visrgn->Buffer,
2436 &visrgn->rdh.rcBound );
2437 ASSERT(ClipRegion);
2438
2439 BrushOrigin.x = pdcattr->ptlBrushOrigin.x;
2440 BrushOrigin.y = pdcattr->ptlBrushOrigin.y;
2441 psurf = dc->dclevel.pSurface;
2442 /* FIXME - Handle psurf == NULL !!!! */
2443
2444 bRet = IntEngPaint(&psurf->SurfObj,
2445 ClipRegion,
2446 &dc->eboFill.BrushObject,
2447 &BrushOrigin,
2448 0xFFFF);//FIXME:don't know what to put here
2449
2450 RGNOBJAPI_Unlock(visrgn);
2451 REGION_FreeRgnByHandle(tmpVisRgn);
2452
2453 // Fill the region
2454 return bRet;
2455 }
2456
2457 BOOL
2458 FASTCALL
2459 REGION_RectInRegion(
2460 PROSRGNDATA Rgn,
2461 const RECTL *rect
2462 )
2463 {
2464 PRECTL pCurRect, pRectEnd;
2465 RECT rc;
2466
2467 /* swap the coordinates to make right >= left and bottom >= top */
2468 /* (region building rectangles are normalized the same way) */
2469 if( rect->top > rect->bottom) {
2470 rc.top = rect->bottom;
2471 rc.bottom = rect->top;
2472 } else {
2473 rc.top = rect->top;
2474 rc.bottom = rect->bottom;
2475 }
2476 if( rect->right < rect->left) {
2477 rc.right = rect->left;
2478 rc.left = rect->right;
2479 } else {
2480 rc.right = rect->right;
2481 rc.left = rect->left;
2482 }
2483
2484 /* this is (just) a useful optimization */
2485 if ((Rgn->rdh.nCount > 0) && EXTENTCHECK(&Rgn->rdh.rcBound, &rc))
2486 {
2487 for (pCurRect = Rgn->Buffer, pRectEnd = pCurRect +
2488 Rgn->rdh.nCount; pCurRect < pRectEnd; pCurRect++)
2489 {
2490 if (pCurRect->bottom <= rc.top)
2491 continue; /* not far enough down yet */
2492
2493 if (pCurRect->top >= rc.bottom)
2494 break; /* too far down */
2495
2496 if (pCurRect->right <= rc.left)
2497 continue; /* not far enough over yet */
2498
2499 if (pCurRect->left >= rc.right) {
2500 continue;
2501 }
2502
2503 return TRUE;
2504 }
2505 }
2506 return FALSE;
2507 }
2508
2509 VOID
2510 FASTCALL
2511 REGION_SetRectRgn(
2512 PROSRGNDATA rgn,
2513 INT LeftRect,
2514 INT TopRect,
2515 INT RightRect,
2516 INT BottomRect
2517 )
2518 {
2519 PRECTL firstRect;
2520
2521 if (LeftRect > RightRect)
2522 {
2523 INT tmp = LeftRect;
2524 LeftRect = RightRect;
2525 RightRect = tmp;
2526 }
2527 if (TopRect > BottomRect)
2528 {
2529 INT tmp = TopRect;
2530 TopRect = BottomRect;
2531 BottomRect = tmp;
2532 }
2533
2534 if ((LeftRect != RightRect) && (TopRect != BottomRect))
2535 {
2536 firstRect = rgn->Buffer;
2537 ASSERT(firstRect);
2538 firstRect->left = rgn->rdh.rcBound.left = LeftRect;
2539 firstRect->top = rgn->rdh.rcBound.top = TopRect;
2540 firstRect->right = rgn->rdh.rcBound.right = RightRect;
2541 firstRect->bottom = rgn->rdh.rcBound.bottom = BottomRect;
2542 rgn->rdh.nCount = 1;
2543 rgn->rdh.iType = RDH_RECTANGLES;
2544 }
2545 else
2546 {
2547 EMPTY_REGION(rgn);
2548 }
2549 }
2550
2551 INT
2552 FASTCALL
2553 IntGdiOffsetRgn(
2554 PROSRGNDATA rgn,
2555 INT XOffset,
2556 INT YOffset )
2557 {
2558 if (XOffset || YOffset)
2559 {
2560 int nbox = rgn->rdh.nCount;
2561 PRECTL pbox = rgn->Buffer;
2562
2563 if (nbox && pbox)
2564 {
2565 while (nbox--)
2566 {
2567 pbox->left += XOffset;
2568 pbox->right += XOffset;
2569 pbox->top += YOffset;
2570 pbox->bottom += YOffset;
2571 pbox++;
2572 }
2573 if (rgn->Buffer != &rgn->rdh.rcBound)
2574 {
2575 rgn->rdh.rcBound.left += XOffset;
2576 rgn->rdh.rcBound.right += XOffset;
2577 rgn->rdh.rcBound.top += YOffset;
2578 rgn->rdh.rcBound.bottom += YOffset;
2579 }
2580 }
2581 }
2582 return REGION_Complexity(rgn);
2583 }
2584
2585 /***********************************************************************
2586 * REGION_InsertEdgeInET
2587 *
2588 * Insert the given edge into the edge table.
2589 * First we must find the correct bucket in the
2590 * Edge table, then find the right slot in the
2591 * bucket. Finally, we can insert it.
2592 *
2593 */
2594 static void FASTCALL
2595 REGION_InsertEdgeInET(
2596 EdgeTable *ET,
2597 EdgeTableEntry *ETE,
2598 INT scanline,
2599 ScanLineListBlock **SLLBlock,
2600 INT *iSLLBlock
2601 )
2602 {
2603 EdgeTableEntry *start, *prev;
2604 ScanLineList *pSLL, *pPrevSLL;
2605 ScanLineListBlock *tmpSLLBlock;
2606
2607 /*
2608 * find the right bucket to put the edge into
2609 */
2610 pPrevSLL = &ET->scanlines;
2611 pSLL = pPrevSLL->next;
2612 while (pSLL && (pSLL->scanline < scanline))
2613 {
2614 pPrevSLL = pSLL;
2615 pSLL = pSLL->next;
2616 }
2617
2618 /*
2619 * reassign pSLL (pointer to ScanLineList) if necessary
2620 */
2621 if ((!pSLL) || (pSLL->scanline > scanline))
2622 {
2623 if (*iSLLBlock > SLLSPERBLOCK-1)
2624 {
2625 tmpSLLBlock = ExAllocatePoolWithTag(PagedPool, sizeof(ScanLineListBlock), TAG_REGION);
2626 if (!tmpSLLBlock)
2627 {
2628 DPRINT1("REGION_InsertEdgeInETL(): Can't alloc SLLB\n");
2629 /* FIXME - free resources? */
2630 return;
2631 }
2632 (*SLLBlock)->next = tmpSLLBlock;
2633 tmpSLLBlock->next = (ScanLineListBlock *)NULL;
2634 *SLLBlock = tmpSLLBlock;
2635 *iSLLBlock = 0;
2636 }
2637 pSLL = &((*SLLBlock)->SLLs[(*iSLLBlock)++]);
2638
2639 pSLL->next = pPrevSLL->next;
2640 pSLL->edgelist = (EdgeTableEntry *)NULL;
2641 pPrevSLL->next = pSLL;
2642 }
2643 pSLL->scanline = scanline;
2644
2645 /*
2646 * now insert the edge in the right bucket
2647 */
2648 prev = (EdgeTableEntry *)NULL;
2649 start = pSLL->edgelist;
2650 while (start && (start->bres.minor_axis < ETE->bres.minor_axis))
2651 {
2652 prev = start;
2653 start = start->next;
2654 }
2655 ETE->next = start;
2656
2657 if (prev)
2658 prev->next = ETE;
2659 else
2660 pSLL->edgelist = ETE;
2661 }
2662
2663 /***********************************************************************
2664 * REGION_loadAET
2665 *
2666 * This routine moves EdgeTableEntries from the
2667 * EdgeTable into the Active Edge Table,
2668 * leaving them sorted by smaller x coordinate.
2669 *
2670 */
2671 static void FASTCALL
2672 REGION_loadAET(
2673 EdgeTableEntry *AET,
2674 EdgeTableEntry *ETEs
2675 )
2676 {
2677 EdgeTableEntry *pPrevAET;
2678 EdgeTableEntry *tmp;
2679
2680 pPrevAET = AET;
2681 AET = AET->next;
2682 while (ETEs)
2683 {
2684 while (AET && (AET->bres.minor_axis < ETEs->bres.minor_axis))
2685 {
2686 pPrevAET = AET;
2687 AET = AET->next;
2688 }
2689 tmp = ETEs->next;
2690 ETEs->next = AET;
2691 if (AET)
2692 AET->back = ETEs;
2693 ETEs->back = pPrevAET;
2694 pPrevAET->next = ETEs;
2695 pPrevAET = ETEs;
2696
2697 ETEs = tmp;
2698 }
2699 }
2700
2701 /***********************************************************************
2702 * REGION_computeWAET
2703 *
2704 * This routine links the AET by the
2705 * nextWETE (winding EdgeTableEntry) link for
2706 * use by the winding number rule. The final
2707 * Active Edge Table (AET) might look something
2708 * like:
2709 *
2710 * AET
2711 * ---------- --------- ---------
2712 * |ymax | |ymax | |ymax |
2713 * | ... | |... | |... |
2714 * |next |->|next |->|next |->...
2715 * |nextWETE| |nextWETE| |nextWETE|
2716 * --------- --------- ^--------
2717 * | | |
2718 * V-------------------> V---> ...
2719 *
2720 */
2721 static void FASTCALL
2722 REGION_computeWAET(EdgeTableEntry *AET)
2723 {
2724 register EdgeTableEntry *pWETE;
2725 register int inside = 1;
2726 register int isInside = 0;
2727
2728 AET->nextWETE = (EdgeTableEntry *)NULL;
2729 pWETE = AET;
2730 AET = AET->next;
2731 while (AET)
2732 {
2733 if (AET->ClockWise)
2734 isInside++;
2735 else
2736 isInside--;
2737
2738 if ( (!inside && !isInside) ||
2739 ( inside && isInside) )
2740 {
2741 pWETE->nextWETE = AET;
2742 pWETE = AET;
2743 inside = !inside;
2744 }
2745 AET = AET->next;
2746 }
2747 pWETE->nextWETE = (EdgeTableEntry *)NULL;
2748 }
2749
2750 /***********************************************************************
2751 * REGION_InsertionSort
2752 *
2753 * Just a simple insertion sort using
2754 * pointers and back pointers to sort the Active
2755 * Edge Table.
2756 *
2757 */
2758 static BOOL FASTCALL
2759 REGION_InsertionSort(EdgeTableEntry *AET)
2760 {
2761 EdgeTableEntry *pETEchase;
2762 EdgeTableEntry *pETEinsert;
2763 EdgeTableEntry *pETEchaseBackTMP;
2764 BOOL changed = FALSE;
2765
2766 AET = AET->next;
2767 while (AET)
2768 {
2769 pETEinsert = AET;
2770 pETEchase = AET;
2771 while (pETEchase->back->bres.minor_axis > AET->bres.minor_axis)
2772 pETEchase = pETEchase->back;
2773
2774 AET = AET->next;
2775 if (pETEchase != pETEinsert)
2776 {
2777 pETEchaseBackTMP = pETEchase->back;
2778 pETEinsert->back->next = AET;
2779 if (AET)
2780 AET->back = pETEinsert->back;
2781 pETEinsert->next = pETEchase;
2782 pETEchase->back->next = pETEinsert;
2783 pETEchase->back = pETEinsert;
2784 pETEinsert->back = pETEchaseBackTMP;
2785 changed = TRUE;
2786 }
2787 }
2788 return changed;
2789 }
2790
2791 /***********************************************************************
2792 * REGION_FreeStorage
2793 *
2794 * Clean up our act.
2795 */
2796 static void FASTCALL
2797 REGION_FreeStorage(ScanLineListBlock *pSLLBlock)
2798 {
2799 ScanLineListBlock *tmpSLLBlock;
2800
2801 while (pSLLBlock)
2802 {
2803 tmpSLLBlock = pSLLBlock->next;
2804 ExFreePool(pSLLBlock);
2805 pSLLBlock = tmpSLLBlock;
2806 }
2807 }
2808
2809
2810 /***********************************************************************
2811 * REGION_PtsToRegion
2812 *
2813 * Create an array of rectangles from a list of points.
2814 */
2815 static int FASTCALL
2816 REGION_PtsToRegion(
2817 int numFullPtBlocks,
2818 int iCurPtBlock,
2819 POINTBLOCK *FirstPtBlock,
2820 ROSRGNDATA *reg)
2821 {
2822 RECTL *rects;
2823 POINT *pts;
2824 POINTBLOCK *CurPtBlock;
2825 int i;
2826 RECTL *extents, *temp;
2827 INT numRects;
2828
2829 extents = &reg->rdh.rcBound;
2830
2831 numRects = ((numFullPtBlocks * NUMPTSTOBUFFER) + iCurPtBlock) >> 1;
2832
2833 if (!(temp = ExAllocatePoolWithTag(PagedPool, numRects * sizeof(RECT), TAG_REGION)))
2834 {
2835 return 0;
2836 }
2837 if (reg->Buffer != NULL)
2838 {
2839 COPY_RECTS(temp, reg->Buffer, reg->rdh.nCount);
2840 if (reg->Buffer != &reg->rdh.rcBound)
2841 ExFreePoolWithTag(reg->Buffer, TAG_REGION);
2842 }
2843 reg->Buffer = temp;
2844
2845 reg->rdh.nCount = numRects;
2846 CurPtBlock = FirstPtBlock;
2847 rects = reg->Buffer - 1;
2848 numRects = 0;
2849 extents->left = LARGE_COORDINATE, extents->right = SMALL_COORDINATE;
2850
2851 for ( ; numFullPtBlocks >= 0; numFullPtBlocks--)
2852 {
2853 /* the loop uses 2 points per iteration */
2854 i = NUMPTSTOBUFFER >> 1;
2855 if (!numFullPtBlocks)
2856 i = iCurPtBlock >> 1;
2857 for (pts = CurPtBlock->pts; i--; pts += 2)
2858 {
2859 if (pts->x == pts[1].x)
2860 continue;
2861 if (numRects && pts->x == rects->left && pts->y == rects->bottom &&
2862 pts[1].x == rects->right &&
2863 (numRects == 1 || rects[-1].top != rects->top) &&
2864 (i && pts[2].y > pts[1].y))
2865 {
2866 rects->bottom = pts[1].y + 1;
2867 continue;
2868 }
2869 numRects++;
2870 rects++;
2871 rects->left = pts->x;
2872 rects->top = pts->y;
2873 rects->right = pts[1].x;
2874 rects->bottom = pts[1].y + 1;
2875 if (rects->left < extents->left)
2876 extents->left = rects->left;
2877 if (rects->right > extents->right)
2878 extents->right = rects->right;
2879 }
2880 CurPtBlock = CurPtBlock->next;
2881 }
2882
2883 if (numRects)
2884 {
2885 extents->top = reg->Buffer->top;
2886 extents->bottom = rects->bottom;
2887 }
2888 else
2889 {
2890 extents->left = 0;
2891 extents->top = 0;
2892 extents->right = 0;
2893 extents->bottom = 0;
2894 }
2895 reg->rdh.nCount = numRects;
2896
2897 return(TRUE);
2898 }
2899
2900 /***********************************************************************
2901 * REGION_CreateEdgeTable
2902 *
2903 * This routine creates the edge table for
2904 * scan converting polygons.
2905 * The Edge Table (ET) looks like:
2906 *
2907 * EdgeTable
2908 * --------
2909 * | ymax | ScanLineLists
2910 * |scanline|-->------------>-------------->...
2911 * -------- |scanline| |scanline|
2912 * |edgelist| |edgelist|
2913 * --------- ---------
2914 * | |
2915 * | |
2916 * V V
2917 * list of ETEs list of ETEs
2918 *
2919 * where ETE is an EdgeTableEntry data structure,
2920 * and there is one ScanLineList per scanline at
2921 * which an edge is initially entered.
2922 *
2923 */
2924 static void FASTCALL
2925 REGION_CreateETandAET(
2926 const ULONG *Count,
2927 INT nbpolygons,
2928 const POINT *pts,
2929 EdgeTable *ET,
2930 EdgeTableEntry *AET,
2931 EdgeTableEntry *pETEs,
2932 ScanLineListBlock *pSLLBlock
2933 )
2934 {
2935 const POINT *top, *bottom;
2936 const POINT *PrevPt, *CurrPt, *EndPt;
2937 INT poly, count;
2938 int iSLLBlock = 0;
2939 int dy;
2940
2941
2942 /*
2943 * initialize the Active Edge Table
2944 */
2945 AET->next = (EdgeTableEntry *)NULL;
2946 AET->back = (EdgeTableEntry *)NULL;
2947 AET->nextWETE = (EdgeTableEntry *)NULL;
2948 AET->bres.minor_axis = SMALL_COORDINATE;
2949
2950 /*
2951 * initialize the Edge Table.
2952 */
2953 ET->scanlines.next = (ScanLineList *)NULL;
2954 ET->ymax = SMALL_COORDINATE;
2955 ET->ymin = LARGE_COORDINATE;
2956 pSLLBlock->next = (ScanLineListBlock *)NULL;
2957
2958 EndPt = pts - 1;
2959 for (poly = 0; poly < nbpolygons; poly++)
2960 {
2961 count = Count[poly];
2962 EndPt += count;
2963 if (count < 2)
2964 continue;
2965
2966 PrevPt = EndPt;
2967
2968 /*
2969 * for each vertex in the array of points.
2970 * In this loop we are dealing with two vertices at
2971 * a time -- these make up one edge of the polygon.
2972 */
2973 while (count--)
2974 {
2975 CurrPt = pts++;
2976
2977 /*
2978 * find out which point is above and which is below.
2979 */
2980 if (PrevPt->y > CurrPt->y)
2981 {
2982 bottom = PrevPt, top = CurrPt;
2983 pETEs->ClockWise = 0;
2984 }
2985 else
2986 {
2987 bottom = CurrPt, top = PrevPt;
2988 pETEs->ClockWise = 1;
2989 }
2990
2991 /*
2992 * don't add horizontal edges to the Edge table.
2993 */
2994 if (bottom->y != top->y)
2995 {
2996 pETEs->ymax = bottom->y-1;
2997 /* -1 so we don't get last scanline */
2998
2999 /*
3000 * initialize integer edge algorithm
3001 */
3002 dy = bottom->y - top->y;
3003 BRESINITPGONSTRUCT(dy, top->x, bottom->x, pETEs->bres);
3004
3005 REGION_InsertEdgeInET(ET, pETEs, top->y, &pSLLBlock,
3006 &iSLLBlock);
3007
3008 if (PrevPt->y > ET->ymax)
3009 ET->ymax = PrevPt->y;
3010 if (PrevPt->y < ET->ymin)
3011 ET->ymin = PrevPt->y;
3012 pETEs++;
3013 }
3014
3015 PrevPt = CurrPt;
3016 }
3017 }
3018 }
3019
3020 HRGN FASTCALL
3021 IntCreatePolyPolygonRgn(
3022 POINT *Pts,
3023 PULONG Count,
3024 INT nbpolygons,
3025 INT mode
3026 )
3027 {
3028 HRGN hrgn;
3029 ROSRGNDATA *region;
3030 EdgeTableEntry *pAET; /* Active Edge Table */
3031 INT y; /* current scanline */
3032 int iPts = 0; /* number of pts in buffer */
3033 EdgeTableEntry *pWETE; /* Winding Edge Table Entry*/
3034 ScanLineList *pSLL; /* current scanLineList */
3035 POINT *pts; /* output buffer */
3036 EdgeTableEntry *pPrevAET; /* ptr to previous AET */
3037 EdgeTable ET; /* header node for ET */
3038 EdgeTableEntry AET; /* header node for AET */
3039 EdgeTableEntry *pETEs; /* EdgeTableEntries pool */
3040 ScanLineListBlock SLLBlock; /* header for scanlinelist */
3041 int fixWAET = FALSE;
3042 POINTBLOCK FirstPtBlock, *curPtBlock; /* PtBlock buffers */
3043 POINTBLOCK *tmpPtBlock;
3044 int numFullPtBlocks = 0;
3045 INT poly, total;
3046
3047 if (mode == 0 || mode > 2) return 0;
3048
3049 if (!(region = REGION_AllocUserRgnWithHandle(nbpolygons)))
3050 return 0;
3051 hrgn = region->BaseObject.hHmgr;
3052
3053 /* special case a rectangle */
3054
3055 if (((nbpolygons == 1) && ((*Count == 4) ||
3056 ((*Count == 5) && (Pts[4].x == Pts[0].x) && (Pts[4].y == Pts[0].y)))) &&
3057 (((Pts[0].y == Pts[1].y) &&
3058 (Pts[1].x == Pts[2].x) &&
3059 (Pts[2].y == Pts[3].y) &&
3060 (Pts[3].x == Pts[0].x)) ||
3061 ((Pts[0].x == Pts[1].x) &&
3062 (Pts[1].y == Pts[2].y) &&
3063 (Pts[2].x == Pts[3].x) &&
3064 (Pts[3].y == Pts[0].y))))
3065 {
3066 RGNOBJAPI_Unlock(region);
3067 NtGdiSetRectRgn(hrgn, min(Pts[0].x, Pts[2].x), min(Pts[0].y, Pts[2].y),
3068 max(Pts[0].x, Pts[2].x), max(Pts[0].y, Pts[2].y));
3069 return hrgn;
3070 }
3071
3072 for (poly = total = 0; poly < nbpolygons; poly++)
3073 total += Count[poly];
3074 if (! (pETEs = ExAllocatePoolWithTag(PagedPool, sizeof(EdgeTableEntry) * total, TAG_REGION)) )
3075 {
3076 GreDeleteObject(hrgn);
3077 return 0;
3078 }
3079 pts = FirstPtBlock.pts;
3080 REGION_CreateETandAET(Count, nbpolygons, Pts, &ET, &AET, pETEs, &SLLBlock);
3081 pSLL = ET.scanlines.next;
3082 curPtBlock = &FirstPtBlock;
3083
3084 if (mode != WINDING)
3085 {
3086 /*
3087 * for each scanline
3088 */
3089 for (y = ET.ymin; y < ET.ymax; y++)
3090 {
3091 /*
3092 * Add a new edge to the active edge table when we
3093 * get to the next edge.
3094 */
3095 if (pSLL != NULL && y == pSLL->scanline)
3096 {
3097 REGION_loadAET(&AET, pSLL->edgelist);
3098 pSLL = pSLL->next;
3099 }
3100 pPrevAET = &AET;
3101 pAET = AET.next;
3102
3103 /*
3104 * for each active edge
3105 */
3106 while (pAET)
3107 {
3108 pts->x = pAET->bres.minor_axis, pts->y = y;
3109 pts++, iPts++;
3110
3111 /*
3112 * send out the buffer
3113 */
3114 if (iPts == NUMPTSTOBUFFER)
3115 {
3116 tmpPtBlock = ExAllocatePoolWithTag(PagedPool, sizeof(POINTBLOCK), TAG_REGION);
3117 if (!tmpPtBlock)
3118 {
3119 DPRINT1("Can't alloc tPB\n");
3120 ExFreePoolWithTag(pETEs, TAG_REGION);
3121 return 0;
3122 }
3123 curPtBlock->next = tmpPtBlock;
3124 curPtBlock = tmpPtBlock;
3125 pts = curPtBlock->pts;
3126 numFullPtBlocks++;
3127 iPts = 0;
3128 }
3129 EVALUATEEDGEEVENODD(pAET, pPrevAET, y);
3130 }
3131 REGION_InsertionSort(&AET);
3132 }
3133 }
3134 else
3135 {
3136 /*
3137 * for each scanline
3138 */
3139 for (y = ET.ymin; y < ET.ymax; y++)
3140 {
3141 /*
3142 * Add a new edge to the active edge table when we
3143 * get to the next edge.
3144 */
3145 if (pSLL != NULL && y == pSLL->scanline)
3146 {
3147 REGION_loadAET(&AET, pSLL->edgelist);
3148 REGION_computeWAET(&AET);
3149 pSLL = pSLL->next;
3150 }
3151 pPrevAET = &AET;
3152 pAET = AET.next;
3153 pWETE = pAET;
3154
3155 /*
3156 * for each active edge
3157 */
3158 while (pAET)
3159 {
3160 /*
3161 * add to the buffer only those edges that
3162 * are in the Winding active edge table.
3163 */
3164 if (pWETE == pAET)
3165 {
3166 pts->x = pAET->bres.minor_axis, pts->y = y;
3167 pts++, iPts++;
3168
3169 /*
3170 * send out the buffer
3171 */
3172 if (iPts == NUMPTSTOBUFFER)
3173 {
3174 tmpPtBlock = ExAllocatePoolWithTag(PagedPool,
3175 sizeof(POINTBLOCK), TAG_REGION);
3176 if (!tmpPtBlock)
3177 {
3178 DPRINT1("Can't alloc tPB\n");
3179 ExFreePoolWithTag(pETEs, TAG_REGION);
3180 GreDeleteObject(hrgn);
3181 return 0;
3182 }
3183 curPtBlock->next = tmpPtBlock;
3184 curPtBlock = tmpPtBlock;
3185 pts = curPtBlock->pts;
3186 numFullPtBlocks++;
3187 iPts = 0;
3188 }
3189 pWETE = pWETE->nextWETE;
3190 }
3191 EVALUATEEDGEWINDING(pAET, pPrevAET, y, fixWAET);
3192 }
3193
3194 /*
3195 * recompute the winding active edge table if
3196 * we just resorted or have exited an edge.
3197 */
3198 if (REGION_InsertionSort(&AET) || fixWAET)
3199 {
3200 REGION_computeWAET(&AET);
3201 fixWAET = FALSE;
3202 }
3203 }
3204 }
3205 REGION_FreeStorage(SLLBlock.next);
3206 REGION_PtsToRegion(numFullPtBlocks, iPts, &FirstPtBlock, region);
3207
3208 for (curPtBlock = FirstPtBlock.next; --numFullPtBlocks >= 0;)
3209 {
3210 tmpPtBlock = curPtBlock->next;
3211 ExFreePoolWithTag(curPtBlock, TAG_REGION);
3212 curPtBlock = tmpPtBlock;
3213 }
3214 ExFreePoolWithTag(pETEs, TAG_REGION);
3215 RGNOBJAPI_Unlock(region);
3216 return hrgn;
3217 }
3218
3219 //
3220 // NtGdi Exported Functions
3221 //
3222 INT
3223 APIENTRY
3224 NtGdiCombineRgn(HRGN hDest,
3225 HRGN hSrc1,
3226 HRGN hSrc2,
3227 INT CombineMode)
3228 {
3229 INT result = ERROR;
3230 PROSRGNDATA destRgn, src1Rgn, src2Rgn = NULL;
3231
3232 if ( CombineMode > RGN_COPY && CombineMode < RGN_AND)
3233 {
3234 EngSetLastError(ERROR_INVALID_PARAMETER);
3235 return ERROR;
3236 }
3237
3238 destRgn = RGNOBJAPI_Lock(hDest, NULL);
3239 if (!destRgn)
3240 {
3241 EngSetLastError(ERROR_INVALID_HANDLE);
3242 return ERROR;
3243 }
3244
3245 src1Rgn = RGNOBJAPI_Lock(hSrc1, NULL);
3246 if (!src1Rgn)
3247 {
3248 RGNOBJAPI_Unlock(destRgn);
3249 EngSetLastError(ERROR_INVALID_HANDLE);
3250 return ERROR;
3251 }
3252
3253 if (hSrc2)
3254 src2Rgn = RGNOBJAPI_Lock(hSrc2, NULL);
3255
3256 result = IntGdiCombineRgn( destRgn, src1Rgn, src2Rgn, CombineMode);
3257
3258 if (src2Rgn)
3259 RGNOBJAPI_Unlock(src2Rgn);
3260 RGNOBJAPI_Unlock(src1Rgn);
3261 RGNOBJAPI_Unlock(destRgn);
3262
3263 return result;
3264 }
3265
3266 HRGN
3267 APIENTRY
3268 NtGdiCreateEllipticRgn(
3269 INT Left,
3270 INT Top,
3271 INT Right,
3272 INT Bottom
3273 )
3274 {
3275 return NtGdiCreateRoundRectRgn(Left, Top, Right, Bottom,
3276 Right - Left, Bottom - Top);
3277 }
3278
3279 HRGN APIENTRY
3280 NtGdiCreateRectRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect)
3281 {
3282 PROSRGNDATA pRgn;
3283 HRGN hRgn;
3284
3285 /* Allocate region data structure with space for 1 RECTL */
3286 if (!(pRgn = REGION_AllocUserRgnWithHandle(1)))
3287 {
3288 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY);
3289 return NULL;
3290 }
3291 hRgn = pRgn->BaseObject.hHmgr;
3292
3293 REGION_SetRectRgn(pRgn, LeftRect, TopRect, RightRect, BottomRect);
3294 RGNOBJAPI_Unlock(pRgn);
3295
3296 return hRgn;
3297 }
3298
3299 HRGN
3300 APIENTRY
3301 NtGdiCreateRoundRectRgn(
3302 INT left,
3303 INT top,
3304 INT right,
3305 INT bottom,
3306 INT ellipse_width,
3307 INT ellipse_height
3308 )
3309 {
3310 PROSRGNDATA obj;
3311 HRGN hrgn;
3312 int asq, bsq, d, xd, yd;
3313 RECTL rect;
3314
3315 /* Make the dimensions sensible */
3316
3317 if (left > right)
3318 {
3319 INT tmp = left;
3320 left = right;
3321 right = tmp;
3322 }
3323 if (top > bottom)
3324 {
3325 INT tmp = top;
3326 top = bottom;
3327 bottom = tmp;
3328 }
3329
3330 ellipse_width = abs(ellipse_width);
3331 ellipse_height = abs(ellipse_height);
3332
3333 /* Check parameters */
3334
3335 if (ellipse_width > right-left) ellipse_width = right-left;
3336 if (ellipse_height > bottom-top) ellipse_height = bottom-top;
3337
3338 /* Check if we can do a normal rectangle instead */
3339
3340 if ((ellipse_width < 2) || (ellipse_height < 2))
3341 return NtGdiCreateRectRgn(left, top, right, bottom);
3342
3343 /* Create region */
3344
3345 d = (ellipse_height < 128) ? ((3 * ellipse_height) >> 2) : 64;
3346 if (!(obj = REGION_AllocUserRgnWithHandle(d))) return 0;
3347 hrgn = obj->BaseObject.hHmgr;
3348
3349 /* Ellipse algorithm, based on an article by K. Porter */
3350 /* in DDJ Graphics Programming Column, 8/89 */
3351
3352 asq = ellipse_width * ellipse_width / 4; /* a^2 */
3353 bsq = ellipse_height * ellipse_height / 4; /* b^2 */
3354 d = bsq - asq * ellipse_height / 2 + asq / 4; /* b^2 - a^2b + a^2/4 */
3355 xd = 0;
3356 yd = asq * ellipse_height; /* 2a^2b */
3357
3358 rect.left = left + ellipse_width / 2;
3359 rect.right = right - ellipse_width / 2;
3360
3361 /* Loop to draw first half of quadrant */
3362
3363 while (xd < yd)
3364 {
3365 if (d > 0) /* if nearest pixel is toward the center */
3366 {
3367 /* move toward center */
3368 rect.top = top++;
3369 rect.bottom = rect.top + 1;
3370 REGION_UnionRectWithRgn(obj, &rect);
3371 rect.top = --bottom;
3372 rect.bottom = rect.top + 1;
3373 REGION_UnionRectWithRgn(obj, &rect);
3374 yd -= 2*asq;
3375 d -= yd;
3376 }
3377 rect.left--; /* next horiz point */
3378 rect.right++;
3379 xd += 2*bsq;
3380 d += bsq + xd;
3381 }
3382 /* Loop to draw second half of quadrant */
3383
3384 d += (3 * (asq-bsq) / 2 - (xd+yd)) / 2;
3385 while (yd >= 0)
3386 {
3387 /* next vertical point */
3388 rect.top = top++;
3389 rect.bottom = rect.top + 1;
3390 REGION_UnionRectWithRgn(obj, &rect);
3391 rect.top = --bottom;
3392 rect.bottom = rect.top + 1;
3393 REGION_UnionRectWithRgn(obj, &rect);
3394 if (d < 0) /* if nearest pixel is outside ellipse */
3395 {
3396 rect.left--; /* move away from center */
3397 rect.right++;
3398 xd += 2*bsq;
3399 d += xd;
3400 }
3401 yd -= 2*asq;
3402 d += asq - yd;
3403 }
3404 /* Add the inside rectangle */
3405
3406 if (top <= bottom)
3407 {
3408 rect.top = top;
3409 rect.bottom = bottom;
3410 REGION_UnionRectWithRgn(obj, &rect);
3411 }
3412
3413 RGNOBJAPI_Unlock(obj);
3414 return hrgn;
3415 }
3416
3417 BOOL
3418 APIENTRY
3419 NtGdiEqualRgn(
3420 HRGN hSrcRgn1,
3421 HRGN hSrcRgn2
3422 )
3423 {
3424 PROSRGNDATA rgn1, rgn2;
3425 PRECTL tRect1, tRect2;
3426 ULONG i;
3427 BOOL bRet = FALSE;
3428
3429 if ( !(rgn1 = RGNOBJAPI_Lock(hSrcRgn1, NULL)) )
3430 return ERROR;
3431
3432 if ( !(rgn2 = RGNOBJAPI_Lock(hSrcRgn2, NULL)) )
3433 {
3434 RGNOBJAPI_Unlock(rgn1);
3435 return ERROR;
3436 }
3437
3438 if ( rgn1->rdh.nCount != rgn2->rdh.nCount ) goto exit;
3439
3440 if ( rgn1->rdh.nCount == 0 )
3441 {
3442 bRet = TRUE;
3443 goto exit;
3444 }
3445
3446 if ( rgn1->rdh.rcBound.left != rgn2->rdh.rcBound.left ||
3447 rgn1->rdh.rcBound.right != rgn2->rdh.rcBound.right ||
3448 rgn1->rdh.rcBound.top != rgn2->rdh.rcBound.top ||
3449 rgn1->rdh.rcBound.bottom != rgn2->rdh.rcBound.bottom )
3450 goto exit;
3451
3452 tRect1 = rgn1->Buffer;
3453 tRect2 = rgn2->Buffer;
3454
3455 if (!tRect1 || !tRect2)
3456 goto exit;
3457
3458 for (i=0; i < rgn1->rdh.nCount; i++)
3459 {
3460 if ( tRect1[i].left != tRect2[i].left ||
3461 tRect1[i].right != tRect2[i].right ||
3462 tRect1[i].top != tRect2[i].top ||
3463 tRect1[i].bottom != tRect2[i].bottom )
3464 goto exit;
3465 }
3466 bRet = TRUE;
3467
3468 exit:
3469 RGNOBJAPI_Unlock(rgn1);
3470 RGNOBJAPI_Unlock(rgn2);
3471 return bRet;
3472 }
3473
3474 HRGN
3475 APIENTRY
3476 NtGdiExtCreateRegion(
3477 OPTIONAL LPXFORM Xform,
3478 DWORD Count,
3479 LPRGNDATA RgnData
3480 )
3481 {
3482 HRGN hRgn;
3483 PROSRGNDATA Region;
3484 DWORD nCount = 0;
3485 DWORD iType = 0;
3486 DWORD dwSize = 0;
3487 NTSTATUS Status = STATUS_SUCCESS;
3488 MATRIX matrix;
3489 XFORMOBJ xo;
3490
3491 DPRINT("NtGdiExtCreateRegion\n");
3492 _SEH2_TRY
3493 {
3494 ProbeForRead(RgnData, Count, 1);
3495 nCount = RgnData->rdh.nCount;
3496 iType = RgnData->rdh.iType;
3497 dwSize = RgnData->rdh.dwSize;
3498 }
3499 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3500 {
3501 Status = _SEH2_GetExceptionCode();
3502 }
3503 _SEH2_END;
3504 if (!NT_SUCCESS(Status))
3505 {
3506 SetLastNtError(Status);
3507 return NULL;
3508 }
3509
3510 /* Check parameters, but don't set last error here */
3511 if (Count < sizeof(RGNDATAHEADER) + nCount * sizeof(RECT) ||
3512 iType != RDH_RECTANGLES ||
3513 dwSize != sizeof(RGNDATAHEADER))
3514 {
3515 return NULL;
3516 }
3517
3518 Region = REGION_AllocUserRgnWithHandle(nCount);
3519
3520 if (Region == NULL)
3521 {
3522 EngSetLastError(ERROR_NOT_ENOUGH_MEMORY);
3523 return FALSE;
3524 }
3525 hRgn = Region->BaseObject.hHmgr;
3526
3527 _SEH2_TRY
3528 {
3529 if (Xform)
3530 {
3531 ULONG ret;
3532
3533 /* Init the XFORMOBJ from the Xform struct */
3534 Status = STATUS_INVALID_PARAMETER;
3535 XFORMOBJ_vInit(&xo, &matrix);
3536 ret = XFORMOBJ_iSetXform(&xo, (XFORML*)Xform);
3537
3538 /* Check for error, also no scale and shear allowed */
3539 if (ret != DDI_ERROR && ret != GX_GENERAL)
3540 {
3541 /* Apply the coordinate transformation on the rects */
3542 if (XFORMOBJ_bApplyXform(&xo,
3543 XF_LTOL,
3544 nCount * 2,
3545 RgnData->Buffer,
3546 Region->Buffer))
3547 {
3548 Status = STATUS_SUCCESS;
3549 }
3550 }
3551 }
3552 else
3553 {
3554 /* Copy rect coordinates */
3555 RtlCopyMemory(Region->Buffer,
3556 RgnData->Buffer,
3557 nCount * sizeof(RECT));
3558 }
3559 }
3560 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3561 {
3562 Status = _SEH2_GetExceptionCode();
3563 }
3564 _SEH2_END;
3565 if (!NT_SUCCESS(Status))
3566 {
3567 EngSetLastError(ERROR_INVALID_PARAMETER);
3568 RGNOBJAPI_Unlock(Region);
3569 GreDeleteObject(hRgn);
3570 return NULL;
3571 }
3572
3573 RGNOBJAPI_Unlock(Region);
3574
3575 return hRgn;
3576 }
3577
3578 BOOL
3579 APIENTRY
3580 NtGdiFillRgn(
3581 HDC hDC,
3582 HRGN hRgn,
3583 HBRUSH hBrush
3584 )
3585 {
3586 HBRUSH oldhBrush;
3587 PROSRGNDATA rgn;
3588 PRECTL r;
3589
3590 if (NULL == (rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3591 {
3592 return FALSE;
3593 }
3594
3595 if (NULL == (oldhBrush = NtGdiSelectBrush(hDC, hBrush)))
3596 {
3597 RGNOBJAPI_Unlock(rgn);
3598 return FALSE;
3599 }
3600
3601 for (r = rgn->Buffer; r < rgn->Buffer + rgn->rdh.nCount; r++)
3602 {
3603 NtGdiPatBlt(hDC, r->left, r->top, r->right - r->left, r->bottom - r->top, PATCOPY);
3604 }
3605
3606 RGNOBJAPI_Unlock(rgn);
3607 NtGdiSelectBrush(hDC, oldhBrush);
3608
3609 return TRUE;
3610 }
3611
3612 BOOL
3613 APIENTRY
3614 NtGdiFrameRgn(
3615 HDC hDC,
3616 HRGN hRgn,
3617 HBRUSH hBrush,
3618 INT Width,
3619 INT Height
3620 )
3621 {
3622 HRGN FrameRgn;
3623 BOOL Ret;
3624
3625 if (!(FrameRgn = IntSysCreateRectRgn(0, 0, 0, 0)))
3626 {
3627 return FALSE;
3628 }
3629 if (!REGION_CreateFrameRgn(FrameRgn, hRgn, Width, Height))
3630 {
3631 REGION_FreeRgnByHandle(FrameRgn);
3632 return FALSE;
3633 }
3634
3635 Ret = NtGdiFillRgn(hDC, FrameRgn, hBrush);
3636
3637 REGION_FreeRgnByHandle(FrameRgn);
3638 return Ret;
3639 }
3640
3641
3642 INT APIENTRY
3643 NtGdiGetRgnBox(
3644 HRGN hRgn,
3645 PRECTL pRect
3646 )
3647 {
3648 PROSRGNDATA Rgn;
3649 RECTL SafeRect;
3650 DWORD ret;
3651 NTSTATUS Status = STATUS_SUCCESS;
3652
3653 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3654 {
3655 return ERROR;
3656 }
3657
3658 ret = REGION_GetRgnBox(Rgn, &SafeRect);
3659 RGNOBJAPI_Unlock(Rgn);
3660 if (ERROR == ret)
3661 {
3662 return ret;
3663 }
3664
3665 _SEH2_TRY
3666 {
3667 ProbeForWrite(pRect, sizeof(RECT), 1);
3668 *pRect = SafeRect;
3669 }
3670 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3671 {
3672 Status = _SEH2_GetExceptionCode();
3673 }
3674 _SEH2_END;
3675 if (!NT_SUCCESS(Status))
3676 {
3677 return ERROR;
3678 }
3679
3680 return ret;
3681 }
3682
3683 BOOL
3684 APIENTRY
3685 NtGdiInvertRgn(
3686 HDC hDC,
3687 HRGN hRgn
3688 )
3689 {
3690 PROSRGNDATA RgnData;
3691 ULONG i;
3692 PRECTL rc;
3693
3694 if (!(RgnData = RGNOBJAPI_Lock(hRgn, NULL)))
3695 {
3696 EngSetLastError(ERROR_INVALID_HANDLE);
3697 return FALSE;
3698 }
3699
3700 rc = RgnData->Buffer;
3701 for (i = 0; i < RgnData->rdh.nCount; i++)
3702 {
3703
3704 if (!NtGdiPatBlt(hDC, rc->left, rc->top, rc->right - rc->left, rc->bottom - rc->top, DSTINVERT))
3705 {
3706 RGNOBJAPI_Unlock(RgnData);
3707 return FALSE;
3708 }
3709 rc++;
3710 }
3711
3712 RGNOBJAPI_Unlock(RgnData);
3713 return TRUE;
3714 }
3715
3716 INT
3717 APIENTRY
3718 NtGdiOffsetRgn(
3719 HRGN hRgn,
3720 INT XOffset,
3721 INT YOffset
3722 )
3723 {
3724 PROSRGNDATA rgn = RGNOBJAPI_Lock(hRgn, NULL);
3725 INT ret;
3726
3727 DPRINT("NtGdiOffsetRgn: hRgn %d Xoffs %d Yoffs %d rgn %x\n", hRgn, XOffset, YOffset, rgn );
3728
3729 if (!rgn)
3730 {
3731 DPRINT("NtGdiOffsetRgn: hRgn error\n");
3732 return ERROR;
3733 }
3734
3735 ret = IntGdiOffsetRgn(rgn, XOffset, YOffset);
3736
3737 RGNOBJAPI_Unlock(rgn);
3738 return ret;
3739 }
3740
3741 BOOL
3742 APIENTRY
3743 NtGdiPtInRegion(
3744 HRGN hRgn,
3745 INT X,
3746 INT Y
3747 )
3748 {
3749 PROSRGNDATA rgn;
3750 ULONG i;
3751 PRECTL r;
3752
3753 if (!(rgn = RGNOBJAPI_Lock(hRgn, NULL) ) )
3754 return FALSE;
3755
3756 if (rgn->rdh.nCount > 0 && INRECT(rgn->rdh.rcBound, X, Y))
3757 {
3758 r = rgn->Buffer;
3759 for (i = 0; i < rgn->rdh.nCount; i++)
3760 {
3761 if (INRECT(*r, X, Y))
3762 {
3763 RGNOBJAPI_Unlock(rgn);
3764 return TRUE;
3765 }
3766 r++;
3767 }
3768 }
3769 RGNOBJAPI_Unlock(rgn);
3770 return FALSE;
3771 }
3772
3773 BOOL
3774 APIENTRY
3775 NtGdiRectInRegion(
3776 HRGN hRgn,
3777 LPRECTL unsaferc
3778 )
3779 {
3780 PROSRGNDATA Rgn;
3781 RECTL rc = {0};
3782 BOOL Ret;
3783 NTSTATUS Status = STATUS_SUCCESS;
3784
3785 if (!(Rgn = RGNOBJAPI_Lock(hRgn, NULL)))
3786 {
3787 return ERROR;
3788 }
3789
3790 _SEH2_TRY
3791 {
3792 ProbeForRead(unsaferc, sizeof(RECT), 1);
3793 rc = *unsaferc;
3794 }
3795 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3796 {
3797 Status = _SEH2_GetExceptionCode();
3798 }
3799 _SEH2_END;
3800
3801 if (!NT_SUCCESS(Status))
3802 {
3803 RGNOBJAPI_Unlock(Rgn);
3804 SetLastNtError(Status);
3805 DPRINT1("NtGdiRectInRegion: bogus rc\n");
3806 return ERROR;
3807 }
3808
3809 Ret = REGION_RectInRegion(Rgn, &rc);
3810 RGNOBJAPI_Unlock(Rgn);
3811 return Ret;
3812 }
3813
3814 BOOL
3815 APIENTRY
3816 NtGdiSetRectRgn(
3817 HRGN hRgn,
3818 INT LeftRect,
3819 INT TopRect,
3820 INT RightRect,
3821 INT BottomRect
3822 )
3823 {
3824 PROSRGNDATA rgn;
3825
3826 if ( !(rgn = RGNOBJAPI_Lock(hRgn, NULL)) )
3827 {
3828 return 0; //per documentation
3829 }
3830
3831 REGION_SetRectRgn(rgn, LeftRect, TopRect, RightRect, BottomRect);
3832
3833 RGNOBJAPI_Unlock(rgn);
3834 return TRUE;
3835 }
3836
3837 HRGN APIENTRY
3838 NtGdiUnionRectWithRgn(
3839 HRGN hDest,
3840 const RECTL *UnsafeRect
3841 )
3842 {
3843 RECTL SafeRect = {0};
3844 PROSRGNDATA Rgn;
3845 NTSTATUS Status = STATUS_SUCCESS;
3846
3847 if (!(Rgn = RGNOBJAPI_Lock(hDest, NULL)))
3848 {
3849 EngSetLastError(ERROR_INVALID_HANDLE);
3850 return NULL;
3851 }
3852
3853 _SEH2_TRY
3854 {
3855 ProbeForRead(UnsafeRect, sizeof(RECT), 1);
3856 SafeRect = *UnsafeRect;
3857 }
3858 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3859 {
3860 Status = _SEH2_GetExceptionCode();
3861 }
3862 _SEH2_END;
3863
3864 if (! NT_SUCCESS(Status))
3865 {
3866 RGNOBJAPI_Unlock(Rgn);
3867 SetLastNtError(Status);
3868 return NULL;
3869 }
3870
3871 REGION_UnionRectWithRgn(Rgn, &SafeRect);
3872 RGNOBJAPI_Unlock(Rgn);
3873 return hDest;
3874 }
3875
3876 /*!
3877 * MSDN: GetRegionData, Return Values:
3878 *
3879 * "If the function succeeds and dwCount specifies an adequate number of bytes,
3880 * the return value is always dwCount. If dwCount is too small or the function
3881 * fails, the return value is 0. If lpRgnData is NULL, the return value is the
3882 * required number of bytes.
3883 *
3884 * If the function fails, the return value is zero."
3885 */
3886 DWORD APIENTRY
3887 NtGdiGetRegionData(
3888 HRGN hrgn,
3889 DWORD count,
3890 LPRGNDATA rgndata
3891 )
3892 {
3893 DWORD size;
3894 PROSRGNDATA obj = RGNOBJAPI_Lock(hrgn, NULL);
3895 NTSTATUS Status = STATUS_SUCCESS;
3896
3897 if (!obj)
3898 return 0;
3899
3900 size = obj->rdh.nCount * sizeof(RECT);
3901 if (count < (size + sizeof(RGNDATAHEADER)) || rgndata == NULL)
3902 {
3903 RGNOBJAPI_Unlock(obj);
3904 if (rgndata) /* buffer is too small, signal it by return 0 */
3905 return 0;
3906 else /* user requested buffer size with rgndata NULL */
3907 return size + sizeof(RGNDATAHEADER);
3908 }
3909
3910 _SEH2_TRY
3911 {
3912 ProbeForWrite(rgndata, count, 1);
3913 RtlCopyMemory(rgndata, &obj->rdh, sizeof(RGNDATAHEADER));
3914 RtlCopyMemory(rgndata->Buffer, obj->Buffer, size);
3915 }
3916 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
3917 {
3918 Status = _SEH2_GetExceptionCode();
3919 }
3920 _SEH2_END;
3921
3922 if (!NT_SUCCESS(Status))
3923 {
3924 SetLastNtError(Status);
3925 RGNOBJAPI_Unlock(obj);
3926 return 0;
3927 }
3928
3929 RGNOBJAPI_Unlock(obj);
3930 return size + sizeof(RGNDATAHEADER);
3931 }
3932
3933 /* EOF */