Changes to support voice ATIS
This commit is contained in:
parent
fe6784af51
commit
df089b80f8
2 changed files with 301 additions and 258 deletions
151
src/ATC/atis.cxx
151
src/ATC/atis.cxx
|
@ -55,22 +55,23 @@ SG_USING_STD(cout);
|
|||
#include "atislist.hxx"
|
||||
#include "ATCdisplay.hxx"
|
||||
#include "ATCutils.hxx"
|
||||
#include "ATCmgr.hxx"
|
||||
|
||||
// Constructor
|
||||
FGATIS::FGATIS()
|
||||
: type(0),
|
||||
lon(0.0), lat(0.0),
|
||||
elev(0.0),
|
||||
x(0.0), y(0.0), z(0.0),
|
||||
freq(0),
|
||||
range(0),
|
||||
display(false),
|
||||
displaying(false),
|
||||
ident(""),
|
||||
name(""),
|
||||
transmission(""),
|
||||
trans_ident(""),
|
||||
atis_failed(false)
|
||||
: type(0),
|
||||
lon(0.0), lat(0.0),
|
||||
elev(0.0),
|
||||
x(0.0), y(0.0), z(0.0),
|
||||
freq(0),
|
||||
range(0),
|
||||
display(false),
|
||||
displaying(false),
|
||||
ident(""),
|
||||
name(""),
|
||||
transmission(""),
|
||||
trans_ident(""),
|
||||
atis_failed(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -88,13 +89,15 @@ void FGATIS::Update() {
|
|||
} else {
|
||||
// We need to get and display the message
|
||||
UpdateTransmission();
|
||||
globals->get_ATC_display()->RegisterRepeatingMessage(transmission);
|
||||
//cout << "ATIS.CXX - calling ATCMgr to render transmission..." << endl;
|
||||
globals->get_ATC_mgr()->Render(transmission, true);
|
||||
displaying = true;
|
||||
}
|
||||
} else {
|
||||
// We shouldn't be displaying
|
||||
if(displaying) {
|
||||
globals->get_ATC_display()->CancelRepeatingMessage();
|
||||
//cout << "ATIS.CXX - calling NoRender()..." << endl;
|
||||
globals->get_ATC_mgr()->NoRender();
|
||||
displaying = false;
|
||||
}
|
||||
}
|
||||
|
@ -110,20 +113,23 @@ void FGATIS::UpdateTransmission() {
|
|||
int hours;
|
||||
// int minutes;
|
||||
|
||||
#ifdef FG_WEATHERCM
|
||||
#ifdef FG_WEATHERCM
|
||||
sgVec3 position = { lat, lon, elev };
|
||||
FGPhysicalProperty stationweather = WeatherDatabase->get(position);
|
||||
#else
|
||||
#else
|
||||
FGEnvironment stationweather =
|
||||
globals->get_environment_mgr()->getEnvironment(lat, lon, elev);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
transmission = "";
|
||||
|
||||
// Start with the transmitted station name.
|
||||
// UK CAA radiotelephony manual indicated ATIS transmissions start with "This is"
|
||||
// Not sure about rest of the world though.
|
||||
transmission += "This_is ";
|
||||
// transmitted station name.
|
||||
transmission += name;
|
||||
// Add "Information"
|
||||
transmission += " Information";
|
||||
transmission += " information";
|
||||
|
||||
//cout << "In atis.cxx, time_str = " << time_str << '\n';
|
||||
// Add the recording identifier
|
||||
|
@ -139,29 +145,44 @@ void FGATIS::UpdateTransmission() {
|
|||
// Output the recording time. - we'll just output the last whole hour for now.
|
||||
// FIXME - this only gets GMT time but that appears to be all the clock outputs for now
|
||||
//cout << "in atis.cxx, time = " << time_str << endl;
|
||||
transmission = transmission + " Weather " + time_str.substr(0,3) + "00 hours Zulu";
|
||||
transmission = transmission + " / Weather " + ConvertNumToSpokenDigits((time_str.substr(0,3) + "00")) + " hours zulu";
|
||||
|
||||
// Get the temperature
|
||||
// (Hardwire it for now since the global property returns the temperature at the current altitude
|
||||
//temperature = fgGetDouble("/environment/weather/temperature-K");
|
||||
#ifdef FG_WEATHERCM
|
||||
#ifdef FG_WEATHERCM
|
||||
sprintf(buf, "%i", int(stationweather.Temperature - 273.15));
|
||||
#else
|
||||
sprintf(buf, "%d", int(stationweather.get_temperature_degc()));
|
||||
#endif
|
||||
transmission += " Temperature ";
|
||||
transmission += buf;
|
||||
transmission += " degrees Celsius";
|
||||
#else
|
||||
// HACK ALERT - at the moment the new environment subsystem returns bogus temperatures
|
||||
// FIXME - take out this hack when this gets fixed upstream
|
||||
int temp = (int)stationweather.get_temperature_degc();
|
||||
if((temp < -50) || (temp > 60)) {
|
||||
temp = 15;
|
||||
}
|
||||
// original:
|
||||
//sprintf(buf, "%d", int(stationweather.get_temperature_degc()));
|
||||
// hack:
|
||||
sprintf(buf, "%d", temp);
|
||||
#endif
|
||||
transmission += " / Temperature ";
|
||||
if(temp < 0) {
|
||||
transmission += "minus ";
|
||||
}
|
||||
string tempstr1 = buf;
|
||||
string tempstr2;
|
||||
transmission += ConvertNumToSpokenDigits(tempstr1);
|
||||
transmission += " degrees_Celsius";
|
||||
|
||||
// Get the visibility
|
||||
#ifdef FG_WEATHERCM
|
||||
#ifdef FG_WEATHERCM
|
||||
visibility = fgGetDouble("/environment/visibility-m");
|
||||
#else
|
||||
#else
|
||||
visibility = stationweather.get_visibility_m();
|
||||
#endif
|
||||
#endif
|
||||
sprintf(buf, "%i", int(visibility/1600));
|
||||
transmission += " Visibility ";
|
||||
transmission += buf;
|
||||
transmission += " / Visibility ";
|
||||
tempstr1 = buf;
|
||||
transmission += ConvertNumToSpokenDigits(tempstr1);
|
||||
transmission += " miles";
|
||||
|
||||
// Get the cloudbase
|
||||
|
@ -171,19 +192,31 @@ void FGATIS::UpdateTransmission() {
|
|||
fgGetDouble("/environment/clouds/layer[0]/elevation-ft");
|
||||
// For some reason the altitude returned doesn't seem to correspond to the actual cloud altitude.
|
||||
char buf3[10];
|
||||
char buf4[10];
|
||||
// cout << "cloudbase = " << cloudbase << endl;
|
||||
sprintf(buf3, "%i", int(cloudbase));
|
||||
transmission = transmission + " Cloudbase " + buf3 + " feet";
|
||||
sprintf(buf3, "%i", int(cloudbase)/1000);
|
||||
sprintf(buf4, "%i", ((int)cloudbase % 1000)/100);
|
||||
transmission += " / Cloudbase";
|
||||
if(int(cloudbase)/1000) {
|
||||
tempstr1 = buf3;
|
||||
transmission = transmission + " " + ConvertNumToSpokenDigits(tempstr1) + " thousand";
|
||||
}
|
||||
if(((int)cloudbase % 1000)/100) {
|
||||
tempstr1 = buf4;
|
||||
transmission = transmission + " " + ConvertNumToSpokenDigits(tempstr1) + " hundred";
|
||||
}
|
||||
transmission += " feet";
|
||||
}
|
||||
|
||||
// Get the pressure / altimeter
|
||||
|
||||
#ifndef FG_WEATHERCM
|
||||
#ifndef FG_WEATHERCM
|
||||
double altimeter = stationweather.get_pressure_sea_level_inhg();
|
||||
sprintf(buf, "%.2f", altimeter);
|
||||
transmission += " Altimeter ";
|
||||
transmission += buf;
|
||||
#endif
|
||||
transmission += " / Altimeter ";
|
||||
tempstr1 = buf;
|
||||
transmission += ConvertNumToSpokenDigits(tempstr1);
|
||||
#endif
|
||||
|
||||
// Based on the airport-id and wind get the active runway
|
||||
//FGRunway *r;
|
||||
|
@ -192,7 +225,7 @@ void FGATIS::UpdateTransmission() {
|
|||
path.append( "runways.mk4" );
|
||||
FGRunways runways( path.c_str() );
|
||||
|
||||
#ifdef FG_WEATHERCM
|
||||
#ifdef FG_WEATHERCM
|
||||
//Set the heading to into the wind
|
||||
double wind_x = stationweather.Wind[0];
|
||||
double wind_y = stationweather.Wind[1];
|
||||
|
@ -203,7 +236,7 @@ void FGATIS::UpdateTransmission() {
|
|||
//If no wind use 270degrees
|
||||
if(speed == 0) {
|
||||
hdg = 270;
|
||||
transmission += " Winds light and variable";
|
||||
transmission += " / Winds_light_and_variable";
|
||||
} else {
|
||||
// //normalize the wind to get the direction
|
||||
//wind_x /= speed; wind_y /= speed;
|
||||
|
@ -213,33 +246,43 @@ void FGATIS::UpdateTransmission() {
|
|||
hdg += 360.0;
|
||||
|
||||
//add a description of the wind to the transmission
|
||||
char buf2[72];
|
||||
sprintf(buf2, "%s %i %s %i %s", " Winds ", int(speed), " knots from ", int(hdg), " degrees");
|
||||
transmission += buf2;
|
||||
char buf5[10];
|
||||
char buf6[10];
|
||||
sprintf(buf5, "%i", int(speed));
|
||||
sprintf(buf6, "%i", int(hdg));
|
||||
tempstr1 = buf5;
|
||||
tempstr2 = buf6;
|
||||
transmission = transmission + " / Winds " + ConvertNumToSpokenDigits(tempstr1) + " knots from "
|
||||
+ ConvertNumToSpokenDigits(tempstr2) + " degrees";
|
||||
}
|
||||
#else
|
||||
#else
|
||||
double speed = stationweather.get_wind_speed_kt();
|
||||
double hdg = stationweather.get_wind_from_heading_deg();
|
||||
if (speed == 0) {
|
||||
transmission += " Winds light and variable";
|
||||
transmission += " / Winds_light_and_variable";
|
||||
} else {
|
||||
// FIXME: get gust factor in somehow
|
||||
char buf2[72];
|
||||
sprintf(buf2, "%s %i %s %i %s", " Winds ", int(speed),
|
||||
" knots from ", int(hdg), " degrees");
|
||||
transmission += buf2;
|
||||
char buf5[10];
|
||||
char buf6[10];
|
||||
sprintf(buf5, "%i", int(speed));
|
||||
sprintf(buf6, "%i", int(hdg));
|
||||
tempstr1 = buf5;
|
||||
tempstr2 = buf6;
|
||||
transmission = transmission + " / Winds " + ConvertNumToSpokenDigits(tempstr1) + " knots from "
|
||||
+ ConvertNumToSpokenDigits(tempstr2) + " degrees";
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
string rwy_no = runways.search(ident, int(hdg));
|
||||
if(rwy_no != (string)"NN") {
|
||||
transmission += " Landing and departing runway ";
|
||||
transmission += rwy_no;
|
||||
transmission += " / Landing_and_departing_runway ";
|
||||
transmission += ConvertRwyNumToSpokenString(atoi(rwy_no.c_str()));
|
||||
//cout << "in atis.cxx, r.rwy_no = " << rwy_no << " r.id = " << r->id << " r.heading = " << r->heading << endl;
|
||||
}
|
||||
|
||||
// Anything else?
|
||||
|
||||
transmission += " Advise controller on initial contact you have ";
|
||||
transmission += " / Advise_controller_on_initial_contact_you_have ";
|
||||
transmission += phonetic_id_string;
|
||||
transmission += " /// ";
|
||||
}
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
|
||||
#ifdef SG_HAVE_STD_INCLUDES
|
||||
# include <istream>
|
||||
#include <iomanip>
|
||||
# include <iomanip>
|
||||
#elif defined( SG_HAVE_NATIVE_SGI_COMPILERS )
|
||||
# include <iostream.h>
|
||||
#elif defined( __BORLANDC__ ) || (__APPLE__)
|
||||
# include <iostream>
|
||||
#else
|
||||
# include <istream.h>
|
||||
#include <iomanip.h>
|
||||
# include <iomanip.h>
|
||||
#endif
|
||||
|
||||
#if ! defined( SG_HAVE_NATIVE_SGI_COMPILERS )
|
||||
|
@ -85,7 +85,7 @@ class FGATIS : public FGATC {
|
|||
//SGPropertyNode *airplane_lat_node;
|
||||
//SGPropertyNode *airplane_elev_node;
|
||||
|
||||
public:
|
||||
public:
|
||||
|
||||
FGATIS(void);
|
||||
~FGATIS(void);
|
||||
|
@ -112,7 +112,7 @@ public:
|
|||
inline string get_trans_ident() { return trans_ident; }
|
||||
inline atc_type GetType() { return ATIS; }
|
||||
|
||||
private:
|
||||
private:
|
||||
|
||||
//Update the transmission string
|
||||
void UpdateTransmission(void);
|
||||
|
|
Loading…
Reference in a new issue