TDME2 1.9.121
VorbisAudioStream.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13using std::to_string;
14
21
22VorbisAudioStream::VorbisAudioStream(const string& id, const string& pathName, const string& fileName) : AudioStream(id)
23{
24 this->pathName = pathName;
25 this->fileName = fileName;
26 this->initiated = false;
27}
28
30}
31
33{
34 if (initiated == false) return;
35
36 try {
37 decoder.reset();
38 } catch (FileSystemException &fse) {
39 Console::println(string("VorbisAudioStream::rewind(): '"+ (id) + "': " + fse.what()));
40 } catch (AudioDecoderException &ade) {
41 Console::println(string("VorbisAudioStream::rewind(): '" + (id) + "': " + ade.what()));
42 }
43}
44
46{
47 if (initiated == true) return true;
48
49 uint32_t sampleRate = 0;
50 uint8_t channels = 0;
51
52 // decode audio stream
53 try {
54 // decode ogg vorbis
56 Console::println(
57 string(
58 "VorbisAudioStream::initialize(): '" +
59 id +
60 "' with " +
61 to_string(decoder.getBitsPerSample()) +
62 " bits per sample, " +
63 to_string(decoder.getChannels()) +
64 " channels, " +
65 to_string(decoder.getSampleRate()) +
66 " samplerate"
67 )
68 );
71 } catch (FileSystemException& fse) {
72 Console::println(string("VorbisAudioStream::initialize(): '" + (id) + "': " + fse.what()));
73 decoder.close();
74 dispose();
75 return false;
76 } catch (AudioDecoderException& ade) {
77 Console::println(string("VorbisAudioStream::initialize(): '" + (id) + "': " + ade.what()));
78 decoder.close();
79 dispose();
80 return false;
81 }
82
83 // set stream parameters
85
86 // check if underlying audio stream did initialize
87 if (AudioStream::initialize() == false) {
88 // nope, dispose and such
89 decoder.close();
90 dispose();
91 return false;
92 }
93
94 // success
95 initiated = true;
96 return true;
97}
98
100 auto bytesDecoded = 0;
101 try {
102 bytesDecoded = decoder.readFromStream(data);
103 if (looping == true && bytesDecoded < data->getCapacity()) {
104 decoder.reset();
105 }
106 } catch (FileSystemException& fse) {
107 Console::println(string("Audio stream: '" + (id) + "': " + fse.what()));
108 } catch (AudioDecoderException& ade) {
109 Console::println(string("Audio stream: '" + (id) + "': " + ade.what()));
110 }
111}
112
114{
115 if (initiated == false) return;
116
117 // close decoder
118 decoder.close();
119
120 // dispose audio stream
122
123 //
124 initiated = false;
125}
virtual void dispose() override
Dispose this entity from OpenAL.
virtual bool initialize() override
Initiates this OpenAL entity to OpenAl.
virtual void setParameters(uint32_t sampleRate, uint8_t channels, const uint32_t bufferSize=32768)
Set audio initialization parameters.
Definition: AudioStream.cpp:44
void rewind() override
Rewinds this audio entity.
void dispose() override
Dispose this entity from OpenAL.
bool initialize() override
Initiates this OpenAL entity to OpenAl.
void fillBuffer(ByteBuffer *data) override
Fill buffer.
virtual ~VorbisAudioStream()
Destructor.
OGG/Vorbis audio decoder.
Definition: VorbisDecoder.h:29
virtual void openFile(const string &pathName, const string &fileName)
Open a local file.
virtual void close()
Closes the audio file.
virtual void reset()
Resets this audio decoder, if a stream was open it will be rewinded.
virtual int32_t readFromStream(ByteBuffer *data)
Read raw PCM data from stream.
Byte buffer class.
Definition: ByteBuffer.h:24
Console class.
Definition: Console.h:26