]> git.mxchange.org Git - flightgear.git/blob - src/Input/FGDeviceConfigurationMap.cxx
e54860dfe68aebe1809e9d3e0302de51d2bbb392
[flightgear.git] / src / Input / FGDeviceConfigurationMap.cxx
1 // FGDeviceConfigurationMap.cxx -- a map to access xml device configuration
2 //
3 // Written by Torsten Dreyer, started August 2009
4 // Based on work from David Megginson, started May 2001.
5 //
6 // Copyright (C) 2009 Torsten Dreyer, Torsten (at) t3r _dot_ de
7 // Copyright (C) 2001 David Megginson, david@megginson.com
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25 #include "FGDeviceConfigurationMap.hxx"
26 #include <simgear/props/props_io.hxx>
27 #include <Main/globals.hxx>
28
29 FGDeviceConfigurationMap::FGDeviceConfigurationMap( const char * relative_path, SGPropertyNode_ptr aBase, const char * aChildname ) :
30   base(aBase),
31   childname(aChildname)
32 {
33   SGPath path(globals->get_fg_root());
34   path.append( relative_path );
35
36   int index = 1000;
37   scan_dir( path, &index);
38
39   vector<SGPropertyNode_ptr> childNodes = base->getChildren(childname);
40   for (int k = (int)childNodes.size() - 1; k >= 0; k--) {
41     SGPropertyNode *n = childNodes[k];
42     vector<SGPropertyNode_ptr> names = n->getChildren("name");
43     if (names.size() ) // && (n->getChildren("axis").size() || n->getChildren("button").size()))
44       for (unsigned int j = 0; j < names.size(); j++)
45         (*this)[names[j]->getStringValue()] = n;
46   }
47 }
48
49 FGDeviceConfigurationMap::~FGDeviceConfigurationMap()
50 {
51   base->removeChildren( childname );
52 }
53
54 void FGDeviceConfigurationMap::scan_dir( SGPath & path, int *index)
55 {
56   ulDir *dir = ulOpenDir(path.c_str());
57   if (dir) {
58     ulDirEnt* dent;
59     while ((dent = ulReadDir(dir)) != 0) {
60       if (dent->d_name[0] == '.')
61         continue;
62
63       SGPath p(path.str());
64       p.append(dent->d_name);
65       scan_dir(p, index);
66     }
67     ulCloseDir(dir);
68
69   } else if (path.extension() == "xml") {
70     SG_LOG(SG_INPUT, SG_DEBUG, "Reading joystick file " << path.str());
71     SGPropertyNode_ptr n = base->getChild(childname, (*index)++, true);
72     readProperties(path.str(), n);
73     n->setStringValue("source", path.c_str());
74   }
75 }
76
77