]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasMgr.cxx
Canvas cleanup and restructuring
[simgear.git] / simgear / canvas / CanvasMgr.cxx
1 // Canvas with 2D rendering API
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "CanvasMgr.hxx"
20 #include "Canvas.hxx"
21
22 #include <boost/bind.hpp>
23
24 namespace simgear
25 {
26 namespace canvas
27 {
28
29   /**
30    * Canvas factory
31    */
32   CanvasPtr canvasFactory(SGPropertyNode* node)
33   {
34     return CanvasPtr(new Canvas(node));
35   }
36
37   //----------------------------------------------------------------------------
38   CanvasMgr::CanvasMgr( SGPropertyNode_ptr node,
39                         SystemAdapterPtr system_adapter ):
40     PropertyBasedMgr(node, "texture", &canvasFactory),
41     _system_adapter(system_adapter)
42   {
43
44   }
45
46   //----------------------------------------------------------------------------
47   CanvasPtr CanvasMgr::createCanvas(const std::string& name)
48   {
49     return boost::static_pointer_cast<Canvas>( createElement(name) );
50   }
51
52   //----------------------------------------------------------------------------
53   CanvasPtr CanvasMgr::getCanvas(size_t index) const
54   {
55     return boost::static_pointer_cast<Canvas>( getElement(index) );
56   }
57
58   //----------------------------------------------------------------------------
59   void CanvasMgr::elementCreated(PropertyBasedElementPtr element)
60   {
61     CanvasPtr canvas = boost::static_pointer_cast<Canvas>(element);
62     canvas->setSystemAdapter(_system_adapter);
63     canvas->setCanvasMgr(this);
64   }
65
66 } // namespace canvas
67 } // namespace simgear