mpd/src/decoder/plugins/MikmodDecoderPlugin.cxx

231 lines
4.8 KiB
C++
Raw Normal View History

/*
2020-01-18 19:22:19 +01:00
* Copyright 2003-2020 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
2013-07-28 12:54:59 +02:00
#include "MikmodDecoderPlugin.hxx"
2014-01-24 00:02:24 +01:00
#include "../DecoderAPI.hxx"
2017-02-08 08:26:58 +01:00
#include "tag/Handler.hxx"
#include "fs/Path.hxx"
#include "util/Domain.hxx"
#include "util/RuntimeError.hxx"
#include "util/StringView.hxx"
#include "Log.hxx"
#include <mikmod.h>
2013-11-28 11:50:54 +01:00
#include <cassert>
static constexpr Domain mikmod_domain("mikmod");
/* this is largely copied from alsaplayer */
2013-07-28 12:54:59 +02:00
static constexpr size_t MIKMOD_FRAME_SIZE = 4096;
2009-11-14 01:48:07 +01:00
static BOOL
mikmod_mpd_init()
{
return VC_Init();
}
2009-11-14 01:48:07 +01:00
static void
mikmod_mpd_exit()
{
VC_Exit();
}
2009-11-14 01:48:07 +01:00
static void
mikmod_mpd_update()
{
}
2009-11-14 01:48:07 +01:00
static BOOL
mikmod_mpd_is_present()
{
2009-11-14 01:48:07 +01:00
return true;
}
static char drv_name[] = PACKAGE_NAME;
static char drv_version[] = VERSION;
static char drv_alias[] = PACKAGE;
static MDRIVER drv_mpd = {
2013-07-28 12:54:59 +02:00
nullptr,
drv_name,
drv_version,
0,
255,
drv_alias,
2013-07-28 12:54:59 +02:00
nullptr, /* CmdLineHelp */
nullptr, /* CommandLine */
2009-11-14 01:48:07 +01:00
mikmod_mpd_is_present,
VC_SampleLoad,
VC_SampleUnload,
VC_SampleSpace,
VC_SampleLength,
2009-11-14 01:48:07 +01:00
mikmod_mpd_init,
mikmod_mpd_exit,
2013-07-28 12:54:59 +02:00
nullptr,
VC_SetNumVoices,
VC_PlayStart,
VC_PlayStop,
2009-11-14 01:48:07 +01:00
mikmod_mpd_update,
2013-07-28 12:54:59 +02:00
nullptr,
VC_VoiceSetVolume,
VC_VoiceGetVolume,
VC_VoiceSetFrequency,
VC_VoiceGetFrequency,
VC_VoiceSetPanning,
VC_VoiceGetPanning,
VC_VoicePlay,
VC_VoiceStop,
VC_VoiceStopped,
VC_VoiceGetPosition,
VC_VoiceRealVolume
};
static bool mikmod_loop;
static unsigned mikmod_sample_rate;
static bool
mikmod_decoder_init(const ConfigBlock &block)
{
static char params[] = "";
mikmod_loop = block.GetBlockValue("loop", false);
mikmod_sample_rate = block.GetPositiveValue("sample_rate", 44100U);
if (!audio_valid_sample_rate(mikmod_sample_rate))
throw FormatRuntimeError("Invalid sample rate in line %d: %u",
block.line, mikmod_sample_rate);
md_device = 0;
md_reverb = 0;
MikMod_RegisterDriver(&drv_mpd);
MikMod_RegisterAllLoaders();
md_pansep = 64;
md_mixfreq = mikmod_sample_rate;
md_mode = (DMODE_SOFT_MUSIC | DMODE_INTERP | DMODE_STEREO |
DMODE_16BITS);
if (MikMod_Init(params)) {
FormatError(mikmod_domain,
"Could not init MikMod: %s",
MikMod_strerror(MikMod_errno));
return false;
}
return true;
}
2009-11-14 01:48:07 +01:00
static void
2018-01-21 11:47:17 +01:00
mikmod_decoder_finish() noexcept
{
MikMod_Exit();
}
static void
mikmod_decoder_file_decode(DecoderClient &client, Path path_fs)
{
/* deconstify the path because libmikmod wants a non-const
string pointer */
char *const path2 = const_cast<char *>(path_fs.c_str());
MODULE *handle;
int ret;
SBYTE buffer[MIKMOD_FRAME_SIZE];
handle = Player_Load(path2, 128, 0);
2013-07-28 12:54:59 +02:00
if (handle == nullptr) {
FormatError(mikmod_domain,
"failed to open mod: %s", path_fs.c_str());
return;
}
handle->loop = mikmod_loop;
2013-08-03 21:00:50 +02:00
const AudioFormat audio_format(mikmod_sample_rate, SampleFormat::S16, 2);
assert(audio_format.IsValid());
client.Ready(audio_format, false, SignedSongTime::Negative());
Player_Start(handle);
DecoderCommand cmd = DecoderCommand::NONE;
while (cmd == DecoderCommand::NONE && Player_Active()) {
ret = VC_WriteBytes(buffer, sizeof(buffer));
cmd = client.SubmitData(nullptr, buffer, ret, 0);
}
Player_Stop();
Player_Free(handle);
}
static bool
mikmod_decoder_scan_file(Path path_fs, TagHandler &handler) noexcept
{
/* deconstify the path because libmikmod wants a non-const
string pointer */
char *const path2 = const_cast<char *>(path_fs.c_str());
MODULE *handle = Player_Load(path2, 128, 0);
2013-07-28 12:54:59 +02:00
if (handle == nullptr) {
FormatDebug(mikmod_domain,
"Failed to open file: %s", path_fs.c_str());
return false;
}
2009-11-14 01:48:07 +01:00
Player_Free(handle);
char *title = Player_LoadTitle(path2);
2013-07-28 12:54:59 +02:00
if (title != nullptr) {
handler.OnTag(TAG_TITLE, title);
MikMod_free(title);
}
return true;
}
2009-11-14 01:48:07 +01:00
static const char *const mikmod_decoder_suffixes[] = {
"amf",
"dsm",
"far",
"gdm",
"imf",
"it",
"med",
"mod",
"mtm",
"s3m",
"stm",
"stx",
"ult",
"uni",
"xm",
2013-07-28 12:54:59 +02:00
nullptr
};
constexpr DecoderPlugin mikmod_decoder_plugin =
DecoderPlugin("mikmod",
mikmod_decoder_file_decode, mikmod_decoder_scan_file)
.WithInit(mikmod_decoder_init, mikmod_decoder_finish)
.WithSuffixes(mikmod_decoder_suffixes);