TDME2 1.9.121
|
Vorbis audio stream. More...
#include <tdme/audio/VorbisAudioStream.h>
Public Member Functions | |
VorbisAudioStream (const string &id, const string &pathName, const string &fileName) | |
Protected constructor. More... | |
void | rewind () override |
Rewinds this audio entity. More... | |
![]() | |
virtual void | setParameters (uint32_t sampleRate, uint8_t channels, const uint32_t bufferSize=32768) |
Set audio initialization parameters. More... | |
virtual bool | isPlaying () override |
virtual void | rewind () override |
Rewinds this audio entity. More... | |
virtual void | play () override |
Plays this audio entity. More... | |
virtual void | pause () override |
Pauses this audio entity. More... | |
virtual void | stop () override |
Stops this audio entity. More... | |
![]() | |
virtual const string & | getId () const |
virtual const bool | isLooping () const |
virtual void | setLooping (bool looping) |
Set looping. More... | |
virtual const bool | isFixed () const |
virtual void | setFixed (bool fixed) |
Set this entity fixed, means the sound will always played no matter where the position and listener is located. More... | |
virtual const float | getPitch () const |
virtual void | setPitch (float pitch) |
Set up pitch. More... | |
virtual const float | getGain () const |
virtual void | setGain (float gain) |
Set up gain. More... | |
virtual const Vector3 & | getSourcePosition () const |
virtual void | setSourcePosition (const Vector3 &sourcePosition) |
Set source position. More... | |
virtual const Vector3 & | getSourceDirection () const |
virtual void | setSourceDirection (const Vector3 &sourceDirection) |
Set source direction. More... | |
virtual const Vector3 & | getSourceVelocity () const |
virtual void | getSourceVelocity (const Vector3 &sourceVelocity) |
Set source velocity. More... | |
virtual bool | isPlaying ()=0 |
virtual void | rewind ()=0 |
Rewinds this audio entity. More... | |
virtual void | play ()=0 |
Plays this audio entity. More... | |
virtual void | pause ()=0 |
Pauses this audio entity. More... | |
virtual void | stop ()=0 |
Stops this audio entity. More... | |
Protected Member Functions | |
bool | initialize () override |
Initiates this OpenAL entity to OpenAl. More... | |
void | dispose () override |
Dispose this entity from OpenAL. More... | |
virtual | ~VorbisAudioStream () |
Destructor. More... | |
void | fillBuffer (ByteBuffer *data) override |
Fill buffer. More... | |
![]() | |
AudioStream (const string &id) | |
Protected constructor. More... | |
virtual | ~AudioStream () |
Destructor. More... | |
virtual bool | initialize () override |
Initiates this OpenAL entity to OpenAl. More... | |
virtual void | update () override |
Commits properties to OpenAl. More... | |
virtual void | dispose () override |
Dispose this entity from OpenAL. More... | |
virtual void | fillBuffer (ByteBuffer *data)=0 |
Fill buffer. More... | |
![]() | |
AudioEntity (const string &id) | |
Constructor. More... | |
virtual | ~AudioEntity () |
Constructor. More... | |
virtual bool | initialize ()=0 |
Initiates this OpenAL entity to OpenAl. More... | |
virtual void | update ()=0 |
Commits properties to OpenAl. More... | |
virtual void | dispose ()=0 |
Dispose this entity from OpenAL. More... | |
Private Attributes | |
string | pathName |
string | fileName |
VorbisDecoder | decoder |
bool | initiated { false } |
Friends | |
class | Audio |
Additional Inherited Members | |
![]() | |
string | id |
bool | looping |
bool | fixed |
float | pitch |
float | gain |
Vector3 | sourcePosition |
Vector3 | sourceDirection |
Vector3 | sourceVelocity |
VorbisAudioStream | ( | const string & | id, |
const string & | pathName, | ||
const string & | fileName | ||
) |
Protected constructor.
id | id |
pathName | path name |
fileName | file name |
Definition at line 22 of file VorbisAudioStream.cpp.
|
protectedvirtual |
Destructor.
Definition at line 29 of file VorbisAudioStream.cpp.
|
overrideprotectedvirtual |
Dispose this entity from OpenAL.
Reimplemented from AudioStream.
Definition at line 113 of file VorbisAudioStream.cpp.
|
overrideprotectedvirtual |
Fill buffer.
data | data |
Implements AudioStream.
Definition at line 99 of file VorbisAudioStream.cpp.
|
overrideprotectedvirtual |
Initiates this OpenAL entity to OpenAl.
Reimplemented from AudioStream.
Definition at line 45 of file VorbisAudioStream.cpp.
|
overridevirtual |
Rewinds this audio entity.
Reimplemented from AudioStream.
Definition at line 32 of file VorbisAudioStream.cpp.
|
friend |
Definition at line 26 of file VorbisAudioStream.h.
|
private |
Definition at line 31 of file VorbisAudioStream.h.
|
private |
Definition at line 30 of file VorbisAudioStream.h.
|
private |
Definition at line 32 of file VorbisAudioStream.h.
|
private |
Definition at line 29 of file VorbisAudioStream.h.