1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/map/IMG/mapdata.h

114 lines
2.3 KiB
C
Raw Normal View History

2020-02-09 23:24:48 +01:00
#ifndef MAPDATA_H
#define MAPDATA_H
#include <QList>
#include <QPointF>
#include <QCache>
#include <QDebug>
#include "common/rectc.h"
#include "common/rtree.h"
#include "common/range.h"
2020-02-09 23:24:48 +01:00
#include "label.h"
#include "raster.h"
2020-02-09 23:24:48 +01:00
class Style;
class SubDiv;
class SubFile;
class VectorTile;
class MapData
{
public:
struct Poly {
/* QPointF insted of Coordinates for performance reasons (no need to
duplicate all the vectors for drawing). Note, that we do not want to
2020-11-10 20:14:59 +01:00
ll2xy() the points in the MapData class as this can not be done in
2020-02-09 23:24:48 +01:00
parallel. */
QVector<QPointF> points;
Label label;
Raster raster;
2020-02-09 23:24:48 +01:00
quint32 type;
RectC boundingRect;
bool operator<(const Poly &other) const
{return type > other.type;}
};
struct Point {
Point() : id(0) {}
Coordinates coordinates;
Label label;
quint32 type;
quint64 id;
bool operator<(const Point &other) const
{return id < other.id;}
};
MapData();
2020-02-09 23:24:48 +01:00
virtual ~MapData();
const QString &name() const {return _name;}
const RectC &bounds() const {return _bounds;}
const Range &zooms() const {return _zooms;}
2020-02-09 23:24:48 +01:00
const Style *style() const {return _style;}
void polys(const RectC &rect, int bits, QList<Poly> *polygons,
QList<Poly> *lines);
void points(const RectC &rect, int bits, QList<Point> *points);
void load();
void clear();
virtual QString fileName() const = 0;
bool isValid() const {return _valid;}
QString errorString() const {return _errorString;}
protected:
typedef RTree<VectorTile*, double, 2> TileTree;
QString _name;
RectC _bounds;
SubFile *_typ;
Style *_style;
TileTree _tileTree;
Range _zooms;
bool _baseMap;
2020-02-09 23:24:48 +01:00
bool _valid;
QString _errorString;
private:
2020-11-10 20:14:59 +01:00
struct Polys {
Polys() {}
Polys(const QList<Poly> &polygons, const QList<Poly> &lines)
: polygons(polygons), lines(lines) {}
QList<Poly> polygons;
QList<Poly> lines;
};
QCache<const SubDiv*, Polys> _polyCache;
QCache<const SubDiv*, QList<Point> > _pointCache;
2020-11-10 20:14:59 +01:00
friend class VectorTile;
friend struct PolyCTX;
2020-02-09 23:24:48 +01:00
};
#ifndef QT_NO_DEBUG
inline QDebug operator<<(QDebug dbg, const MapData::Point &point)
{
dbg.nospace() << "Point(" << point.type << ", " << point.label << ")";
2020-02-09 23:24:48 +01:00
return dbg.space();
}
inline QDebug operator<<(QDebug dbg, const MapData::Poly &poly)
{
dbg.nospace() << "Poly(" << poly.type << ", " << poly.label << ")";
2020-02-09 23:24:48 +01:00
return dbg.space();
}
#endif // QT_NO_DEBUG
#endif // MAPDATA_H