1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/* OpenCP Module Player
* copyright (c) 2010-'24 Stian Skjelstad <stian.skjelstad@gmail.com>
*
* YM file type detection routines for the fileselector
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* revision history: (please note changes here)
* -kb980717 Tammo Hinrichs <opencp@gmx.net>
* -first release
*/
#include "config.h"
#include <string.h>
#include "types.h"
extern "C" {
#include "boot/plinkman.h"
#include "filesel/filesystem.h"
#include "filesel/mdb.h"
#include "filesel/pfilesel.h"
#include "stuff/err.h"
}
#include "lzh/lzh.h"
#include "ymtype.h"
struct __attribute__((packed)) pymHeader
{
char id[4]; /* YM2!, YM3!, YM3b, //YM4!, YM5!, YM6! */
char mark[8]; /* LeOnArD!, YM5!, YM6! */
uint32_t nb_frame; /* YM5!, YM6! */
uint32_t attributes; /* YM5!, YM6! */
uint16_t nb_drum; /* YM5!, YM6! */
uint32_t clock; /* YM5!, YM6! */
uint16_t rate; /* YM5!, YM6! */
uint32_t loopframe; /* YM5!, YM6! */
uint16_t skip; /* YM5!, YM6! */
/* skip bytes of data if YM5!, YM6!
nb_drums {
uint32_t size;
size bytes of data;
}
char *song_name;
char *song_author;
char *song_comment;
data
uint32_t loopframe at EOF-4 for YM3b */
};
struct __attribute__((packed)) pmixHeader
{
char id[4]; /* MIX1 */
char mark[8]; /* LeOnArD! */
uint32_t attribute;
uint32_t sample_size;
uint32_t nb_mix_block;
/*
nb_mix_block {
uint32_t samplestart;
uint32_t samplelength;
uint16_t nbRepeat;
uint16_t replayFreq;
}
char *song_name;
char *song_author;
char *song_comment;
sample_size data;
*/
};
struct __attribute__((packed)) pymtHeader
{
char id[4]; /* YMT1, YMT2 */
char mark[8]; /* LeOnArD! */
uint16_t nb_voices;
uint16_t player_rate;
uint32_t music_length;
uint32_t music_loop;
uint16_t nb_digidrum;
uint32_t flags;
/*
char *music_name;
char *music_author;
char *music_comment;
data */
};
struct __attribute__((packed)) lzhHeader
{
uint8_t size;
uint8_t sum;
char id[5]; /* -lh5- */
uint32_t packed;
uint32_t original;
char reserved[5]; /* time, date, reserved data */
uint8_t level;
uint8_t name_length;
};
static void ym_strcpy(char *target, int targetsize, const char **source, int *lenleft)
{
int length;
int copy;
if (*lenleft<=0)
return;
for (length=0;;length++)
{
if (length>=*lenleft)
{
if (length<targetsize)
return;
break;
}
if (!(*source)[length])
{
length++;
break;
}
}
(*lenleft)+=length;
if (length>targetsize)
copy=targetsize;
else
copy=length;
strncpy(target, *source, copy); /* This does NOT NUL terminate the string.. expected behaviour */
(*source)+=length;
}
static int ymReadMemInfo2(struct moduleinfostruct *m, const char *buf, size_t len)
{
struct pymHeader *YM = (struct pymHeader *)buf;
struct pymtHeader *YMT = (struct pymtHeader *)buf;
struct pmixHeader *MIX = (struct pmixHeader *)buf;
if (len<4)
return 0;
if (!strncmp(YM->id, "YM2!", 4))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "Converted by Leonard.");
strcpy(m->style, "YM 2 (MADMAX specific)");
m->playtime=0;
//#warning Need file size to calculate playtime
return 1;
}
if (!strncmp(YM->id, "YM3!", 4))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "");
strcpy(m->style, "YM 3 (Standard YM-Atari format)");
m->playtime=0;
//#warning Need file size to calculate playtime
return 1;
}
if (!strncmp(YM->id, "YM3b", 4))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "");
strcpy(m->style, "YM 3b (Standard YM-Atari format + loop information)");
m->playtime=0;
//#warning Need file size to calculate playtime
return 1;
}
if (!strncmp(YM->id, "YM4!", 4))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->style, "YM 4 not supported (Extended Atari format)");
return 0;
}
if (len<12)
return 0;
if (strncmp(YM->mark, "LeOnArD!", 8))
return 0;
if ((!strncmp(YM->id, "YM5!", 4))||(!strncmp(YM->id, "YM6!", 4)))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "");
m->playtime=0;
if (!strncmp(YM->id, "YM5!", 4))
strcpy(m->style, "YM 5 (Extended YM2149 format, all machines)");
else
strcpy(m->style, "YM 6 (Extended YM2149 format, all machines)");
if (len >= sizeof(*YM))
{
uint_fast32_t drumskip = 0;
int i;
uint32_t nbFrame = uint32_big(YM->nb_frame);
uint16_t nbDrum = uint16_big(YM->nb_drum);
/*uint32_t clock = uint32_big(YM->clock);*/
uint16_t rate = uint16_big(YM->rate);
uint16_t skip = uint16_big(YM->skip);
// TODO, use clock, rate and nbFrame to calculate song length */
m->playtime = nbFrame/rate;
for (i=0;i<nbDrum;i++)
{
if (len >= (sizeof(*YM) + skip + drumskip + 4))
{
uint32_t drumsize = uint32_big(*(uint32_t *)(buf+skip+drumskip));
if (drumsize>=0x1000000) /* don't overflow on big files */
drumsize=0xffffff;
drumskip+=drumsize+4;
} else {
drumskip+=4;
break;
}
}
const char *ptr = buf+skip+drumskip+sizeof(*YM);
int lenleft = len-skip-drumskip-sizeof(*YM);
ym_strcpy(m->title, sizeof(m->title), &ptr, &lenleft);
ym_strcpy(m->composer, sizeof(m->composer), &ptr, &lenleft);
ym_strcpy(m->comment, sizeof(m->comment), &ptr, &lenleft);
if (lenleft>=0)
return 1;
}
return 0; /* we wanted more data */
}
if (!strncmp(MIX->id, "MIX1", 4))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "");
m->playtime=0;
strcpy(m->style, "MIX1 (Atari Remix digit format)");
if (len >= sizeof(*MIX))
{
uint32_t nbMixBlock = uint32_big(MIX->nb_mix_block);
if (nbMixBlock>=0x1000000) /* don't overflow on big files */
nbMixBlock=0xffffff;
uint32_t skip = nbMixBlock * 12;
const char *ptr = buf+skip+sizeof(*MIX);
int lenleft = len-skip-sizeof(*MIX);
ym_strcpy(m->title, sizeof(m->title), &ptr, &lenleft);
ym_strcpy(m->composer, sizeof(m->composer), &ptr, &lenleft);
ym_strcpy(m->comment, sizeof(m->comment), &ptr, &lenleft);
if (lenleft>=0)
return 1;
}
return 0;
}
if ((!strncmp(YMT->id, "YMT1", 4))||(!strncmp(YMT->id, "YMT2", 4)))
{
m->modtype.integer.i=MODULETYPE("YM");
m->channels=3;
strcpy(m->title, "Unknown");
strcpy(m->composer, "Unknown");
strcpy(m->comment, "");
m->playtime=0;
if (!strncmp(YMT->id, "YMT1", 4))
strcpy(m->style, "YM-T1 (YM-Tracker)");
else
strcpy(m->style, "YM-T2 (YM-Tracker)");
if (len >= sizeof(*YMT))
{
/* TODO, time
uint16_t Rate = uint16_big(YMT->rate);
*/
const char *ptr = buf+sizeof(*YMT);
int lenleft = len-sizeof(*YMT);
ym_strcpy(m->title, sizeof(m->title), &ptr, &lenleft);
ym_strcpy(m->composer, sizeof(m->composer), &ptr, &lenleft);
ym_strcpy(m->comment, sizeof(m->comment), &ptr, &lenleft);
if (lenleft>=0)
return 1;
}
return 0;
}
return 0;
}
static int ymReadInfo(struct moduleinfostruct *m, struct ocpfilehandle_t *fp, const char *buf, size_t len, const struct mdbReadInfoAPI_t *API)
{
#ifdef HAVE_LZH
uint32_t fileSize;
uint32_t packedSize;
char ex_buf[8192];
struct lzhHeader *h= (struct lzhHeader *)buf;
int skip = 2; /* CRC */
if (len<sizeof(lzhHeader))
return 0; /* no point testing for valid formats at all if we can't even fit this header in */
if ((h->size==0)||(strncmp(h->id, "-lh5-", 5))||(h->level>1))
return ymReadMemInfo2(m, buf, len);
if (h->level == 1)
{
uint16_t headersize;
skip += 1; /* OS-type */
do {
if (((sizeof (*h) + h->name_length + skip + 2)) > len)
return 0; /* running out of data */
headersize = ((uint8_t *)buf)[sizeof (*h) + h->name_length + skip] |
(((uint8_t *)buf)[sizeof (*h) + h->name_length + skip] << 8);
skip += 2 + headersize;
} while (headersize);
}
if (((sizeof (*h) + h->name_length + skip)) > len)
return 0; /* running out of data */
fileSize = uint32_little(h->original);
if (fileSize>sizeof(ex_buf))
fileSize=sizeof(ex_buf);
packedSize = uint32_little(h->packed);
if (packedSize > (len - ( sizeof(*h) + h->name_length + skip)))
packedSize = len - ( sizeof(*h) + h->name_length + skip );
memset (ex_buf, 0, fileSize);
{
CLzhDepacker *pDepacker = new CLzhDepacker;
pDepacker->LzUnpack(buf + sizeof(*h) + h->name_length + skip, packedSize, ex_buf, fileSize);
delete pDepacker;
}
return ymReadMemInfo2(m, ex_buf, fileSize);
#else
return ymReadMemInfo2(m, buf, len);
#endif
}
static const char *YM_description[] =
{
// |
"YM files as music, primary from Atari systems. Atari machines features a",
"three channel synthesizer IC YM2149 (and very similiar to the wider used",
"AY-3-8912). YM files contains register value recorded at the screen refresh",
"rate, so only the IC needs to be simulated. Open Cubic Player uses",
"stsoundlib for playback.",
NULL
};
static struct mdbreadinforegstruct ymReadInfoReg = {"YM", ymReadInfo MDBREADINFOREGSTRUCT_TAIL};
OCP_INTERNAL int ym_type_init (PluginInitAPI_t *API)
{
struct moduletype mt;
API->fsRegisterExt("YM");
API->fsRegisterExt("MIX");
mt.integer.i = MODULETYPE("YM");
API->fsTypeRegister (mt, YM_description, "plOpenCP", &ymPlayer);
API->mdbRegisterReadInfo(&ymReadInfoReg);
return errOk;
}
OCP_INTERNAL void ym_type_done (PluginCloseAPI_t *API)
{
struct moduletype mt;
mt.integer.i = MODULETYPE("YM");
API->fsTypeUnregister (mt);
API->mdbUnregisterReadInfo(&ymReadInfoReg);
}
|