]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasObjectPlacement.hxx
40c0550ac8be9c6d6e0900525821f9a2b10be93f
[simgear.git] / simgear / canvas / CanvasObjectPlacement.hxx
1 // Canvas placement for placing a canvas texture onto osg objects.
2 //
3 // It also provides a SGPickCallback for passing mouse events to the canvas and
4 // manages emissive lighting of the placed canvas.
5 //
6 // Copyright (C) 2013  Thomas Geymayer <tomgey@gmail.com>
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
21
22 #ifndef CANVAS_PICK_PLACEMENT_HXX_
23 #define CANVAS_OBJECT_PLACEMENT_HXX_
24
25 #include "CanvasPlacement.hxx"
26 #include "canvas_fwd.hxx"
27
28 #include <simgear/scene/util/SGSceneUserData.hxx>
29 #include <osg/Material>
30
31 namespace simgear
32 {
33 namespace canvas
34 {
35
36   class ObjectPlacement:
37     public Placement
38   {
39     public:
40
41       typedef osg::ref_ptr<osg::Group> GroupPtr;
42       typedef osg::ref_ptr<osg::Material> MaterialPtr;
43
44       ObjectPlacement( SGPropertyNode* node,
45                        const GroupPtr& group,
46                        const CanvasWeakPtr& canvas );
47       virtual ~ObjectPlacement();
48
49       /**
50        * Set emissive lighting of the object the canvas is placed on.
51        */
52       void setEmission(float emit);
53
54       /**
55        * Set whether pick events should be captured.
56        */
57       void setCaptureEvents(bool enable);
58
59       virtual bool childChanged(SGPropertyNode* child);
60
61     protected:
62       typedef SGSharedPtr<SGPickCallback> PickCallbackPtr;
63       typedef osg::ref_ptr<SGSceneUserData> SGSceneUserDataPtr;
64
65       GroupPtr            _group;
66       MaterialPtr         _material;
67       CanvasWeakPtr       _canvas;
68       PickCallbackPtr     _pick_cb;
69       SGSceneUserDataPtr  _scene_user_data;
70   };
71
72 } // namespace canvas
73 } // namespace simgear
74
75 #endif /* CANVAS_PICK_PLACEMENT_HXX_ */