]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasElement.cxx
Canvas: Ignore hidden element on event traversal.
[simgear.git] / simgear / canvas / elements / CanvasElement.cxx
1 // Interface for 2D Canvas element
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 "CanvasElement.hxx"
20 #include <simgear/canvas/Canvas.hxx>
21 #include <simgear/canvas/CanvasEventListener.hxx>
22 #include <simgear/canvas/CanvasEventVisitor.hxx>
23 #include <simgear/canvas/MouseEvent.hxx>
24 #include <simgear/scene/material/parseBlendFunc.hxx>
25
26 #include <osg/Drawable>
27 #include <osg/Geode>
28 #include <osg/Scissor>
29
30 #include <boost/algorithm/string/predicate.hpp>
31 #include <boost/foreach.hpp>
32 #include <boost/lexical_cast.hpp>
33 #include <boost/make_shared.hpp>
34 #include <boost/tokenizer.hpp>
35
36 #include <cassert>
37 #include <cstring>
38
39 namespace simgear
40 {
41 namespace canvas
42 {
43   const std::string NAME_TRANSFORM = "tf";
44
45   //----------------------------------------------------------------------------
46   Element::OSGUserData::OSGUserData(ElementPtr element):
47     element(element)
48   {
49
50   }
51
52   //----------------------------------------------------------------------------
53   Element::~Element()
54   {
55
56   }
57
58   //----------------------------------------------------------------------------
59   void Element::setSelf(const PropertyBasedElementPtr& self)
60   {
61     PropertyBasedElement::setSelf(self);
62
63     _transform->setUserData
64     (
65       new OSGUserData(boost::static_pointer_cast<Element>(self))
66     );
67   }
68
69   //----------------------------------------------------------------------------
70   void Element::onDestroy()
71   {
72     if( !_transform.valid() )
73       return;
74
75     // The transform node keeps a reference on this element, so ensure it is
76     // deleted.
77     BOOST_FOREACH(osg::Group* parent, _transform->getParents())
78     {
79       parent->removeChild(_transform.get());
80     }
81   }
82
83   //----------------------------------------------------------------------------
84   ElementWeakPtr Element::getWeakPtr() const
85   {
86     return boost::static_pointer_cast<Element>(_self.lock());
87   }
88
89   //----------------------------------------------------------------------------
90   void Element::update(double dt)
91   {
92     if( !_transform->getNodeMask() )
93       // Don't do anything if element is hidden
94       return;
95
96     if( _transform_dirty )
97     {
98       osg::Matrix m;
99       for( size_t i = 0; i < _transform_types.size(); ++i )
100       {
101         // Skip unused indizes...
102         if( _transform_types[i] == TT_NONE )
103           continue;
104
105         SGPropertyNode* tf_node = _node->getChild("tf", i, true);
106
107         // Build up the matrix representation of the current transform node
108         osg::Matrix tf;
109         switch( _transform_types[i] )
110         {
111           case TT_MATRIX:
112             tf = osg::Matrix( tf_node->getDoubleValue("m[0]", 1),
113                               tf_node->getDoubleValue("m[1]", 0),
114                               0,
115                               tf_node->getDoubleValue("m[6]", 0),
116
117                               tf_node->getDoubleValue("m[2]", 0),
118                               tf_node->getDoubleValue("m[3]", 1),
119                               0,
120                               tf_node->getDoubleValue("m[7]", 0),
121
122                               0,
123                               0,
124                               1,
125                               0,
126
127                               tf_node->getDoubleValue("m[4]", 0),
128                               tf_node->getDoubleValue("m[5]", 0),
129                               0,
130                               tf_node->getDoubleValue("m[8]", 1) );
131             break;
132           case TT_TRANSLATE:
133             tf.makeTranslate( osg::Vec3f( tf_node->getDoubleValue("t[0]", 0),
134                                           tf_node->getDoubleValue("t[1]", 0),
135                                           0 ) );
136             break;
137           case TT_ROTATE:
138             tf.makeRotate( tf_node->getDoubleValue("rot", 0), 0, 0, 1 );
139             break;
140           case TT_SCALE:
141           {
142             float sx = tf_node->getDoubleValue("s[0]", 1);
143             // sy defaults to sx...
144             tf.makeScale( sx, tf_node->getDoubleValue("s[1]", sx), 1 );
145             break;
146           }
147           default:
148             break;
149         }
150         m.postMult( tf );
151       }
152       _transform->setMatrix(m);
153       _transform_dirty = false;
154     }
155
156     // Update bounding box on manual update (manual updates pass zero dt)
157     if( dt == 0 && _drawable )
158       _drawable->getBound();
159
160     if( _attributes_dirty & BLEND_FUNC )
161     {
162       parseBlendFunc(
163         _transform->getOrCreateStateSet(),
164         _node->getChild("blend-source"),
165         _node->getChild("blend-destination"),
166         _node->getChild("blend-source-rgb"),
167         _node->getChild("blend-destination-rgb"),
168         _node->getChild("blend-source-alpha"),
169         _node->getChild("blend-destination-alpha")
170       );
171       _attributes_dirty &= ~BLEND_FUNC;
172     }
173   }
174
175   //----------------------------------------------------------------------------
176   naRef Element::addEventListener(const nasal::CallContext& ctx)
177   {
178     const std::string type_str = ctx.requireArg<std::string>(0);
179     naRef code = ctx.requireArg<naRef>(1);
180
181     SG_LOG
182     (
183       SG_NASAL,
184       SG_INFO,
185       "addEventListener(" << _node->getPath() << ", " << type_str << ")"
186     );
187
188     Event::Type type = Event::strToType(type_str);
189     if( type == Event::UNKNOWN )
190       naRuntimeError( ctx.c,
191                       "addEventListener: Unknown event type %s",
192                       type_str.c_str() );
193
194     _listener[ type ].push_back
195     (
196       boost::make_shared<EventListener>( code,
197                                          _canvas.lock()->getSystemAdapter() )
198     );
199
200     return naNil();
201   }
202
203   //----------------------------------------------------------------------------
204   void Element::clearEventListener()
205   {
206     _listener.clear();
207   }
208
209   //----------------------------------------------------------------------------
210   bool Element::accept(EventVisitor& visitor)
211   {
212     if( !isVisible() )
213       return false;
214
215     return visitor.apply(*this);
216   }
217
218   //----------------------------------------------------------------------------
219   bool Element::ascend(EventVisitor& visitor)
220   {
221     if( _parent )
222       return _parent->accept(visitor);
223     return true;
224   }
225
226   //----------------------------------------------------------------------------
227   bool Element::traverse(EventVisitor& visitor)
228   {
229     return true;
230   }
231
232   //----------------------------------------------------------------------------
233   bool Element::handleEvent(canvas::EventPtr event)
234   {
235     ListenerMap::iterator listeners = _listener.find(event->getType());
236     if( listeners == _listener.end() )
237       return false;
238
239     BOOST_FOREACH(EventListenerPtr listener, listeners->second)
240       listener->call(event);
241
242     return true;
243   }
244
245   //----------------------------------------------------------------------------
246   bool Element::hitBound( const osg::Vec2f& pos,
247                           const osg::Vec2f& local_pos ) const
248   {
249     const osg::Vec3f pos3(pos, 0);
250
251     // Drawables have a bounding box...
252     if( _drawable )
253       return _drawable->getBound().contains(osg::Vec3f(local_pos, 0));
254     // ... for other elements, i.e. groups only a bounding sphere is available
255     else
256       return _transform->getBound().contains(osg::Vec3f(pos, 0));
257   }
258
259   //----------------------------------------------------------------------------
260   bool Element::isVisible() const
261   {
262     return _transform.valid() && _transform->getNodeMask() != 0;
263   }
264
265   //----------------------------------------------------------------------------
266   osg::MatrixTransform* Element::getMatrixTransform()
267   {
268     return _transform.get();
269   }
270
271   //----------------------------------------------------------------------------
272   osg::MatrixTransform const* Element::getMatrixTransform() const
273   {
274     return _transform.get();
275   }
276
277   //----------------------------------------------------------------------------
278   void Element::childAdded(SGPropertyNode* parent, SGPropertyNode* child)
279   {
280     if(    parent == _node
281         && child->getNameString() == NAME_TRANSFORM )
282     {
283       if( child->getIndex() >= static_cast<int>(_transform_types.size()) )
284         _transform_types.resize( child->getIndex() + 1 );
285
286       _transform_types[ child->getIndex() ] = TT_NONE;
287       _transform_dirty = true;
288       return;
289     }
290     else if(    parent->getParent() == _node
291              && parent->getNameString() == NAME_TRANSFORM )
292     {
293       assert(parent->getIndex() < static_cast<int>(_transform_types.size()));
294
295       const std::string& name = child->getNameString();
296
297       TransformType& type = _transform_types[parent->getIndex()];
298
299       if(      name == "m" )
300         type = TT_MATRIX;
301       else if( name == "t" )
302         type = TT_TRANSLATE;
303       else if( name == "rot" )
304         type = TT_ROTATE;
305       else if( name == "s" )
306         type = TT_SCALE;
307
308       _transform_dirty = true;
309       return;
310     }
311
312     childAdded(child);
313   }
314
315   //----------------------------------------------------------------------------
316   void Element::childRemoved(SGPropertyNode* parent, SGPropertyNode* child)
317   {
318     if( parent == _node && child->getNameString() == NAME_TRANSFORM )
319     {
320       if( !_transform.valid() )
321         return;
322
323       if( child->getIndex() >= static_cast<int>(_transform_types.size()) )
324       {
325         SG_LOG
326         (
327           SG_GENERAL,
328           SG_WARN,
329           "Element::childRemoved: unknown transform: " << child->getPath()
330         );
331         return;
332       }
333
334       _transform_types[ child->getIndex() ] = TT_NONE;
335
336       while( !_transform_types.empty() && _transform_types.back() == TT_NONE )
337         _transform_types.pop_back();
338
339       _transform_dirty = true;
340       return;
341     }
342
343     childRemoved(child);
344   }
345
346   //----------------------------------------------------------------------------
347   void Element::valueChanged(SGPropertyNode* child)
348   {
349     SGPropertyNode *parent = child->getParent();
350     if( parent == _node )
351     {
352       const std::string& name = child->getNameString();
353       if( setStyle(child) )
354         return;
355       else if( name == "update" )
356         return update(0);
357       else if( name == "visible" )
358         // TODO check if we need another nodemask
359         return _transform->setNodeMask( child->getBoolValue() ? 0xffffffff : 0 );
360       else if( boost::starts_with(name, "blend-") )
361         return (void)(_attributes_dirty |= BLEND_FUNC);
362     }
363     else if(   parent->getParent() == _node
364             && parent->getNameString() == NAME_TRANSFORM )
365     {
366       _transform_dirty = true;
367       return;
368     }
369
370     childChanged(child);
371   }
372
373   //----------------------------------------------------------------------------
374   bool Element::setStyle(const SGPropertyNode* child)
375   {
376     StyleSetters::const_iterator setter =
377       _style_setters.find(child->getNameString());
378     if( setter == _style_setters.end() )
379       return false;
380
381     const StyleSetter* style_setter = &setter->second.setter;
382     while( style_setter )
383     {
384       if( style_setter->func(*this, child) )
385         return true;
386       style_setter = style_setter->next;
387     }
388     return false;
389   }
390
391   //----------------------------------------------------------------------------
392   void Element::setClip(const std::string& clip)
393   {
394     if( clip.empty() || clip == "auto" )
395     {
396       getOrCreateStateSet()->removeAttribute(osg::StateAttribute::SCISSOR);
397       return;
398     }
399
400     // TODO generalize CSS property parsing
401     const std::string RECT("rect(");
402     if(    !boost::ends_with(clip, ")")
403         || !boost::starts_with(clip, RECT) )
404     {
405       SG_LOG(SG_GENERAL, SG_WARN, "Canvas: invalid clip: " << clip);
406       return;
407     }
408
409     typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
410     const boost::char_separator<char> del(", \t\npx");
411
412     tokenizer tokens(clip.begin() + RECT.size(), clip.end() - 1, del);
413     int comp = 0;
414     int values[4];
415     for( tokenizer::const_iterator tok = tokens.begin();
416          tok != tokens.end() && comp < 4;
417          ++tok, ++comp )
418     {
419       values[comp] = boost::lexical_cast<int>(*tok);
420     }
421
422     if( comp < 4 )
423     {
424       SG_LOG(SG_GENERAL, SG_WARN, "Canvas: invalid clip: " << clip);
425       return;
426     }
427
428     float scale_x = 1,
429           scale_y = 1;
430
431     CanvasPtr canvas = _canvas.lock();
432     if( canvas )
433     {
434       // The scissor rectangle isn't affected by any transformation, so we need
435       // to convert to image/canvas coordinates on our selves.
436       scale_x = canvas->getSizeX()
437               / static_cast<float>(canvas->getViewWidth());
438       scale_y = canvas->getSizeY()
439               / static_cast<float>(canvas->getViewHeight());
440     }
441
442     osg::Scissor* scissor = new osg::Scissor();
443     // <top>, <right>, <bottom>, <left>
444     scissor->x() = scale_x * values[3];
445     scissor->y() = scale_y * values[0];
446     scissor->width() = scale_x * (values[1] - values[3]);
447     scissor->height() = scale_y * (values[2] - values[0]);
448
449     if( canvas )
450       // Canvas has y axis upside down
451       scissor->y() = canvas->getSizeY() - scissor->y() - scissor->height();
452
453     getOrCreateStateSet()->setAttributeAndModes(scissor);
454   }
455
456   //----------------------------------------------------------------------------
457   void Element::setBoundingBox(const osg::BoundingBox& bb)
458   {
459     if( _bounding_box.empty() )
460     {
461       SGPropertyNode* bb_node = _node->getChild("bounding-box", 0, true);
462       _bounding_box.resize(4);
463       _bounding_box[0] = bb_node->getChild("min-x", 0, true);
464       _bounding_box[1] = bb_node->getChild("min-y", 0, true);
465       _bounding_box[2] = bb_node->getChild("max-x", 0, true);
466       _bounding_box[3] = bb_node->getChild("max-y", 0, true);
467     }
468
469     _bounding_box[0]->setFloatValue(bb._min.x());
470     _bounding_box[1]->setFloatValue(bb._min.y());
471     _bounding_box[2]->setFloatValue(bb._max.x());
472     _bounding_box[3]->setFloatValue(bb._max.y());
473   }
474
475   //----------------------------------------------------------------------------
476   osg::BoundingBox Element::getTransformedBounds(const osg::Matrix& m) const
477   {
478     if( !_drawable )
479       return osg::BoundingBox();
480
481     osg::BoundingBox transformed;
482     const osg::BoundingBox& bb = _drawable->getBound();
483     for(int i = 0; i < 4; ++i)
484       transformed.expandBy( m * bb.corner(i) );
485
486     return transformed;
487   }
488
489   //----------------------------------------------------------------------------
490   Element::StyleSetters Element::_style_setters;
491
492   //----------------------------------------------------------------------------
493   Element::Element( const CanvasWeakPtr& canvas,
494                     const SGPropertyNode_ptr& node,
495                     const Style& parent_style,
496                     Element* parent ):
497     PropertyBasedElement(node),
498     _canvas( canvas ),
499     _parent( parent ),
500     _attributes_dirty( 0 ),
501     _transform_dirty( false ),
502     _transform( new osg::MatrixTransform ),
503     _style( parent_style ),
504     _drawable( 0 )
505   {
506     SG_LOG
507     (
508       SG_GL,
509       SG_DEBUG,
510       "New canvas element " << node->getPath()
511     );
512
513     if( !isInit<Element>() )
514     {
515       addStyle("clip", "", &Element::setClip);
516     }
517   }
518
519   //----------------------------------------------------------------------------
520   void Element::setDrawable( osg::Drawable* drawable )
521   {
522     _drawable = drawable;
523     assert( _drawable );
524
525     osg::ref_ptr<osg::Geode> geode = new osg::Geode;
526     geode->addDrawable(_drawable);
527     _transform->addChild(geode);
528   }
529
530   //----------------------------------------------------------------------------
531   osg::StateSet* Element::getOrCreateStateSet()
532   {
533     return _drawable ? _drawable->getOrCreateStateSet()
534                      : _transform->getOrCreateStateSet();
535   }
536
537   //----------------------------------------------------------------------------
538   void Element::setupStyle()
539   {
540     BOOST_FOREACH( Style::value_type style, _style )
541       setStyle(style.second);
542   }
543
544 } // namespace canvas
545 } // namespace simgear