]> git.mxchange.org Git - flightgear.git/blob - src/ATC/atcdialog.cxx
Merge branch 'next' into attenuation
[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 #ifdef HAVE_CONFIG_H
22 #  include "config.h"
23 #endif
24
25 #include <Main/fg_commands.hxx>
26 #include <Main/globals.hxx>
27 #include <Main/fg_props.hxx>
28
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>
38
39 #include "atcdialog.hxx"
40
41 FGATCDialogNew *currentATCDialog;
42
43 /*static bool doATCDialog(const SGPropertyNode* arg) {
44         //cerr << "Running doATCDialog" << endl;
45         currentATCDialog->PopupDialog();
46         return(true);
47 }*/
48 FGATCDialogNew * FGATCDialogNew::_instance = NULL;
49
50 FGATCDialogNew::FGATCDialogNew()
51 {
52   dialogVisible = true;
53 }
54
55 FGATCDialogNew::~FGATCDialogNew()
56 {
57 }
58
59
60
61 void FGATCDialogNew::init() {
62         // Add ATC-dialog to the command list
63     globals->get_commands()->addCommand("ATC-dialog", FGATCDialogNew::popup );
64         // Add ATC-freq-search to the command list
65         //globals->get_commands()->addCommand("ATC-freq-search", do_ATC_freq_search);
66
67         // initialize properties polled in Update()
68         //globals->get_props()->setStringValue("/sim/atc/freq-airport", "");
69         globals->get_props()->setIntValue("/sim/atc/transmission-num", -1);
70 }
71
72
73
74 // Display the ATC popup dialog box with options relevant to the users current situation.
75 // 
76 // So, the first thing we need to do is check the frequency that our pilot's nav radio
77 // is currently tuned to. The dialog should always contain an option to to tune the 
78 // to a particular frequency,
79
80 // Okay, let's see, according to my interpretation of David Luff's original code,
81 // his ATC subsystem wrote properties to a named node, called "transmission-choice"
82
83 static SGPropertyNode *getNamedNode(SGPropertyNode *prop, const char *name) {
84     SGPropertyNode* p;
85
86     for (int i = 0; i < prop->nChildren(); i++)
87         if ((p = getNamedNode(prop->getChild(i), name)))
88             return p;
89
90         if (!strcmp(prop->getStringValue("name"), name))
91             return prop;
92       return 0;
93 }
94
95 void FGATCDialogNew::addEntry(int nr, string txt) {
96     commands.clear();
97     commands.push_back(txt);
98     commands.push_back(string("Toggle ground network visibility"));
99 }
100
101 void FGATCDialogNew::removeEntry(int nr) {
102     commands.clear();
103 }
104
105
106
107 void FGATCDialogNew::PopupDialog() {
108     dialogVisible = !dialogVisible;
109     return;
110 }
111
112 void FGATCDialogNew::update(double dt) {
113  double onBoardRadioFreq0 =
114         fgGetDouble("/instrumentation/comm[0]/frequencies/selected-mhz");
115     double onBoardRadioFreq1 =
116         fgGetDouble("/instrumentation/comm[1]/frequencies/selected-mhz");
117
118     const char *dialog_name = "atc-dialog";
119     _gui = (NewGUI *)globals->get_subsystem("gui");
120     SGPropertyNode_ptr dlg = _gui->getDialogProperties(dialog_name);
121     if (!dlg)
122         return;
123
124     _gui->closeDialog(dialog_name);
125     SGPropertyNode_ptr button_group = getNamedNode(dlg, "transmission-choice");
126     button_group->removeChildren("button", false);
127
128     const int bufsize = 32;
129     char buf[bufsize];
130     int commandNr = 0;
131     // loop over all entries that should fill up the dialog; use 10 items for now...
132     for (StringVecIterator i = commands.begin(); i != commands.end(); i++) {
133         snprintf(buf, bufsize, "/sim/atc/opt[%d]", commandNr);
134             fgSetBool(buf, false);
135         SGPropertyNode *entry = button_group->getNode("button", commandNr, true);
136         copyProperties(button_group->getNode("button-template", true), entry);
137         entry->removeChildren("enabled", true);
138         entry->setStringValue("property", buf);
139         entry->setIntValue("keynum", '1' + commandNr);
140         if (commandNr == 0)
141             entry->setBoolValue("default", true);
142
143         snprintf(buf, bufsize, "%d", 1 + commandNr);
144         string legend = string(buf) + (*i); //"; // + current->menuentry;
145         entry->setStringValue("legend", legend.c_str());
146         entry->setIntValue("binding/value", commandNr);
147         commandNr++;
148         //current++;
149     }
150
151     if (dialogVisible) {
152         _gui->closeDialog(dialog_name);
153     } else {
154         _gui->showDialog(dialog_name);
155     }
156     //dialogVisible = !dialogVisible;
157     return;
158     /*
159     static SGPropertyNode_ptr trans_num = globals->get_props()->getNode("/sim/atc/transmission-num", true);
160     int n = trans_num->getIntValue();
161     if (n >= 0) {
162         trans_num->setIntValue(-1);
163            // PopupCallback(n);
164         cerr << "Selected transmission message" << n << endl;
165     } */
166 }