1 // FGAIPlane - abstract base class for an AI plane
3 // Written by David Luff, started 2002.
5 // Copyright (C) 2002 David C. Luff - david.luff@nottingham.ac.uk
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.
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.
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.
21 #include <Main/globals.hxx>
22 #include <Main/fg_props.hxx>
23 #include <simgear/math/point3d.hxx>
24 #include <simgear/debug/logstream.hxx>
25 #include <simgear/sound/soundmgr_openal.hxx>
31 #include "AIPlane.hxx"
32 #include "ATCdisplay.hxx"
34 FGAIPlane::FGAIPlane() {
37 pending_transmission = "";
42 _transmitting = false;
51 _rollSuspended = false;
54 FGAIPlane::~FGAIPlane() {
57 void FGAIPlane::Update(double dt) {
60 if(tuned_station->GetFreqClear()) {
61 //cout << "TUNED STATION FREQ CLEAR\n";
62 tuned_station->SetFreqInUse();
65 _transmitting = false;
67 if(_timeout > 0.0) { // allows count down to be avoided by initially setting it to zero
72 // timed out - don't render.
73 if(_callback_code == 99) {
74 // MEGA-HACK - 99 is the remove self callback - currently this *does* need to be run even if the transmission isn't made.
75 ProcessCallback(_callback_code);
81 // Not tuned to ATC - Just go ahead and transmit
82 //cout << "NOT TUNED TO ATC\n";
85 _transmitting = false;
89 // This turns on rendering if on the same freq as the user
90 // TODO - turn it off if user switches to another freq - keep track of where in message we are etc.
92 //cout << "transmit\n";
93 double user_freq0 = fgGetDouble("/instrumentation/comm[0]/frequencies/selected-mhz");
94 double user_freq1 = fgGetDouble("/instrumentation/comm[1]/frequencies/selected-mhz");
96 _max_count = 5.0; // FIXME - hardwired length of message - need to calculate it!
98 //cout << "Transmission = " << pending_transmission << '\n';
100 // The radios dialog seems to set slightly imprecise freqs, eg 118.099998
101 // The eplison stuff below is a work-around
102 double eps0 = fabs(freq - user_freq0);
103 double eps1 = fabs(freq - user_freq1);
104 if(eps0 < 0.002 || eps1 < 0.002) {
105 //cout << "Transmitting..." << endl;
106 // we are on the same frequency, so check distance to the user plane
108 // For now assume in range !!!
109 // TODO - implement range checking
110 Render(plane.callsign, false);
113 // Run the callback regardless of whether on same freq as user or not.
115 ProcessCallback(_callback_code);
118 _transmitting = true;
119 } else if(_transmitting) {
120 if(_counter >= _max_count) {
121 NoRender(plane.callsign);
122 _transmitting = false;
123 // For now we'll let ATC decide whether to respond
124 //if(tuned_station) tuned_station->SetResponseReqd(plane.callsign);
125 //if(tuned_station->get_ident() == "KRHV") cout << "Notifying transmission finished" << endl;
126 if(tuned_station) tuned_station->NotifyTransmissionFinished(plane.callsign);
131 // Fly the plane if necessary
133 while((_tgtTrack - track) > 180.0) track += 360.0;
134 while((track - _tgtTrack) > 180.0) track -= 360.0;
135 double turn_time = 60.0;
136 track += (360.0 / turn_time) * dt * (_tgtTrack > track ? 1.0 : -1.0);
137 // TODO - bank a bit less for small turns.
138 Bank(25.0 * (_tgtTrack > track ? 1.0 : -1.0));
139 if(fabs(track - _tgtTrack) < 2.0) { // TODO - might need to optimise the delta there - it's on the large (safe) side atm.
145 if(!_rollSuspended) {
146 if(fabs(_roll - _tgtRoll) > 0.6) {
147 // This *should* bank us smoothly to any angle
148 _roll -= ((_roll - _tgtRoll)/fabs(_roll - _tgtRoll));
155 void FGAIPlane::Transmit(int callback_code) {
156 SG_LOG(SG_ATC, SG_INFO, "Transmit called for plane " << plane.callsign << ", msg = " << pending_transmission);
158 _callback_code = callback_code;
162 void FGAIPlane::ConditionalTransmit(double timeout, int callback_code) {
163 SG_LOG(SG_ATC, SG_INFO, "Timed transmit called for plane " << plane.callsign << ", msg = " << pending_transmission);
165 _callback_code = callback_code;
169 void FGAIPlane::ImmediateTransmit(int callback_code) {
170 Render(plane.callsign, false);
172 ProcessCallback(callback_code);
176 // Derived classes should override this.
177 void FGAIPlane::ProcessCallback(int code) {
180 // Render a transmission
181 // Outputs the transmission either on screen or as audio depending on user preference
182 // The refname is a string to identify this sample to the sound manager
183 // The repeating flag indicates whether the message should be repeated continuously or played once.
184 void FGAIPlane::Render(string refname, bool repeating) {
185 #ifdef ENABLE_AUDIO_SUPPORT
186 voice = (voiceOK && fgGetBool("/sim/sound/voice"));
189 unsigned char* buf = vPtr->WriteMessage((char*)pending_transmission.c_str(), len, voice);
191 SGSoundSample* simple = new SGSoundSample(buf, len, 8000, false);
192 // TODO - at the moment the volume is always set off comm1
193 // and can't be changed after the transmission has started.
194 simple->set_volume(5.0 * fgGetDouble("/instrumentation/comm[0]/volume"));
195 globals->get_soundmgr()->add(simple, refname);
197 globals->get_soundmgr()->play_looped(refname);
199 globals->get_soundmgr()->play_once(refname);
204 #endif // ENABLE_AUDIO_SUPPORT
206 // first rip the underscores and the pause hints out of the string - these are for the convienience of the voice parser
207 for(unsigned int i = 0; i < pending_transmission.length(); ++i) {
208 if((pending_transmission.substr(i,1) == "_") || (pending_transmission.substr(i,1) == "/")) {
209 pending_transmission[i] = ' ';
212 globals->get_ATC_display()->RegisterSingleMessage(pending_transmission, 0.0);
218 // Cease rendering a transmission.
219 void FGAIPlane::NoRender(string refname) {
222 #ifdef ENABLE_AUDIO_SUPPORT
223 globals->get_soundmgr()->stop(refname);
224 globals->get_soundmgr()->remove(refname);
227 globals->get_ATC_display()->CancelRepeatingMessage();
237 void FGAIPlane::RegisterTransmission(int code) {
241 // Return what type of landing we're doing on this circuit
242 LandingType FGAIPlane::GetLandingOption() {
247 ostream& operator << (ostream& os, PatternLeg pl) {
249 case(TAKEOFF_ROLL): return(os << "TAKEOFF ROLL");
250 case(CLIMBOUT): return(os << "CLIMBOUT");
251 case(TURN1): return(os << "TURN1");
252 case(CROSSWIND): return(os << "CROSSWIND");
253 case(TURN2): return(os << "TURN2");
254 case(DOWNWIND): return(os << "DOWNWIND");
255 case(TURN3): return(os << "TURN3");
256 case(BASE): return(os << "BASE");
257 case(TURN4): return(os << "TURN4");
258 case(FINAL): return(os << "FINAL");
259 case(LANDING_ROLL): return(os << "LANDING ROLL");
260 case(LEG_UNKNOWN): return(os << "UNKNOWN");
262 return(os << "ERROR - Unknown switch in PatternLeg operator << ");
266 ostream& operator << (ostream& os, LandingType lt) {
268 case(FULL_STOP): return(os << "FULL STOP");
269 case(STOP_AND_GO): return(os << "STOP AND GO");
270 case(TOUCH_AND_GO): return(os << "TOUCH AND GO");
271 case(AIP_LT_UNKNOWN): return(os << "UNKNOWN");
273 return(os << "ERROR - Unknown switch in LandingType operator << ");