TDME2 1.9.121
AudioEntity.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
9
10using std::string;
11
13
14/**
15 * Audio entity base class
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
21 friend class Audio;
22
23protected:
24 string id;
25 bool looping;
26 bool fixed;
27 float pitch;
28 float gain;
32
33protected:
34 /**
35 * Constructor
36 */
37 AudioEntity(const string& id);
38
39 /**
40 * Constructor
41 */
42 virtual ~AudioEntity();
43
44 /**
45 * Initiates this OpenAL entity to OpenAl
46 */
47 virtual bool initialize() = 0;
48
49 /**
50 * Commits properties to OpenAl
51 */
52 virtual void update() = 0;
53
54 /**
55 * Dispose this entity from OpenAL
56 */
57 virtual void dispose() = 0;
58
59public:
60
61 /**
62 * @return id
63 */
64 inline virtual const string& getId() const {
65 return id;
66 }
67
68 /**
69 * @return if sound will be looped
70 */
71 inline virtual const bool isLooping() const {
72 return looping;
73 }
74
75 /**
76 * Set looping
77 * @param looping if sound will be looped
78 */
79 inline virtual void setLooping(bool looping) {
80 this->looping = looping;
81 }
82
83 /**
84 * @return fixed, means the sound will always played no matter where the position and listener is located
85 */
86 inline virtual const bool isFixed() const {
87 return fixed;
88 }
89
90 /**
91 * Set this entity fixed, means the sound will always played no matter where the position and listener is located
92 * @param fixed fixed
93 */
94 inline virtual void setFixed(bool fixed) {
95 this->fixed = fixed;
96 }
97
98 /**
99 * @return pitch
100 */
101 inline virtual const float getPitch() const {
102 return pitch;
103 }
104
105 /**
106 * Set up pitch
107 * @param pitch pitch
108 */
109 inline virtual void setPitch(float pitch) {
110 this->pitch = pitch;
111 }
112
113 /**
114 * @return gain
115 */
116 inline virtual const float getGain() const {
117 return gain;
118 }
119
120 /**
121 * Set up gain
122 * @param gain gain
123 */
124 inline virtual void setGain(float gain) {
125 this->gain = gain;
126 }
127
128 /**
129 * @return source position
130 */
131 inline virtual const Vector3& getSourcePosition() const {
132 return sourcePosition;
133 }
134
135 /**
136 * Set source position
137 * @return source position
138 */
139 inline virtual void setSourcePosition(const Vector3& sourcePosition) {
140 this->sourcePosition = sourcePosition;
141 }
142
143 /**
144 * @return source direction
145 */
146 inline virtual const Vector3& getSourceDirection() const {
147 return sourceDirection;
148 }
149
150 /**
151 * Set source direction
152 * @param sourceDirection source direction
153 */
154 inline virtual void setSourceDirection(const Vector3& sourceDirection) {
155 this->sourceDirection = sourceDirection;
156 }
157
158 /**
159 * @return source velocity
160 */
161 inline virtual const Vector3& getSourceVelocity() const {
162 return sourceVelocity;
163 }
164
165 /**
166 * Set source velocity
167 * @param sourceVelocity source velocity
168 */
169 inline virtual void getSourceVelocity(const Vector3& sourceVelocity) {
170 this->sourceVelocity = sourceVelocity;
171 }
172
173 /**
174 * @return if stream is playing
175 */
176 virtual bool isPlaying() = 0;
177
178 /**
179 * Rewinds this audio entity
180 */
181 virtual void rewind() = 0;
182
183 /**
184 * Plays this audio entity
185 */
186 virtual void play() = 0;
187
188 /**
189 * Pauses this audio entity
190 */
191 virtual void pause() = 0;
192
193 /**
194 * Stops this audio entity
195 */
196 virtual void stop() = 0;
197
198};
Audio entity base class.
Definition: AudioEntity.h:20
virtual const bool isLooping() const
Definition: AudioEntity.h:71
virtual void stop()=0
Stops this audio entity.
virtual void pause()=0
Pauses this audio entity.
virtual void play()=0
Plays this audio entity.
virtual const bool isFixed() const
Definition: AudioEntity.h:86
virtual const Vector3 & getSourceVelocity() const
Definition: AudioEntity.h:161
virtual bool initialize()=0
Initiates this OpenAL entity to OpenAl.
virtual void setLooping(bool looping)
Set looping.
Definition: AudioEntity.h:79
AudioEntity(const string &id)
Constructor.
Definition: AudioEntity.cpp:13
virtual void setGain(float gain)
Set up gain.
Definition: AudioEntity.h:124
virtual void getSourceVelocity(const Vector3 &sourceVelocity)
Set source velocity.
Definition: AudioEntity.h:169
virtual ~AudioEntity()
Constructor.
Definition: AudioEntity.cpp:25
virtual void setPitch(float pitch)
Set up pitch.
Definition: AudioEntity.h:109
virtual void update()=0
Commits properties to OpenAl.
virtual void setSourceDirection(const Vector3 &sourceDirection)
Set source direction.
Definition: AudioEntity.h:154
virtual const Vector3 & getSourcePosition() const
Definition: AudioEntity.h:131
virtual const float getGain() const
Definition: AudioEntity.h:116
virtual const float getPitch() const
Definition: AudioEntity.h:101
virtual void rewind()=0
Rewinds this audio entity.
virtual void dispose()=0
Dispose this entity from OpenAL.
virtual bool isPlaying()=0
virtual void setSourcePosition(const Vector3 &sourcePosition)
Set source position.
Definition: AudioEntity.h:139
virtual const string & getId() const
Definition: AudioEntity.h:64
virtual void setFixed(bool fixed)
Set this entity fixed, means the sound will always played no matter where the position and listener i...
Definition: AudioEntity.h:94
virtual const Vector3 & getSourceDirection() const
Definition: AudioEntity.h:146
Interface to audio module.
Definition: Audio.h:30
3D vector 3 class
Definition: Vector3.h:22