2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
2004-05-31 23:17:20 +02:00
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-05-31 23:17:20 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#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"
|
2014-02-07 18:52:19 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
2016-11-24 14:09:58 +01:00
|
|
|
#include "util/RuntimeError.hxx"
|
2019-06-06 12:02:55 +02:00
|
|
|
#include "util/StringView.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2004-05-31 23:17:20 +02:00
|
|
|
|
|
|
|
#include <mikmod.h>
|
2013-11-28 11:50:54 +01:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain mikmod_domain("mikmod");
|
2009-02-17 08:51:34 +01:00
|
|
|
|
2004-05-31 23:17:20 +02:00
|
|
|
/* this is largely copied from alsaplayer */
|
|
|
|
|
2013-07-28 12:54:59 +02:00
|
|
|
static constexpr size_t MIKMOD_FRAME_SIZE = 4096;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static BOOL
|
2020-02-01 05:12:05 +01:00
|
|
|
mikmod_mpd_init()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
return VC_Init();
|
|
|
|
}
|
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static void
|
2020-02-01 05:12:05 +01:00
|
|
|
mikmod_mpd_exit()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
VC_Exit();
|
|
|
|
}
|
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static void
|
2020-02-01 05:12:05 +01:00
|
|
|
mikmod_mpd_update()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static BOOL
|
2020-02-01 05:12:05 +01:00
|
|
|
mikmod_mpd_is_present()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-11-14 01:48:07 +01:00
|
|
|
return true;
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:45:21 +01:00
|
|
|
static char drv_name[] = PACKAGE_NAME;
|
|
|
|
static char drv_version[] = VERSION;
|
|
|
|
static char drv_alias[] = PACKAGE;
|
2008-09-07 19:14:39 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
static MDRIVER drv_mpd = {
|
2013-07-28 12:54:59 +02:00
|
|
|
nullptr,
|
2008-09-07 19:14:39 +02:00
|
|
|
drv_name,
|
|
|
|
drv_version,
|
2004-05-31 23:17:20 +02:00
|
|
|
0,
|
|
|
|
255,
|
2008-09-07 19:14:39 +02:00
|
|
|
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,
|
2004-05-31 23:17:20 +02:00
|
|
|
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,
|
2004-05-31 23:17:20 +02:00
|
|
|
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,
|
2004-05-31 23:17:20 +02:00
|
|
|
VC_VoiceSetVolume,
|
|
|
|
VC_VoiceGetVolume,
|
|
|
|
VC_VoiceSetFrequency,
|
|
|
|
VC_VoiceGetFrequency,
|
|
|
|
VC_VoiceSetPanning,
|
|
|
|
VC_VoiceGetPanning,
|
|
|
|
VC_VoicePlay,
|
|
|
|
VC_VoiceStop,
|
|
|
|
VC_VoiceStopped,
|
|
|
|
VC_VoiceGetPosition,
|
|
|
|
VC_VoiceRealVolume
|
|
|
|
};
|
|
|
|
|
2013-10-18 04:12:36 +02:00
|
|
|
static bool mikmod_loop;
|
2009-11-14 02:03:03 +01:00
|
|
|
static unsigned mikmod_sample_rate;
|
|
|
|
|
2009-02-15 18:34:14 +01:00
|
|
|
static bool
|
2015-01-21 22:13:44 +01:00
|
|
|
mikmod_decoder_init(const ConfigBlock &block)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-09-07 19:14:39 +02:00
|
|
|
static char params[] = "";
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
mikmod_loop = block.GetBlockValue("loop", false);
|
2020-02-02 23:31:45 +01:00
|
|
|
mikmod_sample_rate = block.GetPositiveValue("sample_rate", 44100U);
|
2009-11-14 02:03:03 +01:00
|
|
|
if (!audio_valid_sample_rate(mikmod_sample_rate))
|
2016-11-24 14:09:58 +01:00
|
|
|
throw FormatRuntimeError("Invalid sample rate in line %d: %u",
|
|
|
|
block.line, mikmod_sample_rate);
|
2009-11-14 02:03:03 +01:00
|
|
|
|
2008-11-03 07:32:02 +01:00
|
|
|
md_device = 0;
|
|
|
|
md_reverb = 0;
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2008-11-03 07:32:02 +01:00
|
|
|
MikMod_RegisterDriver(&drv_mpd);
|
|
|
|
MikMod_RegisterAllLoaders();
|
2004-09-02 20:16:00 +02:00
|
|
|
|
|
|
|
md_pansep = 64;
|
2009-11-14 02:03:03 +01:00
|
|
|
md_mixfreq = mikmod_sample_rate;
|
2004-09-02 20:16:00 +02:00
|
|
|
md_mode = (DMODE_SOFT_MUSIC | DMODE_INTERP | DMODE_STEREO |
|
2006-07-20 18:02:40 +02:00
|
|
|
DMODE_16BITS);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2008-09-07 19:14:39 +02:00
|
|
|
if (MikMod_Init(params)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(mikmod_domain,
|
|
|
|
"Could not init MikMod: %s",
|
|
|
|
MikMod_strerror(MikMod_errno));
|
2008-10-30 08:38:54 +01:00
|
|
|
return false;
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2008-10-30 08:38:54 +01:00
|
|
|
return true;
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static void
|
2018-01-21 11:47:17 +01:00
|
|
|
mikmod_decoder_finish() noexcept
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-05-31 23:17:20 +02:00
|
|
|
MikMod_Exit();
|
|
|
|
}
|
|
|
|
|
2008-11-11 17:13:44 +01:00
|
|
|
static void
|
2016-11-18 07:13:35 +01:00
|
|
|
mikmod_decoder_file_decode(DecoderClient &client, Path path_fs)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-10-19 17:30:56 +02:00
|
|
|
/* deconstify the path because libmikmod wants a non-const
|
|
|
|
string pointer */
|
2014-02-07 18:52:19 +01:00
|
|
|
char *const path2 = const_cast<char *>(path_fs.c_str());
|
2013-10-19 17:30:56 +02:00
|
|
|
|
2009-11-14 01:58:13 +01:00
|
|
|
MODULE *handle;
|
2004-05-31 23:17:20 +02:00
|
|
|
int ret;
|
2009-11-14 01:58:13 +01:00
|
|
|
SBYTE buffer[MIKMOD_FRAME_SIZE];
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2009-11-14 01:58:13 +01:00
|
|
|
handle = Player_Load(path2, 128, 0);
|
2009-11-14 01:53:50 +01:00
|
|
|
|
2013-07-28 12:54:59 +02:00
|
|
|
if (handle == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(mikmod_domain,
|
2014-02-07 18:52:19 +01:00
|
|
|
"failed to open mod: %s", path_fs.c_str());
|
2008-11-11 17:13:44 +01:00
|
|
|
return;
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2013-10-18 04:12:36 +02:00
|
|
|
handle->loop = mikmod_loop;
|
2009-11-14 01:53:50 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat audio_format(mikmod_sample_rate, SampleFormat::S16, 2);
|
|
|
|
assert(audio_format.IsValid());
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2016-11-18 07:59:01 +01:00
|
|
|
client.Ready(audio_format, false, SignedSongTime::Negative());
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2009-11-14 01:58:13 +01:00
|
|
|
Player_Start(handle);
|
2013-09-27 12:11:37 +02:00
|
|
|
|
|
|
|
DecoderCommand cmd = DecoderCommand::NONE;
|
|
|
|
while (cmd == DecoderCommand::NONE && Player_Active()) {
|
2009-11-14 01:58:13 +01:00
|
|
|
ret = VC_WriteBytes(buffer, sizeof(buffer));
|
2016-11-18 08:27:30 +01:00
|
|
|
cmd = client.SubmitData(nullptr, buffer, ret, 0);
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:53:50 +01:00
|
|
|
Player_Stop();
|
2009-11-14 01:58:13 +01:00
|
|
|
Player_Free(handle);
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2012-02-11 19:26:41 +01:00
|
|
|
static bool
|
2018-07-05 19:07:05 +02:00
|
|
|
mikmod_decoder_scan_file(Path path_fs, TagHandler &handler) noexcept
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-10-19 17:30:56 +02:00
|
|
|
/* deconstify the path because libmikmod wants a non-const
|
|
|
|
string pointer */
|
2014-02-07 18:52:19 +01:00
|
|
|
char *const path2 = const_cast<char *>(path_fs.c_str());
|
2013-10-19 17:30:56 +02:00
|
|
|
|
2010-05-31 10:16:09 +02:00
|
|
|
MODULE *handle = Player_Load(path2, 128, 0);
|
2008-10-31 15:56:43 +01:00
|
|
|
|
2013-07-28 12:54:59 +02:00
|
|
|
if (handle == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(mikmod_domain,
|
2014-02-07 18:52:19 +01:00
|
|
|
"Failed to open file: %s", path_fs.c_str());
|
2012-02-11 19:26:41 +01:00
|
|
|
return false;
|
2005-09-08 23:08:02 +02:00
|
|
|
}
|
2010-05-31 10:16:09 +02:00
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
Player_Free(handle);
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2010-05-31 10:24:08 +02:00
|
|
|
char *title = Player_LoadTitle(path2);
|
2013-07-28 12:54:59 +02:00
|
|
|
if (title != nullptr) {
|
2018-07-05 19:07:05 +02:00
|
|
|
handler.OnTag(TAG_TITLE, title);
|
2013-04-20 08:29:11 +02:00
|
|
|
MikMod_free(title);
|
2010-05-31 10:24:08 +02:00
|
|
|
}
|
2004-05-31 23:17:20 +02:00
|
|
|
|
2012-02-11 19:26:41 +01:00
|
|
|
return true;
|
2004-05-31 23:17:20 +02:00
|
|
|
}
|
|
|
|
|
2009-11-14 01:48:07 +01:00
|
|
|
static const char *const mikmod_decoder_suffixes[] = {
|
2008-11-01 14:55:23 +01:00
|
|
|
"amf",
|
2006-07-20 18:02:40 +02:00
|
|
|
"dsm",
|
|
|
|
"far",
|
|
|
|
"gdm",
|
|
|
|
"imf",
|
|
|
|
"it",
|
|
|
|
"med",
|
|
|
|
"mod",
|
|
|
|
"mtm",
|
|
|
|
"s3m",
|
|
|
|
"stm",
|
|
|
|
"stx",
|
|
|
|
"ult",
|
|
|
|
"uni",
|
|
|
|
"xm",
|
2013-07-28 12:54:59 +02:00
|
|
|
nullptr
|
2006-07-20 18:02:40 +02:00
|
|
|
};
|
|
|
|
|
2019-06-15 14:44:37 +02:00
|
|
|
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);
|