1 // atcdialog.cxx - classes to manage user interactions with AI traffic
2 // Written by Durk Talsma, started April 3, 2011
3 // Based on earlier code written by Alexander Kappes and David Luff
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #include "atcdialog.hxx"
27 #include <boost/foreach.hpp>
29 #include <simgear/constants.h>
30 #include <simgear/structure/commands.hxx>
31 #include <simgear/compiler.h>
32 #include <simgear/props/props.hxx>
33 #include <simgear/props/props_io.hxx>
34 #include <simgear/misc/sgstream.hxx>
35 #include <simgear/math/sg_geodesy.hxx>
36 #include <simgear/debug/logstream.hxx>
37 #include <simgear/structure/SGSharedPtr.hxx>
39 #include <Main/fg_commands.hxx>
40 #include <Main/globals.hxx>
41 #include <Main/fg_props.hxx>
42 #include <GUI/gui.h> // mkDialog
43 #include <GUI/new_gui.hxx>
44 #include <Airports/airport.hxx>
45 #include <ATC/CommStation.hxx>
49 static SGPropertyNode *getNamedNode(SGPropertyNode *prop, const char *name)
53 for (int i = 0; i < prop->nChildren(); i++)
54 if ((p = getNamedNode(prop->getChild(i), name)))
57 if (!strcmp(prop->getStringValue("name"), name))
62 static void atcUppercase(string &s) {
63 for(unsigned int i=0; i<s.size(); ++i) {
68 class AirportsWithATC : public FGAirport::AirportFilter
71 virtual FGPositioned::Type maxType() const {
72 return FGPositioned::SEAPORT;
75 virtual bool passAirport(FGAirport* aApt) const
77 return (!aApt->commStations().empty());
81 void FGATCDialogNew::frequencySearch()
83 const char *dialog_name = "atc-freq-search";
84 SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
88 _gui->closeDialog(dialog_name);
90 SGPropertyNode_ptr button_group = getNamedNode(dlg, "quick-buttons");
91 // remove all dynamic airport/ATC buttons
92 button_group->removeChildren("button", false);
95 FGPositionedList results = FGPositioned::findWithinRange(globals->get_aircraft_position(), 50.0, &filt);
96 FGPositioned::sortByRange(results, globals->get_aircraft_position());
97 for (unsigned int r=0; (r<results.size()) && (r < 6); ++r) {
99 SGPropertyNode *entry = button_group->getNode("button", r, true);
100 copyProperties(button_group->getNode("button-template", true), entry);
101 entry->removeChildren("enabled", true);
102 entry->setStringValue("legend", results[r]->ident());
103 entry->setStringValue("binding[0]/icao", results[r]->ident());
106 // (un)hide message saying no things in range
107 SGPropertyNode_ptr range_error = getNamedNode(dlg, "no-atc-in-range");
108 range_error->setBoolValue("visible", !results.empty());
110 _gui->showDialog(dialog_name);
113 void FGATCDialogNew::frequencyDisplay(const std::string& ident)
115 const char *dialog_name = "atc-freq-display";
116 SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
120 _gui->closeDialog(dialog_name);
122 SGPropertyNode_ptr freq_group = getNamedNode(dlg, "frequency-list");
123 // remove all frequency entries
124 freq_group->removeChildren("group", false);
126 std::string uident(ident);
127 atcUppercase(uident);
130 const FGAirport *a = fgFindAirportID(uident);
132 label = "Airport " + ident + " not found in database.";
133 mkDialog(label.c_str());
138 label = uident + " Frequencies";
139 dlg->setStringValue("text/label", label.c_str());
141 const flightgear::CommStationList& comms(a->commStations());
143 label = "No frequencies found for airport " + uident;
144 mkDialog(label.c_str());
148 for (unsigned int c=0; c < comms.size(); ++c) {
149 flightgear::CommStation* comm = comms[c];
151 // add frequency line (modified copy of <group-template>)
152 SGPropertyNode *entry = freq_group->getNode("group", c, true);
153 copyProperties(freq_group->getNode("group-template", true), entry);
154 entry->removeChildren("enabled", true);
156 entry->setStringValue("text[0]/label", comm->ident());
159 snprintf(buf, 8, "%.2f", comm->freqMHz());
160 if(buf[5] == '3') buf[5] = '2';
161 if(buf[5] == '8') buf[5] = '7';
164 entry->setStringValue("text[1]/label", buf);
167 _gui->showDialog(dialog_name);
170 static bool doFrequencySearch( const SGPropertyNode* )
172 FGATCDialogNew::instance()->frequencySearch();
176 static bool doFrequencyDisplay( const SGPropertyNode* args )
178 std::string icao = args->getStringValue("icao");
180 icao = fgGetString("/sim/atc/freq-airport");
183 FGATCDialogNew::instance()->frequencyDisplay(icao);
187 FGATCDialogNew * FGATCDialogNew::_instance = NULL;
189 FGATCDialogNew::FGATCDialogNew()
195 FGATCDialogNew::~FGATCDialogNew()
201 void FGATCDialogNew::init() {
202 // Add ATC-dialog to the command list
203 globals->get_commands()->addCommand("ATC-dialog", FGATCDialogNew::popup );
204 // Add ATC-freq-search to the command list
205 globals->get_commands()->addCommand("ATC-freq-search", doFrequencySearch);
206 globals->get_commands()->addCommand("ATC-freq-display", doFrequencyDisplay);
208 // initialize properties polled in Update()
209 //globals->get_props()->setStringValue("/sim/atc/freq-airport", "");
210 globals->get_props()->setIntValue("/sim/atc/transmission-num", -1);
215 // Display the ATC popup dialog box with options relevant to the users current situation.
217 // So, the first thing we need to do is check the frequency that our pilot's nav radio
218 // is currently tuned to. The dialog should always contain an option to to tune the
219 // to a particular frequency,
221 // Okay, let's see, according to my interpretation of David Luff's original code,
222 // his ATC subsystem wrote properties to a named node, called "transmission-choice"
225 void FGATCDialogNew::addEntry(int nr, const std::string& txt) {
227 commands.push_back(txt);
228 commands.push_back(string("Toggle ground network visibility"));
231 void FGATCDialogNew::removeEntry(int nr) {
237 void FGATCDialogNew::PopupDialog() {
238 dialogVisible = !dialogVisible;
242 void FGATCDialogNew::update(double dt) {
243 // double onBoardRadioFreq0 =
244 // fgGetDouble("/instrumentation/comm[0]/frequencies/selected-mhz");
245 // double onBoardRadioFreq1 =
246 // fgGetDouble("/instrumentation/comm[1]/frequencies/selected-mhz");
248 const char *dialog_name = "atc-dialog";
249 _gui = (NewGUI *)globals->get_subsystem("gui");
254 SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
258 _gui->closeDialog(dialog_name);
259 SGPropertyNode_ptr button_group = getNamedNode(dlg, "transmission-choice");
260 button_group->removeChildren("button", false);
262 const int bufsize = 32;
265 // loop over all entries that should fill up the dialog; use 10 items for now...
266 BOOST_FOREACH(const std::string& i, commands) {
267 snprintf(buf, bufsize, "/sim/atc/opt[%d]", commandNr);
268 fgSetBool(buf, false);
269 SGPropertyNode *entry = button_group->getNode("button", commandNr, true);
270 copyProperties(button_group->getNode("button-template", true), entry);
271 entry->removeChildren("enabled", true);
272 entry->setStringValue("property", buf);
273 entry->setIntValue("keynum", '1' + commandNr);
275 entry->setBoolValue("default", true);
277 snprintf(buf, bufsize, "%d", 1 + commandNr);
278 string legend = string(buf) + i; //"; // + current->menuentry;
279 entry->setStringValue("legend", legend.c_str());
280 entry->setIntValue("binding/value", commandNr);
286 _gui->closeDialog(dialog_name);
288 _gui->showDialog(dialog_name);