/* Extended Module Player * Copyright (C) 1996-1999 Claudio Matsuoka and Hipolito Carraro Jr * * This file is part of the Extended Module Player and is distributed * under the terms of the GNU General Public License. See doc/COPYING * for more information. */ /* Loader for FC-M Packer modules based on the format description * written by Sylvain Chipaux (Asle/ReDoX). Modules sent by Sylvain * Chipaux. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "load.h" #include "period.h" struct fcm_instrument { uint16 size; uint8 finetune; uint8 volume; uint16 loop_start; uint16 loop_size; } PACKED; struct fcm_header { uint8 magic[4]; /* 'FC-M' magic ID */ uint8 vmaj; uint8 vmin; uint8 name_id[4]; /* 'NAME' pseudo chunk ID */ uint8 name[20]; uint8 inst_id[4]; /* 'INST' pseudo chunk ID */ struct fcm_instrument ins[31]; uint8 long_id[4]; /* 'LONG' pseudo chunk ID */ uint8 len; uint8 rst; uint8 patt_id[4]; /* 'PATT' pseudo chunk ID */ } PACKED; int fcm_load (FILE *f) { int i, j, k; struct xxm_event *event; struct fcm_header fh; uint8 fe[4]; LOAD_INIT (); fread (&fh, 1, sizeof (struct fcm_header), f); if (fh.magic[0] != 'F' || fh.magic[1] != 'C' || fh.magic[2] != '-' || fh.magic[3] != 'M' || fh.name_id[0] != 'N') return -1; strncpy (xmp_ctl->name, fh.name, 20); sprintf (xmp_ctl->type, "FC-M %d.%d", fh.vmaj, fh.vmin); MODULE_INFO (); xxh->len = fh.len; fread (xxo, 1, xxh->len, f); for (xxh->pat = i = 0; i < xxh->len; i++) { if (xxo[i] > xxh->pat) xxh->pat = xxo[i]; } xxh->pat++; xxh->trk = xxh->pat * xxh->chn; INSTRUMENT_INIT (); for (i = 0; i < xxh->ins; i++) { B_ENDIAN16 (fh.ins[i].size); B_ENDIAN16 (fh.ins[i].loop_start); B_ENDIAN16 (fh.ins[i].loop_size); xxi[i] = calloc (sizeof (struct xxm_instrument), 1); xxs[i].len = 2 * fh.ins[i].size; xxs[i].lps = 2 * fh.ins[i].loop_start; xxs[i].lpe = xxs[i].lps + 2 * fh.ins[i].loop_size; xxs[i].flg = fh.ins[i].loop_size > 1 ? WAVE_LOOPING : 0; xxi[i][0].fin = (int8) fh.ins[i].finetune << 4; xxi[i][0].vol = fh.ins[i].volume; xxi[i][0].pan = 0x80; xxi[i][0].sid = i; xxih[i].nsm = !!(xxs[i].len); xxih[i].rls = 0xfff; if (xxi[i][0].fin > 48) xxi[i][0].xpo = -1; if (xxi[i][0].fin < -48) xxi[i][0].xpo = 1; if (V (1) && (strlen (xxih[i].name) || xxs[i].len > 2)) { report ("[%2X] %04x %04x %04x %c V%02x %+d\n", i, xxs[i].len, xxs[i].lps, xxs[i].lpe, fh.ins[i].loop_size > 1 ? 'L' : ' ', xxi[i][0].vol, (char) xxi[i][0].fin >> 4); } } PATTERN_INIT (); /* Load and convert patterns */ if (V (0)) report ("Stored patterns: %d ", xxh->pat); fread (fe, 4, 1, f); /* Skip 'SONG' pseudo chunk ID */ for (i = 0; i < xxh->pat; i++) { PATTERN_ALLOC (i); xxp[i]->rows = 64; TRACK_ALLOC (i); for (j = 0; j < 64; j++) { for (k = 0; k < 4; k++) { event = &EVENT (i, k, j); fread (fe, 4, 1, f); cvt_pt_event (event, fe); } } if (V (0)) report ("."); } xxh->flg |= XXM_FLG_MODRNG; /* Load samples */ fread (fe, 4, 1, f); /* Skip 'SAMP' pseudo chunk ID */ if (V (0)) report ("\nStored samples : %d ", xxh->smp); for (i = 0; i < xxh->smp; i++) { if (!xxs[i].len) continue; xmp_drv_loadpatch (f, xxi[i][0].sid, xmp_ctl->c4rate, 0, &xxs[xxi[i][0].sid], NULL); if (V (0)) report ("."); } if (V (0)) report ("\n"); return 0; }