Movatterモバイル変換


[0]ホーム

URL:


Loading...
Searching...
No Matches
SoundBuffer.hpp
Go to the documentation of this file.
1
2//
3// SFML - Simple and Fast Multimedia Library
4// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#pragma once
26
28// Headers
30#include <SFML/Audio/Export.hpp>
31
33
34#include <SFML/System/Time.hpp>
35
36#include <filesystem>
37#include <unordered_set>
38#include <vector>
39
40#include <cstddef>
41#include <cstdint>
42
43
44namespacesf
45{
46classSound;
48classInputStream;
49
55{
56public:
64SoundBuffer() =default;
65
73
87explicitSoundBuffer(const std::filesystem::path& filename);
88
103SoundBuffer(constvoid* data, std::size_t sizeInBytes);
104
118explicitSoundBuffer(InputStream& stream);
119
136SoundBuffer(const std::int16_t* samples,
137 std::uint64_t sampleCount,
138unsignedint channelCount,
139unsignedint sampleRate,
140const std::vector<SoundChannel>& channelMap);
141
147
161 [[nodiscard]]boolloadFromFile(const std::filesystem::path& filename);
162
177 [[nodiscard]]boolloadFromMemory(constvoid* data, std::size_t sizeInBytes);
178
192 [[nodiscard]]boolloadFromStream(InputStream& stream);
193
210 [[nodiscard]]boolloadFromSamples(const std::int16_t* samples,
211 std::uint64_t sampleCount,
212unsignedint channelCount,
213unsignedint sampleRate,
214const std::vector<SoundChannel>& channelMap);
215
227 [[nodiscard]]boolsaveToFile(const std::filesystem::path& filename)const;
228
241 [[nodiscard]]const std::int16_t*getSamples()const;
242
254 [[nodiscard]] std::uint64_tgetSampleCount()const;
255
268 [[nodiscard]]unsignedintgetSampleRate()const;
269
281 [[nodiscard]]unsignedintgetChannelCount()const;
282
294 [[nodiscard]] std::vector<SoundChannel>getChannelMap()const;
295
304 [[nodiscard]]TimegetDuration()const;
305
315
316private:
317friendclassSound;
318
327 [[nodiscard]]bool initialize(InputSoundFile& file);
328
339 [[nodiscard]]bool update(unsignedint channelCount,unsignedint sampleRate,const std::vector<SoundChannel>& channelMap);
340
347void attachSound(Sound* sound)const;
348
355void detachSound(Sound* sound)const;
356
358// Types
360usingSoundList = std::unordered_set<Sound*>;
361
363// Member data
365 std::vector<std::int16_t> m_samples;
366unsignedint m_sampleRate{44100};
367 std::vector<SoundChannel> m_channelMap{SoundChannel::Mono};
368 Time m_duration;
369mutable SoundList m_sounds;
370};
371
372}// namespace sf
373
374
#define SFML_AUDIO_API
Provide read access to sound files.
Abstract class for custom file input streams.
unsigned int getChannelCount() const
Get the number of channels used by the sound.
SoundBuffer(const std::filesystem::path &filename)
Construct the sound buffer from a file.
Time getDuration() const
Get the total duration of the sound.
unsigned int getSampleRate() const
Get the sample rate of the sound.
SoundBuffer(const std::int16_t *samples, std::uint64_t sampleCount, unsigned int channelCount, unsigned int sampleRate, const std::vector< SoundChannel > &channelMap)
Construct the sound buffer from an array of audio samples.
friend class Sound
bool loadFromFile(const std::filesystem::path &filename)
Load the sound buffer from a file.
const std::int16_t * getSamples() const
Get the array of audio samples stored in the buffer.
std::vector< SoundChannel > getChannelMap() const
Get the map of position in sample frame to sound channel.
std::uint64_t getSampleCount() const
Get the number of samples stored in the buffer.
SoundBuffer()=default
Default constructor.
bool loadFromSamples(const std::int16_t *samples, std::uint64_t sampleCount, unsigned int channelCount, unsigned int sampleRate, const std::vector< SoundChannel > &channelMap)
Load the sound buffer from an array of audio samples.
SoundBuffer(const SoundBuffer &copy)
Copy constructor.
bool saveToFile(const std::filesystem::path &filename) const
Save the sound buffer to an audio file.
SoundBuffer & operator=(const SoundBuffer &right)
Overload of assignment operator.
bool loadFromStream(InputStream &stream)
Load the sound buffer from a custom stream.
~SoundBuffer()
Destructor.
SoundBuffer(InputStream &stream)
Construct the sound buffer from a custom stream.
SoundBuffer(const void *data, std::size_t sizeInBytes)
Construct the sound buffer from a file in memory.
bool loadFromMemory(const void *data, std::size_t sizeInBytes)
Load the sound buffer from a file in memory.
Regular sound that can be played in the audio environment.
DefinitionSound.hpp:48
Represents a time value.
DefinitionTime.hpp:42

[8]ページ先頭

©2009-2025 Movatter.jp