openMSX
|
#include <YM2151.hh>
Public Types | |
enum class | Variant : char { YM2151 , YM2164 } |
![]() | |
enum | ResampleType { RESAMPLE_HQ , RESAMPLE_LQ , RESAMPLE_BLIP } |
Public Member Functions | |
YM2151 (const std::string &name, static_string_view desc, const DeviceConfig &config, EmuTime::param time, Variant variant) | |
~YM2151 () | |
void | reset (EmuTime::param time) |
void | writeReg (byte r, byte v, EmuTime::param time) |
byte | readStatus () const |
template<typename Archive > | |
void | serialize (Archive &ar, unsigned version) |
![]() | |
bool | generateInput (float *buffer, unsigned num) |
Note: To enable various optimizations (like SSE), this method is allowed to generate up to 3 extra sample. More... | |
DynamicClock & | getEmuClock () |
![]() | |
SoundDevice (const SoundDevice &)=delete | |
SoundDevice & | operator= (const SoundDevice &)=delete |
const std::string & | getName () const |
Get the unique name that identifies this sound device. More... | |
std::string_view | getDescription () const |
Gets a description of this sound device, to be presented to the user. More... | |
bool | isStereo () const |
Is this a stereo device? This is set in the constructor and cannot be changed anymore. More... | |
AmplificationFactors | getAmplificationFactor () const |
void | setSoftwareVolume (float volume, EmuTime::param time) |
Change the 'software volume' of this sound device. More... | |
void | setSoftwareVolume (float left, float right, EmuTime::param time) |
void | recordChannel (unsigned channel, const Filename &filename) |
void | muteChannel (unsigned channel, bool muted) |
Additional Inherited Members | |
![]() | |
static constexpr unsigned | MAX_CHANNELS = 24 |
![]() | |
ResampledSoundDevice (MSXMotherBoard &motherBoard, std::string_view name, static_string_view description, unsigned channels, unsigned inputSampleRate, bool stereo) | |
~ResampledSoundDevice () | |
void | setOutputRate (unsigned hostSampleRate, double speed) override |
When a SoundDevice registers itself with the Mixer, the Mixer sets the required sampleRate through this method. More... | |
bool | updateBuffer (unsigned length, float *buffer, EmuTime::param time) override |
Generate sample data. More... | |
void | update (const Setting &setting) noexcept override |
void | createResampler () |
![]() | |
SoundDevice (MSXMixer &mixer, std::string_view name, static_string_view description, unsigned numChannels, unsigned inputRate, bool stereo) | |
Constructor. More... | |
~SoundDevice () | |
virtual float | getAmplificationFactorImpl () const |
Get amplification/attenuation factor for this device. More... | |
void | registerSound (const DeviceConfig &config) |
Registers this sound device with the Mixer. More... | |
void | unregisterSound () |
Unregisters this sound device with the Mixer. More... | |
void | updateStream (EmuTime::param time) |
void | setInputRate (unsigned sampleRate) |
unsigned | getInputRate () const |
bool | mixChannels (float *dataOut, unsigned samples) |
Calls generateChannels() and combines the output to a single channel. More... | |
const DynamicClock & | getHostSampleClock () const |
See MSXMixer::getHostSampleClock(). More... | |
double | getEffectiveSpeed () const |
![]() | |
Observer ()=default | |
~Observer ()=default | |
Observer (const Observer &)=delete | |
Observer & | operator= (const Observer &)=delete |
virtual void | subjectDeleted (const Setting &) |
![]() | |
static void | addFill (float *&buffer, float value, unsigned num) |
Adds a number of samples that all have the same value. More... | |
|
strong |
openmsx::YM2151::YM2151 | ( | const std::string & | name, |
static_string_view | desc, | ||
const DeviceConfig & | config, | ||
EmuTime::param | time, | ||
Variant | variant | ||
) |
Definition at line 872 of file YM2151.cc.
References Math::e, openmsx::SoundDevice::registerSound(), and reset().
openmsx::YM2151::~YM2151 | ( | ) |
Definition at line 919 of file YM2151.cc.
References openmsx::SoundDevice::unregisterSound().
byte openmsx::YM2151::readStatus | ( | ) | const |
Definition at line 1548 of file YM2151.cc.
Referenced by openmsx::MSXYamahaSFG::peekMem().
void openmsx::YM2151::reset | ( | EmuTime::param | time | ) |
Definition at line 929 of file YM2151.cc.
References openmsx::MAX_ATT_INDEX, openmsx::IntHelper< SOURCE >::reset(), writeReg(), and xrange().
Referenced by openmsx::MSXYamahaSFG::reset(), and YM2151().
void openmsx::YM2151::serialize | ( | Archive & | ar, |
unsigned | version | ||
) |
Definition at line 1613 of file YM2151.cc.
References writeReg(), and xrange().
Definition at line 649 of file YM2151.cc.
References openmsx::dt2_tab, openmsx::eg_rate_select, openmsx::eg_rate_shift, openmsx::ENV_BITS, openmsx::RATE_STEPS, openmsx::SoundDevice::updateStream(), YM2151, and YM2164.
Referenced by reset(), and serialize().