|
OpenTTD Source 20251104-master-g3befbdd52f
|
Music driver making use of FluidSynth. More...
#include <fluidsynth.h>
Public Member Functions | |
| std::optional< std::string_view > | Start (const StringList ¶m) override |
| Start this driver. | |
| void | Stop () override |
| Stop this driver. | |
| void | PlaySong (const MusicSongInfo &song) override |
| Play a particular song. | |
| void | StopSong () override |
| Stop playing the current song. | |
| bool | IsSongPlaying () override |
| Are we currently playing a song? | |
| void | SetVolume (uint8_t vol) override |
| Set the volume, if possible. | |
| std::string_view | GetName () const override |
| Get the name of this driver. | |
Additional Inherited Members | |
Public Types inherited from Driver | |
| enum | Type : uint8_t { DT_BEGIN = 0 , DT_MUSIC = 0 , DT_SOUND , DT_VIDEO , DT_END } |
| The type of driver. More... | |
Static Public Member Functions inherited from MusicDriver | |
| static MusicDriver * | GetInstance () |
| Get the currently active instance of the music driver. | |
Music driver making use of FluidSynth.
Definition at line 16 of file fluidsynth.h.
|
inlineoverridevirtual |
Get the name of this driver.
Implements Driver.
Definition at line 29 of file fluidsynth.h.
|
overridevirtual |
Are we currently playing a song?
Implements MusicDriver.
Definition at line 180 of file fluidsynth.cpp.
|
overridevirtual |
Play a particular song.
| song | The information for the song to play. |
Implements MusicDriver.
Definition at line 134 of file fluidsynth.cpp.
References _midi, Debug, MidiFile::GetSMFFile(), lock, and StopSong().
|
overridevirtual |
Set the volume, if possible.
| vol | The new volume. |
Implements MusicDriver.
Definition at line 188 of file fluidsynth.cpp.
|
overridevirtual |
Start this driver.
| parm | Parameters passed to the driver. |
Implements Driver.
Definition at line 62 of file fluidsynth.cpp.
References _midi, Debug, default_sf, GetDriverParam(), lock, and MxSetMusicSource().
|
overridevirtual |
Stop this driver.
Implements Driver.
Definition at line 118 of file fluidsynth.cpp.
References _midi, lock, and MxSetMusicSource().
|
overridevirtual |
Stop playing the current song.
Implements MusicDriver.
Definition at line 166 of file fluidsynth.cpp.
Referenced by PlaySong().