TDME2 1.9.121
Sound.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
12
13/**
14 * Sound audio entity implementation
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19 : public AudioEntity
20{
21 friend class Audio;
22
23private:
25 string pathName;
26 string fileName;
27 string bufferId;
28 uint32_t alBufferId;
29 uint32_t alSourceId;
30
31public:
32 /**
33 * Protected constructor
34 * @param id id
35 * @param pathName path name
36 * @param fileName file name
37 */
38 Sound(const string& id, const string& pathName, const string& fileName);
39
40 // override methods
41 bool isPlaying() override;
42 void rewind() override;
43 void play() override;
44 void pause() override;
45 void stop() override;
46
47protected:
48 // overridden methods
49 bool initialize() override;
50 void update() override;
51 void dispose() override;
52};
Audio entity base class.
Definition: AudioEntity.h:20
Interface to audio module.
Definition: Audio.h:30
Sound audio entity implementation.
Definition: Sound.h:20
void play() override
Plays this audio entity.
Definition: Sound.cpp:66
void rewind() override
Rewinds this audio entity.
Definition: Sound.cpp:55
void dispose() override
Dispose this entity from OpenAL.
Definition: Sound.cpp:223
uint32_t alSourceId
Definition: Sound.h:29
void update() override
Commits properties to OpenAl.
Definition: Sound.cpp:205
bool initiated
Definition: Sound.h:24
bool initialize() override
Initiates this OpenAL entity to OpenAl.
Definition: Sound.cpp:101
string fileName
Definition: Sound.h:26
string pathName
Definition: Sound.h:25
bool isPlaying() override
Definition: Sound.cpp:48
Sound(const string &id, const string &pathName, const string &fileName)
Protected constructor.
Definition: Sound.cpp:38
uint32_t alBufferId
Definition: Sound.h:28
void stop() override
Stops this audio entity.
Definition: Sound.cpp:90
string bufferId
Definition: Sound.h:27
void pause() override
Pauses this audio entity.
Definition: Sound.cpp:79