Reformatting.
This commit is contained in:
parent
98682c0c68
commit
1dc7d4cf11
1 changed files with 127 additions and 127 deletions
|
@ -48,147 +48,147 @@ using std::string;
|
|||
|
||||
static SGPropertyNode *getNamedNode(SGPropertyNode *prop, const char *name)
|
||||
{
|
||||
SGPropertyNode* p;
|
||||
|
||||
for (int i = 0; i < prop->nChildren(); i++)
|
||||
if ((p = getNamedNode(prop->getChild(i), name)))
|
||||
return p;
|
||||
|
||||
if (!strcmp(prop->getStringValue("name"), name))
|
||||
return prop;
|
||||
return 0;
|
||||
SGPropertyNode* p;
|
||||
|
||||
for (int i = 0; i < prop->nChildren(); i++)
|
||||
if ((p = getNamedNode(prop->getChild(i), name)))
|
||||
return p;
|
||||
|
||||
if (!strcmp(prop->getStringValue("name"), name))
|
||||
return prop;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void atcUppercase(string &s) {
|
||||
for(unsigned int i=0; i<s.size(); ++i) {
|
||||
s[i] = toupper(s[i]);
|
||||
}
|
||||
for(unsigned int i=0; i<s.size(); ++i) {
|
||||
s[i] = toupper(s[i]);
|
||||
}
|
||||
}
|
||||
|
||||
class AirportsWithATC : public FGAirport::AirportFilter
|
||||
{
|
||||
public:
|
||||
virtual FGPositioned::Type maxType() const {
|
||||
return FGPositioned::SEAPORT;
|
||||
}
|
||||
|
||||
virtual bool passAirport(FGAirport* aApt) const
|
||||
{
|
||||
return (!aApt->commStations().empty());
|
||||
}
|
||||
virtual FGPositioned::Type maxType() const {
|
||||
return FGPositioned::SEAPORT;
|
||||
}
|
||||
|
||||
virtual bool passAirport(FGAirport* aApt) const
|
||||
{
|
||||
return (!aApt->commStations().empty());
|
||||
}
|
||||
};
|
||||
|
||||
void FGATCDialogNew::frequencySearch()
|
||||
{
|
||||
const char *dialog_name = "atc-freq-search";
|
||||
SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
|
||||
if (!dlg)
|
||||
return;
|
||||
|
||||
_gui->closeDialog(dialog_name);
|
||||
|
||||
SGPropertyNode_ptr button_group = getNamedNode(dlg, "quick-buttons");
|
||||
// remove all dynamic airport/ATC buttons
|
||||
button_group->removeChildren("button");
|
||||
|
||||
AirportsWithATC filt;
|
||||
FGPositionedList results = FGPositioned::findWithinRange(globals->get_aircraft_position(), 50.0, &filt);
|
||||
FGPositioned::sortByRange(results, globals->get_aircraft_position());
|
||||
for (unsigned int r=0; (r<results.size()) && (r < 6); ++r) {
|
||||
|
||||
SGPropertyNode *entry = button_group->getNode("button", r, true);
|
||||
copyProperties(button_group->getNode("button-template", true), entry);
|
||||
entry->removeChildren("enabled");
|
||||
entry->setStringValue("legend", results[r]->ident());
|
||||
entry->setStringValue("binding[0]/icao", results[r]->ident());
|
||||
}
|
||||
|
||||
// (un)hide message saying no things in range
|
||||
SGPropertyNode_ptr range_error = getNamedNode(dlg, "no-atc-in-range");
|
||||
range_error->setBoolValue("visible", !results.empty());
|
||||
|
||||
_gui->showDialog(dialog_name);
|
||||
const char *dialog_name = "atc-freq-search";
|
||||
SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
|
||||
if (!dlg)
|
||||
return;
|
||||
|
||||
_gui->closeDialog(dialog_name);
|
||||
|
||||
SGPropertyNode_ptr button_group = getNamedNode(dlg, "quick-buttons");
|
||||
// remove all dynamic airport/ATC buttons
|
||||
button_group->removeChildren("button");
|
||||
|
||||
AirportsWithATC filt;
|
||||
FGPositionedList results = FGPositioned::findWithinRange(globals->get_aircraft_position(), 50.0, &filt);
|
||||
FGPositioned::sortByRange(results, globals->get_aircraft_position());
|
||||
for (unsigned int r=0; (r<results.size()) && (r < 6); ++r) {
|
||||
|
||||
SGPropertyNode *entry = button_group->getNode("button", r, true);
|
||||
copyProperties(button_group->getNode("button-template", true), entry);
|
||||
entry->removeChildren("enabled");
|
||||
entry->setStringValue("legend", results[r]->ident());
|
||||
entry->setStringValue("binding[0]/icao", results[r]->ident());
|
||||
}
|
||||
|
||||
// (un)hide message saying no things in range
|
||||
SGPropertyNode_ptr range_error = getNamedNode(dlg, "no-atc-in-range");
|
||||
range_error->setBoolValue("visible", !results.empty());
|
||||
|
||||
_gui->showDialog(dialog_name);
|
||||
}
|
||||
|
||||
void FGATCDialogNew::frequencyDisplay(const std::string& ident)
|
||||
{
|
||||
const char *dialog_name = "atc-freq-display";
|
||||
SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
|
||||
if (!dlg)
|
||||
return;
|
||||
|
||||
_gui->closeDialog(dialog_name);
|
||||
|
||||
SGPropertyNode_ptr freq_group = getNamedNode(dlg, "frequency-list");
|
||||
// remove all frequency entries
|
||||
freq_group->removeChildren("group");
|
||||
|
||||
std::string uident(ident);
|
||||
atcUppercase(uident);
|
||||
string label;
|
||||
|
||||
const FGAirport *a = fgFindAirportID(uident);
|
||||
if (!a) {
|
||||
label = "Airport " + ident + " not found in database.";
|
||||
mkDialog(label.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
// set title
|
||||
label = uident + " Frequencies";
|
||||
dlg->setStringValue("text/label", label.c_str());
|
||||
|
||||
const flightgear::CommStationList& comms(a->commStations());
|
||||
if (comms.empty()) {
|
||||
label = "No frequencies found for airport " + uident;
|
||||
mkDialog(label.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
for (unsigned int c=0; c < comms.size(); ++c) {
|
||||
flightgear::CommStation* comm = comms[c];
|
||||
|
||||
// add frequency line (modified copy of <group-template>)
|
||||
SGPropertyNode *entry = freq_group->getNode("group", c, true);
|
||||
copyProperties(freq_group->getNode("group-template", true), entry);
|
||||
entry->removeChildren("enabled");
|
||||
|
||||
entry->setStringValue("text[0]/label", comm->ident());
|
||||
const char *dialog_name = "atc-freq-display";
|
||||
SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
|
||||
if (!dlg)
|
||||
return;
|
||||
|
||||
char buf[8];
|
||||
snprintf(buf, 8, "%.2f", comm->freqMHz());
|
||||
if(buf[5] == '3') buf[5] = '2';
|
||||
if(buf[5] == '8') buf[5] = '7';
|
||||
buf[7] = '\0';
|
||||
|
||||
entry->setStringValue("text[1]/label", buf);
|
||||
}
|
||||
|
||||
_gui->showDialog(dialog_name);
|
||||
_gui->closeDialog(dialog_name);
|
||||
|
||||
SGPropertyNode_ptr freq_group = getNamedNode(dlg, "frequency-list");
|
||||
// remove all frequency entries
|
||||
freq_group->removeChildren("group");
|
||||
|
||||
std::string uident(ident);
|
||||
atcUppercase(uident);
|
||||
string label;
|
||||
|
||||
const FGAirport *a = fgFindAirportID(uident);
|
||||
if (!a) {
|
||||
label = "Airport " + ident + " not found in database.";
|
||||
mkDialog(label.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
// set title
|
||||
label = uident + " Frequencies";
|
||||
dlg->setStringValue("text/label", label.c_str());
|
||||
|
||||
const flightgear::CommStationList& comms(a->commStations());
|
||||
if (comms.empty()) {
|
||||
label = "No frequencies found for airport " + uident;
|
||||
mkDialog(label.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
for (unsigned int c=0; c < comms.size(); ++c) {
|
||||
flightgear::CommStation* comm = comms[c];
|
||||
|
||||
// add frequency line (modified copy of <group-template>)
|
||||
SGPropertyNode *entry = freq_group->getNode("group", c, true);
|
||||
copyProperties(freq_group->getNode("group-template", true), entry);
|
||||
entry->removeChildren("enabled");
|
||||
|
||||
entry->setStringValue("text[0]/label", comm->ident());
|
||||
|
||||
char buf[8];
|
||||
snprintf(buf, 8, "%.2f", comm->freqMHz());
|
||||
if(buf[5] == '3') buf[5] = '2';
|
||||
if(buf[5] == '8') buf[5] = '7';
|
||||
buf[7] = '\0';
|
||||
|
||||
entry->setStringValue("text[1]/label", buf);
|
||||
}
|
||||
|
||||
_gui->showDialog(dialog_name);
|
||||
}
|
||||
|
||||
static bool doFrequencySearch( const SGPropertyNode* )
|
||||
{
|
||||
FGATCDialogNew::instance()->frequencySearch();
|
||||
return true;
|
||||
FGATCDialogNew::instance()->frequencySearch();
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool doFrequencyDisplay( const SGPropertyNode* args )
|
||||
{
|
||||
std::string icao = args->getStringValue("icao");
|
||||
if (icao.empty()) {
|
||||
icao = fgGetString("/sim/atc/freq-airport");
|
||||
}
|
||||
|
||||
FGATCDialogNew::instance()->frequencyDisplay(icao);
|
||||
return true;
|
||||
std::string icao = args->getStringValue("icao");
|
||||
if (icao.empty()) {
|
||||
icao = fgGetString("/sim/atc/freq-airport");
|
||||
}
|
||||
|
||||
FGATCDialogNew::instance()->frequencyDisplay(icao);
|
||||
return true;
|
||||
}
|
||||
|
||||
FGATCDialogNew * FGATCDialogNew::_instance = NULL;
|
||||
|
||||
FGATCDialogNew::FGATCDialogNew()
|
||||
: _gui(NULL),
|
||||
dialogVisible(true)
|
||||
: _gui(NULL),
|
||||
dialogVisible(true)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -204,7 +204,7 @@ void FGATCDialogNew::init() {
|
|||
// Add ATC-freq-search to the command list
|
||||
globals->get_commands()->addCommand("ATC-freq-search", doFrequencySearch);
|
||||
globals->get_commands()->addCommand("ATC-freq-display", doFrequencyDisplay);
|
||||
|
||||
|
||||
// initialize properties polled in Update()
|
||||
//globals->get_props()->setStringValue("/sim/atc/freq-airport", "");
|
||||
globals->get_props()->setIntValue("/sim/atc/transmission-num", -1);
|
||||
|
@ -213,9 +213,9 @@ void FGATCDialogNew::init() {
|
|||
|
||||
|
||||
// Display the ATC popup dialog box with options relevant to the users current situation.
|
||||
//
|
||||
//
|
||||
// So, the first thing we need to do is check the frequency that our pilot's nav radio
|
||||
// is currently tuned to. The dialog should always contain an option to to tune the
|
||||
// is currently tuned to. The dialog should always contain an option to to tune the
|
||||
// to a particular frequency,
|
||||
|
||||
// Okay, let's see, according to my interpretation of David Luff's original code,
|
||||
|
@ -248,9 +248,9 @@ void FGATCDialogNew::update(double dt) {
|
|||
const char *dialog_name = "atc-dialog";
|
||||
_gui = (NewGUI *)globals->get_subsystem("gui");
|
||||
if (!_gui) {
|
||||
return;
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
|
||||
if (!dlg)
|
||||
return;
|
||||
|
@ -265,21 +265,21 @@ void FGATCDialogNew::update(double dt) {
|
|||
// loop over all entries that should fill up the dialog; use 10 items for now...
|
||||
BOOST_FOREACH(const std::string& i, commands) {
|
||||
snprintf(buf, bufsize, "/sim/atc/opt[%d]", commandNr);
|
||||
fgSetBool(buf, false);
|
||||
fgSetBool(buf, false);
|
||||
SGPropertyNode *entry = button_group->getNode("button", commandNr, true);
|
||||
copyProperties(button_group->getNode("button-template", true), entry);
|
||||
entry->removeChildren("enabled");
|
||||
entry->setStringValue("property", buf);
|
||||
entry->setIntValue("keynum", '1' + commandNr);
|
||||
if (commandNr == 0)
|
||||
entry->setBoolValue("default", true);
|
||||
entry->removeChildren("enabled");
|
||||
entry->setStringValue("property", buf);
|
||||
entry->setIntValue("keynum", '1' + commandNr);
|
||||
if (commandNr == 0)
|
||||
entry->setBoolValue("default", true);
|
||||
|
||||
snprintf(buf, bufsize, "%d", 1 + commandNr);
|
||||
string legend = string(buf) + i; //"; // + current->menuentry;
|
||||
entry->setStringValue("legend", legend.c_str());
|
||||
entry->setIntValue("binding/value", commandNr);
|
||||
snprintf(buf, bufsize, "%d", 1 + commandNr);
|
||||
string legend = string(buf) + i; //"; // + current->menuentry;
|
||||
entry->setStringValue("legend", legend.c_str());
|
||||
entry->setIntValue("binding/value", commandNr);
|
||||
commandNr++;
|
||||
//current++;
|
||||
//current++;
|
||||
}
|
||||
|
||||
if (dialogVisible) {
|
||||
|
|
Loading…
Add table
Reference in a new issue