TDME2 1.9.121
PrototypeAudio.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
11
12/**
13 * Prototype audio definition
14 * @author Andreas Drewke
15 * @version $Id$
16 */
18{
19private:
20 string id;
21 string animation;
22 string fileName;
23 float gain { 1.0f };
24 float pitch { 1.0f };
25 int offset { 0 };
26 bool looping { false };
27 bool fixed { false };
28
29public:
30
31 /**
32 * Public constructor
33 * @param id id
34 */
35 inline PrototypeAudio(const string& id): id(id) {
36 }
37
38 /**
39 * Destructor
40 */
42
43 /**
44 * @return id
45 */
46 inline const string& getId() {
47 return id;
48 }
49
50 /**
51 * Set sound id
52 * @param id
53 */
54 inline void setId(const string& id) {
55 this->id = id;
56 }
57
58 /**
59 * @return animation
60 */
61 inline const string& getAnimation() {
62 return animation;
63 }
64
65 /**
66 * Set animation
67 * @param animation animation
68 */
69 inline void setAnimation(const string& animation) {
70 this->animation = animation;
71 }
72
73 /**
74 * @return file name
75 */
76 inline const string& getFileName() const {
77 return fileName;
78 }
79
80 /**
81 * Set file name
82 * @param fileName file name
83 */
84 inline void setFileName(const string& fileName) {
85 this->fileName = fileName;
86 }
87
88 /**
89 * @return gain
90 */
91 inline float getGain() const {
92 return gain;
93 }
94
95 /**
96 * Set gain
97 * @param gain gain
98 */
99 inline void setGain(float gain) {
100 this->gain = gain;
101 }
102
103 /**
104 * @return pitch
105 */
106 inline float getPitch() const {
107 return pitch;
108 }
109
110 /**
111 * Set pitch
112 * @param pitch pitch
113 */
114 inline void setPitch(float pitch) {
115 this->pitch = pitch;
116 }
117
118 /**
119 * @return offset in ms
120 */
121 inline int getOffset() const {
122 return offset;
123 }
124
125 /**
126 * Set offset in ms
127 * @param offset offset
128 */
129 inline void setOffset(int offset) {
130 this->offset = offset;
131 }
132
133 /**
134 * @return is looping
135 */
136 inline bool isLooping() const {
137 return looping;
138 }
139
140 /**
141 * Set looping
142 * @param looping looping
143 */
144 inline void setLooping(bool looping) {
145 this->looping = looping;
146 }
147
148 /**
149 * @return fixed
150 */
151 inline bool isFixed() const {
152 return fixed;
153 }
154
155 /**
156 * Set fixed
157 * @param fixed fixed
158 */
159 inline void setFixed(bool fixed) {
160 this->fixed = fixed;
161 }
162
163};
Prototype audio definition.
void setFileName(const string &fileName)
Set file name.
void setOffset(int offset)
Set offset in ms.
PrototypeAudio(const string &id)
Public constructor.
void setAnimation(const string &animation)
Set animation.
void setId(const string &id)
Set sound id.
void setPitch(float pitch)
Set pitch.
void setGain(float gain)
Set gain.
void setFixed(bool fixed)
Set fixed.
void setLooping(bool looping)
Set looping.
Prototype definition.
Definition: Prototype.h:49