1
0
Fork 0
flightgear/src/GUI/DefaultAircraftLocator.cxx
Scott Giese 4ce8be87a0 Maintenance: DefaultAircraftLocator
type correctness during comparison
2021-02-20 22:50:56 -06:00

215 lines
6.1 KiB
C++

#include "DefaultAircraftLocator.hxx"
#include <simgear/props/props_io.hxx>
#include <simgear/debug/logstream.hxx>
#include <simgear/structure/exception.hxx>
#include <Main/globals.hxx>
#include <Main/locale.hxx>
static SGPropertyNode_ptr loadXMLDefaults()
{
SGPropertyNode_ptr root(new SGPropertyNode);
const SGPath defaultsXML = globals->get_fg_root() / "defaults.xml";
if (!defaultsXML.exists()) {
SG_LOG(SG_GUI, SG_POPUP, "Failed to find required data file (defaults.xml)");
return {};
}
try {
readProperties(defaultsXML, root);
} catch (sg_exception& e) {
SG_LOG(SG_GUI, SG_POPUP, "Failed to read required data file (defaults.xml)");
return {};
}
if (!root->hasChild("sim")) {
SG_LOG(SG_GUI, SG_POPUP, "Failed to find /sim node in defaults.xml, broken");
return {};
}
return root;
}
namespace flightgear
{
std::string defaultAirportICAO()
{
SGPropertyNode_ptr root = loadXMLDefaults();
if (!root) {
return {};
}
std::string airportCode = root->getStringValue("/sim/presets/airport-id");
return airportCode;
}
string_list defaultSplashScreenPaths()
{
string_list result;
SGPath tpath = globals->get_fg_root() / "Textures";
auto paths = simgear::Dir(tpath).children(simgear::Dir::TYPE_FILE);
paths.erase(std::remove_if(paths.begin(), paths.end(), [](const SGPath& p) {
const auto f = p.file();
if (f.find("Splash") != 0) return true;
const auto ext = p.extension();
return ext != "png" && ext != "jpg";
}), paths.end());
for (auto c : paths) {
result.push_back(c.utf8Str());
}
return result;
}
DefaultAircraftLocator::DefaultAircraftLocator()
{
SGPropertyNode_ptr root = loadXMLDefaults();
if (root) {
_aircraftId = root->getStringValue("/sim/aircraft");
} else {
SG_LOG(SG_GUI, SG_WARN, "failed to load default aircraft identifier");
_aircraftId = "ufo"; // last ditch fallback
}
_aircraftId += "-set.xml";
const SGPath rootAircraft = globals->get_fg_root() / "Aircraft";
visitDir(rootAircraft, 0);
}
SGPath DefaultAircraftLocator::foundPath() const
{
return _foundPath;
}
AircraftDirVistorBase::VisitResult
DefaultAircraftLocator::visit(const SGPath& p)
{
if (p.file() == _aircraftId) {
_foundPath = p;
return VISIT_DONE;
}
return VISIT_CONTINUE;
}
WeatherScenariosModel::WeatherScenariosModel(QObject *pr) :
QAbstractListModel(pr)
{
SGPropertyNode_ptr root = loadXMLDefaults();
if (root) {
SGPropertyNode_ptr scenarios = root->getNode("environment/weather-scenarios");
Q_ASSERT(scenarios);
int nChildren = scenarios->nChildren();
for (int i = 0; i < nChildren; i++) {
SGPropertyNode_ptr scenario = scenarios->getChild(i);
if (strcmp(scenario->getName(), "scenario") != 0) {
continue;
}
// omit the 'live data' option, we have a distinct UI for that, we'll
// pass --real-wxr option on launch
if (scenario->getStringValue("local-weather/tile-type") == std::string("live")) {
continue;
}
WeatherScenario ws;
const string wsId = scenario->getStringValue("id");
if (!wsId.empty()) {
// translated
auto locale = globals->get_locale();
ws.name = QString::fromStdString(locale->getLocalizedString(wsId + "-name", "weather-scenarios"));
ws.description = QString::fromStdString(locale->getLocalizedString(wsId + "-desc", "weather-scenarios"));
} else {
ws.name = QString::fromStdString(scenario->getStringValue("name"));
ws.description = QString::fromStdString(scenario->getStringValue("description")).simplified();
}
ws.metar = QString::fromStdString(scenario->getStringValue("metar"));
if (scenario->hasChild("local-weather")) {
ws.localWeatherTileManagement = QString::fromStdString(scenario->getStringValue("local-weather/tile-management"));
ws.localWeatherTileType = QString::fromStdString(scenario->getStringValue("local-weather/tile-type"));
}
m_scenarios.push_back(ws);
}
}
}
int WeatherScenariosModel::rowCount(const QModelIndex&) const
{
return static_cast<int>(m_scenarios.size());
}
QVariant WeatherScenariosModel::data(const QModelIndex &index, int role) const
{
const int row = index.row();
if ((row < 0) || (static_cast<std::vector<WeatherScenariosModel::WeatherScenario>::size_type>(row) >= m_scenarios.size())) {
return QVariant();
}
const WeatherScenario& scenario(m_scenarios.at(row));
if ((role == Qt::DisplayRole) || (role == NameRole)) {
return scenario.name;
} else if (role == DescriptionRole) {
return scenario.description;
} else if (role == MetarRole) {
return scenario.metar;
}
return QVariant();
}
QHash<int, QByteArray> WeatherScenariosModel::roleNames() const
{
QHash<int, QByteArray> result;
result[NameRole] = "name";
result[DescriptionRole] = "description";
result[MetarRole] = "metar";
return result;
}
QString WeatherScenariosModel::metarForItem(quint32 index) const
{
if (index >= m_scenarios.size()) {
return {};
}
return m_scenarios.at(index).metar;
}
QString WeatherScenariosModel::descriptionForItem(quint32 index) const
{
if (index >= m_scenarios.size()) {
return {};
}
return m_scenarios.at(index).description;
}
QStringList WeatherScenariosModel::localWeatherData(quint32 index) const
{
if (index >= m_scenarios.size()) {
return {};
}
const auto& s = m_scenarios.at(index);
if (s.localWeatherTileManagement.isEmpty() || s.localWeatherTileType.isEmpty()) {
return {};
}
return QStringList() << s.localWeatherTileManagement << s.localWeatherTileType;
}
QString WeatherScenariosModel::nameForItem(quint32 index) const
{
if (index >= m_scenarios.size()) {
return {};
}
return m_scenarios.at(index).name;
}
} // of namespace flightgear