]> git.mxchange.org Git - flightgear.git/blob - src/Input/FGButton.cxx
ee5953aca5ca83488849e64aef80b9bcb73a3564
[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 #include "FGButton.hxx"
26
27 FGButton::FGButton ()
28   : is_repeatable(false),
29     interval_sec(0),
30     last_dt(0),
31     last_state(0)
32 {
33 }
34
35 FGButton::~FGButton ()
36 {
37   // bindings is a list of SGSharedPtr<SGBindings>
38   // no cleanup required
39 }
40
41
42 void FGButton::init( const SGPropertyNode * node, const string name, string & module )
43 {
44   if (node == 0) {
45     SG_LOG(SG_INPUT, SG_DEBUG, "No bindings for button " << name);
46   } else {
47     is_repeatable = node->getBoolValue("repeatable", is_repeatable);
48     // Get the bindings for the button
49     read_bindings( node, bindings, KEYMOD_NONE, module );
50   }
51 }
52
53 void FGButton::update( int modifiers, bool pressed, int x, int y)
54 {
55   if (pressed) {
56     // The press event may be repeated.
57     if (!last_state || is_repeatable) {
58       SG_LOG( SG_INPUT, SG_DEBUG, "Button has been pressed" );
59       for (unsigned int k = 0; k < bindings[modifiers].size(); k++) {
60         bindings[modifiers][k]->fire(x, y);
61       }
62     }
63   } else {
64     // The release event is never repeated.
65     if (last_state) {
66       SG_LOG( SG_INPUT, SG_DEBUG, "Button has been released" );
67       for (unsigned int k = 0; k < bindings[modifiers|KEYMOD_RELEASED].size(); k++)
68         bindings[modifiers|KEYMOD_RELEASED][k]->fire(x, y);
69     }
70   }
71           
72   last_state = pressed;
73 }  
74
75