Fix "no remove aqua speed" bug when player leaves the water
[ryzomcore.git] / nel / src / sound / driver / openal / stdopenal.h
blobf689a1e538b5434cc98c507e628ea89ea8c583f3
1 // NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
2 // Copyright (C) 2010 Winch Gate Property Limited
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, either version 3 of the
7 // License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Affero General Public License for more details.
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef STDOPENAL_H
18 #define STDOPENAL_H
20 #if defined(_MSC_VER) && defined(_DEBUG)
21 #define _CRTDBG_MAP_ALLOC
22 #include <stdlib.h>
23 #include <crtdbg.h>
24 #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
25 #endif
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <math.h>
30 #include <time.h>
32 #include <string>
33 #include <vector>
34 #include <list>
35 #include <map>
36 #include <set>
37 #include <algorithm>
38 #include <exception>
39 #include <utility>
40 #include <deque>
41 #include <queue>
42 #include <cfloat>
43 #include <algorithm>
44 #include <limits>
46 #include "nel/misc/types_nl.h"
48 #ifdef NL_OS_MAC
49 # include <al.h>
50 # include <alc.h>
51 #else
52 # include <AL/al.h>
53 # include <AL/alc.h>
54 #endif
56 #include "nel/misc/common.h"
57 #include "nel/misc/debug.h"
58 #include "nel/misc/vector.h"
59 #include "nel/misc/singleton.h"
60 #include "nel/misc/fast_mem.h"
61 #include "nel/misc/path.h"
62 #include "nel/misc/dynloadlib.h"
63 #include "nel/misc/hierarchical_timer.h"
64 #include "nel/misc/thread.h"
66 #include "nel/sound/driver/sound_driver.h"
67 #include "nel/sound/driver/buffer.h"
68 #include "nel/sound/driver/source.h"
69 #include "nel/sound/driver/listener.h"
70 #include "nel/sound/driver/effect.h"
72 #endif
73 /* end of file */