]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasMgr.cxx
Refactor Canvas and add some helpers.
[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::getCanvas(size_t index) const
48   {
49     if(    index >= _elements.size()
50         || !_elements[index] )
51       return CanvasPtr();
52
53     return boost::static_pointer_cast<Canvas>(_elements[index]);
54   }
55
56   //----------------------------------------------------------------------------
57   void CanvasMgr::elementCreated(PropertyBasedElementPtr element)
58   {
59     CanvasPtr canvas = boost::static_pointer_cast<Canvas>(element);
60     canvas->setSystemAdapter(_system_adapter);
61     canvas->setCanvasMgr(this);
62   }
63
64 } // namespace canvas
65 } // namespace simgear