2010-04-10 10:05:16 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "../decoder_api.h"
|
|
|
|
#include "audio_check.h"
|
2010-10-14 17:11:59 +02:00
|
|
|
#include "uri.h"
|
|
|
|
|
2010-04-10 10:05:16 +02:00
|
|
|
#include <glib.h>
|
|
|
|
#include <assert.h>
|
2010-10-14 17:11:59 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2010-04-10 10:05:16 +02:00
|
|
|
#include <gme/gme.h>
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "gme"
|
|
|
|
|
2010-10-14 17:11:59 +02:00
|
|
|
#define SUBTUNE_PREFIX "tune_"
|
|
|
|
|
2010-05-31 09:45:52 +02:00
|
|
|
enum {
|
|
|
|
GME_SAMPLE_RATE = 44100,
|
|
|
|
GME_CHANNELS = 2,
|
2010-05-31 09:44:30 +02:00
|
|
|
GME_BUFFER_FRAMES = 2048,
|
|
|
|
GME_BUFFER_SAMPLES = GME_BUFFER_FRAMES * GME_CHANNELS,
|
2010-05-31 09:45:52 +02:00
|
|
|
};
|
|
|
|
|
2010-10-14 17:11:59 +02:00
|
|
|
/**
|
|
|
|
* returns the file path stripped of any /tune_xxx.* subtune
|
|
|
|
* suffix
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
get_container_name(const char *path_fs)
|
|
|
|
{
|
|
|
|
const char *subtune_suffix = uri_get_suffix(path_fs);
|
|
|
|
char *path_container = g_strdup(path_fs);
|
|
|
|
char *pat = g_strconcat("*/" SUBTUNE_PREFIX "???.", subtune_suffix, NULL);
|
|
|
|
GPatternSpec *path_with_subtune = g_pattern_spec_new(pat);
|
|
|
|
g_free(pat);
|
|
|
|
if (!g_pattern_match(path_with_subtune,
|
|
|
|
strlen(path_container), path_container, NULL)) {
|
|
|
|
g_pattern_spec_free(path_with_subtune);
|
|
|
|
return path_container;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ptr = g_strrstr(path_container, "/" SUBTUNE_PREFIX);
|
|
|
|
if (ptr != NULL)
|
|
|
|
*ptr='\0';
|
|
|
|
|
|
|
|
g_pattern_spec_free(path_with_subtune);
|
|
|
|
return path_container;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns tune number from file.nsf/tune_xxx.* style path or 0 if no subtune
|
|
|
|
* is appended.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_song_num(const char *path_fs)
|
|
|
|
{
|
|
|
|
const char *subtune_suffix = uri_get_suffix(path_fs);
|
|
|
|
char *pat = g_strconcat("*/" SUBTUNE_PREFIX "???.", subtune_suffix, NULL);
|
|
|
|
GPatternSpec *path_with_subtune = g_pattern_spec_new(pat);
|
|
|
|
g_free(pat);
|
|
|
|
|
|
|
|
if (g_pattern_match(path_with_subtune,
|
|
|
|
strlen(path_fs), path_fs, NULL)) {
|
|
|
|
char *sub = g_strrstr(path_fs, "/" SUBTUNE_PREFIX);
|
|
|
|
g_pattern_spec_free(path_with_subtune);
|
|
|
|
if(!sub)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sub += strlen("/" SUBTUNE_PREFIX);
|
|
|
|
int song_num = strtol(sub, NULL, 10);
|
|
|
|
|
|
|
|
return song_num - 1;
|
|
|
|
} else {
|
|
|
|
g_pattern_spec_free(path_with_subtune);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
gme_container_scan(const char *path_fs, const unsigned int tnum)
|
|
|
|
{
|
|
|
|
Music_Emu *emu;
|
|
|
|
const char* gme_err;
|
|
|
|
unsigned int num_songs;
|
|
|
|
|
|
|
|
gme_err = gme_open_file(path_fs, &emu, GME_SAMPLE_RATE);
|
|
|
|
if (gme_err != NULL) {
|
|
|
|
g_warning("%s", gme_err);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_songs = gme_track_count(emu);
|
|
|
|
/* if it only contains a single tune, don't treat as container */
|
|
|
|
if (num_songs < 2)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
const char *subtune_suffix = uri_get_suffix(path_fs);
|
|
|
|
if (tnum <= num_songs){
|
|
|
|
char *subtune = g_strdup_printf(
|
|
|
|
SUBTUNE_PREFIX "%03u.%s", tnum, subtune_suffix);
|
|
|
|
return subtune;
|
|
|
|
} else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-04-10 10:05:16 +02:00
|
|
|
static void
|
|
|
|
gme_file_decode(struct decoder *decoder, const char *path_fs)
|
|
|
|
{
|
|
|
|
float song_len;
|
|
|
|
Music_Emu *emu;
|
|
|
|
gme_info_t *ti;
|
|
|
|
struct audio_format audio_format;
|
|
|
|
enum decoder_command cmd;
|
2010-05-31 09:44:30 +02:00
|
|
|
short buf[GME_BUFFER_SAMPLES];
|
2010-04-10 10:05:16 +02:00
|
|
|
const char* gme_err;
|
2010-10-14 17:11:59 +02:00
|
|
|
char *path_container = get_container_name(path_fs);
|
|
|
|
int song_num = get_song_num(path_fs);
|
2010-04-10 10:05:16 +02:00
|
|
|
|
2010-10-14 17:11:59 +02:00
|
|
|
gme_err = gme_open_file(path_container, &emu, GME_SAMPLE_RATE);
|
|
|
|
g_free(path_container);
|
2010-05-31 09:45:52 +02:00
|
|
|
if (gme_err != NULL) {
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
return;
|
|
|
|
}
|
2010-10-14 17:11:59 +02:00
|
|
|
|
|
|
|
if((gme_err = gme_track_info(emu, &ti, song_num)) != NULL){
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
gme_delete(emu);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ti->length > 0)
|
|
|
|
song_len = ti->length / 1000.0;
|
|
|
|
else song_len = -1;
|
|
|
|
|
|
|
|
/* initialize the MPD decoder */
|
|
|
|
|
|
|
|
GError *error = NULL;
|
2010-05-31 09:45:52 +02:00
|
|
|
if (!audio_format_init_checked(&audio_format, GME_SAMPLE_RATE,
|
|
|
|
SAMPLE_FORMAT_S16, GME_CHANNELS,
|
|
|
|
&error)) {
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
gme_free_info(ti);
|
|
|
|
gme_delete(emu);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder_initialized(decoder, &audio_format, true, song_len);
|
|
|
|
|
2010-10-14 17:11:59 +02:00
|
|
|
if((gme_err = gme_start_track(emu, song_num)) != NULL)
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
|
2011-02-03 00:25:35 +01:00
|
|
|
if(ti->length > 0)
|
|
|
|
gme_set_fade(emu, ti->length);
|
|
|
|
|
2010-04-10 10:05:16 +02:00
|
|
|
/* play */
|
|
|
|
do {
|
2010-05-31 09:44:30 +02:00
|
|
|
gme_err = gme_play(emu, GME_BUFFER_SAMPLES, buf);
|
|
|
|
if (gme_err != NULL) {
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
return;
|
|
|
|
}
|
2010-05-31 09:57:15 +02:00
|
|
|
cmd = decoder_data(decoder, NULL, buf, sizeof(buf), 0);
|
2010-04-10 10:05:16 +02:00
|
|
|
|
|
|
|
if(cmd == DECODE_COMMAND_SEEK) {
|
|
|
|
float where = decoder_seek_where(decoder);
|
|
|
|
if((gme_err = gme_seek(emu, (int)where*1000)) != NULL)
|
|
|
|
g_warning("%s", gme_err);
|
|
|
|
decoder_command_finished(decoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(gme_track_ended(emu))
|
|
|
|
break;
|
|
|
|
} while(cmd != DECODE_COMMAND_STOP);
|
|
|
|
|
|
|
|
gme_free_info(ti);
|
|
|
|
gme_delete(emu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct tag *
|
|
|
|
gme_tag_dup(const char *path_fs)
|
|
|
|
{
|
|
|
|
Music_Emu *emu;
|
|
|
|
gme_info_t *ti;
|
|
|
|
const char* gme_err;
|
2010-10-14 17:11:59 +02:00
|
|
|
char *path_container=get_container_name(path_fs);
|
|
|
|
int song_num;
|
|
|
|
song_num=get_song_num(path_fs);
|
2010-04-10 10:05:16 +02:00
|
|
|
|
2010-10-14 17:11:59 +02:00
|
|
|
gme_err = gme_open_file(path_container, &emu, GME_SAMPLE_RATE);
|
|
|
|
g_free(path_container);
|
2010-05-31 09:45:52 +02:00
|
|
|
if (gme_err != NULL) {
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-10-14 17:11:59 +02:00
|
|
|
if((gme_err = gme_track_info(emu, &ti, song_num)) != NULL){
|
2010-04-10 10:05:16 +02:00
|
|
|
g_warning("%s", gme_err);
|
|
|
|
gme_delete(emu);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-31 09:43:25 +02:00
|
|
|
struct tag *tag = tag_new();
|
2010-04-10 10:05:16 +02:00
|
|
|
if(ti != NULL){
|
|
|
|
if(ti->length > 0)
|
|
|
|
tag->time = ti->length / 1000;
|
2010-10-14 17:11:59 +02:00
|
|
|
if(ti->song != NULL){
|
|
|
|
if(gme_track_count(emu) > 1){
|
|
|
|
/* start numbering subtunes from 1 */
|
|
|
|
char *tag_title=g_strdup_printf("%s (%d/%d)",
|
|
|
|
ti->song, song_num+1, gme_track_count(emu));
|
|
|
|
tag_add_item(tag, TAG_TITLE, tag_title);
|
|
|
|
g_free(tag_title);
|
|
|
|
}else
|
|
|
|
tag_add_item(tag, TAG_TITLE, ti->song);
|
|
|
|
}
|
2010-04-10 10:05:16 +02:00
|
|
|
if(ti->author != NULL)
|
|
|
|
tag_add_item(tag, TAG_ARTIST, ti->author);
|
2010-07-23 23:07:36 +02:00
|
|
|
if(ti->game != NULL)
|
|
|
|
tag_add_item(tag, TAG_ALBUM, ti->game);
|
2010-04-10 10:05:16 +02:00
|
|
|
if(ti->comment != NULL)
|
|
|
|
tag_add_item(tag, TAG_COMMENT, ti->comment);
|
|
|
|
if(ti->copyright != NULL)
|
|
|
|
tag_add_item(tag, TAG_DATE, ti->copyright);
|
|
|
|
}
|
|
|
|
|
|
|
|
gme_free_info(ti);
|
|
|
|
gme_delete(emu);
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const gme_suffixes[] = {
|
|
|
|
"ay", "gbs", "gym", "hes", "kss", "nsf",
|
|
|
|
"nsfe", "sap", "spc", "vgm", "vgz",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct decoder_plugin gme_decoder_plugin;
|
|
|
|
const struct decoder_plugin gme_decoder_plugin = {
|
|
|
|
.name = "gme",
|
|
|
|
.file_decode = gme_file_decode,
|
|
|
|
.tag_dup = gme_tag_dup,
|
|
|
|
.suffixes = gme_suffixes,
|
2010-10-14 17:11:59 +02:00
|
|
|
.container_scan = gme_container_scan,
|
2010-04-10 10:05:16 +02:00
|
|
|
};
|