]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/instrument_mgr.cxx
Merge branch 'ehofman/sound'
[flightgear.git] / src / Instrumentation / instrument_mgr.cxx
1 // instrument_mgr.cxx - manage aircraft instruments.
2 // Written by David Megginson, started 2002.
3 //
4 // This file is in the Public Domain and comes with no warranty.
5
6 #ifdef HAVE_CONFIG_H
7 #  include <config.h>
8 #endif
9
10 #include <iostream>
11 #include <string>
12 #include <sstream>
13
14 #include <simgear/structure/exception.hxx>
15 #include <simgear/misc/sg_path.hxx>
16 #include <simgear/sg_inlines.h>
17
18 #include <Main/fg_props.hxx>
19 #include <Main/globals.hxx>
20 #include <Main/util.hxx>
21 #include <Instrumentation/HUD/HUD.hxx>
22
23 #include "instrument_mgr.hxx"
24 #include "adf.hxx"
25 #include "airspeed_indicator.hxx"
26 #include "altimeter.hxx"
27 #include "attitude_indicator.hxx"
28 #include "clock.hxx"
29 #include "dme.hxx"
30 #include "gps.hxx"
31 #include "gsdi.hxx"
32 #include "heading_indicator.hxx"
33 #include "heading_indicator_fg.hxx"
34 #include "heading_indicator_dg.hxx"
35 #include "kr_87.hxx"
36 #include "kt_70.hxx"
37 #include "mag_compass.hxx"
38 #include "marker_beacon.hxx"
39 #include "navradio.hxx"
40 #include "slip_skid_ball.hxx"
41 #include "transponder.hxx"
42 #include "turn_indicator.hxx"
43 #include "vertical_speed_indicator.hxx"
44 #include "inst_vertical_speed_indicator.hxx"
45 #include "od_gauge.hxx"
46 #include "wxradar.hxx"
47 #include "tacan.hxx"
48 #include "mk_viii.hxx"
49 #include "mrg.hxx"
50 #include "groundradar.hxx"
51 #include "agradar.hxx"
52 #include "rad_alt.hxx"
53
54 FGInstrumentMgr::FGInstrumentMgr () :
55   _explicitGps(false)
56 {
57     set_subsystem("od_gauge", new FGODGauge);
58     set_subsystem("hud", new HUD);
59
60     config_props = new SGPropertyNode;
61
62     SGPropertyNode *path_n = fgGetNode("/sim/instrumentation/path");
63
64     if (path_n) {
65         SGPath config( globals->get_fg_root() );
66         config.append( path_n->getStringValue() );
67
68         SG_LOG( SG_ALL, SG_INFO, "Reading instruments from "
69                 << config.str() );
70         try {
71             readProperties( config.str(), config_props );
72
73             if ( !build() ) {
74                 throw sg_error(
75                     "Detected an internal inconsistency in the instrumentation\n"
76                     "system specification file.  See earlier errors for details.");
77             }
78         } catch (const sg_exception&) {
79             SG_LOG( SG_ALL, SG_ALERT, "Failed to load instrumentation system model: "
80                     << config.str() );
81         }
82
83     } else {
84         SG_LOG( SG_ALL, SG_WARN,
85                 "No instrumentation model specified for this model!");
86     }
87
88     delete config_props;
89     
90     if (!_explicitGps) {
91       SG_LOG(SG_INSTR, SG_INFO, "creating default GPS instrument");
92       SGPropertyNode_ptr nd(new SGPropertyNode);
93       nd->setStringValue("name", "gps");
94       nd->setIntValue("number", 0);
95       set_subsystem("gps[0]", new GPS(nd));
96     }
97 }
98
99 FGInstrumentMgr::~FGInstrumentMgr ()
100 {
101 }
102
103 bool FGInstrumentMgr::build ()
104 {
105     for ( int i = 0; i < config_props->nChildren(); ++i ) {
106         SGPropertyNode *node = config_props->getChild(i);
107         string name = node->getName();
108
109         std::ostringstream subsystemname;
110         subsystemname << "instrument-" << i << '-'
111                 << node->getStringValue("name", name.c_str());
112         int index = node->getIntValue("number", 0);
113         if (index > 0)
114             subsystemname << '['<< index << ']';
115         string id = subsystemname.str();
116
117
118         if ( name == "adf" ) {
119             set_subsystem( id, new ADF( node ), 0.15 );
120
121         } else if ( name == "airspeed-indicator" ) {
122             set_subsystem( id, new AirspeedIndicator( node ) );
123
124         } else if ( name == "altimeter" ) {
125             set_subsystem( id, new Altimeter( node ) );
126
127         } else if ( name == "attitude-indicator" ) {
128             set_subsystem( id, new AttitudeIndicator( node ) );
129
130         } else if ( name == "clock" ) {
131             set_subsystem( id, new Clock( node ), 0.25 );
132
133         } else if ( name == "dme" ) {
134             set_subsystem( id, new DME( node ), 1.0 );
135
136         } else if ( name == "encoder" ) {
137             set_subsystem( id, new Altimeter( node ) );
138
139         } else if ( name == "gps" ) {
140             set_subsystem( id, new GPS( node ) );
141             _explicitGps = true;
142         } else if ( name == "gsdi" ) {
143             set_subsystem( id, new GSDI( node ) );
144
145         } else if ( name == "heading-indicator" ) {
146             set_subsystem( id, new HeadingIndicator( node ) );
147
148         } else if ( name == "heading-indicator-fg" ) {
149             set_subsystem( id, new HeadingIndicatorFG( node ) );
150
151         } else if ( name == "heading-indicator-dg" ) {
152             set_subsystem( id, new HeadingIndicatorDG( node ) );
153
154         } else if ( name == "KR-87" ) {
155             set_subsystem( id, new FGKR_87( node ) );
156
157         } else if ( name == "KT-70" ) {
158             set_subsystem( id, new FGKT_70( node ) );
159
160         } else if ( name == "magnetic-compass" ) {
161             set_subsystem( id, new MagCompass( node ) );
162
163         } else if ( name == "marker-beacon" ) {
164             set_subsystem( id, new FGMarkerBeacon( node ) );
165
166         } else if ( name == "nav-radio" ) {
167             set_subsystem( id, new FGNavRadio( node ) );
168
169         } else if ( name == "slip-skid-ball" ) {
170             set_subsystem( id, new SlipSkidBall( node ) );
171
172         } else if ( name == "transponder" ) {
173             set_subsystem( id, new Transponder( node ) );
174
175         } else if ( name == "turn-indicator" ) {
176             set_subsystem( id, new TurnIndicator( node ) );
177
178         } else if ( name == "vertical-speed-indicator" ) {
179             set_subsystem( id, new VerticalSpeedIndicator( node ) );
180
181         } else if ( name == "radar" ) {
182             set_subsystem( id, new wxRadarBg ( node ), 1);
183
184         } else if ( name == "inst-vertical-speed-indicator" ) {
185             set_subsystem( id, new InstVerticalSpeedIndicator( node ) );
186
187         } else if ( name == "tacan" ) {
188             set_subsystem( id, new TACAN( node ) );
189
190         } else if ( name == "mk-viii" ) {
191             set_subsystem( id, new MK_VIII( node ) );
192
193         } else if ( name == "master-reference-gyro" ) {
194             set_subsystem( id, new MasterReferenceGyro( node ) );
195
196         } else if ( name == "groundradar" ) {
197             set_subsystem( id, new GroundRadar( node ), 1 );
198
199         } else if ( name == "air-ground-radar" ) {
200             set_subsystem( id, new agRadar( node ),1);
201
202         } else if ( name == "radar-altimeter" ) {
203             set_subsystem( id, new radAlt( node ),1);
204
205         } else {
206             SG_LOG( SG_ALL, SG_ALERT, "Unknown top level section: "
207                     << name );
208             return false;
209         }
210     }
211     return true;
212 }
213
214 // end of instrument_manager.cxx