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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/*
* This code is based on Broken Sword 2.5 engine
*
* Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdoerfer
*
* Licensed under GNU GPL v2
*
*/
#include "sword25/kernel/outputpersistenceblock.h"
#include "sword25/kernel/inputpersistenceblock.h"
#include "sword25/math/polygon.h"
#include "sword25/math/line.h"
namespace Sword25 {
Polygon::Polygon() : vertexCount(0), vertices(NULL) {
}
Polygon::Polygon(int vertexCount_, const Vertex *vertices_) : vertexCount(0), vertices(NULL) {
init(vertexCount_, vertices_);
}
Polygon::Polygon(const Polygon &other) : Persistable(other), vertexCount(0), vertices(NULL) {
init(other.vertexCount, other.vertices);
}
Polygon::Polygon(InputPersistenceBlock &Reader) : vertexCount(0), vertices(NULL) {
unpersist(Reader);
}
Polygon::~Polygon() {
delete[] vertices;
}
bool Polygon::init(int vertexCount_, const Vertex *vertices_) {
// Rember the old obstate to restore it if an error occurs whilst initializing it with the new data
int oldvertexCount = this->vertexCount;
Vertex *oldvertices = this->vertices;
this->vertexCount = vertexCount_;
this->vertices = new Vertex[vertexCount_ + 1];
memcpy(this->vertices, vertices_, sizeof(Vertex) * vertexCount_);
// TODO:
// Duplicate and remove redundant vertecies (Superflous = 3 co-linear verts)
// _WeedRepeatedvertices();
// The first vertex is repeated at the end of the vertex array; this simplifies
// some algorithms, running through the edges and thus can save the overflow control.
this->vertices[vertexCount_] = this->vertices[0];
// If the polygon is self-intersecting, the object state is restore, and an error signalled
if (checkForSelfIntersection()) {
delete[] this->vertices;
this->vertices = oldvertices;
this->vertexCount = oldvertexCount;
// BS_LOG_ERROR("POLYGON: Tried to create a self-intersecting polygon.\n");
return false;
}
// Release old vertex list
delete[] oldvertices;
// Calculate properties of the polygon
_isCW = computeIsCW();
_centroid = computeCentroid();
return true;
}
// Review the order of the vertices
// ---------------------------------
bool Polygon::isCW() const {
return _isCW;
}
bool Polygon::computeIsCW() const {
if (vertexCount) {
// Find the vertex on extreme bottom right
int v2Index = findLRVertexIndex();
// Find the vertex before and after it
int v1Index = (v2Index + (vertexCount - 1)) % vertexCount;
int v3Index = (v2Index + 1) % vertexCount;
// Cross product form
// If the cross product of the vertex lying fartherest bottom left is positive,
// the vertecies arranged in a clockwise order. Otherwise counter-clockwise
if (crossProduct(vertices[v1Index], vertices[v2Index], vertices[v3Index]) >= 0)
return true;
}
return false;
}
int Polygon::findLRVertexIndex() const {
if (vertexCount) {
int curIndex = 0;
int maxX = vertices[0].x;
int maxY = vertices[0].y;
for (int i = 1; i < vertexCount; i++) {
if (vertices[i].y > maxY ||
(vertices[i].y == maxY && vertices[i].x > maxX)) {
maxX = vertices[i].x;
maxY = vertices[i].y;
curIndex = i;
}
}
return curIndex;
}
return -1;
}
// Make a determine vertex order
// -----------------------------
void Polygon::ensureCWOrder() {
if (!isCW())
reverseVertexOrder();
}
// Reverse the order of vertecies
// ------------------------------
void Polygon::reverseVertexOrder() {
// vertices are exchanged in pairs, until the list has been completely reversed
for (int i = 0; i < vertexCount / 2; i++) {
Vertex tempVertex = vertices[i];
vertices[i] = vertices[vertexCount - i - 1];
vertices[vertexCount - i - 1] = tempVertex;
}
// Vertexordnung neu berechnen.
_isCW = computeIsCW();
}
// Cross Product
// -------------
int Polygon::crossProduct(const Vertex &v1, const Vertex &v2, const Vertex &v3) const {
return (v2.x - v1.x) * (v3.y - v2.y) -
(v2.y - v1.y) * (v3.x - v2.x);
}
// Check for self-intersections
// ----------------------------
bool Polygon::checkForSelfIntersection() const {
// TODO: Finish this
/*
float AngleSum = 0.0f;
for (int i = 0; i < vertexCount; i++) {
int j = (i + 1) % vertexCount;
int k = (i + 2) % vertexCount;
float Dot = DotProduct(vertices[i], vertices[j], vertices[k]);
// Skalarproduct normalisieren
float Length1 = sqrt((vertices[i].x - vertices[j].x) * (vertices[i].x - vertices[j].x) +
(vertices[i].y - vertices[j].y) * (vertices[i].y - vertices[j].y));
float Length2 = sqrt((vertices[k].x - vertices[j].x) * (vertices[k].x - vertices[j].x) +
(vertices[k].y - vertices[j].y) * (vertices[k].y - vertices[j].y));
float Norm = Length1 * Length2;
if (Norm > 0.0f) {
Dot /= Norm;
AngleSum += acos(Dot);
}
}
*/
return false;
}
// Move
// ----
void Polygon::operator+=(const Vertex &delta) {
// Move all vertecies
for (int i = 0; i < vertexCount; i++)
vertices[i] += delta;
// Shift the focus
_centroid += delta;
}
// Line of Sight
// -------------
bool Polygon::isLineInterior(const Vertex &a, const Vertex &b) const {
// Both points have to be in the polygon
if (!isPointInPolygon(a, true) || !isPointInPolygon(b, true))
return false;
// If the points are identical, the line is trivially within the polygon
if (a == b)
return true;
// Test whether the line intersects a line segment strictly (proper intersection)
for (int i = 0; i < vertexCount; i++) {
int j = (i + 1) % vertexCount;
const Vertex &vs = vertices[i];
const Vertex &ve = vertices[j];
// If the line intersects a line segment strictly (proper cross section) the line is not in the polygon
if (Line::doesIntersectProperly(a, b, vs, ve))
return false;
// If one of the two line items is on the edge and the other is to the right of the edge,
// then the line is not completely within the polygon
if (Line::isOnLineStrict(vs, ve, a) && Line::isVertexRight(vs, ve, b))
return false;
if (Line::isOnLineStrict(vs, ve, b) && Line::isVertexRight(vs, ve, a))
return false;
// If one of the two line items is on a vertex, the line traces into the polygon
if ((a == vs) && !isLineInCone(i, b, true))
return false;
if ((b == vs) && !isLineInCone(i, a, true))
return false;
}
return true;
}
bool Polygon::isLineExterior(const Vertex &a, const Vertex &b) const {
// Neither of the two points must be strictly in the polygon (on the edge is allowed)
if (isPointInPolygon(a, false) || isPointInPolygon(b, false))
return false;
// If the points are identical, the line is trivially outside of the polygon
if (a == b)
return true;
// Test whether the line intersects a line segment strictly (proper intersection)
for (int i = 0; i < vertexCount; i++) {
int j = (i + 1) % vertexCount;
const Vertex &vs = vertices[i];
const Vertex &ve = vertices[j];
// If the line intersects a line segment strictly (proper intersection), then
// the line is partially inside the polygon
if (Line::doesIntersectProperly(a, b, vs, ve))
return false;
// If one of the two line items is on the edge and the other is to the right of the edge,
// the line is not completely outside the polygon
if (Line::isOnLineStrict(vs, ve, a) && Line::isVertexLeft(vs, ve, b))
return false;
if (Line::isOnLineStrict(vs, ve, b) && Line::isVertexLeft(vs, ve, a))
return false;
// If one of the lwo line items is on a vertex, the line must not run into the polygon
if ((a == vs) && isLineInCone(i, b, false))
return false;
if ((b == vs) && isLineInCone(i, a, false))
return false;
// If the vertex with start and end point is collinear, (a vs) and (b, vs) is not in the polygon
if (Line::isOnLine(a, b, vs)) {
if (isLineInCone(i, a, false))
return false;
if (isLineInCone(i, b, false))
return false;
}
}
return true;
}
bool Polygon::isLineInCone(int startVertexIndex, const Vertex &endVertex, bool includeEdges) const {
const Vertex &startVertex = vertices[startVertexIndex];
const Vertex &nextVertex = vertices[(startVertexIndex + 1) % vertexCount];
const Vertex &prevVertex = vertices[(startVertexIndex + vertexCount - 1) % vertexCount];
if (Line::isVertexLeftOn(prevVertex, startVertex, nextVertex)) {
if (includeEdges)
return Line::isVertexLeftOn(endVertex, startVertex, nextVertex) &&
Line::isVertexLeftOn(startVertex, endVertex, prevVertex);
else
return Line::isVertexLeft(endVertex, startVertex, nextVertex) &&
Line::isVertexLeft(startVertex, endVertex, prevVertex);
} else {
if (includeEdges)
return !(Line::isVertexLeft(endVertex, startVertex, prevVertex) &&
Line::isVertexLeft(startVertex, endVertex, nextVertex));
else
return !(Line::isVertexLeftOn(endVertex, startVertex, prevVertex) &&
Line::isVertexLeftOn(startVertex, endVertex, nextVertex));
}
}
// Point-Polygon Tests
// -------------------
bool Polygon::isPointInPolygon(int x, int y, bool borderBelongsToPolygon) const {
return isPointInPolygon(Vertex(x, y), borderBelongsToPolygon);
}
bool Polygon::isPointInPolygon(const Vertex &point, bool edgesBelongToPolygon) const {
int rcross = 0; // Number of right-side overlaps
int lcross = 0; // Number of left-side overlaps
// Each edge is checked whether it cuts the outgoing stream from the point
for (int i = 0; i < vertexCount; i++) {
const Vertex &edgeStart = vertices[i];
const Vertex &edgeEnd = vertices[(i + 1) % vertexCount];
// A vertex is a point? Then it lies on one edge of the polygon
if (point == edgeStart)
return edgesBelongToPolygon;
if ((edgeStart.y > point.y) != (edgeEnd.y > point.y)) {
int term1 = (edgeStart.x - point.x) * (edgeEnd.y - point.y) - (edgeEnd.x - point.x) * (edgeStart.y - point.y);
int term2 = (edgeEnd.y - point.y) - (edgeStart.y - edgeEnd.y);
if ((term1 > 0) == (term2 >= 0))
rcross++;
}
if ((edgeStart.y < point.y) != (edgeEnd.y < point.y)) {
int term1 = (edgeStart.x - point.x) * (edgeEnd.y - point.y) - (edgeEnd.x - point.x) * (edgeStart.y - point.y);
int term2 = (edgeEnd.y - point.y) - (edgeStart.y - edgeEnd.y);
if ((term1 < 0) == (term2 <= 0))
lcross++;
}
}
// The point is on an adge, if the number of left and right intersections have the same even numbers
if ((rcross % 2) != (lcross % 2))
return edgesBelongToPolygon;
// The point is strictly inside the polygon if and only if the number of overlaps is odd
if ((rcross % 2) == 1)
return true;
else
return false;
}
bool Polygon::persist(OutputPersistenceBlock &writer) {
writer.write(vertexCount);
for (int i = 0; i < vertexCount; ++i) {
writer.write((int32)vertices[i].x);
writer.write((int32)vertices[i].y);
}
return true;
}
bool Polygon::unpersist(InputPersistenceBlock &reader) {
int32 storedvertexCount;
reader.read(storedvertexCount);
Common::Array<Vertex> storedvertices;
for (int i = 0; i < storedvertexCount; ++i) {
int32 x, y;
reader.read(x);
reader.read(y);
storedvertices.push_back(Vertex(x, y));
}
init(storedvertexCount, &storedvertices[0]);
return reader.isGood();
}
// Main Focus
// ----------
Vertex Polygon::getCentroid() const {
return _centroid;
}
Vertex Polygon::computeCentroid() const {
// Area of the polygon is calculated
int doubleArea = 0;
for (int i = 0; i < vertexCount; ++i) {
doubleArea += vertices[i].x * vertices[i + 1].y - vertices[i + 1].x * vertices[i].y;
}
// Avoid division by zero in the next step
if (doubleArea == 0)
return Vertex();
// Calculate centroid
Vertex centroid;
for (int i = 0; i < vertexCount; ++i) {
int area = vertices[i].x * vertices[i + 1].y - vertices[i + 1].x * vertices[i].y;
centroid.x += (vertices[i].x + vertices[i + 1].x) * area;
centroid.y += (vertices[i].y + vertices[i + 1].y) * area;
}
centroid.x /= 3 * doubleArea;
centroid.y /= 3 * doubleArea;
return centroid;
}
} // End of namespace Sword25
|