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