1 // atis.cxx - routines to generate the ATIS info string
2 // This is the implementation of the FGATIS class
4 // Written by David Luff, started October 2001.
6 // Copyright (C) 2001 David C Luff - david.luff@nottingham.ac.uk
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 #include <simgear/compiler.h>
29 #include <stdlib.h> // atoi()
30 #include <stdio.h> // sprintf
37 #include <simgear/misc/sg_path.hxx>
39 #include <Environment/environment_mgr.hxx>
40 #include <Environment/environment.hxx>
42 #include <Main/fg_props.hxx>
43 #include <Main/globals.hxx>
44 #include <Airports/runways.hxx>
47 #include "commlist.hxx"
48 #include "ATCutils.hxx"
58 _vPtr = globals->get_ATC_mgr()->GetVoicePointer(ATIS);
59 _voiceOK = (_vPtr == NULL ? false : true);
66 // Main update function - checks whether we are displaying or not the correct message.
67 void FGATIS::Update(double dt) {
70 // Check if we need to update the message
71 // - basically every hour and if the weather changes significantly at the station
73 // We need to get and display the message
75 //cout << "ATIS.CXX - calling ATCMgr to render transmission..." << endl;
76 Render(transmission, refname, true);
80 // We shouldn't be displaying
82 //cout << "ATIS.CXX - calling NoRender()..." << endl;
89 // Sets the actual broadcast ATIS transmission.
90 void FGATIS::UpdateTransmission() {
94 string phonetic_id_string;
95 string time_str = fgGetString("sim/time/gmt-string");
99 FGEnvironment stationweather =
100 ((FGEnvironmentMgr *)globals->get_subsystem("environment"))
101 ->getEnvironment(lat, lon, 0.0);
105 // UK CAA radiotelephony manual indicated ATIS transmissions start with "This is"
106 // Not sure about rest of the world though.
107 transmission += "This_is ";
108 // transmitted station name.
109 transmission += name;
111 transmission += " information";
113 //cout << "In atis.cxx, time_str = " << time_str << '\n';
114 // Add the recording identifier
115 // For now we will assume we only transmit every hour
116 hours = atoi((time_str.substr(1,2)).c_str()); //Warning - this is fragile if the
117 //time string format changes
118 //cout << "In atis.cxx, hours = " << hours << endl;
119 phonetic_id = current_commlist->GetCallSign(ident, hours, 0);
120 phonetic_id_string = GetPhoneticIdent(phonetic_id);
122 transmission += phonetic_id_string;
124 // Output the recording time. - we'll just output the last whole hour for now.
125 // FIXME - this only gets GMT time but that appears to be all the clock outputs for now
126 //cout << "in atis.cxx, time = " << time_str << endl;
127 transmission = transmission + " / Weather " + ConvertNumToSpokenDigits((time_str.substr(0,3) + "00")) + " hours zulu";
129 // Get the temperature
131 temp = (int)stationweather.get_temperature_degc();
133 // HACK ALERT - at the moment the new environment subsystem returns bogus temperatures
134 // FIXME - take out this hack when this gets fixed upstream
135 if((temp < -50) || (temp > 60)) {
139 sprintf(buf, "%i", abs(temp));
140 transmission += " / Temperature ";
142 transmission += "minus ";
144 string tempstr1 = buf;
146 transmission += ConvertNumToSpokenDigits(tempstr1);
147 transmission += " degrees_Celsius";
149 // Get the visibility
150 visibility = stationweather.get_visibility_m();
151 sprintf(buf, "%i", int(visibility/1600));
152 transmission += " / Visibility ";
154 transmission += ConvertNumToSpokenDigits(tempstr1);
155 transmission += " miles";
158 // FIXME: kludge for now
159 if (strcmp(fgGetString("/environment/clouds/layer[0]/type"), "clear")) {
161 fgGetDouble("/environment/clouds/layer[0]/elevation-ft");
162 // For some reason the altitude returned doesn't seem to correspond to the actual cloud altitude.
165 // cout << "cloudbase = " << cloudbase << endl;
166 sprintf(buf3, "%i", int(cloudbase)/1000);
167 sprintf(buf4, "%i", ((int)cloudbase % 1000)/100);
168 transmission += " / Cloudbase";
169 if(int(cloudbase)/1000) {
171 transmission = transmission + " " + ConvertNumToSpokenDigits(tempstr1) + " thousand";
173 if(((int)cloudbase % 1000)/100) {
175 transmission = transmission + " " + ConvertNumToSpokenDigits(tempstr1) + " hundred";
177 transmission += " feet";
180 // Get the pressure / altimeter
181 double P = fgGetDouble("/environment/pressure-sea-level-inhg");
182 if(ident.substr(0,2) == "EG" && fgGetBool("/sim/atc/use-millibars") == true) {
183 // Convert to millibars for the UK!
185 sprintf(buf, "%.0f", P);
187 sprintf(buf, "%.2f", P);
189 transmission += " / Altimeter ";
191 transmission += ConvertNumToSpokenDigits(tempstr1);
193 // Based on the airport-id and wind get the active runway
195 double speed = stationweather.get_wind_speed_kt();
196 double hdg = stationweather.get_wind_from_heading_deg();
198 hdg = 270; // This forces West-facing rwys to be used in no-wind situations
199 // which is consistent with Flightgear's initial setup.
200 transmission += " / Winds_light_and_variable";
202 // FIXME: get gust factor in somehow
205 sprintf(buf5, "%i", int(speed));
206 sprintf(buf6, "%i", int(hdg));
209 transmission = transmission + " / Winds " + ConvertNumToSpokenDigits(tempstr1) + " knots from "
210 + ConvertNumToSpokenDigits(tempstr2) + " degrees";
213 const FGAirport* apt = fgFindAirportID(ident);
215 string rwy_no = apt->getActiveRunwayForUsage()->ident();
217 transmission += " / Landing_and_departing_runway ";
218 transmission += ConvertRwyNumToSpokenString(atoi(rwy_no.c_str()));
219 //cout << "in atis.cxx, r.rwy_no = " << rwy_no << " r.id = " << r->id << " r.heading = " << r->heading << endl;
224 transmission += " / Advise_controller_on_initial_contact_you_have ";
225 transmission += phonetic_id_string;
226 transmission += " /// ";