mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 04:05:53 +01:00
Martin Tůma
97e12d809f
Including several map providers refactoring/rewrite especial KML, JNX and TrekBuddy atlases.
284 lines
5.8 KiB
C++
284 lines
5.8 KiB
C++
#include <QtEndian>
|
|
#include <QPainter>
|
|
#include <QFileInfo>
|
|
#include <QPixmapCache>
|
|
#include "common/util.h"
|
|
#include "rectd.h"
|
|
#include "gcs.h"
|
|
#include "pcs.h"
|
|
#include "jnxmap.h"
|
|
|
|
|
|
#define ic2dc(x) ((x) * 180.0 / 0x7FFFFFFF)
|
|
|
|
template<class T> bool JNXMap::readValue(T &val)
|
|
{
|
|
T data;
|
|
|
|
if (_file.read((char*)&data, sizeof(T)) < (qint64)sizeof(T))
|
|
return false;
|
|
|
|
val = qFromLittleEndian(data);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool JNXMap::readString(QByteArray& ba)
|
|
{
|
|
char byte;
|
|
|
|
while (true) {
|
|
if (!_file.getChar(&byte))
|
|
return false;
|
|
else if (!byte)
|
|
return true;
|
|
else
|
|
ba += byte;
|
|
}
|
|
}
|
|
|
|
bool JNXMap::readHeader()
|
|
{
|
|
qint32 lat1, lon2, lat2, lon1;
|
|
quint32 version, dummy, levels;
|
|
|
|
if (!(readValue(version) && readValue(dummy) && readValue(lat1)
|
|
&& readValue(lon2) && readValue(lat2) && readValue(lon1)
|
|
&& readValue(levels)))
|
|
return false;
|
|
|
|
if (version < 3 || version > 4)
|
|
return false;
|
|
|
|
_bounds = RectC(Coordinates(ic2dc(lon1), ic2dc(lat1)),
|
|
Coordinates(ic2dc(lon2), ic2dc(lat2)));
|
|
if (!levels || levels > 32 || !_bounds.isValid())
|
|
return false;
|
|
|
|
if (!_file.seek(version > 3 ? 0x34 : 0x30))
|
|
return false;
|
|
|
|
QVector<Level> lh(levels);
|
|
for (int i = 0; i < lh.count(); i++) {
|
|
Level &l = lh[i];
|
|
|
|
if (!(readValue(l.count) && readValue(l.offset) && readValue(l.scale)))
|
|
return false;
|
|
if (version > 3) {
|
|
QByteArray ba;
|
|
if (!(readValue(dummy) && readString(ba)))
|
|
return false;
|
|
}
|
|
}
|
|
|
|
_zooms.reserve(lh.size());
|
|
for (int i = 0; i < lh.count(); i++)
|
|
_zooms.append(new Zoom(lh.at(i)));
|
|
|
|
return true;
|
|
}
|
|
|
|
bool JNXMap::readTiles()
|
|
{
|
|
for (int i = 0; i < _zooms.size(); i++) {
|
|
Zoom *z = _zooms[i];
|
|
|
|
if (!_file.seek(z->level.offset))
|
|
return false;
|
|
|
|
z->tiles = QVector<Tile>(z->level.count);
|
|
for (quint32 j = 0; j < z->level.count; j++) {
|
|
Tile &tile = z->tiles[j];
|
|
|
|
if (!(readValue(tile.top) && readValue(tile.right)
|
|
&& readValue(tile.bottom) && readValue(tile.left)
|
|
&& readValue(tile.width) && readValue(tile.height)
|
|
&& readValue(tile.size) && readValue(tile.offset)))
|
|
return false;
|
|
|
|
RectC llrect(Coordinates(ic2dc(tile.left), ic2dc(tile.top)),
|
|
Coordinates(ic2dc(tile.right), ic2dc(tile.bottom)));
|
|
RectD rect(_projection.ll2xy(llrect.topLeft()),
|
|
_projection.ll2xy(llrect.bottomRight()));
|
|
|
|
if (j == 0) {
|
|
ReferencePoint tl(PointD(0, 0), rect.topLeft());
|
|
ReferencePoint br(PointD(tile.width, tile.height),
|
|
rect.bottomRight());
|
|
z->transform = Transform(tl, br);
|
|
}
|
|
|
|
QRectF trect(z->transform.proj2img(rect.topLeft()),
|
|
z->transform.proj2img(rect.bottomRight()));
|
|
tile.pos = trect.topLeft();
|
|
|
|
qreal min[2], max[2];
|
|
min[0] = trect.left();
|
|
min[1] = trect.top();
|
|
max[0] = trect.right();
|
|
max[1] = trect.bottom();
|
|
z->tree.Insert(min, max, &tile);
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void JNXMap::clearTiles()
|
|
{
|
|
for (int i = 0; i < _zooms.size(); i++) {
|
|
Zoom *z = _zooms[i];
|
|
z->tiles.clear();
|
|
z->tree.RemoveAll();
|
|
}
|
|
}
|
|
|
|
JNXMap::JNXMap(const QString &fileName, QObject *parent)
|
|
: Map(fileName, parent), _file(fileName), _zoom(0), _mapRatio(1.0),
|
|
_valid(false)
|
|
{
|
|
if (!_file.open(QIODevice::ReadOnly)) {
|
|
_errorString = _file.errorString();
|
|
return;
|
|
}
|
|
|
|
if (!readHeader()) {
|
|
_errorString = "JNX file format error";
|
|
return;
|
|
}
|
|
|
|
_file.close();
|
|
|
|
_valid = true;
|
|
}
|
|
|
|
JNXMap::~JNXMap()
|
|
{
|
|
qDeleteAll(_zooms);
|
|
}
|
|
|
|
void JNXMap::load(const Projection &in, const Projection &out,
|
|
qreal deviceRatio, bool hidpi)
|
|
{
|
|
Q_UNUSED(out);
|
|
|
|
_projection = in;
|
|
_mapRatio = hidpi ? deviceRatio : 1.0;
|
|
|
|
if (_file.open(QIODevice::ReadOnly))
|
|
readTiles();
|
|
}
|
|
|
|
void JNXMap::unload()
|
|
{
|
|
_file.close();
|
|
clearTiles();
|
|
}
|
|
|
|
QPointF JNXMap::ll2xy(const Coordinates &c)
|
|
{
|
|
const Zoom *z = _zooms.at(_zoom);
|
|
return z->transform.proj2img(_projection.ll2xy(c)) / _mapRatio;
|
|
}
|
|
|
|
Coordinates JNXMap::xy2ll(const QPointF &p)
|
|
{
|
|
const Zoom *z = _zooms.at(_zoom);
|
|
return _projection.xy2ll(z->transform.img2proj(p * _mapRatio));
|
|
}
|
|
|
|
QRectF JNXMap::bounds()
|
|
{
|
|
return QRectF(ll2xy(_bounds.topLeft()), ll2xy(_bounds.bottomRight()));
|
|
}
|
|
|
|
int JNXMap::zoomFit(const QSize &size, const RectC &rect)
|
|
{
|
|
if (!rect.isValid())
|
|
_zoom = _zooms.size() - 1;
|
|
else {
|
|
for (int i = 1; i < _zooms.count(); i++) {
|
|
_zoom = i;
|
|
QRect sbr(QPoint(ll2xy(rect.topLeft()).toPoint()),
|
|
QPoint(ll2xy(rect.bottomRight()).toPoint()));
|
|
if (sbr.size().width() >= size.width() || sbr.size().height()
|
|
>= size.height()) {
|
|
_zoom--;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return _zoom;
|
|
}
|
|
|
|
int JNXMap::zoomIn()
|
|
{
|
|
_zoom = qMin(_zoom + 1, _zooms.size() - 1);
|
|
return _zoom;
|
|
}
|
|
|
|
int JNXMap::zoomOut()
|
|
{
|
|
_zoom = qMax(_zoom - 1, 0);
|
|
return _zoom;
|
|
}
|
|
|
|
QPixmap JNXMap::pixmap(const Tile *tile, QFile *file)
|
|
{
|
|
QPixmap pm;
|
|
|
|
QString key = file->fileName() + "-" + QString::number(tile->offset);
|
|
if (!QPixmapCache::find(key, &pm)) {
|
|
QByteArray ba;
|
|
ba.resize(tile->size + 2);
|
|
ba[0] = (char)0xFF;
|
|
ba[1] = (char)0xD8;
|
|
char *data = ba.data() + 2;
|
|
|
|
if (!file->seek(tile->offset))
|
|
return QPixmap();
|
|
if (!file->read(data, tile->size))
|
|
return QPixmap();
|
|
pm = QPixmap::fromImage(QImage::fromData(ba));
|
|
|
|
if (!pm.isNull())
|
|
QPixmapCache::insert(key, pm);
|
|
}
|
|
|
|
return pm;
|
|
}
|
|
|
|
bool JNXMap::cb(Tile *tile, void *context)
|
|
{
|
|
Ctx *ctx = static_cast<Ctx*>(context);
|
|
QPixmap pm(pixmap(tile, ctx->file));
|
|
pm.setDevicePixelRatio(ctx->ratio);
|
|
ctx->painter->drawPixmap(tile->pos / ctx->ratio, pm);
|
|
|
|
return true;
|
|
}
|
|
|
|
void JNXMap::draw(QPainter *painter, const QRectF &rect, Flags flags)
|
|
{
|
|
Q_UNUSED(flags);
|
|
const RTree<Tile*, qreal, 2> &tree = _zooms.at(_zoom)->tree;
|
|
Ctx ctx(painter, &_file, _mapRatio);
|
|
QRectF rr(rect.topLeft() * _mapRatio, rect.size() * _mapRatio);
|
|
|
|
qreal min[2], max[2];
|
|
min[0] = rr.left();
|
|
min[1] = rr.top();
|
|
max[0] = rr.right();
|
|
max[1] = rr.bottom();
|
|
tree.Search(min, max, cb, &ctx);
|
|
}
|
|
|
|
Map *JNXMap::create(const QString &path, bool *isDir)
|
|
{
|
|
if (isDir)
|
|
*isDir = false;
|
|
|
|
return new JNXMap(path);
|
|
}
|