OpenTTD Source 20260206-master-g4d4e37dbf1
SoundLoader_Raw Class Reference

Raw PCM sound loader, used as a fallback if other sound loaders fail. More...

Inheritance diagram for SoundLoader_Raw:
SoundLoader PriorityBaseProvider< SoundLoader > BaseProvider< SoundLoader >

Public Member Functions

bool Load (SoundEntry &sound, bool new_format, std::vector< std::byte > &data) const override
 Load a sound from the file and offset in the given sound entry.
Public Member Functions inherited from SoundLoader
 SoundLoader (std::string_view name, std::string_view description, int priority)
Public Member Functions inherited from PriorityBaseProvider< SoundLoader >
constexpr PriorityBaseProvider (std::string_view name, std::string_view description, int priority)
int GetPriority () const
Public Member Functions inherited from BaseProvider< SoundLoader >
constexpr BaseProvider (std::string_view name, std::string_view description)
std::string_view GetName () const
std::string_view GetDescription () const

Static Public Attributes

static constexpr uint16_t RAW_SAMPLE_RATE = 11025
 Sample rate of raw pcm samples.
static constexpr uint8_t RAW_SAMPLE_BITS = 8
 Bit depths of raw pcm samples.

Static Private Attributes

static SoundLoader_Raw instance {}

Additional Inherited Members

Protected Attributes inherited from PriorityBaseProvider< SoundLoader >
const int priority
Protected Attributes inherited from BaseProvider< SoundLoader >
const std::string_view name
const std::string_view description

Detailed Description

Raw PCM sound loader, used as a fallback if other sound loaders fail.

Definition at line 18 of file soundloader_raw.cpp.

Constructor & Destructor Documentation

◆ SoundLoader_Raw()

SoundLoader_Raw::SoundLoader_Raw ( )
inline

Definition at line 20 of file soundloader_raw.cpp.

Member Function Documentation

◆ Load()

bool SoundLoader_Raw::Load ( SoundEntry & sound,
bool new_format,
std::vector< std::byte > & data ) const
inlineoverridevirtual

Load a sound from the file and offset in the given sound entry.

It is up to the implementations to update the sound's channels, bits_per_sample and rate.

Parameters
soundThe entry to load.
new_formatWhether this is an old format soundset (with some buggy data), or the new format.
[out]dataThe vector to write the decoded sound data into.
Returns
true iff the entry was loaded correctly.

Implements SoundLoader.

Definition at line 25 of file soundloader_raw.cpp.

References RAW_SAMPLE_BITS, RAW_SAMPLE_RATE, and RandomAccessFile::ReadBlock().

Field Documentation

◆ instance

SoundLoader_Raw SoundLoader_Raw::instance {}
staticprivate

Definition at line 55 of file soundloader_raw.cpp.

◆ RAW_SAMPLE_BITS

uint8_t SoundLoader_Raw::RAW_SAMPLE_BITS = 8
staticconstexpr

Bit depths of raw pcm samples.

Definition at line 23 of file soundloader_raw.cpp.

Referenced by Load().

◆ RAW_SAMPLE_RATE

uint16_t SoundLoader_Raw::RAW_SAMPLE_RATE = 11025
staticconstexpr

Sample rate of raw pcm samples.

Definition at line 22 of file soundloader_raw.cpp.

Referenced by Load().


The documentation for this class was generated from the following file: