1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/maplist.cpp

172 lines
4.7 KiB
C++
Raw Normal View History

#include <QFileInfo>
#include <QDir>
#include <QApplication>
#include "atlas.h"
#include "ozimap.h"
2018-05-22 22:40:15 +02:00
#include "jnxmap.h"
#include "geotiffmap.h"
2018-01-29 00:19:57 +01:00
#include "mapsource.h"
2018-09-20 07:59:47 +02:00
#include "mbtilesmap.h"
2019-03-02 16:51:14 +01:00
#include "rmap.h"
2019-05-10 18:56:19 +02:00
#include "imgmap.h"
2020-11-27 01:11:50 +01:00
#include "bsbmap.h"
2020-12-22 22:32:07 +01:00
#include "kmzmap.h"
2021-02-04 23:22:16 +01:00
#include "aqmmap.h"
#include "sqlitemap.h"
2021-04-10 15:27:40 +02:00
#include "mapsforgemap.h"
2021-06-17 21:58:25 +02:00
#include "worldfilemap.h"
2021-11-14 15:08:33 +01:00
#include "qctmap.h"
#include "invalidmap.h"
#include "maplist.h"
MapList::ParserMap MapList::parsers()
{
MapList::ParserMap map;
map.insert("tar", &Atlas::createTAR);
map.insert("tar", &OziMap::create);
map.insert("tba", &Atlas::createTBA);
map.insert("xml", &MapSource::create);
map.insert("xml", &IMGMap::createGMAP);
map.insert("img", &IMGMap::createIMG);
map.insert("jnx", &JNXMap::create);
map.insert("tif", &GeoTIFFMap::create);
map.insert("tiff", &GeoTIFFMap::create);
map.insert("mbtiles", &MBTilesMap::create);
map.insert("rmap", &RMap::create);
map.insert("rtmap", &RMap::create);
map.insert("map", &MapsforgeMap::create);
map.insert("map", &OziMap::create);
map.insert("kap", &BSBMap::create);
map.insert("kmz", &KMZMap::create);
map.insert("aqm", &AQMMap::create);
map.insert("sqlitedb", &SqliteMap::create);
map.insert("wld", &WorldFileMap::create);
map.insert("jgw", &WorldFileMap::create);
map.insert("gfw", &WorldFileMap::create);
map.insert("pgw", &WorldFileMap::create);
map.insert("tfw", &WorldFileMap::create);
map.insert("qct", &QCTMap::create);
return map;
}
MapList::ParserMap MapList::_parsers = parsers();
2021-06-17 21:58:25 +02:00
Map *MapList::loadFile(const QString &path, const Projection &proj, bool *isDir)
2017-07-27 19:47:46 +02:00
{
ParserMap::iterator it;
2018-01-14 23:46:39 +01:00
QFileInfo fi(path);
QString suffix(fi.suffix().toLower());
2020-02-09 23:24:48 +01:00
Map *map = 0;
2018-01-14 23:46:39 +01:00
if ((it = _parsers.find(suffix)) != _parsers.end()) {
while (it != _parsers.end() && it.key() == suffix) {
delete map;
map = it.value()(path, proj, isDir);
if (map->isValid())
break;
++it;
}
} else {
for (it = _parsers.begin(); it != _parsers.end(); it++) {
map = it.value()(path, proj, isDir);
if (map->isValid())
break;
else {
delete map;
map = 0;
}
2020-02-09 23:24:48 +01:00
}
}
2019-02-13 00:45:34 +01:00
return map ? map : new InvalidMap(path, "Unknown file format");
2017-07-27 19:47:46 +02:00
}
2021-06-17 21:58:25 +02:00
TreeNode<Map *> MapList::loadDir(const QString &path, const Projection &proj,
TreeNode<Map *> *parent)
2017-07-27 19:47:46 +02:00
{
QDir md(path);
md.setFilter(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);
md.setSorting(QDir::DirsLast);
QFileInfoList ml = md.entryInfoList();
TreeNode<Map*> tree(md.dirName());
for (int i = 0; i < ml.size(); i++) {
const QFileInfo &fi = ml.at(i);
QString suffix = fi.suffix().toLower();
if (fi.isDir()) {
2021-06-17 21:58:25 +02:00
TreeNode<Map*> child(loadDir(fi.absoluteFilePath(), proj, &tree));
if (!child.isEmpty())
tree.addChild(child);
} else if (filter().contains("*." + suffix)) {
bool isDir = false;
2021-06-17 21:58:25 +02:00
Map *map = loadFile(fi.absoluteFilePath(), proj, &isDir);
if (isDir) {
if (parent)
parent->addItem(map);
else
tree.addItem(map);
break;
} else
tree.addItem(map);
}
}
return tree;
}
2021-06-17 21:58:25 +02:00
TreeNode<Map *> MapList::loadMaps(const QString &path, const Projection &proj)
{
if (QFileInfo(path).isDir())
2021-06-17 21:58:25 +02:00
return loadDir(path, proj);
else {
TreeNode<Map*> tree;
2021-06-17 21:58:25 +02:00
tree.addItem(loadFile(path, proj));
return tree;
}
}
2017-07-27 19:47:46 +02:00
QString MapList::formats()
{
2018-02-04 15:30:54 +01:00
return
qApp->translate("MapList", "Supported files")
+ " (" + filter().join(" ") + ");;"
2021-02-04 23:22:16 +01:00
+ qApp->translate("MapList", "AlpineQuest maps") + " (*.aqm);;"
+ qApp->translate("MapList", "Garmin IMG maps")
+ " (*.gmap *.gmapi *.img *.xml);;"
+ qApp->translate("MapList", "Garmin JNX maps") + " (*.jnx);;"
+ qApp->translate("MapList", "BSB nautical charts") + " (*.kap);;"
2020-12-22 22:32:07 +01:00
+ qApp->translate("MapList", "KMZ maps") + " (*.kmz);;"
2021-04-10 15:27:40 +02:00
+ qApp->translate("MapList", "Mapsforge maps") + " (*.map);;"
+ qApp->translate("MapList", "OziExplorer maps") + " (*.map);;"
+ qApp->translate("MapList", "MBTiles maps") + " (*.mbtiles);;"
2021-11-14 15:08:33 +01:00
+ qApp->translate("MapList", "QuickChart maps") + " (*.qct);;"
2021-02-09 22:51:19 +01:00
+ qApp->translate("MapList", "TwoNav maps") + " (*.rmap *.rtmap);;"
2021-02-13 10:19:17 +01:00
+ qApp->translate("MapList", "Locus/OsmAnd/RMaps SQLite maps")
+ " (*.sqlitedb);;"
+ qApp->translate("MapList", "TrekBuddy maps/atlases") + " (*.tar *.tba);;"
+ qApp->translate("MapList", "GeoTIFF images") + " (*.tif *.tiff);;"
2021-06-17 21:58:25 +02:00
+ qApp->translate("MapList", "World-file georeferenced images")
+ " (*.wld *.jgw *.gfw *.pgw *.tfw);;"
+ qApp->translate("MapList", "Online map sources") + " (*.xml);;"
+ qApp->translate("MapList", "All files") + " (*)";
2017-07-27 19:47:46 +02:00
}
QStringList MapList::filter()
{
QStringList filter;
QString last;
for (ParserMap::iterator it = _parsers.begin(); it != _parsers.end(); it++) {
if (it.key() != last)
filter << "*." + it.key();
last = it.key();
}
2017-07-27 19:47:46 +02:00
return filter;
}