1
0
Fork 0
flightgear/src/GUI/DefaultAircraftLocator.cxx

147 lines
3.8 KiB
C++
Raw Normal View History

#include "DefaultAircraftLocator.hxx"
#include <simgear/props/props_io.hxx>
#include <simgear/debug/logstream.hxx>
#include <Main/globals.hxx>
static SGPropertyNode_ptr loadXMLDefaults()
{
SGPropertyNode_ptr root(new SGPropertyNode);
const SGPath defaultsXML = globals->get_fg_root() / "defaults.xml";
readProperties(defaultsXML, root);
if (!root->hasChild("sim")) {
SG_LOG(SG_GUI, SG_POPUP, "Failed to find /sim node in defaults.xml, broken");
return SGPropertyNode_ptr();
}
return root;
}
namespace flightgear
{
std::string defaultAirportICAO()
{
SGPropertyNode_ptr root = loadXMLDefaults();
if (!root) {
return std::string();
}
std::string airportCode = root->getStringValue("/sim/presets/airport-id");
return airportCode;
}
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;
}
2017-02-21 11:01:06 +00:00
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;
}
if (scenario->getStringValue("local-weather/tile-type") == std::string("live")) {
continue;
}
WeatherScenario ws;
ws.name = QString::fromStdString(scenario->getStringValue("name"));
ws.description = QString::fromStdString(scenario->getStringValue("description")).simplified();
ws.metar = QString::fromStdString(scenario->getStringValue("metar"));
m_scenarios.push_back(ws);
}
}
}
int WeatherScenariosModel::rowCount(const QModelIndex &index) const
{
return m_scenarios.size();
}
QVariant WeatherScenariosModel::data(const QModelIndex &index, int role) const
{
const int row = index.row();
if ((row < 0) || (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(int index) const
{
if ((index < 0) || (index >= m_scenarios.size())) {
return QString();
}
return m_scenarios.at(index).metar;
}
QString WeatherScenariosModel::descriptionForItem(int index) const
{
if ((index < 0) || (index >= m_scenarios.size())) {
return QString();
}
return m_scenarios.at(index).description;
}
} // of namespace flightgear