mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Do not repeatedly compute the areas bounds
This commit is contained in:
parent
68f67425c3
commit
cdc71e2856
@ -347,7 +347,6 @@ SOURCES += src/main.cpp \
|
||||
src/data/locparser.cpp \
|
||||
src/data/slfparser.cpp \
|
||||
src/data/dem.cpp \
|
||||
src/data/polygon.cpp \
|
||||
src/map/obliquestereographic.cpp \
|
||||
src/GUI/coordinatesitem.cpp \
|
||||
src/map/rmap.cpp \
|
||||
|
@ -67,8 +67,8 @@ void AreaItem::updatePainterPath()
|
||||
{
|
||||
_painterPath = QPainterPath();
|
||||
|
||||
for (int i = 0; i < _area.size(); i++)
|
||||
_painterPath.addPath(painterPath(_area.at(i)));
|
||||
for (int i = 0; i < _area.polygons().size(); i++)
|
||||
_painterPath.addPath(painterPath(_area.polygons().at(i)));
|
||||
}
|
||||
|
||||
void AreaItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
||||
|
@ -5,48 +5,58 @@
|
||||
#include <QList>
|
||||
#include "polygon.h"
|
||||
|
||||
class Area : public QList<Polygon>
|
||||
class Area
|
||||
{
|
||||
public:
|
||||
Area() {}
|
||||
Area(const RectC &rect)
|
||||
{
|
||||
Polygon polygon;
|
||||
QVector<Coordinates> v(4);
|
||||
v[0] = Coordinates(rect.left(), rect.top());
|
||||
v[1] = Coordinates(rect.right(), rect.top());
|
||||
v[2] = Coordinates(rect.right(), rect.bottom());
|
||||
v[3] = Coordinates(rect.left(), rect.bottom());
|
||||
polygon.append(v);
|
||||
append(polygon);
|
||||
|
||||
_polygons.reserve(1);
|
||||
_polygons.append(v);
|
||||
_boundingRect = RectC(v.at(0), v.at(2));
|
||||
}
|
||||
Area(const Polygon &polygon)
|
||||
{
|
||||
_polygons.reserve(1);
|
||||
_polygons.append(polygon);
|
||||
_boundingRect = polygon.boundingRect();
|
||||
}
|
||||
|
||||
const QString& name() const {return _name;}
|
||||
const QString& description() const {return _desc;}
|
||||
void setName(const QString &name) {_name = name;}
|
||||
void setDescription(const QString &desc) {_desc = desc;}
|
||||
const QString &name() const {return _name;}
|
||||
const QString &description() const {return _desc;}
|
||||
const QList<Polygon> &polygons() const {return _polygons;}
|
||||
const RectC &boundingRect() const {return _boundingRect;}
|
||||
|
||||
bool isValid() const
|
||||
{
|
||||
if (isEmpty())
|
||||
if (_polygons.isEmpty())
|
||||
return false;
|
||||
for (int i = 0; i < size(); i++)
|
||||
if (!at(i).isValid())
|
||||
for (int i = 0; i < _polygons.size(); i++)
|
||||
if (!_polygons.at(i).isValid())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
RectC boundingRect() const
|
||||
void append(const Polygon &polygon)
|
||||
{
|
||||
RectC ret;
|
||||
for (int i = 0; i < size(); i++)
|
||||
ret |= at(i).boundingRect();
|
||||
return ret;
|
||||
_polygons.append(polygon);
|
||||
_boundingRect |= polygon.boundingRect();
|
||||
}
|
||||
|
||||
void setName(const QString &name) {_name = name;}
|
||||
void setDescription(const QString &desc) {_desc = desc;}
|
||||
|
||||
private:
|
||||
QList<Polygon> _polygons;
|
||||
QString _name;
|
||||
QString _desc;
|
||||
RectC _boundingRect;
|
||||
};
|
||||
|
||||
#endif // AREA_H
|
||||
|
@ -172,8 +172,12 @@ bool GeoJSONParser::polygon(const QJsonArray &coordinates, Area &area,
|
||||
&& properties["description"].isString())
|
||||
area.setDescription(properties["description"].toString());
|
||||
|
||||
area.append(::Polygon());
|
||||
return polygon(coordinates, area.last());
|
||||
::Polygon p;
|
||||
if (!polygon(coordinates, p))
|
||||
return false;
|
||||
area.append(p);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool GeoJSONParser::multiPolygon(const QJsonArray &coordinates,
|
||||
@ -192,9 +196,10 @@ bool GeoJSONParser::multiPolygon(const QJsonArray &coordinates,
|
||||
_errorString = "Invalid MultiPolygon coordinates";
|
||||
return false;
|
||||
} else {
|
||||
area.append(::Polygon());
|
||||
if (!polygon(coordinates.at(i).toArray(), area.last()))
|
||||
::Polygon p;
|
||||
if (!polygon(coordinates.at(i).toArray(), p))
|
||||
return false;
|
||||
area.append(p);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -293,9 +293,7 @@ void GPXParser::track(TrackData &track)
|
||||
|
||||
void GPXParser::area(Area &area)
|
||||
{
|
||||
area.append(Polygon());
|
||||
area.last().append(QVector<Coordinates>());
|
||||
QVector<Coordinates> &points = area.last().last();
|
||||
QVector<Coordinates> points;
|
||||
|
||||
while (_reader.readNextStartElement()) {
|
||||
if (_reader.name() == QLatin1String("point")) {
|
||||
@ -312,6 +310,8 @@ void GPXParser::area(Area &area)
|
||||
else
|
||||
_reader.skipCurrentElement();
|
||||
}
|
||||
|
||||
area.append(points);
|
||||
}
|
||||
|
||||
void GPXParser::gpxExtensions(QList<Area> &areas)
|
||||
|
@ -263,8 +263,7 @@ void KMLParser::boundary(QVector<Coordinates> &coordinates)
|
||||
|
||||
void KMLParser::polygon(Area &area)
|
||||
{
|
||||
area.append(Polygon());
|
||||
Polygon &polygon = area.last();
|
||||
Polygon polygon;
|
||||
|
||||
while (_reader.readNextStartElement()) {
|
||||
if (_reader.name() == QLatin1String("outerBoundaryIs")) {
|
||||
@ -284,6 +283,8 @@ void KMLParser::polygon(Area &area)
|
||||
} else
|
||||
_reader.skipCurrentElement();
|
||||
}
|
||||
|
||||
area.append(polygon);
|
||||
}
|
||||
|
||||
void KMLParser::point(Waypoint &waypoint)
|
||||
|
@ -1,15 +0,0 @@
|
||||
#include "polygon.h"
|
||||
|
||||
RectC Polygon::boundingRect() const
|
||||
{
|
||||
if (isEmpty())
|
||||
return RectC();
|
||||
if (first().size() < 3)
|
||||
return RectC();
|
||||
|
||||
RectC rect;
|
||||
for (int i = 0; i < first().size(); i++)
|
||||
rect = rect.united(first().at(i));
|
||||
|
||||
return rect;
|
||||
}
|
@ -9,9 +9,30 @@
|
||||
class Polygon : public QList<QVector<Coordinates> >
|
||||
{
|
||||
public:
|
||||
bool isValid() const {return !isEmpty() && first().size() >= 3;}
|
||||
Polygon() {}
|
||||
Polygon(const QVector<Coordinates> &c)
|
||||
{
|
||||
reserve(1);
|
||||
append(c);
|
||||
}
|
||||
|
||||
RectC boundingRect() const;
|
||||
bool isValid() const
|
||||
{
|
||||
return !isEmpty() && first().size() >= 3;
|
||||
}
|
||||
|
||||
RectC boundingRect() const
|
||||
{
|
||||
RectC rect;
|
||||
|
||||
if (isEmpty() || first().size() < 3)
|
||||
return rect;
|
||||
|
||||
for (int i = 0; i < first().size(); i++)
|
||||
rect = rect.united(first().at(i));
|
||||
|
||||
return rect;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // POLYGON_H
|
||||
|
Loading…
Reference in New Issue
Block a user