]> git.mxchange.org Git - flightgear.git/blob - src/Sound/fg_fx.hxx
Initial revision of fg_fx.[ch]xx
[flightgear.git] / src / Sound / fg_fx.hxx
1 // fgfx.hxx -- Sound effect management class
2 //
3 // Started by David Megginson, October 2001
4 // (Reuses some code from main.cxx, probably by Curtis Olson)
5 //
6 // Copyright (C) 2001  Curtis L. Olson - curt@flightgear.org
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23
24 #ifndef __FGFX_HXX
25 #define __FGFX_HXX 1
26
27 #ifdef HAVE_CONFIG_H
28 #  include <config.h>
29 #endif
30
31 #include <simgear/compiler.h>
32 #include <Main/fgfs.hxx>
33 #include <Main/globals.hxx>
34
35 #include "soundmgr.hxx"
36
37
38 /**
39  * Generator for FlightGear sound effects.
40  *
41  * This module uses FGSoundMgr to generate sound effects based
42  * on current flight conditions.  The sound manager must be initialized
43  * before this object is.
44  */
45 class FGFX : public FGSubsystem
46 {
47
48 public:
49
50   FGFX ();
51   virtual ~FGFX ();
52
53   virtual void init ();
54   virtual void bind ();
55   virtual void unbind ();
56   virtual void update ();
57
58 private:
59   bool _is_cranking;
60   bool _is_stalling;
61   bool _is_rumbling;
62
63                                 // looped sounds
64   FGSimpleSound * _engine;
65   FGSimpleSound * _crank;
66   FGSimpleSound * _wind;
67   FGSimpleSound * _stall;
68   FGSimpleSound * _rumble;
69
70                                 // one-off sounds
71   FGSimpleSound * _flaps;
72   FGSimpleSound * _squeal;
73   FGSimpleSound * _click;
74
75 };
76
77
78 #endif
79
80 // end of fgfx.hxx