]> git.mxchange.org Git - flightgear.git/blob - src/Systems/electrical.cxx
283d94f30148e7c34aefec3ee6ea04e50b77702c
[flightgear.git] / src / Systems / electrical.cxx
1 // electrical.cxx - a flexible, generic electrical system model.
2 //
3 // Written by Curtis Olson, started September 2002.
4 //
5 // Copyright (C) 2002  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include <simgear/misc/exception.hxx>
25 #include <simgear/misc/sg_path.hxx>
26
27 #include <Main/fg_props.hxx>
28 #include <Main/globals.hxx>
29
30 #include "electrical.hxx"
31
32 ElectricalSystem::ElectricalSystem ()
33 {
34 }
35
36 ElectricalSystem::~ElectricalSystem ()
37 {
38 }
39
40 void
41 ElectricalSystem::init ()
42 {
43     config_props = new SGPropertyNode;
44
45     SGPath config( globals->get_fg_root() );
46     config.append( fgGetString("/systems/electrical/path") );
47
48     SG_LOG( SG_ALL, SG_ALERT, "Reading electrical system model from "
49             << config.str() );
50     try {
51         readProperties( config.str(), config_props );
52     } catch (const sg_exception& exc) {
53         SG_LOG( SG_ALL, SG_ALERT, "Failed to load electrical system model: "
54                 << config.str() );
55     }
56
57     delete config_props;
58 }
59
60 void
61 ElectricalSystem::bind ()
62 {
63 }
64
65 void
66 ElectricalSystem::unbind ()
67 {
68 }
69
70 void
71 ElectricalSystem::update (double dt)
72 {
73 }