]> git.mxchange.org Git - flightgear.git/blob - utils/fgviewer/HLAPerspectiveViewerClass.hxx
commradio: improvements for atis speech
[flightgear.git] / utils / fgviewer / HLAPerspectiveViewerClass.hxx
1 // Copyright (C) 2009 - 2012  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef HLAPerspectiveViewerClass_hxx
19 #define HLAPerspectiveViewerClass_hxx
20
21 #include "HLAViewerClass.hxx"
22
23 namespace fgviewer {
24
25 class HLAPerspectiveViewerClass : public HLAViewerClass {
26 public:
27     HLAPerspectiveViewerClass(const std::string& name, simgear::HLAFederate* federate);
28     virtual ~HLAPerspectiveViewerClass();
29
30     /// Create a new instance of this class.
31     virtual simgear::HLAObjectInstance* createObjectInstance(const std::string& name);
32
33     virtual void createAttributeDataElements(simgear::HLAObjectInstance& objectInstance);
34
35     bool setViewNameIndex(const std::string& path)
36     { return getDataElementIndex(_viewNameIndex, path); }
37     const simgear::HLADataElementIndex& getViewNameIndex() const
38     { return _viewNameIndex; }
39
40     bool setPositionIndex(const std::string& path)
41     { return getDataElementIndex(_positionIndex, path); }
42     const simgear::HLADataElementIndex& getPositionIndex() const
43     { return _positionIndex; }
44
45     bool setOrientationIndex(const std::string& path)
46     { return getDataElementIndex(_orientationIndex, path); }
47     const simgear::HLADataElementIndex& getOrientationIndex() const
48     { return _orientationIndex; }
49
50     bool setZoomFactorIndex(const std::string& path)
51     { return getDataElementIndex(_zoomFactorIndex, path); }
52     const simgear::HLADataElementIndex& getZoomFactorIndex() const
53     { return _zoomFactorIndex; }
54
55     bool setEyeTrackerNameIndex(const std::string& path)
56     { return getDataElementIndex(_eyeTrackerNameIndex, path); }
57     const simgear::HLADataElementIndex& getEyeTrackerNameIndex() const
58     { return _eyeTrackerNameIndex; }
59
60 private:
61     simgear::HLADataElementIndex _viewNameIndex;
62     simgear::HLADataElementIndex _positionIndex;
63     simgear::HLADataElementIndex _orientationIndex;
64     simgear::HLADataElementIndex _zoomFactorIndex;
65     simgear::HLADataElementIndex _eyeTrackerNameIndex;
66 };
67
68 } // namespace fgviewer
69
70 #endif