// Copyright (C) 2017 Jérôme Leclercq // This file is part of the "Nazara Engine - Audio module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_SOUND_HPP #define NAZARA_SOUND_HPP #include #include #include #include namespace Nz { class NAZARA_AUDIO_API Sound : public SoundEmitter { public: Sound() = default; Sound(const SoundBuffer* soundBuffer); Sound(const Sound& sound); Sound(Sound&&) noexcept = default; ~Sound(); void EnableLooping(bool loop) override; const SoundBuffer* GetBuffer() const; UInt32 GetDuration() const override; UInt32 GetPlayingOffset() const override; SoundStatus GetStatus() const override; bool IsLooping() const override; bool IsPlayable() const; bool IsPlaying() const; bool LoadFromFile(const String& filePath, const SoundBufferParams& params = SoundBufferParams()); bool LoadFromMemory(const void* data, std::size_t size, const SoundBufferParams& params = SoundBufferParams()); bool LoadFromStream(Stream& stream, const SoundBufferParams& params = SoundBufferParams()); void Pause() override; void Play() override; void SetBuffer(const SoundBuffer* buffer); void SetPlayingOffset(UInt32 offset); void Stop() override; Sound& operator=(const Sound&) = delete; ///TODO? Sound& operator=(Sound&&) noexcept = default; private: SoundBufferConstRef m_buffer; }; } #endif // NAZARA_SOUND_HPP