]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/CanvasEventListener.cxx
70f458fb8a0584bb17bfe59780caa650618a40be
[simgear.git] / simgear / canvas / CanvasEventListener.cxx
1 // Listener for canvas (GUI) events being passed to a Nasal function/code
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 "CanvasEvent.hxx"
20 #include "CanvasEventListener.hxx"
21 #include "CanvasSystemAdapter.hxx"
22
23 #include <simgear/nasal/cppbind/Ghost.hxx>
24
25 namespace simgear
26 {
27 namespace canvas
28 {
29
30   //----------------------------------------------------------------------------
31   EventListener::EventListener(naRef code, const SystemAdapterPtr& sys_adapter):
32     _code(code),
33     _gc_key(-1),
34     _sys(sys_adapter)
35   {
36     assert( sys_adapter );
37     if(    !naIsCode(code)
38         && !naIsCCode(code)
39         && !naIsFunc(code) )
40       throw std::runtime_error
41       (
42         "canvas::EventListener: invalid function argument"
43       );
44
45     _gc_key = sys_adapter->gcSave(_code);
46   }
47
48   //----------------------------------------------------------------------------
49   EventListener::~EventListener()
50   {
51     assert( !_sys.expired() );
52     _sys.lock()->gcRelease(_gc_key);
53   }
54
55   //------------------------------------------------------------------------------
56   void EventListener::call(const canvas::EventPtr& event)
57   {
58     SystemAdapterPtr sys = _sys.lock();
59
60     naRef args[] = {
61       nasal::Ghost<EventPtr>::create(sys->getNasalContext(), event)
62     };
63     const int num_args = sizeof(args)/sizeof(args[0]);
64
65     sys->callMethod(_code, naNil(), num_args, args, naNil());
66   }
67
68
69 } // namespace canvas
70 } // namespace simgear