2008-05-21 11:19:58 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Dave Chapman
|
|
|
|
*
|
2008-06-28 18:10:04 +00: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.
|
2008-05-21 11:19:58 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "system.h"
|
2008-10-15 06:38:51 +00:00
|
|
|
#include "metadata.h"
|
2011-01-21 20:09:22 +00:00
|
|
|
#include <string-extra.h>
|
2008-05-21 11:19:58 +00:00
|
|
|
#include "metadata_common.h"
|
2008-05-28 17:10:49 +00:00
|
|
|
#include "metadata_parsers.h"
|
2008-05-21 11:19:58 +00:00
|
|
|
#include "rbunicode.h"
|
|
|
|
|
2011-01-21 20:09:22 +00:00
|
|
|
#define MODULEHEADERSIZE 0x438
|
|
|
|
|
2008-05-21 11:19:58 +00:00
|
|
|
bool get_mod_metadata(int fd, struct mp3entry* id3)
|
|
|
|
{
|
|
|
|
/* Use the trackname part of the id3 structure as a temporary buffer */
|
2011-01-21 20:09:22 +00:00
|
|
|
unsigned char buf[MODULEHEADERSIZE];
|
|
|
|
unsigned char id[4];
|
|
|
|
bool is_mod_file = false;
|
2008-05-21 11:19:58 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
if ((lseek(fd, 0, SEEK_SET) < 0)
|
2011-01-21 20:09:22 +00:00
|
|
|
|| (read(fd, buf, sizeof(buf)) < MODULEHEADERSIZE))
|
2008-05-21 11:19:58 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-21 20:09:22 +00:00
|
|
|
|
|
|
|
if (read(fd, id, sizeof(id)) < (ssize_t)sizeof(id))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Mod type checking based on MikMod */
|
2011-05-01 20:33:31 +00:00
|
|
|
/* Protracker and variants */
|
|
|
|
if ((!memcmp(id, "M.K.", 4)) || (!memcmp(id, "M!K!", 4))) {
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Star Tracker */
|
|
|
|
if (((!memcmp(id, "FLT", 3)) || (!memcmp(id, "EXO", 3))) &&
|
|
|
|
(isdigit(id[3]))) {
|
|
|
|
char numchn = id[3] - '0';
|
|
|
|
if (numchn == 4 || numchn == 8)
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
2011-01-21 20:09:22 +00:00
|
|
|
|
2011-05-01 20:33:31 +00:00
|
|
|
/* Oktalyzer (Amiga) */
|
|
|
|
if (!memcmp(id, "OKTA", 4)) {
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
2011-01-21 20:09:22 +00:00
|
|
|
|
2011-05-01 20:33:31 +00:00
|
|
|
/* Oktalyser (Atari) */
|
|
|
|
if (!memcmp(id, "CD81", 4)) {
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
2011-01-21 20:09:22 +00:00
|
|
|
|
2011-05-01 20:33:31 +00:00
|
|
|
/* Fasttracker */
|
|
|
|
if ((!memcmp(id + 1, "CHN", 3)) && (isdigit(id[0]))) {
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
|
|
|
/* Fasttracker or Taketracker */
|
|
|
|
if (((!memcmp(id + 2, "CH", 2)) || (!memcmp(id + 2, "CN", 2)))
|
|
|
|
&& (isdigit(id[0])) && (isdigit(id[1]))) {
|
2011-01-21 20:09:22 +00:00
|
|
|
is_mod_file = true;
|
2011-05-01 20:33:31 +00:00
|
|
|
}
|
2011-01-21 20:09:22 +00:00
|
|
|
|
|
|
|
/* Don't try to play if we can't find a known mod type
|
|
|
|
* (there are mod files which have nothing to do with music) */
|
|
|
|
if (!is_mod_file)
|
|
|
|
return false;
|
2008-05-21 11:19:58 +00:00
|
|
|
|
|
|
|
p = id3->id3v2buf;
|
|
|
|
|
2010-10-10 10:24:50 +00:00
|
|
|
/* Copy Title */
|
2011-01-21 20:09:22 +00:00
|
|
|
if (strlcpy(p, buf, sizeof(id3->id3v2buf)) >= sizeof(id3->id3v2buf))
|
|
|
|
return false;
|
|
|
|
|
2010-10-10 10:24:50 +00:00
|
|
|
id3->title = p;
|
2008-05-21 11:19:58 +00:00
|
|
|
|
|
|
|
id3->bitrate = filesize(fd)/1024; /* size in kb */
|
|
|
|
id3->frequency = 44100;
|
|
|
|
id3->length = 120*1000;
|
|
|
|
id3->vbr = false;
|
|
|
|
id3->filesize = filesize(fd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|