e9d24b05ca
Here comes the work-in-progres code for a new navradio implementation. Once completed, it will replace the old/current navradio implementation. The new code can be activated by setting /instrumentation/use-new-navradio=true at startup. This disables the old navradio implementation. Current state: - VOR works pretty good including the new functionality 'code of confusion'. - LOC and GS basically work - backward compatibility (many properties) is to be implemented
18 lines
362 B
C++
Executable file
18 lines
362 B
C++
Executable file
|
|
|
|
#ifndef _FG_INSTRUMENTATION_NAVRADIO_HXX
|
|
#define _FG_INSTRUMENTATION_NAVRADIO_HXX
|
|
|
|
#include <simgear/props/props.hxx>
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
|
|
|
namespace Instrumentation {
|
|
class NavRadio : public SGSubsystem
|
|
{
|
|
public:
|
|
static SGSubsystem * createInstance( SGPropertyNode_ptr rootNode );
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _FG_INSTRUMENTATION_NAVRADIO_HXX
|