1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00

Cleanup the map loading code

This commit is contained in:
Martin Tůma 2020-02-12 20:32:57 +01:00
parent 8d06ab6208
commit eb9767f2dd
3 changed files with 32 additions and 51 deletions

View File

@ -112,7 +112,7 @@ void GUI::loadMaps()
QString mapDir(ProgramPaths::mapDir());
if (!mapDir.isNull() && !_ml->loadDir(mapDir))
qWarning("%s", qPrintable(_ml->errorString()));
qWarning("%s", qPrintable(_ml->errorPath() + ": " + _ml->errorString()));
_map = new EmptyMap(this);
}

View File

@ -12,56 +12,50 @@
#include "maplist.h"
bool MapList::loadMap(Map *map, const QString &path, bool dir)
bool MapList::loadMap(Map *map, const QString &path)
{
if (map && map->isValid()) {
_maps.append(map);
return true;
} else if (map) {
if (dir)
_errorString += path + ": " + map->errorString() + "\n";
else
_errorString = map->errorString();
_errorPath = path;
_errorString = map->errorString();
return false;
} else {
if (dir)
_errorString += path + ": " + "Unknown map format\n";
else
_errorString = "Unknown map format";
_errorString = path;
_errorString = "Unknown file format";
return false;
}
}
Map *MapList::loadSource(const QString &path, bool dir)
Map *MapList::loadSource(const QString &path)
{
QString err;
Map *map = MapSource::loadMap(path, err);
Map *map = MapSource::loadMap(path, _errorString);
if (!map) {
if (dir)
_errorString += path + ": " + err + "\n";
else
_errorString = err;
} else
if (!map)
_errorPath = path;
else
map->setParent(this);
return map;
}
bool MapList::loadFile(const QString &path, bool *terminate, bool dir)
bool MapList::loadFile(const QString &path, bool *terminate)
{
QFileInfo fi(path);
QString suffix = fi.suffix().toLower();
Map *map = 0;
if (Atlas::isAtlas(path)) {
*terminate = true;
if (terminate)
*terminate = true;
map = new Atlas(path, this);
} else if (suffix == "xml") {
if (MapSource::isMap(path) && !(map = loadSource(path, dir)))
if (MapSource::isMap(path) && !(map = loadSource(path)))
return false;
else if (GMAP::isGMAP(path)) {
*terminate = true;
if (terminate)
*terminate = true;
map = new IMGMap(path);
}
} else if (suffix == "jnx")
@ -74,10 +68,10 @@ bool MapList::loadFile(const QString &path, bool *terminate, bool dir)
map = new RMap(path, this);
else if (suffix == "img")
map = new IMGMap(path, this);
else
else if (suffix == "map" || suffix == "tar")
map = new OziMap(path, this);
if (!loadMap(map, path, dir)) {
if (!loadMap(map, path)) {
delete map;
return false;
}
@ -85,7 +79,7 @@ bool MapList::loadFile(const QString &path, bool *terminate, bool dir)
return true;
}
bool MapList::loadDirR(const QString &path)
bool MapList::loadDir(const QString &path)
{
QDir md(path);
md.setFilter(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);
@ -99,10 +93,10 @@ bool MapList::loadDirR(const QString &path)
bool terminate = false;
if (fi.isDir() && fi.fileName() != "set") {
if (!loadDirR(fi.absoluteFilePath()))
if (!loadDir(fi.absoluteFilePath()))
ret = false;
} else if (filter().contains("*." + suffix)) {
if (!loadFile(fi.absoluteFilePath(), &terminate, true))
if (!loadFile(fi.absoluteFilePath(), &terminate))
ret = false;
if (terminate)
break;
@ -112,25 +106,10 @@ bool MapList::loadDirR(const QString &path)
return ret;
}
bool MapList::loadFile(const QString &path)
{
bool atlas;
_errorString.clear();
return loadFile(path, &atlas, false);
}
bool MapList::loadDir(const QString &path)
{
_errorString.clear();
return loadDirR(path);
}
QString MapList::formats()
{
return
tr("Supported files")
+ " (*.gmap *.gmapi *.img *.jnx *.map *.mbtiles *.rmap *.rtmap *.tar *.tba *.tif *.tiff *.xml);;"
tr("Supported files") + " (" + filter().join(" ") + ");;"
+ tr("Garmin IMG maps") + " (*.gmap *.gmapi *.img *.xml);;"
+ tr("Garmin JNX maps") + " (*.jnx);;"
+ tr("OziExplorer maps") + " (*.map);;"
@ -144,7 +123,8 @@ QString MapList::formats()
QStringList MapList::filter()
{
QStringList filter;
filter << "*.img" << "*.jnx" << "*.map" << "*.mbtiles" << "*.rmap"
<< "*.rtmap" << "*.tar" << "*.tba" << "*.tif" << "*.tiff" << "*.xml";
filter << "*.gmap" << "*.gmapi" << "*.img" << "*.jnx" << "*.map"
<< "*.mbtiles" << "*.rmap" << "*.rtmap" << "*.tar" << "*.tba" << "*.tif"
<< "*.tiff" << "*.xml";
return filter;
}

View File

@ -13,23 +13,24 @@ class MapList : public QObject
public:
MapList(QObject *parent = 0) : QObject(parent) {}
bool loadFile(const QString &path);
bool loadFile(const QString &path, bool *terminate = 0);
bool loadDir(const QString &path);
const QList<Map*> &maps() const {return _maps;}
const QString &errorString() const {return _errorString;}
const QString &errorPath() const {return _errorPath;}
static QString formats();
static QStringList filter();
private:
bool loadFile(const QString &path, bool *terminate, bool dir);
bool loadDirR(const QString &path);
Map *loadSource(const QString &path, bool dir);
bool loadMap(Map *map, const QString &path, bool dir);
Map *loadSource(const QString &path);
bool loadMap(Map *map, const QString &path);
QList<Map*> _maps;
QString _errorString;
QString _errorPath;
};
#endif // MAPLIST_H