]> git.mxchange.org Git - flightgear.git/blob - src/ATCDCL/ATC.cxx
Remove more code only concerned with the depreciated interactive ATC/AI
[flightgear.git] / src / ATCDCL / ATC.cxx
1 // Implementation of FGATC - ATC subsystem base class.
2 //
3 // Written by David Luff, started February 2002.
4 //
5 // Copyright (C) 2002  David C Luff - david.luff@nottingham.ac.uk
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include "ATC.hxx"
26
27 #include <iostream>
28
29 #include <simgear/sound/soundmgr_openal.hxx>
30 #include <simgear/structure/exception.hxx>
31
32 #include <Main/globals.hxx>
33 #include <Main/fg_props.hxx>
34
35
36
37 FGATC::FGATC() :
38         _playing(false),
39         _voiceOK(false),
40         _sgr(NULL),
41         freqClear(true),
42         receiving(false),
43         respond(false),
44         responseID(""),
45         runResponseCounter(false),
46         _runReleaseCounter(false),
47         responseReqd(false),
48         _type(INVALID),
49         _display(false),
50         // Transmission timing stuff
51         pending_transmission(""),
52         _timeout(0),
53         _pending(false),
54         _transmit(false),
55         _transmitting(false),
56         _counter(0.0),
57         _max_count(5.0)
58 {
59         SGSoundMgr *smgr = globals->get_soundmgr();
60         _sgr = smgr->find("atc", true);
61         _sgr->tie_to_listener();
62
63         _volume = fgGetNode("/sim/sound/atc/volume", true);
64         _enabled = fgGetNode("/sim/sound/atc/enabled", true);
65         _atc_external = fgGetNode("/sim/sound/atc/external-view", true);
66         _internal = fgGetNode("/sim/current-view/internal", true);
67 }
68
69 FGATC::~FGATC() {
70 }
71
72 // Derived classes wishing to use the response counter should 
73 // call this from their own Update(...).
74 void FGATC::Update(double dt) {
75         if(runResponseCounter) {
76                 //cout << responseCounter << '\t' << responseTime << '\n';
77                 if(responseCounter >= responseTime) {
78                         runResponseCounter = false;
79                         respond = true;
80                         //cout << "RESPOND\n";
81                 } else {
82                         responseCounter += dt;
83                 }
84         }
85         
86         if(_runReleaseCounter) {
87                 if(_releaseCounter >= _releaseTime) {
88                         freqClear = true;
89                         _runReleaseCounter = false;
90                 } else {
91                         _releaseCounter += dt;
92                 }
93         }
94         
95         // Transmission stuff cribbed from AIPlane.cxx
96         if(_pending) {
97                 if(GetFreqClear()) {
98                         //cout << "TUNED STATION FREQ CLEAR\n";
99                         SetFreqInUse();
100                         _pending = false;
101                         _transmit = true;
102                         _transmitting = false;
103                 } else {
104                         if(_timeout > 0.0) {    // allows count down to be avoided by initially setting it to zero
105                                 _timeout -= dt;
106                                 if(_timeout <= 0.0) {
107                                         _timeout = 0.0;
108                                         _pending = false;
109                                         // timed out - don't render.
110                                 }
111                         }
112                 }
113         }
114
115 #ifdef ENABLE_AUDIO_SUPPORT
116         bool active = _atc_external->getBoolValue() ||
117                       _internal->getBoolValue();
118
119         if ( active && _enabled->getBoolValue() ) {
120                 _sgr->set_volume( _volume->getFloatValue() );
121                 _sgr->resume(); // no-op if already in resumed state
122         } else {
123                 _sgr->suspend();
124         }
125 #endif
126
127         if(_transmit) {
128                 _counter = 0.0;
129                 _max_count = 5.0;               // FIXME - hardwired length of message - need to calculate it!
130                 
131                 //cout << "Transmission = " << pending_transmission << '\n';
132                 if(_display) {
133                         //Render(pending_transmission, ident, false);
134                         Render(pending_transmission);
135                 }
136                 _transmit = false;
137                 _transmitting = true;
138         } else if(_transmitting) {
139                 if(_counter >= _max_count) {
140                         //NoRender(plane.callsign);  commented out since at the moment NoRender is designed just to stop repeating messages,
141                         // and this will be primarily used on single messages.
142                         _transmitting = false;
143                         //if(tuned_station) tuned_station->NotifyTransmissionFinished(plane.callsign);
144                         // TODO - need to let the plane the transmission is aimed at that it's finished.
145                         // However, for now we'll just release the frequency since if we don't it all goes pear-shaped
146                         _releaseCounter = 0.0;
147                         _releaseTime = 0.9;
148                         _runReleaseCounter = true;
149                 }
150                 _counter += dt;
151         }
152 }
153
154 void FGATC::ReceiveUserCallback(int code) {
155         SG_LOG(SG_ATC, SG_WARN, "WARNING - whichever ATC class was intended to receive callback code " << code << " didn't get it!!!");
156 }
157
158 void FGATC::SetResponseReqd(const string& rid) {
159         receiving = false;
160         responseReqd = true;
161         respond = false;        // TODO - this ignores the fact that more than one plane could call this before response
162                                                 // Shouldn't happen with AI only, but user could confuse things??
163         responseID = rid;
164         runResponseCounter = true;
165         responseCounter = 0.0;
166         responseTime = 1.8;             // TODO - randomize this slightly.
167 }
168
169 void FGATC::NotifyTransmissionFinished(const string& rid) {
170         //cout << "Transmission finished, callsign = " << rid << '\n';
171         receiving = false;
172         responseID = rid;
173         if(responseReqd) {
174                 runResponseCounter = true;
175                 responseCounter = 0.0;
176                 responseTime = 1.2;     // TODO - randomize this slightly, and allow it to be dependent on the transmission and how busy the ATC is.
177                 respond = false;        // TODO - this ignores the fact that more than one plane could call this before response
178                                                         // Shouldn't happen with AI only, but user could confuse things??
179         } else {
180                 freqClear = true;
181         }
182 }
183
184 void FGATC::SetData(ATCData* d) {
185         _type = d->type;
186         _geod = d->geod;
187         _cart = d->cart;
188         range = d->range;
189         ident = d->ident;
190         name = d->name;
191         freq = d->freq;
192 }
193
194 // Render a transmission
195 // Outputs the transmission either on screen or as audio depending on user preference
196 // The refname is a string to identify this sample to the sound manager
197 // The repeating flag indicates whether the message should be repeated continuously or played once.
198 void FGATC::Render(string& msg, const float volume, 
199                                    const string& refname, const bool repeating) {
200         if (volume < 0.05) return;
201
202         if (repeating)
203                 fgSetString("/sim/messages/atis", msg.c_str());
204         else
205                 fgSetString("/sim/messages/atc", msg.c_str());
206
207 #ifdef ENABLE_AUDIO_SUPPORT
208         _voice = (_voiceOK && fgGetBool("/sim/sound/voice"));
209         if(_voice) {
210                 size_t len;
211                 void* buf = _vPtr->WriteMessage((char*)msg.c_str(), &len);
212                 if(buf) {
213                         NoRender(refname);
214                         try {
215 // >>> Beware: must pass a (new) object to the (add) method,
216 // >>> because the (remove) method is going to do a (delete)
217 // >>> whether that's what you want or not.
218                                 SGSoundSample *simple = new SGSoundSample(&buf, len, 8000);
219                                 simple->set_volume(volume);
220                                 _sgr->add(simple, refname);
221                                 _sgr->play(refname, repeating);
222                         } catch ( sg_io_exception &e ) {
223                                 SG_LOG(SG_GENERAL, SG_ALERT, e.getFormattedMessage());
224                         }
225                 }
226         }
227 #endif  // ENABLE_AUDIO_SUPPORT
228         if(!_voice) {
229                 // first rip the underscores and the pause hints out of the string - these are for the convienience of the voice parser
230                 for(unsigned int i = 0; i < msg.length(); ++i) {
231                         if((msg.substr(i,1) == "_") || (msg.substr(i,1) == "/")) {
232                                 msg[i] = ' ';
233                         }
234                 }
235         }
236         _playing = true;        
237 }
238
239
240 // Cease rendering a transmission.
241 void FGATC::NoRender(const string& refname) {
242         if(_playing) {
243                 if(_voice) {
244 #ifdef ENABLE_AUDIO_SUPPORT             
245                         _sgr->stop(refname);
246                         _sgr->remove(refname);
247 #endif
248                 }
249                 _playing = false;
250         }
251 }
252
253 // Generate the text of a message from its parameters and the current context.
254 string FGATC::GenText(const string& m, int c) {
255         return("");
256 }
257
258 ostream& operator << (ostream& os, atc_type atc) {
259         switch(atc) {
260                 case(AWOS):        return(os << "AWOS");
261                 case(ATIS):        return(os << "ATIS");
262                 case(GROUND):    return(os << "GROUND");
263                 case(TOWER):      return(os << "TOWER");
264                 case(APPROACH):   return(os << "APPROACH");
265                 case(DEPARTURE):  return(os << "DEPARTURE");
266                 case(ENROUTE):  return(os << "ENROUTE");
267                 case(INVALID):  return(os << "INVALID");
268         }
269         return(os << "ERROR - Unknown switch in atc_type operator << ");
270 }
271
272 std::istream& operator >> ( std::istream& fin, ATCData& a )
273 {
274         double f;
275         char ch;
276         char tp;
277         
278         fin >> tp;
279         
280         switch(tp) {
281         case 'I':
282                 a.type = ATIS;
283                 break;
284         case 'T':
285                 a.type = TOWER;
286                 break;
287         case 'G':
288                 a.type = GROUND;
289                 break;
290         case 'A':
291                 a.type = APPROACH;
292                 break;
293         case '[':
294                 a.type = INVALID;
295                 return fin >> skipeol;
296         default:
297                 SG_LOG(SG_GENERAL, SG_ALERT, "Warning - unknown type \'" << tp << "\' found whilst reading ATC frequency data!\n");
298                 a.type = INVALID;
299                 return fin >> skipeol;
300         }
301         
302         double lat, lon, elev;
303
304         fin >> lat >> lon >> elev >> f >> a.range >> a.ident;
305         a.geod = SGGeod::fromDegM(lon, lat, elev);
306         a.name = "";
307         fin >> ch;
308         if(ch != '"') a.name += ch;
309         while(1) {
310                 //in >> noskipws
311                 fin.unsetf(std::ios::skipws);
312                 fin >> ch;
313                 if((ch == '"') || (ch == 0x0A)) {
314                         break;
315                 }   // we shouldn't need the 0x0A but it makes a nice safely in case someone leaves off the "
316                 a.name += ch;
317         }
318         fin.setf(std::ios::skipws);
319         //cout << "Comm name = " << a.name << '\n';
320         
321         a.freq = (int)(f*100.0 + 0.5);
322         
323         // cout << a.ident << endl;
324         
325         // generate cartesian coordinates
326         a.cart = SGVec3d::fromGeod(a.geod);     
327         return fin >> skipeol;
328 }
329