#include <sound.h>
Public Methods | |
| SOUND_CHANNEL () | |
| ~SOUND_CHANNEL () | |
| int | Compare (const SOUND_CHANNEL &Channel) |
| int | GetMyPosition () const |
| void | SetMyPosition (int newPosition) |
Public Attributes | |
| int | linkPosition |
| HCHANNEL | hChannel |
| HSAMPLE | hSample |
| BASS_3DVECTOR | position |
| BASS_3DVECTOR | orientation |
| BASS_3DVECTOR | velocity |
| int | direction |
| bool | looped |
| bool | intermittent |
| bool | random |
| unsigned int | lowerrand |
| unsigned int | upperrand |
| unsigned int | interval |
| unsigned int | idEvent |
|
|
Definition at line 40 of file sound.h.
00040 {};
|
|
|
Definition at line 41 of file sound.h.
00041 {};
|
|
|
Definition at line 30 of file sound.cpp. References bigger, linkPosition, same, and smaller.
00031 {
00032 if (linkPosition < Channel.linkPosition)
00033 return smaller;
00034 if (linkPosition > Channel.linkPosition)
00035 return bigger;
00036 else
00037 return same;
00038 }
|
|
|
Definition at line 44 of file sound.h. References linkPosition.
00044 {return linkPosition;}
|
|
|
Definition at line 45 of file sound.h. References linkPosition.
00045 {linkPosition = newPosition;}
|
|
|
|
|
|
Definition at line 48 of file sound.h. Referenced by PlayChannel(), and UpdateChannel(). |
|
|
Definition at line 49 of file sound.h. Referenced by CreateChannel(), and PlayChannel(). |
|
|
Definition at line 60 of file sound.h. Referenced by CreateSounds(). |
|
|
Definition at line 55 of file sound.h. Referenced by CreateSounds(), and SoundTimerProc(). |
|
|
Definition at line 59 of file sound.h. Referenced by CreateSounds(). |
|
|
Definition at line 46 of file sound.h. Referenced by Compare(), CreateChannel(), GetMyPosition(), and SetMyPosition(). |
|
|
Definition at line 54 of file sound.h. Referenced by CreateSounds(), and SoundTimerProc(). |
|
|
Definition at line 57 of file sound.h. Referenced by CreateSounds(), and SoundTimerProc(). |
|
|
Definition at line 51 of file sound.h. Referenced by UpdateChannel(). |
|
|
Definition at line 50 of file sound.h. Referenced by PlayChannel(), and UpdateChannel(). |
|
|
Definition at line 56 of file sound.h. Referenced by CreateSounds(), and SoundTimerProc(). |
|
|
Definition at line 58 of file sound.h. Referenced by CreateSounds(), and SoundTimerProc(). |
|
|
Definition at line 52 of file sound.h. Referenced by PlayChannel(), and UpdateChannel(). |
1.2.15