]> git.mxchange.org Git - flightgear.git/blob - src/ATC/atcdialog.cxx
Assigned an ATC controller to the user's Aircraft and change the comm1 radio frequenc...
[flightgear.git] / src / ATC / atcdialog.cxx
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
4 //
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.
9 //
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.
14 //
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.
18 //
19 // $Id$
20
21 #include <Main/fg_commands.hxx>
22 #include <Main/globals.hxx>
23
24 #include <simgear/constants.h>
25 #include <simgear/structure/commands.hxx>
26 #include <simgear/compiler.h>
27 #include <simgear/props/props.hxx>
28 #include <simgear/props/props_io.hxx>
29 #include <simgear/misc/sgstream.hxx>
30 #include <simgear/math/sg_geodesy.hxx>
31 #include <simgear/debug/logstream.hxx>
32 #include <simgear/structure/SGSharedPtr.hxx>
33
34 #include "atcdialog.hxx"
35
36 FGATCDialogNew *currentATCDialog;
37
38 static bool doATCDialog(const SGPropertyNode* arg) {
39         cerr << "Running doATCDialog" << endl;
40         currentATCDialog->PopupDialog();
41         return(true);
42 }
43
44 FGATCDialogNew::FGATCDialogNew()
45 {
46   dialogVisible = false;
47 }
48
49 FGATCDialogNew::~FGATCDialogNew()
50 {
51 }
52
53
54
55 void FGATCDialogNew::init() {
56         // Add ATC-dialog to the command list
57         globals->get_commands()->addCommand("ATC-dialog", doATCDialog);
58         // Add ATC-freq-search to the command list
59         //globals->get_commands()->addCommand("ATC-freq-search", do_ATC_freq_search);
60
61         // initialize properties polled in Update()
62         //globals->get_props()->setStringValue("/sim/atc/freq-airport", "");
63         //globals->get_props()->setIntValue("/sim/atc/transmission-num", -1);
64 }
65
66
67
68 // Display the ATC popup dialog box with options relevant to the users current situation.
69 // 
70 // So, the first thing we need to do is check the frequency that our pilot's nav radio
71 // is currently tuned to. The dialog should always contain an option to to tune the 
72 // to a particular frequency,
73
74 // Okay, let's see, according to my interpretation of David Luff's original code,
75 // his ATC subsystem wrote properties to a named node, called "transmission-choice"
76
77 static SGPropertyNode *getNamedNode(SGPropertyNode *prop, const char *name) {
78     SGPropertyNode* p;
79
80     for (int i = 0; i < prop->nChildren(); i++)
81         if ((p = getNamedNode(prop->getChild(i), name)))
82             return p;
83
84         if (!strcmp(prop->getStringValue("name"), name))
85             return prop;
86       return 0;
87 }
88
89
90 void FGATCDialogNew::PopupDialog() {
91     double onBoardRadioFreq0 =
92         fgGetDouble("/instrumentation/comm[0]/frequencies/selected-mhz");
93     double onBoardRadioFreq1 =
94         fgGetDouble("/instrumentation/comm[1]/frequencies/selected-mhz");
95
96     const char *dialog_name = "atc-dialog";
97     _gui = (NewGUI *)globals->get_subsystem("gui");
98     SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
99     if (!dlg)
100         return;
101
102     _gui->closeDialog(dialog_name);
103     SGPropertyNode_ptr button_group = getNamedNode(dlg, "transmission-choice");
104     button_group->removeChildren("button", false);
105
106     const int bufsize = 32;
107     char buf[bufsize];
108     // loop over all entries that should fill up the dialog; use 10 items for now...
109     for (int i = 0; i < 10; i++) {
110         snprintf(buf, bufsize, "/sim/atc/opt[%d]", i);
111             fgSetBool(buf, false);
112         SGPropertyNode *entry = button_group->getNode("button", i, true);
113         copyProperties(button_group->getNode("button-template", true), entry);
114         entry->removeChildren("enabled", true);
115         entry->setStringValue("property", buf);
116         entry->setIntValue("keynum", '1' + i);
117         if (i == 0)
118             entry->setBoolValue("default", true);
119
120         snprintf(buf, bufsize, "%d", i + 1);
121         string legend = string(buf) + ". test"; // + current->menuentry;
122         entry->setStringValue("legend", legend.c_str());
123         entry->setIntValue("binding/value", i);
124         //current++;
125     }
126
127     if (dialogVisible) {
128         _gui->closeDialog(dialog_name);
129     } else {
130         _gui->showDialog(dialog_name);
131     }
132     dialogVisible = !dialogVisible;
133     return;
134 }
135
136 void FGATCDialogNew::update(double dt) {
137     static SGPropertyNode_ptr trans_num = globals->get_props()->getNode("/sim/atc/transmission-num", true);
138     int n = trans_num->getIntValue();
139     if (n >= 0) {
140         trans_num->setIntValue(-1);
141            // PopupCallback(n);
142         cerr << "Selected transmission message" << n << endl;
143     }
144 }