summaryrefslogtreecommitdiff
path: root/source/modules/asura-openal/Audio
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-openal/Audio')
-rw-r--r--source/modules/asura-openal/Audio/Audio.cpp0
-rw-r--r--source/modules/asura-openal/Audio/Audio.h0
-rw-r--r--source/modules/asura-openal/Audio/MPG123Decoder.cpp0
-rw-r--r--source/modules/asura-openal/Audio/MPG123Decoder.h0
-rw-r--r--source/modules/asura-openal/Audio/Sound.cpp0
-rw-r--r--source/modules/asura-openal/Audio/Sound.h31
-rw-r--r--source/modules/asura-openal/Audio/SoundData.cpp0
-rw-r--r--source/modules/asura-openal/Audio/SoundData.h0
-rw-r--r--source/modules/asura-openal/Audio/SoundDecodeTask.cpp0
-rw-r--r--source/modules/asura-openal/Audio/SoundDecodeTask.h0
-rw-r--r--source/modules/asura-openal/Audio/SoundDecoder.cpp0
-rw-r--r--source/modules/asura-openal/Audio/SoundDecoder.h30
-rw-r--r--source/modules/asura-openal/Audio/Source.cpp0
-rw-r--r--source/modules/asura-openal/Audio/Source.h0
-rw-r--r--source/modules/asura-openal/Audio/VorbisDecoder.cpp0
-rw-r--r--source/modules/asura-openal/Audio/VorbisDecoder.h0
16 files changed, 61 insertions, 0 deletions
diff --git a/source/modules/asura-openal/Audio/Audio.cpp b/source/modules/asura-openal/Audio/Audio.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Audio.cpp
diff --git a/source/modules/asura-openal/Audio/Audio.h b/source/modules/asura-openal/Audio/Audio.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Audio.h
diff --git a/source/modules/asura-openal/Audio/MPG123Decoder.cpp b/source/modules/asura-openal/Audio/MPG123Decoder.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/MPG123Decoder.cpp
diff --git a/source/modules/asura-openal/Audio/MPG123Decoder.h b/source/modules/asura-openal/Audio/MPG123Decoder.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/MPG123Decoder.h
diff --git a/source/modules/asura-openal/Audio/Sound.cpp b/source/modules/asura-openal/Audio/Sound.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Sound.cpp
diff --git a/source/modules/asura-openal/Audio/Sound.h b/source/modules/asura-openal/Audio/Sound.h
new file mode 100644
index 0000000..ab309f3
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Sound.h
@@ -0,0 +1,31 @@
+#ifndef __ASURA_ENGINE_SOUND_H__
+#define __ASURA_ENGINE_SOUND_H__
+
+#include <asura-utils/Scripting/Portable.hpp>
+
+namespace AsuraEngine
+{
+ namespace Audio
+ {
+
+ ///
+ /// Ƶļ
+ ///
+ class Sound ASURA_FINAL
+ : public AEScripting::Portable<Sound>
+ {
+ public:
+
+ Sound();
+ ~Sound();
+
+ private:
+
+
+
+ };
+
+ }
+}
+
+#endif \ No newline at end of file
diff --git a/source/modules/asura-openal/Audio/SoundData.cpp b/source/modules/asura-openal/Audio/SoundData.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundData.cpp
diff --git a/source/modules/asura-openal/Audio/SoundData.h b/source/modules/asura-openal/Audio/SoundData.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundData.h
diff --git a/source/modules/asura-openal/Audio/SoundDecodeTask.cpp b/source/modules/asura-openal/Audio/SoundDecodeTask.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundDecodeTask.cpp
diff --git a/source/modules/asura-openal/Audio/SoundDecodeTask.h b/source/modules/asura-openal/Audio/SoundDecodeTask.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundDecodeTask.h
diff --git a/source/modules/asura-openal/Audio/SoundDecoder.cpp b/source/modules/asura-openal/Audio/SoundDecoder.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundDecoder.cpp
diff --git a/source/modules/asura-openal/Audio/SoundDecoder.h b/source/modules/asura-openal/Audio/SoundDecoder.h
new file mode 100644
index 0000000..c149d6f
--- /dev/null
+++ b/source/modules/asura-openal/Audio/SoundDecoder.h
@@ -0,0 +1,30 @@
+#ifndef __ASURA_ENGINE_SOUND_DECODER_H__
+#define __ASURA_ENGINE_SOUND_DECODER_H__
+
+#include <asura-utils/IO/DataBuffer.h>
+
+#include "sound.h"
+
+namespace AsuraEngine
+{
+ namespace Audio
+ {
+
+ ///
+ /// Ƶļ
+ ///
+ class SoundDecoder
+ {
+ public:
+
+ SoundDecoder();
+ virtual ~SoundDecoder();
+
+ virtual Sound* Decode(const AEIO::DataBuffer* db);
+
+ };
+
+ }
+}
+
+#endif \ No newline at end of file
diff --git a/source/modules/asura-openal/Audio/Source.cpp b/source/modules/asura-openal/Audio/Source.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Source.cpp
diff --git a/source/modules/asura-openal/Audio/Source.h b/source/modules/asura-openal/Audio/Source.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/Source.h
diff --git a/source/modules/asura-openal/Audio/VorbisDecoder.cpp b/source/modules/asura-openal/Audio/VorbisDecoder.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/VorbisDecoder.cpp
diff --git a/source/modules/asura-openal/Audio/VorbisDecoder.h b/source/modules/asura-openal/Audio/VorbisDecoder.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/source/modules/asura-openal/Audio/VorbisDecoder.h