]> git.mxchange.org Git - flightgear.git/blob - src/Input/FGButton.cxx
Clean-up some SGMath dependencies.
[flightgear.git] / src / Input / FGButton.cxx
1 // FGButton.cxx -- a simple button/key wrapper class
2 //
3 // Written by Torsten Dreyer, started August 2009
4 // Based on work from David Megginson, started May 2001.
5 //
6 // Copyright (C) 2009 Torsten Dreyer, Torsten (at) t3r _dot_ de
7 // Copyright (C) 2001 David Megginson, david@megginson.com
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include "FGButton.hxx"
30
31
32 FGButton::FGButton ()
33   : is_repeatable(false),
34     interval_sec(0),
35     last_dt(0),
36     last_state(0)
37 {
38 }
39
40 FGButton::~FGButton ()
41 {
42   // bindings is a list of SGSharedPtr<SGBindings>
43   // no cleanup required
44 }
45
46
47 void FGButton::init( const SGPropertyNode * node, const std::string & name, std::string & module )
48 {
49   if (node == 0) {
50     SG_LOG(SG_INPUT, SG_DEBUG, "No bindings for button " << name);
51   } else {
52     is_repeatable = node->getBoolValue("repeatable", is_repeatable);
53     // Get the bindings for the button
54     read_bindings( node, bindings, KEYMOD_NONE, module );
55   }
56 }
57
58 void FGButton::update( int modifiers, bool pressed, int x, int y)
59 {
60   if (pressed) {
61     // The press event may be repeated.
62     if (!last_state || is_repeatable) {
63       SG_LOG( SG_INPUT, SG_DEBUG, "Button has been pressed" );
64       for (unsigned int k = 0; k < bindings[modifiers].size(); k++) {
65         bindings[modifiers][k]->fire(x, y);
66       }
67     }
68   } else {
69     // The release event is never repeated.
70     if (last_state) {
71       SG_LOG( SG_INPUT, SG_DEBUG, "Button has been released" );
72       for (unsigned int k = 0; k < bindings[modifiers|KEYMOD_RELEASED].size(); k++)
73         bindings[modifiers|KEYMOD_RELEASED][k]->fire(x, y);
74     }
75   }
76           
77   last_state = pressed;
78 }  
79
80