1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
// Cross-platform Region class based on the X11 region implementation. Note
// that for efficiency this code manipulates the Xlib region structure
// directly. Apart from the layout of the structure, there is one other key
// assumption made: a Region returned from XCreateRegion must always have its
// rects member allocated so that there is space for at least one rectangle.
//
#include <rfb/Region.h>
#include <assert.h>
#include <stdio.h>
extern "C" {
#include <Xregion/Xlibint.h>
#include <Xregion/Xutil.h>
#include <Xregion/Xregion.h>
}
// A _RectRegion must never be passed as a return parameter to the Xlib region
// operations. This is because for efficiency its "rects" member has not been
// allocated with Xmalloc. It is however safe to pass it as an input
// parameter.
class _RectRegion {
public:
_RectRegion(const rfb::Rect& r) {
region.rects = ®ion.extents;
region.numRects = 1;
region.extents.x1 = r.tl.x;
region.extents.y1 = r.tl.y;
region.extents.x2 = r.br.x;
region.extents.y2 = r.br.y;
region.size = 1;
if (r.is_empty())
region.numRects = 0;
}
REGION region;
};
rfb::Region::Region() {
xrgn = XCreateRegion();
assert(xrgn);
}
rfb::Region::Region(const Rect& r) {
xrgn = XCreateRegion();
assert(xrgn);
reset(r);
}
rfb::Region::Region(const rfb::Region& r) {
xrgn = XCreateRegion();
assert(xrgn);
XUnionRegion(xrgn, r.xrgn, xrgn);
}
rfb::Region::~Region() {
XDestroyRegion(xrgn);
}
rfb::Region& rfb::Region::operator=(const rfb::Region& r) {
clear();
XUnionRegion(xrgn, r.xrgn, xrgn);
return *this;
}
void rfb::Region::clear() {
xrgn->numRects = 0;
xrgn->extents.x1 = 0;
xrgn->extents.y1 = 0;
xrgn->extents.x2 = 0;
xrgn->extents.y2 = 0;
}
void rfb::Region::reset(const Rect& r) {
if (r.is_empty()) {
clear();
} else {
xrgn->numRects = 1;
xrgn->rects[0].x1 = xrgn->extents.x1 = r.tl.x;
xrgn->rects[0].y1 = xrgn->extents.y1 = r.tl.y;
xrgn->rects[0].x2 = xrgn->extents.x2 = r.br.x;
xrgn->rects[0].y2 = xrgn->extents.y2 = r.br.y;
}
}
void rfb::Region::translate(const Point& delta) {
XOffsetRegion(xrgn, delta.x, delta.y);
}
void rfb::Region::setOrderedRects(const std::vector<Rect>& rects) {
clear();
std::vector<Rect>::const_iterator i;
for (i=rects.begin(); i != rects.end(); i++) {
_RectRegion rr(*i);
XUnionRegion(xrgn, &rr.region, xrgn);
}
}
void rfb::Region::setExtentsAndOrderedRects(const ShortRect* extents,
int nRects, const ShortRect* rects)
{
if (xrgn->size < nRects)
{
BOX* prevRects = xrgn->rects;
xrgn->rects = (BOX*)Xrealloc((char*)xrgn->rects, nRects * sizeof(BOX));
if (!xrgn->rects) {
fprintf(stderr,"Xrealloc failed\n");
Xfree(prevRects);
return;
}
xrgn->size = nRects;
}
xrgn->numRects = nRects;
xrgn->extents.x1 = extents->x1;
xrgn->extents.y1 = extents->y1;
xrgn->extents.x2 = extents->x2;
xrgn->extents.y2 = extents->y2;
for (int i = 0; i < nRects; i++) {
xrgn->rects[i].x1 = rects[i].x1;
xrgn->rects[i].y1 = rects[i].y1;
xrgn->rects[i].x2 = rects[i].x2;
xrgn->rects[i].y2 = rects[i].y2;
}
}
void rfb::Region::assign_intersect(const rfb::Region& r) {
XIntersectRegion(xrgn, r.xrgn, xrgn);
}
void rfb::Region::assign_union(const rfb::Region& r) {
XUnionRegion(xrgn, r.xrgn, xrgn);
}
void rfb::Region::assign_subtract(const rfb::Region& r) {
XSubtractRegion(xrgn, r.xrgn, xrgn);
}
rfb::Region rfb::Region::intersect(const rfb::Region& r) const {
rfb::Region ret;
XIntersectRegion(xrgn, r.xrgn, ret.xrgn);
return ret;
}
rfb::Region rfb::Region::union_(const rfb::Region& r) const {
rfb::Region ret;
XUnionRegion(xrgn, r.xrgn, ret.xrgn);
return ret;
}
rfb::Region rfb::Region::subtract(const rfb::Region& r) const {
rfb::Region ret;
XSubtractRegion(xrgn, r.xrgn, ret.xrgn);
return ret;
}
bool rfb::Region::equals(const rfb::Region& r) const {
return XEqualRegion(xrgn, r.xrgn);
}
int rfb::Region::numRects() const {
return xrgn->numRects;
}
bool rfb::Region::get_rects(std::vector<Rect>* rects,
bool left2right, bool topdown, int maxArea) const
{
int nRects = xrgn->numRects;
int xInc = left2right ? 1 : -1;
int yInc = topdown ? 1 : -1;
int i = topdown ? 0 : nRects-1;
rects->clear();
rects->reserve(nRects);
while (nRects > 0) {
int firstInNextBand = i;
int nRectsInBand = 0;
while (nRects > 0 && xrgn->rects[firstInNextBand].y1 == xrgn->rects[i].y1)
{
firstInNextBand += yInc;
nRects--;
nRectsInBand++;
}
if (xInc != yInc)
i = firstInNextBand - yInc;
while (nRectsInBand > 0) {
int y = xrgn->rects[i].y1;
int h = maxArea / (xrgn->rects[i].x2 - xrgn->rects[i].x1);
if (!h) h = xrgn->rects[i].y2 - y;
do {
if (h > xrgn->rects[i].y2 - y)
h = xrgn->rects[i].y2 - y;
Rect r(xrgn->rects[i].x1, y, xrgn->rects[i].x2, y+h);
rects->push_back(r);
y += h;
} while (y < xrgn->rects[i].y2);
i += xInc;
nRectsInBand--;
}
i = firstInNextBand;
}
return !rects->empty();
}
rfb::Rect rfb::Region::get_bounding_rect() const {
return Rect(xrgn->extents.x1, xrgn->extents.y1,
xrgn->extents.x2, xrgn->extents.y2);
}
void rfb::Region::debug_print(const char* prefix) const
{
fprintf(stderr,"%s num rects %3ld extents %3d,%3d %3dx%3d\n",
prefix, xrgn->numRects, xrgn->extents.x1, xrgn->extents.y1,
xrgn->extents.x2-xrgn->extents.x1,
xrgn->extents.y2-xrgn->extents.y1);
for (int i = 0; i < xrgn->numRects; i++) {
fprintf(stderr," rect %3d,%3d %3dx%3d\n",
xrgn->rects[i].x1, xrgn->rects[i].y1,
xrgn->rects[i].x2-xrgn->rects[i].x1,
xrgn->rects[i].y2-xrgn->rects[i].y1);
}
}
|