TORCS  1.3.9
The Open Racing Car Simulator
sound_defines.h
Go to the documentation of this file.
1 #ifndef SOUND_DEFINES_H
2 #define SOUND_DEFINES_H
3 #ifndef M_PI
4 #define EX_PI 3.1415926535
5 #else
6 #define EX_PI M_PI
7 #endif
8 
9 
10 #define SPEED_OF_SOUND 340.0
11 #define NB_CRASH_SOUND 6
12 #define NB_ENGINE_SOUND 6
13 
14 #define ACTIVE_VOLUME 0x01
15 #define ACTIVE_PITCH 0x02
16 #define ACTIVE_LP_FILTER 0x04
17 #define ACTIVE_HP_FILTER 0x08
18 #define ACTIVE_BP_FILTER 0x10
19 #define ACTIVE_DISTORT_FILTER 0x20
20 
21 #endif