#include #include #include "atlas.h" #include "ozimap.h" #include "onlinemap.h" #include "jnxmap.h" #include "geotiffmap.h" #include "mapsource.h" #include "mbtilesmap.h" #include "rmap.h" #include "maplist.h" bool MapList::loadMap(Map* map, const QString &path, bool dir) { if (map->isValid()) { _maps.append(map); return true; } else { if (dir) _errorString += path + ": " + map->errorString() + "\n"; else _errorString = map->errorString(); return false; } } Map *MapList::loadSource(const QString &path, bool dir) { QString err; Map *map = MapSource::loadMap(path, err); if (!map) { if (dir) _errorString += path + ": " + err + "\n"; else _errorString = err; } else map->setParent(this); return map; } bool MapList::loadFile(const QString &path, bool *atlas, bool dir) { QFileInfo fi(path); QString suffix = fi.suffix().toLower(); Map *map; if (Atlas::isAtlas(path)) { *atlas = true; map = new Atlas(path, this); } else if (suffix == "xml") { if (!(map = loadSource(path, dir))) return false; } else if (suffix == "jnx") map = new JNXMap(path, this); else if (suffix == "tif" || suffix == "tiff") map = new GeoTIFFMap(path, this); else if (suffix == "mbtiles") map = new MBTilesMap(path, this); else if (suffix == "rmap") map = new RMap(path, this); else map = new OziMap(path, this); if (!loadMap(map, path, dir)) { delete map; return false; } return true; } bool MapList::loadDirR(const QString &path) { QDir md(path); md.setFilter(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot); md.setSorting(QDir::DirsLast); QFileInfoList ml = md.entryInfoList(); bool ret = true; for (int i = 0; i < ml.size(); i++) { const QFileInfo &fi = ml.at(i); QString suffix = fi.suffix().toLower(); bool atlas = false; if (fi.isDir() && fi.fileName() != "set") { if (!loadDirR(fi.absoluteFilePath())) ret = false; } else if (filter().contains("*." + suffix)) { if (!loadFile(fi.absoluteFilePath(), &atlas, true)) ret = false; if (atlas) break; } } 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") + " (*.jnx *.map *.mbtiles *.rmap *.tar *.tba *.tif *.tiff *.xml);;" + tr("MBTiles maps") + " (*.mbtiles);;" + tr("Garmin JNX maps") + " (*.jnx);;" + tr("OziExplorer maps") + " (*.map);;" + tr("TrekBuddy maps/atlases") + " (*.tar *.tba);;" + tr("GeoTIFF images") + " (*.tif *.tiff);;" + tr("TwoNav maps") + " (*.rmap);;" + tr("Online map sources") + " (*.xml)"; } QStringList MapList::filter() { QStringList filter; filter << "*.jnx" << "*.map" << "*.tba" << "*.tar" << "*.xml" << "*.tif" << "*.tiff" << "*.mbtiles" << "*.rmap"; return filter; }