61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
// 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_SOUNDSTREAM_HPP
|
|
#define NAZARA_SOUNDSTREAM_HPP
|
|
|
|
#include <Nazara/Prerequisites.hpp>
|
|
#include <Nazara/Audio/Config.hpp>
|
|
#include <Nazara/Audio/Enums.hpp>
|
|
#include <Nazara/Core/ObjectRef.hpp>
|
|
#include <Nazara/Core/Resource.hpp>
|
|
#include <Nazara/Core/ResourceLoader.hpp>
|
|
#include <Nazara/Core/ResourceParameters.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
struct SoundStreamParams : public ResourceParameters
|
|
{
|
|
bool forceMono = false;
|
|
|
|
bool IsValid() const;
|
|
};
|
|
|
|
class Mutex;
|
|
class SoundStream;
|
|
|
|
using SoundStreamLoader = ResourceLoader<SoundStream, SoundStreamParams>;
|
|
using SoundStreamRef = Nz::ObjectRef<SoundStream>;
|
|
|
|
class NAZARA_AUDIO_API SoundStream : public RefCounted, public Resource
|
|
{
|
|
friend SoundStreamLoader;
|
|
|
|
public:
|
|
SoundStream() = default;
|
|
virtual ~SoundStream();
|
|
|
|
virtual UInt32 GetDuration() const = 0;
|
|
virtual AudioFormat GetFormat() const = 0;
|
|
virtual Mutex& GetMutex() = 0;
|
|
virtual UInt64 GetSampleCount() const = 0;
|
|
virtual UInt32 GetSampleRate() const = 0;
|
|
|
|
virtual UInt64 Read(void* buffer, UInt64 sampleCount) = 0;
|
|
virtual void Seek(UInt64 offset) = 0;
|
|
virtual UInt64 Tell() = 0;
|
|
|
|
static SoundStreamRef OpenFromFile(const String& filePath, const SoundStreamParams& params = SoundStreamParams());
|
|
static SoundStreamRef OpenFromMemory(const void* data, std::size_t size, const SoundStreamParams& params = SoundStreamParams());
|
|
static SoundStreamRef OpenFromStream(Stream& stream, const SoundStreamParams& params = SoundStreamParams());
|
|
|
|
private:
|
|
static SoundStreamLoader::LoaderList s_loaders;
|
|
};
|
|
}
|
|
|
|
#endif // NAZARA_SOUNDSTREAM_HPP
|