123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759 |
- /*
- TiMidity -- Experimental MIDI to WAVE converter
- Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
- 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.
- */
- #include "../../neo/idlib/precompiled.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <string.h>
- #include "config.h"
- #include "common.h"
- #include "instrum.h"
- #include "playmidi.h"
- #include "readmidi.h"
- #include "output.h"
- #include "controls.h"
- void Real_Tim_Free( void *pt );
- int32_t quietchannels=0;
- /* to avoid some unnecessary parameter passing */
- static MidiEventList *evlist;
- static int32_t event_count;
- static idFile * fp = NULL;
- static int32_t at;
- static unsigned char* local_buffer = 0;
- static size_t local_buffer_length = 0;
- static size_t local_buffer_cur = 0;
- /* These would both fit into 32 bits, but they are often added in
- large multiples, so it's simpler to have two roomy ints */
- static int32_t sample_increment, sample_correction; /*samples per MIDI delta-t*/
- static int32_t read_local(void* buffer, size_t len, size_t count)
- {
- if (fp && len > 0) {
- return (int32_t)fp->Read(buffer, len * count ) / len;
- } else if( local_buffer != NULL ) {
- if (len * count + local_buffer_cur > local_buffer_length) {
- memcpy(buffer, &local_buffer[local_buffer_cur], local_buffer_length - local_buffer_cur);
- return(int32_t)(local_buffer_length - local_buffer_cur)/len;
- } else {
- memcpy(buffer, &local_buffer[local_buffer_cur], len * count);
- local_buffer_cur += len * count;
- return(count);
- }
- }
- return 0;
- }
- static void skip_local(size_t len)
- {
- if (fp) {
- skip(fp, len);
- } else {
- if (len + local_buffer_cur > local_buffer_length) {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "skip_local failed on memory buffer");
- } else {
- local_buffer_cur += len;
- }
- }
- }
- /* Computes how many (fractional) samples one MIDI delta-time unit contains */
- static void compute_sample_increment( int32_t tempo, int32_t divisions)
- {
- double a;
- a = (double) (tempo) * (double) (play_mode->rate) * (65536.0/1000000.0) /
- (double)(divisions);
- sample_correction = (int32_t)(a) & 0xFFFF;
- sample_increment = (int32_t)(a) >> 16;
- ctl->cmsg(CMSG_INFO, VERB_DEBUG, "Samples per delta-t: %d (correction %d)",
- sample_increment, sample_correction);
- }
- /* Read variable-length number (7 bits per byte, MSB first) */
- static int32_t getvl(void)
- {
- int32_t l=0;
- uint8_t c;
- for (;;)
- {
- read_local(&c,1,1);
- l += (c & 0x7f);
- if (!(c & 0x80)) return l;
- l<<=7;
- }
- }
- /* Print a string from the file, followed by a newline. Any non-ASCII
- or unprintable characters will be converted to periods. */
- static int dumpstring( int32_t len, char *label)
- {
- signed char *s=(signed char *)safe_malloc(len+1);
- if (len != (int32_t)read_local(s, 1, len))
- {
- Real_Tim_Free(s);
- return -1;
- }
- s[len]='\0';
- while (len--)
- {
- if (s[len]<32)
- s[len]='.';
- }
- ctl->cmsg(CMSG_TEXT, VERB_VERBOSE, "%s%s", label, s);
- Real_Tim_Free(s);
- return 0;
- }
- #define MIDIEVENT(at,t,ch,pa,pb) \
- newEventList=(MidiEventList*)safe_malloc(sizeof(MidiEventList)); \
- newEventList->event.time=at; newEventList->event.type=t; newEventList->event.channel=ch; \
- newEventList->event.a=pa; newEventList->event.b=pb; newEventList->next=0;\
- return newEventList;
- #define MAGIC_EOT ((MidiEventList *)(-1))
- /* Read a MIDI event, returning a freshly allocated element that can
- be linked to the event list */
- static MidiEventList *read_midi_event(void)
- {
- static uint8_t laststatus, lastchan;
- static uint8_t nrpn=0, rpn_msb[16], rpn_lsb[16]; /* one per channel */
- uint8_t me, type, a,b,c;
- int32_t len;
- MidiEventList *newEventList;
- for (;;)
- {
- at+=getvl();
- if (read_local(&me,1,1)!=1)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: read_midi_event: %s",
- current_filename, strerror(errno));
- return 0;
- }
- if(me==0xF0 || me == 0xF7) /* SysEx event */
- {
- len=getvl();
- skip_local(len);
- }
- else if(me==0xFF) /* Meta event */
- {
- read_local(&type,1,1);
- len=getvl();
- if (type>0 && type<16)
- {
- static char *label[]={
- "Text event: ", "Text: ", "Copyright: ", "Track name: ",
- "Instrument: ", "Lyric: ", "Marker: ", "Cue point: "};
- dumpstring(len, label[(type>7) ? 0 : type]);
- }
- else
- switch(type)
- {
- case 0x2F: /* End of Track */
- return MAGIC_EOT;
- case 0x51: /* Tempo */
- read_local(&a,1,1); read_local(&b,1,1); read_local(&c,1,1);
- MIDIEVENT(at, ME_TEMPO, c, a, b);
- default:
- ctl->cmsg(CMSG_INFO, VERB_DEBUG,
- "(Meta event type 0x%02x, length %ld)", type, len);
- skip_local(len);
- break;
- }
- }
- else
- {
- a=me;
- if (a & 0x80) /* status byte */
- {
- lastchan=a & 0x0F;
- laststatus=(a>>4) & 0x07;
- read_local(&a, 1,1);
- a &= 0x7F;
- }
- switch(laststatus)
- {
- case 0: /* Note off */
- read_local(&b, 1,1);
- b &= 0x7F;
- MIDIEVENT(at, ME_NOTEOFF, lastchan, a,b);
- case 1: /* Note on */
- read_local(&b, 1,1);
- b &= 0x7F;
- MIDIEVENT(at, ME_NOTEON, lastchan, a,b);
- case 2: /* Key Pressure */
- read_local(&b, 1,1);
- b &= 0x7F;
- MIDIEVENT(at, ME_KEYPRESSURE, lastchan, a, b);
- case 3: /* Control change */
- read_local(&b, 1,1);
- b &= 0x7F;
- {
- int control=255;
- switch(a)
- {
- case 7: control=ME_MAINVOLUME; break;
- case 10: control=ME_PAN; break;
- case 11: control=ME_EXPRESSION; break;
- case 64: control=ME_SUSTAIN; break;
- case 120: control=ME_ALL_SOUNDS_OFF; break;
- case 121: control=ME_RESET_CONTROLLERS; break;
- case 123: control=ME_ALL_NOTES_OFF; break;
- /* These should be the SCC-1 tone bank switch
- commands. I don't know why there are two, or
- why the latter only allows switching to bank 0.
- Also, some MIDI files use 0 as some sort of
- continuous controller. This will cause lots of
- warnings about undefined tone banks. */
- case 0: control=ME_TONE_BANK; break;
- case 32:
- if (b!=0)
- ctl->cmsg(CMSG_INFO, VERB_DEBUG,
- "(Strange: tone bank change 0x20%02x)", b);
- else
- control=ME_TONE_BANK;
- break;
- case 100: nrpn=0; rpn_msb[lastchan]=b; break;
- case 101: nrpn=0; rpn_lsb[lastchan]=b; break;
- case 99: nrpn=1; rpn_msb[lastchan]=b; break;
- case 98: nrpn=1; rpn_lsb[lastchan]=b; break;
- case 6:
- if (nrpn)
- {
- ctl->cmsg(CMSG_INFO, VERB_DEBUG,
- "(Data entry (MSB) for NRPN %02x,%02x: %ld)",
- rpn_msb[lastchan], rpn_lsb[lastchan],
- b);
- break;
- }
- switch((rpn_msb[lastchan]<<8) | rpn_lsb[lastchan])
- {
- case 0x0000: /* Pitch bend sensitivity */
- control=ME_PITCH_SENS;
- break;
- case 0x7F7F: /* RPN reset */
- /* reset pitch bend sensitivity to 2 */
- MIDIEVENT(at, ME_PITCH_SENS, lastchan, 2, 0);
- default:
- ctl->cmsg(CMSG_INFO, VERB_DEBUG,
- "(Data entry (MSB) for RPN %02x,%02x: %ld)",
- rpn_msb[lastchan], rpn_lsb[lastchan],
- b);
- break;
- }
- break;
- default:
- ctl->cmsg(CMSG_INFO, VERB_DEBUG,
- "(Control %d: %d)", a, b);
- break;
- }
- if (control != 255)
- {
- MIDIEVENT(at, control, lastchan, b, 0);
- }
- }
- break;
- case 4: /* Program change */
- a &= 0x7f;
- MIDIEVENT(at, ME_PROGRAM, lastchan, a, 0);
- case 5: /* Channel pressure - NOT IMPLEMENTED */
- break;
- case 6: /* Pitch wheel */
- read_local(&b, 1,1);
- b &= 0x7F;
- MIDIEVENT(at, ME_PITCHWHEEL, lastchan, a, b);
- default:
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "*** Can't happen: status 0x%02X, channel 0x%02X",
- laststatus, lastchan);
- break;
- }
- }
- }
- return newEventList;
- }
- #undef MIDIEVENT
- /* Read a midi track into the linked list, either merging with any previous
- tracks or appending to them. */
- static int read_track(int append)
- {
- MidiEventList *meep;
- MidiEventList *next, *newEventList;
- int32_t len;
- char tmp[4];
- meep=evlist;
- if (append && meep)
- {
- /* find the last event in the list */
- for (; meep->next; meep=(MidiEventList *)meep->next)
- ;
- at=meep->event.time;
- }
- else
- at=0;
- /* Check the formalities */
- if ((read_local(tmp,1,4) != 4) || (read_local(&len,4,1) != 1))
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Can't read track header.", current_filename);
- return -1;
- }
- len=BE_LONG(len);
- if (memcmp(tmp, "MTrk", 4))
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Corrupt MIDI file.", current_filename);
- return -2;
- }
- for (;;)
- {
- if (!(newEventList=read_midi_event())) /* Some kind of error */
- return -2;
- if (newEventList==MAGIC_EOT) /* End-of-track Hack. */
- {
- return 0;
- }
- next=(MidiEventList *)meep->next;
- while (next && (next->event.time < newEventList->event.time))
- {
- meep=next;
- next=(MidiEventList *)meep->next;
- }
- newEventList->next=next;
- meep->next=newEventList;
- event_count++; /* Count the event. (About one?) */
- meep=newEventList;
- }
- }
- /* Free the linked event list from memory. */
- static void free_midi_list(void)
- {
- MidiEventList *meep, *next;
- if (!(meep=evlist)) return;
- while (meep)
- {
- next=(MidiEventList *)meep->next;
- Real_Tim_Free(meep);
- meep=next;
- }
- evlist=0;
- }
- /* Allocate an array of MidiEvents and fill it from the linked list of
- events, marking used instruments for loading. Convert event times to
- samples: handle tempo changes. Strip unnecessary events from the list.
- Free the linked list. */
- static MidiEvent *groom_list( int32_t divisions, int32_t *eventsp, int32_t *samplesp)
- {
- MidiEvent *groomed_list, *lp;
- MidiEventList *meep;
- int32_t i, our_event_count, tempo, skip_local_this_event, new_value;
- int32_t sample_cum, samples_to_do, at, st, dt, counting_time;
- int current_bank[16], current_set[16], current_program[16];
- /* Or should each bank have its own current program? */
- for (i=0; i<16; i++)
- {
- current_bank[i]=0;
- current_set[i]=0;
- current_program[i]=default_program;
- }
- tempo=500000;
- compute_sample_increment(tempo, divisions);
- /* This may allocate a bit more than we need */
- groomed_list=lp=(MidiEvent*)safe_malloc(sizeof(MidiEvent) * (event_count+1));
- meep=evlist;
- our_event_count=0;
- st=at=sample_cum=0;
- counting_time=2; /* We strip any silence before the first NOTE ON. */
- for (i=0; i<event_count; i++)
- {
- skip_local_this_event=0;
- ctl->cmsg(CMSG_INFO, VERB_DEBUG_SILLY,
- "%6d: ch %2d: event %d (%d,%d)",
- meep->event.time, meep->event.channel + 1,
- meep->event.type, meep->event.a, meep->event.b);
- if (meep->event.type==ME_TEMPO)
- {
- tempo=
- meep->event.channel + meep->event.b * 256 + meep->event.a * 65536;
- compute_sample_increment(tempo, divisions);
- skip_local_this_event=1;
- }
- else if ((quietchannels & (1<<meep->event.channel)))
- skip_local_this_event=1;
- else switch (meep->event.type)
- {
- case ME_PROGRAM:
- if (ISDRUMCHANNEL(meep->event.channel))
- {
- if (drumset[meep->event.a]) /* Is this a defined drumset? */
- new_value=meep->event.a;
- else
- {
- ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
- "Drum set %d is undefined", meep->event.a);
- new_value=meep->event.a=0;
- }
- if (current_set[meep->event.channel] != new_value)
- current_set[meep->event.channel]=new_value;
- else
- skip_local_this_event=1;
- }
- else
- {
- new_value=meep->event.a;
- if ((current_program[meep->event.channel] != SPECIAL_PROGRAM)
- && (current_program[meep->event.channel] != new_value))
- current_program[meep->event.channel] = new_value;
- else
- skip_local_this_event=1;
- }
- break;
- case ME_NOTEON:
- if (counting_time)
- counting_time=1;
- if (ISDRUMCHANNEL(meep->event.channel))
- {
- /* Mark this instrument to be loaded */
- if (!(drumset[current_set[meep->event.channel]]
- ->tone[meep->event.a].instrument))
- drumset[current_set[meep->event.channel]]
- ->tone[meep->event.a].instrument=
- MAGIC_LOAD_INSTRUMENT;
- }
- else
- {
- if (current_program[meep->event.channel]==SPECIAL_PROGRAM)
- break;
- /* Mark this instrument to be loaded */
- if (!(tonebank[current_bank[meep->event.channel]]
- ->tone[current_program[meep->event.channel]].instrument))
- tonebank[current_bank[meep->event.channel]]
- ->tone[current_program[meep->event.channel]].instrument=
- MAGIC_LOAD_INSTRUMENT;
- }
- break;
- case ME_TONE_BANK:
- if (ISDRUMCHANNEL(meep->event.channel))
- {
- skip_local_this_event=1;
- break;
- }
- if (tonebank[meep->event.a]) /* Is this a defined tone bank? */
- new_value=meep->event.a;
- else
- {
- ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
- "Tone bank %d is undefined", meep->event.a);
- new_value=meep->event.a=0;
- }
- if (current_bank[meep->event.channel]!=new_value)
- current_bank[meep->event.channel]=new_value;
- else
- skip_local_this_event=1;
- break;
- }
- /* Recompute time in samples*/
- if ((dt=meep->event.time - at) && !counting_time)
- {
- samples_to_do=sample_increment * dt;
- sample_cum += sample_correction * dt;
- if (sample_cum & 0xFFFF0000)
- {
- samples_to_do += ((sample_cum >> 16) & 0xFFFF);
- sample_cum &= 0x0000FFFF;
- }
- st += samples_to_do;
- }
- else if (counting_time==1) counting_time=0;
- if (!skip_local_this_event)
- {
- /* Add the event to the list */
- *lp=meep->event;
- lp->time=st;
- lp++;
- our_event_count++;
- }
- at=meep->event.time;
- meep=(MidiEventList *)meep->next;
- }
- /* Add an End-of-Track event */
- lp->time=st;
- lp->type=ME_EOT;
- our_event_count++;
- free_midi_list();
- *eventsp=our_event_count;
- *samplesp=st;
- return groomed_list;
- }
- MidiEvent *read_midi_file(idFile * mfp, int32_t *count, int32_t *sp)
- {
- int32_t len, divisions;
- int16_t format, tracks, divisions_tmp;
- int i;
- char tmp[4];
- fp = mfp;
- local_buffer = 0;
- local_buffer_length = 0;
- local_buffer_cur = 0;
- event_count=0;
- at=0;
- evlist=0;
- int first = (read_local(tmp,1,4));
- int second = (read_local(&len,4,1));
- if ( first != 4 || second != 1)
- {
- if (0)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: %s", current_filename,
- strerror(errno));
- }
- else
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Not a MIDI file!", current_filename);
- return 0;
- }
- len=BE_LONG(len);
- if (memcmp(tmp, "MThd", 4) || len < 6)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Not a MIDI file!", current_filename);
- return 0;
- }
- read_local(&format, 2, 1);
- read_local(&tracks, 2, 1);
- read_local(&divisions_tmp, 2, 1);
- format=BE_SHORT(format);
- tracks=BE_SHORT(tracks);
- divisions_tmp=BE_SHORT(divisions_tmp);
- if (divisions_tmp<0)
- {
- /* SMPTE time -- totally untested. Got a MIDI file that uses this? */
- divisions=
- (int32_t)(-(divisions_tmp/256)) * (int32_t)(divisions_tmp & 0xFF);
- }
- else divisions=(int32_t)(divisions_tmp);
- if (len > 6)
- {
- ctl->cmsg(CMSG_WARNING, VERB_NORMAL,
- "%s: MIDI file header size %ld bytes",
- current_filename, len);
- skip_local(len-6); /* skip_local the excess */
- }
- if (format<0 || format >2)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Unknown MIDI file format %d", current_filename, format);
- return 0;
- }
- //ctl->cmsg(CMSG_INFO, VERB_VERBOSE,
- // "Format: %d Tracks: %d Divisions: %d", format, tracks, divisions);
- /* Put a do-nothing event first in the list for easier processing */
- evlist=(MidiEventList *)safe_malloc(sizeof(MidiEventList));
- evlist->event.time=0;
- evlist->event.type=ME_NONE;
- evlist->next=0;
- event_count++;
- switch(format)
- {
- case 0:
- if (read_track(0))
- {
- free_midi_list();
- return 0;
- }
- break;
- case 1:
- for (i=0; i<tracks; i++)
- if (read_track(0))
- {
- free_midi_list();
- return 0;
- }
- break;
- case 2: /* We simply play the tracks sequentially */
- for (i=0; i<tracks; i++)
- if (read_track(1))
- {
- free_midi_list();
- return 0;
- }
- break;
- }
- return groom_list(divisions, count, sp);
- }
- MidiEvent *read_midi_buffer(unsigned char* buffer, size_t length, int32_t *count, int32_t *sp)
- {
- int32_t len, divisions;
- int16_t format, tracks, divisions_tmp;
- int i;
- char tmp[4];
- fp = 0;
- local_buffer = buffer;
- local_buffer_length = length;
- local_buffer_cur = 0;
- event_count=0;
- at=0;
- evlist=0;
- if ((read_local(tmp,1,4) != 4) || (read_local(&len,4,1) != 1))
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "Not a MIDI file!");
- return 0;
- }
- len=BE_LONG(len);
- if (memcmp(tmp, "MThd", 4) || len < 6)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: Not a MIDI file!", current_filename);
- return 0;
- }
- read_local(&format, 2, 1);
- read_local(&tracks, 2, 1);
- read_local(&divisions_tmp, 2, 1);
- format=BE_SHORT(format);
- tracks=BE_SHORT(tracks);
- divisions_tmp=BE_SHORT(divisions_tmp);
- if (divisions_tmp<0) {
- /* SMPTE time -- totally untested. Got a MIDI file that uses this? */
- divisions= (int32_t)(-(divisions_tmp/256)) * (int32_t)(divisions_tmp & 0xFF);
- }
- else divisions=(int32_t)(divisions_tmp);
- if (len > 6)
- {
- ctl->cmsg(CMSG_WARNING, VERB_NORMAL,
- "%s: MIDI file header size %ld bytes",
- current_filename, len);
- skip_local(len-6); /* skip_local the excess */
- }
- if (format<0 || format >2)
- {
- ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
- "%s: Unknown MIDI file format %d", current_filename, format);
- return 0;
- }
- //ctl->cmsg(CMSG_INFO, VERB_VERBOSE,
- // "Format: %d Tracks: %d Divisions: %d", format, tracks, divisions);
- /* Put a do-nothing event first in the list for easier processing */
- evlist=(MidiEventList *)safe_malloc(sizeof(MidiEventList));
- evlist->event.time=0;
- evlist->event.type=ME_NONE;
- evlist->next=0;
- event_count++;
- switch(format)
- {
- case 0:
- if (read_track(0))
- {
- free_midi_list();
- return 0;
- }
- break;
- case 1:
- for (i=0; i<tracks; i++)
- if (read_track(0))
- {
- free_midi_list();
- return 0;
- }
- break;
- case 2: /* We simply play the tracks sequentially */
- for (i=0; i<tracks; i++)
- if (read_track(1))
- {
- free_midi_list();
- return 0;
- }
- break;
- }
- return groom_list(divisions, count, sp);
- }
|