diff options
Diffstat (limited to 'Source/modules/asura-openal')
-rw-r--r-- | Source/modules/asura-openal/Audio/Audio.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/Audio.h | 18 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/MPG123Decoder.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/MPG123Decoder.h | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/Sound.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/Sound.h | 31 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundData.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundData.h | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundDecodeTask.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundDecodeTask.h | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundDecoder.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/SoundDecoder.h | 30 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/Source.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/Source.h | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/VorbisDecoder.cpp | 0 | ||||
-rw-r--r-- | Source/modules/asura-openal/Audio/VorbisDecoder.h | 0 |
16 files changed, 79 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..a29c448 --- /dev/null +++ b/Source/modules/asura-openal/Audio/Audio.h @@ -0,0 +1,18 @@ +#ifndef _ASURA_AUDIO_H_ +#define _ASURA_AUDIO_H_ + +#include <asura-base/Classes.h> + +namespace_begin(AsuraEngine) +namespace_begin(Audio) + +class Audio +{ + +}; + + +namespace_end +namespace_end + +#endif
\ No newline at end of file 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..1a3d280 --- /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-base/Scripting/Scripting.h> + +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..8392a03 --- /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-base/FileSystem/DataBuffer.h> + +#include "sound.h" + +namespace AsuraEngine +{ + namespace Audio + { + + /// + /// Ƶļ + /// + class SoundDecoder + { + public: + + SoundDecoder(); + virtual ~SoundDecoder(); + + virtual Sound* Decode(const AEFileSystem::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 |