2000-04-24 23:50:59 +00:00
|
|
|
// radiostack.hxx -- class to manage an instance of the radio stack
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_RADIOSTACK_HXX
|
|
|
|
#define _FG_RADIOSTACK_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
#include <Navaids/ilslist.hxx>
|
|
|
|
#include <Navaids/navlist.hxx>
|
|
|
|
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
class FGRadioStack {
|
|
|
|
|
|
|
|
bool need_update;
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
bool nav1_valid;
|
2000-04-24 23:50:59 +00:00
|
|
|
bool nav1_inrange;
|
2000-05-04 15:53:03 +00:00
|
|
|
bool nav1_dme;
|
2000-04-24 23:50:59 +00:00
|
|
|
bool nav1_loc;
|
|
|
|
double nav1_freq;
|
2000-04-27 22:45:48 +00:00
|
|
|
double nav1_alt_freq;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav1_radial;
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
double nav1_sel_radial;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav1_lon;
|
|
|
|
double nav1_lat;
|
|
|
|
double nav1_elev;
|
2000-05-04 01:18:45 +00:00
|
|
|
double nav1_effective_range;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav1_dist;
|
|
|
|
double nav1_heading;
|
2000-04-25 04:58:25 +00:00
|
|
|
double nav1_target_gs;
|
2000-05-04 01:18:45 +00:00
|
|
|
double nav1_x;
|
|
|
|
double nav1_y;
|
|
|
|
double nav1_z;
|
2000-04-24 23:50:59 +00:00
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
bool nav2_valid;
|
2000-04-24 23:50:59 +00:00
|
|
|
bool nav2_inrange;
|
2000-05-04 15:53:03 +00:00
|
|
|
bool nav2_dme;
|
2000-04-27 03:26:36 +00:00
|
|
|
bool nav2_loc;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav2_freq;
|
2000-04-27 22:45:48 +00:00
|
|
|
double nav2_alt_freq;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav2_radial;
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
double nav2_sel_radial;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav2_lon;
|
|
|
|
double nav2_lat;
|
|
|
|
double nav2_elev;
|
2000-05-04 01:18:45 +00:00
|
|
|
double nav2_effective_range;
|
2000-04-24 23:50:59 +00:00
|
|
|
double nav2_dist;
|
|
|
|
double nav2_heading;
|
2000-04-25 04:58:25 +00:00
|
|
|
double nav2_target_gs;
|
2000-05-04 01:18:45 +00:00
|
|
|
double nav2_x;
|
|
|
|
double nav2_y;
|
|
|
|
double nav2_z;
|
2000-04-24 23:50:59 +00:00
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
bool adf_valid;
|
2000-04-24 23:50:59 +00:00
|
|
|
bool adf_inrange;
|
|
|
|
double adf_freq;
|
2000-04-27 22:45:48 +00:00
|
|
|
double adf_alt_freq;
|
|
|
|
double adf_rotation;
|
2000-04-24 23:50:59 +00:00
|
|
|
double adf_lon;
|
|
|
|
double adf_lat;
|
|
|
|
double adf_elev;
|
2000-05-04 01:18:45 +00:00
|
|
|
double adf_effective_range;
|
|
|
|
double adf_dist;
|
2000-04-24 23:50:59 +00:00
|
|
|
double adf_heading;
|
2000-05-04 01:18:45 +00:00
|
|
|
double adf_x;
|
|
|
|
double adf_y;
|
|
|
|
double adf_z;
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGRadioStack();
|
|
|
|
~FGRadioStack();
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
// Update nav/adf radios based on current postition
|
|
|
|
void search( double lon, double lat, double elev );
|
|
|
|
|
2000-04-24 23:50:59 +00:00
|
|
|
// Update nav/adf radios based on current postition
|
|
|
|
void update( double lon, double lat, double elev );
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
// NAV1 Setters
|
2000-04-24 23:50:59 +00:00
|
|
|
inline void set_nav1_freq( double freq ) {
|
|
|
|
nav1_freq = freq; need_update = true;
|
|
|
|
}
|
2000-04-27 22:45:48 +00:00
|
|
|
inline void set_nav1_alt_freq( double freq ) { nav1_alt_freq = freq; }
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline void set_nav1_sel_radial( double radial ) {
|
|
|
|
nav1_sel_radial = radial; need_update = true;
|
2000-04-24 23:50:59 +00:00
|
|
|
}
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
// NAV2 Setters
|
2000-04-24 23:50:59 +00:00
|
|
|
inline void set_nav2_freq( double freq ) {
|
|
|
|
nav2_freq = freq; need_update = true;
|
|
|
|
}
|
2000-04-27 22:45:48 +00:00
|
|
|
inline void set_nav2_alt_freq( double freq ) { nav2_alt_freq = freq; }
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline void set_nav2_sel_radial( double radial ) {
|
|
|
|
nav2_sel_radial = radial; need_update = true;
|
2000-04-24 23:50:59 +00:00
|
|
|
}
|
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
// ADF Setters
|
2000-04-24 23:50:59 +00:00
|
|
|
inline void set_adf_freq( double freq ) {
|
|
|
|
adf_freq = freq; need_update = true;
|
|
|
|
}
|
2000-04-27 22:45:48 +00:00
|
|
|
inline void set_adf_alt_freq( double freq ) { adf_alt_freq = freq; }
|
|
|
|
inline void set_adf_rotation( double rot ) { adf_rotation = rot; }
|
|
|
|
|
|
|
|
|
|
|
|
// NAV1 Accessors
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline double get_nav1_freq () const { return nav1_freq; }
|
|
|
|
inline double get_nav1_alt_freq () const { return nav1_alt_freq; }
|
|
|
|
inline double get_nav1_sel_radial() const { return nav1_sel_radial; }
|
2000-04-27 22:45:48 +00:00
|
|
|
|
|
|
|
// NAV2 Accessors
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline double get_nav2_freq () const { return nav2_freq; }
|
|
|
|
inline double get_nav2_alt_freq () const { return nav2_alt_freq; }
|
|
|
|
inline double get_nav2_sel_radial() const { return nav2_sel_radial; }
|
2000-04-27 22:45:48 +00:00
|
|
|
|
|
|
|
// ADF Accessors
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline double get_adf_freq () const { return adf_freq; }
|
|
|
|
inline double get_adf_alt_freq () const { return adf_alt_freq; }
|
|
|
|
inline double get_adf_rotation () const { return adf_rotation; }
|
2000-04-24 23:50:59 +00:00
|
|
|
|
2000-04-27 22:45:48 +00:00
|
|
|
// Calculated values.
|
2000-04-24 23:50:59 +00:00
|
|
|
inline bool get_nav1_inrange() const { return nav1_inrange; }
|
2000-05-04 15:53:03 +00:00
|
|
|
inline bool get_nav1_dme() const { return nav1_dme; }
|
2000-04-24 23:50:59 +00:00
|
|
|
inline bool get_nav1_loc() const { return nav1_loc; }
|
|
|
|
inline double get_nav1_lon() const { return nav1_lon; }
|
|
|
|
inline double get_nav1_lat() const { return nav1_lat; }
|
|
|
|
inline double get_nav1_elev() const { return nav1_elev; }
|
|
|
|
inline double get_nav1_dist() const { return nav1_dist; }
|
|
|
|
inline double get_nav1_heading() const { return nav1_heading; }
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline double get_nav1_radial() const { return nav1_radial; }
|
2000-04-25 04:58:25 +00:00
|
|
|
inline double get_nav1_target_gs() const { return nav1_target_gs; }
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
inline bool get_nav2_inrange() const { return nav2_inrange; }
|
2000-05-04 15:53:03 +00:00
|
|
|
inline bool get_nav2_dme() const { return nav2_dme; }
|
2000-04-27 03:26:36 +00:00
|
|
|
inline bool get_nav2_loc() const { return nav2_loc; }
|
2000-04-24 23:50:59 +00:00
|
|
|
inline double get_nav2_lon() const { return nav2_lon; }
|
|
|
|
inline double get_nav2_lat() const { return nav2_lat; }
|
|
|
|
inline double get_nav2_elev() const { return nav2_elev; }
|
|
|
|
inline double get_nav2_dist() const { return nav2_dist; }
|
|
|
|
inline double get_nav2_heading() const { return nav2_heading; }
|
User-visible
- knobs now continue to rotate when you hold down the mouse
- the middle mouse button makes knobs rotate much faster
- there are NAV1, NAV2, and ADF radios that can be tuned using the mouse
- there are standby frequencies for NAV1 and NAV2, and buttons to swap
- there is a crude, rather silly-looking DME, hard-wired to NAV1
- there is a crude, rather silly-looking autopilot that can lock
the heading (to the bug on the gyro), can lock to NAV1, and can lock
the current altitude
- the knobs for changing the radials on NAV1 and NAV2 look much better
and are in the right place
- tuning into an ILS frequency doesn't change the displayed radial for
NAV1
Code
- I've created a new module, sp_panel.[ch]xx, that constructs the
default single-prop panel; this works entirely outside of FGPanel,
so it is possible to construct similar modules for other sorts of
panels; all code specific to the default panel has been removed from
panel.cxx
- current_panel is now a pointer
- radiostack.[ch]xx keeps track both of the actual radial and of the
selected radial (they will differ with ILS); the NAV gauges should
not spin around automatically to show the actual radial (we need to
do something similar with the autopilot)
- the panel is initialized fairly early
- make sure that standby frequencies also get initialized
- I've started combining and clipping small textures to save texture
memory; there's a lot more to do, but at least I've made a start
2000-05-02 18:26:00 +00:00
|
|
|
inline double get_nav2_radial() const { return nav2_radial; }
|
2000-04-25 04:58:25 +00:00
|
|
|
inline double get_nav2_target_gs() const { return nav2_target_gs; }
|
2000-04-24 23:50:59 +00:00
|
|
|
|
|
|
|
inline bool get_adf_inrange() const { return adf_inrange; }
|
|
|
|
inline double get_adf_lon() const { return adf_lon; }
|
|
|
|
inline double get_adf_lat() const { return adf_lat; }
|
|
|
|
inline double get_adf_heading() const { return adf_heading; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-04-25 03:09:26 +00:00
|
|
|
extern FGRadioStack *current_radiostack;
|
|
|
|
|
|
|
|
|
2000-05-04 01:18:45 +00:00
|
|
|
// periodic radio station search wrapper
|
|
|
|
void fgRadioSearch( void );
|
|
|
|
|
|
|
|
|
2000-04-24 23:50:59 +00:00
|
|
|
#endif // _FG_RADIOSTACK_HXX
|