]> git.mxchange.org Git - flightgear.git/blob - src/ATC/ATC.cxx
Enhancements to AI plane transmissions
[flightgear.git] / src / ATC / 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., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include <simgear/sound/soundmgr.hxx>
26
27 #include <Main/fg_props.hxx>
28
29 #include "ATC.hxx"
30 #include "ATCdisplay.hxx"
31
32 FGATC::FGATC() {
33         freqClear = true;
34         receiving = false;
35         respond = false;
36         runResponseCounter = false;
37         responseID = "";
38         responseReqd = false;
39 }
40
41 FGATC::~FGATC() {
42 }
43
44 // Derived classes wishing to use the response counter should call this from their own Update(...).
45 void FGATC::Update(double dt) {
46         if(runResponseCounter) {
47                 //cout << responseCounter << '\t' << responseTime << '\n';
48                 if(responseCounter >= responseTime) {
49                         runResponseCounter = false;
50                         respond = true;
51                         //cout << "RESPOND\n";
52                 } else {
53                         responseCounter += dt;
54                 }
55         }
56 }
57
58 void FGATC::SetResponseReqd(string rid) {
59         receiving = false;
60         responseReqd = true;
61         respond = false;        // TODO - this ignores the fact that more than one plane could call this before response
62                                                 // Shouldn't happen with AI only, but user could confuse things??
63         responseID = rid;
64         responseCounter = 0.0;
65         responseTime = 2.5;             // TODO - randomize this slightly.
66 }
67
68 void FGATC::NotifyTransmissionFinished(string rid) {
69         receiving = false;
70         responseID = rid;
71         if(responseReqd) {
72                 runResponseCounter = true;
73                 responseCounter = 0.0;
74                 responseTime = 2.5;             // TODO - randomize this slightly.
75         } else {
76                 freqClear = true;
77         }
78 }
79
80 void FGATC::AddPlane(string pid) {
81 }
82
83 int FGATC::RemovePlane() {
84         return 0;
85 }
86
87 void FGATC::SetDisplay() {
88 }
89
90 void FGATC::SetNoDisplay() {
91 }
92
93 atc_type FGATC::GetType() {
94         return INVALID;
95 }
96
97 void FGATC::SetData(ATCData* d) {
98         lon = d->lon;
99         lat = d->lat;
100         elev = d->elev;
101         x = d->x;
102         y = d->y;
103         z = d->z;
104         range = d->range;
105         ident = d->ident;
106         name = d->name;
107         freq = d->freq;
108 }
109
110 // Render a transmission
111 // Outputs the transmission either on screen or as audio depending on user preference
112 // The refname is a string to identify this sample to the sound manager
113 // The repeating flag indicates whether the message should be repeated continuously or played once.
114 void FGATC::Render(string msg, string refname, bool repeating) {
115         #ifdef ENABLE_AUDIO_SUPPORT
116         voice = (voiceOK && fgGetBool("/sim/sound/audible")
117         && fgGetBool("/sim/sound/voice"));
118         if(voice) {
119                 int len;
120                 unsigned char* buf = vPtr->WriteMessage((char*)msg.c_str(), len, voice);
121                 if(voice) {
122                         SGSimpleSound* simple = new SGSimpleSound(buf, len);
123                         // TODO - at the moment the volume is always set off comm1 
124                         // and can't be changed after the transmission has started.
125                         simple->set_volume(5.0 * fgGetDouble("/radios/comm[0]/volume"));
126                         globals->get_soundmgr()->add(simple, refname);
127                         if(repeating) {
128                                 globals->get_soundmgr()->play_looped(refname);
129                         } else {
130                                 globals->get_soundmgr()->play_once(refname);
131                         }
132                 }
133                 delete[] buf;
134         }
135         #endif  // ENABLE_AUDIO_SUPPORT
136         if(!voice) {
137                 // first rip the underscores and the pause hints out of the string - these are for the convienience of the voice parser
138                 for(unsigned int i = 0; i < msg.length(); ++i) {
139                         if((msg.substr(i,1) == "_") || (msg.substr(i,1) == "/")) {
140                                 msg[i] = ' ';
141                         }
142                 }
143                 globals->get_ATC_display()->RegisterRepeatingMessage(msg);
144         }
145         playing = true; 
146 }
147
148
149 // Cease rendering a transmission.
150 void FGATC::NoRender(string refname) {
151         if(playing) {
152                 if(voice) {
153                         #ifdef ENABLE_AUDIO_SUPPORT             
154                         globals->get_soundmgr()->stop(refname);
155                         globals->get_soundmgr()->remove(refname);
156                         #endif
157                 } else {
158                         globals->get_ATC_display()->CancelRepeatingMessage();
159                 }
160                 playing = false;
161         }
162 }
163
164 ostream& operator << (ostream& os, atc_type atc) {
165         switch(atc) {
166                 case(INVALID):    return(os << "INVALID");
167                 case(ATIS):       return(os << "ATIS");
168                 case(GROUND):     return(os << "GROUND");
169                 case(TOWER):      return(os << "TOWER");
170                 case(APPROACH):   return(os << "APPROACH");
171                 case(DEPARTURE):  return(os << "DEPARTURE");
172                 case(ENROUTE):    return(os << "ENROUTE");
173         }
174         return(os << "ERROR - Unknown switch in atc_type operator << ");
175 }