Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/sound2/src/orxonox/sound/SoundManager.h @ 3013

Last change on this file since 3013 was 3013, checked in by bknecht, 15 years ago

merged sound changes into sound2 use sound2 from now on

  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/buildsystem/src/sound/SoundManager.h1874-2276,​2278-2400
    /code/branches/buildsystem2/src/sound/SoundManager.h2506-2658
    /code/branches/buildsystem3/src/sound/SoundManager.h2662-2708
    /code/branches/ceguilua/src/sound/SoundManager.h1802-1808
    /code/branches/core3/src/sound/SoundManager.h1572-1739
    /code/branches/gcc43/src/sound/SoundManager.h1580
    /code/branches/gui/src/sound/SoundManager.h1635-1723
    /code/branches/input/src/sound/SoundManager.h1629-1636
    /code/branches/lodfinal/src/sound/SoundManager.h2372-2411
    /code/branches/miniprojects/src/sound/SoundManager.h2754-2824
    /code/branches/network/src/sound/SoundManager.h2356
    /code/branches/network64/src/sound/SoundManager.h2210-2355
    /code/branches/objecthierarchy/src/sound/SoundManager.h1911-2085,​2100,​2110-2169
    /code/branches/objecthierarchy2/src/sound/SoundManager.h2171-2479
    /code/branches/overlay/src/sound/SoundManager.h2117-2385
    /code/branches/physics/src/sound/SoundManager.h1912-2055,​2107-2439
    /code/branches/physics_merge/src/sound/SoundManager.h2436-2457
    /code/branches/pickups/src/sound/SoundManager.h1926-2086,​2127
    /code/branches/pickups2/src/sound/SoundManager.h2107-2497
    /code/branches/presentation/src/sound/SoundManager.h2369-2652,​2654-2660
    /code/branches/questsystem/src/sound/SoundManager.h1894-2088
    /code/branches/questsystem2/src/sound/SoundManager.h2107-2259
    /code/branches/script_trigger/src/sound/SoundManager.h1295-1953,​1955
    /code/branches/weapon/src/sound/SoundManager.h1925-2094
    /code/branches/weapon2/src/sound/SoundManager.h2107-2488
File size: 1.8 KB
RevLine 
[2866]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
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
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *       Erwin 'vaiursch' Herrsche
24 *   Co-authors:
25 *      ...
26 */
[2930]27#ifndef _SOUNDMANGER_H__
28#define _SOUNDMANGER_H__
[2866]29
[2932]30#include <AL/al.h>
31#include <AL/alc.h>
[2866]32
[2930]33#include <orxonox/objects/Tickable.h>
[2899]34
[2930]35namespace orxonox
36{
37    class SoundBase;
[2866]38
[2899]39    /**
40     * The SoundManager class manages the OpenAL device, context and listener
41     * position. It has a list of all SoundBase objects and calls their update
42     * function every tick. It is a singleton.
43     *
44     */
[2966]45    class _OrxonoxExport SoundManager : public Tickable
[2866]46    {
47    public:
[2950]48        SoundManager();
[2966]49        ~SoundManager();
[2866]50        void addSound(SoundBase* sound);
51        void removeSound(SoundBase* sound);
[2930]52        virtual void tick(float dt);
[2998]53        bool isSoundAvailable();
[2866]54
55    private:
[2966]56        static ALCdevice* device_s;
57        ALCcontext* context_;
[2866]58        std::list<SoundBase*> soundlist_;
[2998]59        bool soundavailable_;
[2866]60
61    }; // class SoundManager
[2930]62} // namespace orxonox
63
64#endif // _SOUNDMANAGER_H__
Note: See TracBrowser for help on using the repository browser.