]> git.mxchange.org Git - flightgear.git/blob - utils/fgviewer/HLAPerspectiveCamera.cxx
fgviewer: Import hla based viewer application.
[flightgear.git] / utils / fgviewer / HLAPerspectiveCamera.cxx
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 #ifdef HAVE_CONFIG_H
19 #include <config.h>
20 #endif
21
22 #include "HLAPerspectiveCamera.hxx"
23
24 #include "HLAPerspectiveCameraClass.hxx"
25
26 namespace fgviewer {
27
28 HLAPerspectiveCamera::HLAPerspectiveCamera(HLAPerspectiveCameraClass* objectClass) :
29     HLACamera(objectClass)
30 {
31 }
32
33 HLAPerspectiveCamera::~HLAPerspectiveCamera()
34 {
35 }
36
37 void
38 HLAPerspectiveCamera::reflectAttributeValues(const simgear::HLAIndexList& indexList, const simgear::RTIData& tag)
39 {
40     HLACamera::reflectAttributeValues(indexList, tag);
41     /// Here push data to the osg viewer side
42 }
43
44 void
45 HLAPerspectiveCamera::reflectAttributeValues(const simgear::HLAIndexList& indexList, const SGTimeStamp& timeStamp, const simgear::RTIData& tag)
46 {
47     HLACamera::reflectAttributeValues(indexList, timeStamp, tag);
48     /// Here push data to the osg viewer side
49 }
50
51 void
52 HLAPerspectiveCamera::createAttributeDataElements()
53 {
54     HLACamera::createAttributeDataElements();
55
56     assert(dynamic_cast<HLAPerspectiveCameraClass*>(getObjectClass().get()));
57     HLAPerspectiveCameraClass& objectClass = static_cast<HLAPerspectiveCameraClass&>(*getObjectClass());
58
59     setAttributeDataElement(objectClass.getLeftIndex(), _left.getDataElement());
60     setAttributeDataElement(objectClass.getRightIndex(), _right.getDataElement());
61     setAttributeDataElement(objectClass.getBottomIndex(), _bottom.getDataElement());
62     setAttributeDataElement(objectClass.getTopIndex(), _top.getDataElement());
63     setAttributeDataElement(objectClass.getDistanceIndex(), _distance.getDataElement());
64 }
65
66 Frustum
67 HLAPerspectiveCamera::getFrustum() const
68 {
69     return Frustum(getLeft(), getRight(), getBottom(), getTop(), getDistance());
70 }
71
72 void
73 HLAPerspectiveCamera::setFrustum(const Frustum& frustum)
74 {
75     setLeft(frustum._left);
76     setRight(frustum._right);
77     setBottom(frustum._bottom);
78     setTop(frustum._top);
79     setDistance(frustum._near);
80 }
81
82 } // namespace fgviewer