OpenTTD Source 20250206-master-g6089ed8059
|
The Windows music player. More...
#include <win32_m.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 | |
![]() | |
enum | Type : uint8_t { DT_BEGIN = 0 , DT_MUSIC = 0 , DT_SOUND , DT_VIDEO , DT_END } |
The type of driver. More... | |
![]() | |
static MusicDriver * | GetInstance () |
Get the currently active instance of the music driver. | |
|
inlineoverridevirtual |
|
overridevirtual |
Are we currently playing a song?
Implements MusicDriver.
Definition at line 357 of file win32_m.cpp.
References _midi.
|
overridevirtual |
Play a particular song.
song | The information for the song to play. |
Implements MusicDriver.
Definition at line 324 of file win32_m.cpp.
References _midi, Debug, MusicSongInfo::loop, MusicSongInfo::override_end, MusicSongInfo::override_start, and TimerCallback().
|
overridevirtual |
Set the volume, if possible.
vol | The new volume. |
Implements MusicDriver.
Definition at line 362 of file win32_m.cpp.
References _midi.
|
overridevirtual |
Start this driver.
parm | Parameters passed to the driver. |
Implements Driver.
Definition at line 368 of file win32_m.cpp.
References _midi, Clamp(), convert_from_fs(), Debug, GetDriverParam(), GetDriverParamInt(), and lengthof.
|
overridevirtual |
|
overridevirtual |