]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/placement.hxx
Reset: model placement can drop OSG nodes.
[simgear.git] / simgear / scene / model / placement.hxx
1 // placement.hxx - manage the placment of a 3D model.
2 // Written by David Megginson, started 2002.
3 //
4 // This file is in the Public Domain, and comes with no warranty.
5
6
7 #ifndef _SG_PLACEMENT_HXX
8 #define _SG_PLACEMENT_HXX 1
9
10 #ifndef __cplusplus
11 # error This library requires C++
12 #endif
13
14 #include <osg/ref_ptr>
15 #include <osg/Node>
16 #include <osg/Switch>
17 #include <osg/PositionAttitudeTransform>
18
19 #include <simgear/math/SGMath.hxx>
20
21 // Has anyone done anything *really* stupid, like making min and max macros?
22 #ifdef min
23 #undef min
24 #endif
25 #ifdef max
26 #undef max
27 #endif
28
29
30 ////////////////////////////////////////////////////////////////////////
31 // Model placement.
32 ////////////////////////////////////////////////////////////////////////
33
34 /**
35  * A wrapper for a model with a definite placement.
36  */
37 class SGModelPlacement
38 {
39 public:
40
41   SGModelPlacement ();
42   virtual ~SGModelPlacement ();
43
44   virtual void init( osg::Node* model );
45   void clear();
46   
47   virtual void update();
48
49   virtual osg::Node* getSceneGraph () { return _selector.get(); }
50
51   virtual bool getVisible () const;
52   virtual void setVisible (bool visible);
53
54   virtual double getLongitudeDeg () const { return _position.getLongitudeDeg(); }
55   virtual double getLatitudeDeg () const { return _position.getLatitudeDeg(); }
56   virtual double getElevationFt () const { return _position.getElevationFt(); }
57
58   virtual void setLongitudeDeg (double lon_deg);
59   virtual void setLatitudeDeg (double lat_deg);
60   virtual void setElevationFt (double elev_ft);
61   virtual void setPosition (double lon_deg, double lat_deg, double elev_ft);
62   void setPosition(const SGGeod& position);
63   const SGGeod& getPosition() const { return _position; }
64
65   virtual double getRollDeg () const { return _roll_deg; }
66   virtual double getPitchDeg () const { return _pitch_deg; }
67   virtual double getHeadingDeg () const { return _heading_deg; }
68
69   virtual void setRollDeg (double roll_deg);
70   virtual void setPitchDeg (double pitch_deg);
71   virtual void setHeadingDeg (double heading_deg);
72   virtual void setOrientation (double roll_deg, double pitch_deg,
73                                double heading_deg);
74   void setOrientation(const SGQuatd& orientation);
75
76   void setReferenceTime(const double& referenceTime);
77   void setBodyLinearVelocity(const SGVec3d& velocity);
78   void setBodyAngularVelocity(const SGVec3d& velocity);
79   
80 private:
81                                 // Geodetic position
82   SGGeod _position;
83
84                                 // Orientation
85   double _roll_deg;
86   double _pitch_deg;
87   double _heading_deg;
88
89   osg::ref_ptr<osg::Switch> _selector;
90   osg::ref_ptr<osg::PositionAttitudeTransform> _transform;
91 };
92
93 #endif // _SG_PLACEMENT_HXX