]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasGroup.cxx
Canvas: basic support for rectangular clipping (like CSS clip property)
[simgear.git] / simgear / canvas / elements / CanvasGroup.cxx
1 // A group of 2D Canvas elements
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 "CanvasGroup.hxx"
20 #include "CanvasImage.hxx"
21 #include "CanvasMap.hxx"
22 #include "CanvasPath.hxx"
23 #include "CanvasText.hxx"
24 #include <simgear/canvas/CanvasEventVisitor.hxx>
25 #include <simgear/canvas/MouseEvent.hxx>
26
27 #include <boost/bind.hpp>
28 #include <boost/foreach.hpp>
29 #include <boost/lambda/core.hpp>
30
31 namespace simgear
32 {
33 namespace canvas
34 {
35   /**
36    * Create an canvas Element of type T
37    */
38   template<typename T>
39   ElementPtr createElement( const CanvasWeakPtr& canvas,
40                             const SGPropertyNode_ptr& node,
41                             const Style& style,
42                             Element* parent )
43   {
44     ElementPtr el( new T(canvas, node, style, parent) );
45     el->setSelf(el);
46     return el;
47   }
48
49   //----------------------------------------------------------------------------
50   Group::Group( const CanvasWeakPtr& canvas,
51                 const SGPropertyNode_ptr& node,
52                 const Style& parent_style,
53                 Element* parent ):
54     Element(canvas, node, parent_style, parent)
55   {
56     _child_factories["group"] = &createElement<Group>;
57     _child_factories["image"] = &createElement<Image>;
58     _child_factories["map"  ] = &createElement<Map  >;
59     _child_factories["path" ] = &createElement<Path >;
60     _child_factories["text" ] = &createElement<Text >;
61   }
62
63   //----------------------------------------------------------------------------
64   Group::~Group()
65   {
66
67   }
68
69   //----------------------------------------------------------------------------
70   ElementPtr Group::createChild( const std::string& type,
71                                  const std::string& id )
72   {
73     SGPropertyNode* node = _node->addChild(type, 0, false);
74     if( !id.empty() )
75       node->setStringValue("id", id);
76
77     return getChild(node);
78   }
79
80   //----------------------------------------------------------------------------
81   ElementPtr Group::getChild(const SGPropertyNode* node)
82   {
83     ChildList::iterator child = findChild(node);
84     if( child == _children.end() )
85       return ElementPtr();
86
87     return child->second;
88   }
89
90   //----------------------------------------------------------------------------
91   ElementPtr Group::getElementById(const std::string& id)
92   {
93     std::vector<GroupPtr> groups;
94
95     BOOST_FOREACH( ChildList::value_type child, _children )
96     {
97       const ElementPtr& el = child.second;
98       if( el->getProps()->getStringValue("id") == id )
99         return el;
100
101       GroupPtr group = boost::dynamic_pointer_cast<Group>(el);
102       if( group )
103         groups.push_back(group);
104     }
105
106     BOOST_FOREACH( GroupPtr group, groups )
107     {
108       ElementPtr el = group->getElementById(id);
109       if( el )
110         return el;
111     }
112
113     return ElementPtr();
114   }
115
116   //----------------------------------------------------------------------------
117   void Group::update(double dt)
118   {
119     BOOST_FOREACH( ChildList::value_type child, _children )
120       child.second->update(dt);
121
122     Element::update(dt);
123   }
124
125   //----------------------------------------------------------------------------
126   bool Group::traverse(EventVisitor& visitor)
127   {
128     // Iterate in reverse order as last child is displayed on top
129     BOOST_REVERSE_FOREACH( ChildList::value_type child, _children )
130     {
131       if( child.second->accept(visitor) )
132         return true;
133     }
134     return false;
135   }
136
137   //----------------------------------------------------------------------------
138   bool Group::setStyle(const SGPropertyNode* style)
139   {
140     // Don't propagate styles directly applicable to this group
141     if( Element::setStyle(style) )
142       return true;
143
144     if(    style->getParent() != _node
145         && _style.find(style->getNameString()) != _style.end() )
146       return false;
147
148     bool handled = false;
149     BOOST_FOREACH( ChildList::value_type child, _children )
150     {
151       if( child.second->setStyle(style) )
152         handled = true;
153     }
154
155     return handled;
156   }
157
158   //----------------------------------------------------------------------------
159   osg::BoundingBox Group::getTransformedBounds(const osg::Matrix& m) const
160   {
161     osg::BoundingBox bb;
162
163     BOOST_FOREACH( ChildList::value_type child, _children )
164     {
165       if( !child.second->getMatrixTransform()->getNodeMask() )
166         continue;
167
168       bb.expandBy
169       (
170         child.second->getTransformedBounds
171         (
172           child.second->getMatrixTransform()->getMatrix() * m
173         )
174       );
175     }
176
177     return bb;
178   }
179
180   //----------------------------------------------------------------------------
181   void Group::childAdded(SGPropertyNode* child)
182   {
183     if( child->getParent() != _node )
184       return;
185
186     ChildFactories::iterator child_factory =
187       _child_factories.find( child->getNameString() );
188     if( child_factory != _child_factories.end() )
189     {
190       ElementPtr element = child_factory->second(_canvas, child, _style, this);
191
192       // Add to osg scene graph...
193       _transform->addChild( element->getMatrixTransform() );
194       _children.push_back( ChildList::value_type(child, element) );
195
196       return;
197     }
198
199     if( !Element::setStyle(child) )
200     {
201       // Only add style if not applicable to group itself
202       _style[ child->getNameString() ] = child;
203       setStyle(child);
204     }
205   }
206
207   //----------------------------------------------------------------------------
208   void Group::childRemoved(SGPropertyNode* node)
209   {
210     if( node->getParent() != _node )
211       return;
212
213     if( _child_factories.find(node->getNameString()) != _child_factories.end() )
214     {
215       ChildList::iterator child = findChild(node);
216       if( child == _children.end() )
217         SG_LOG
218         (
219           SG_GL,
220           SG_WARN,
221           "can't removed unknown child " << node->getDisplayName()
222         );
223       else
224       {
225         _transform->removeChild( child->second->getMatrixTransform() );
226         _children.erase(child);
227       }
228     }
229     else
230     {
231       Style::iterator style = _style.find(node->getNameString());
232       if( style != _style.end() )
233         _style.erase(style);
234     }
235   }
236
237   //----------------------------------------------------------------------------
238   void Group::childChanged(SGPropertyNode* node)
239   {
240     if(    node->getParent()->getParent() == _node
241         && node->getNameString() == "z-index" )
242       return handleZIndexChanged(node->getParent(), node->getIntValue());
243   }
244
245   //----------------------------------------------------------------------------
246   void Group::handleZIndexChanged(SGPropertyNode* node, int z_index)
247   {
248     ChildList::iterator child = findChild(node);
249     if( child == _children.end() )
250       return;
251
252     osg::Node* tf = child->second->getMatrixTransform();
253     int index = _transform->getChildIndex(tf),
254         index_new = index;
255
256     ChildList::iterator next = child;
257     ++next;
258
259     while(    next != _children.end()
260            && next->first->getIntValue("z-index", 0) <= z_index )
261     {
262       ++index_new;
263       ++next;
264     }
265
266     if( index_new != index )
267     {
268       _children.insert(next, *child);
269     }
270     else
271     {
272       ChildList::iterator prev = child;
273       while(    prev != _children.begin()
274              && (--prev)->first->getIntValue("z-index", 0) > z_index)
275       {
276         --index_new;
277       }
278
279       if( index == index_new )
280         return;
281
282       _children.insert(prev, *child);
283     }
284
285     _transform->removeChild(index);
286     _transform->insertChild(index_new, tf);
287
288     _children.erase(child);
289
290     SG_LOG
291     (
292       SG_GENERAL,
293       SG_INFO,
294       "canvas::Group: Moved element " << index << " to position " << index_new
295     );
296   }
297
298   //----------------------------------------------------------------------------
299   Group::ChildList::iterator Group::findChild(const SGPropertyNode* node)
300   {
301     return std::find_if
302     (
303       _children.begin(),
304       _children.end(),
305       boost::bind(&ChildList::value_type::first, _1) == node
306     );
307   }
308
309 } // namespace canvas
310 } // namespace simgear