]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/instrument_mgr.cxx
Make the AI models a bit more intelligent. The Gear should be extended and retracted...
[flightgear.git] / src / Instrumentation / instrument_mgr.cxx
index 21ded6b567aece6197c6fc1d18dbdf19f1d23201..b9f4c359b845be2f1ba083e8d9b50f379b89c94c 100644 (file)
@@ -6,23 +6,36 @@
 
 #include "instrument_mgr.hxx"
 #include "airspeed_indicator.hxx"
+#include "annunciator.hxx"
 #include "attitude_indicator.hxx"
 #include "altimeter.hxx"
 #include "turn_indicator.hxx"
 #include "slip_skid_ball.hxx"
 #include "heading_indicator.hxx"
 #include "vertical_speed_indicator.hxx"
+#include "mag_compass.hxx"
+
+#include "dme.hxx"
+#include "adf.hxx"
+#include "gps.hxx"
+#include "clock.hxx"
 
 
 FGInstrumentMgr::FGInstrumentMgr ()
 {
     set_subsystem("asi", new AirspeedIndicator);
+    set_subsystem("annunciator", new Annunciator);
     set_subsystem("ai", new AttitudeIndicator);
     set_subsystem("alt", new Altimeter);
     set_subsystem("ti", new TurnIndicator);
     set_subsystem("ball", new SlipSkidBall);
     set_subsystem("hi", new HeadingIndicator);
     set_subsystem("vsi", new VerticalSpeedIndicator);
+    set_subsystem("compass", new MagCompass);
+    set_subsystem("dme", new DME, 1.0);
+    set_subsystem("adf", new ADF, 0.15);
+    set_subsystem("gps", new GPS, 0.45);
+    set_subsystem("clock", new Clock, 0.25);
 }
 
 FGInstrumentMgr::~FGInstrumentMgr ()