readmidi.c
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:28k
源码类别:

多媒体编程

开发平台:

DOS

  1. /*
  2.     TiMidity -- Experimental MIDI to WAVE converter
  3.     Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.     This program is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.     GNU General Public License for more details.
  12.     You should have received a copy of the GNU General Public License
  13.     along with this program; if not, write to the Free Software
  14.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <errno.h>
  19. #include <string.h>
  20. #include <SDL_rwops.h>
  21. #include "config.h"
  22. #include "common.h"
  23. #include "instrum.h"
  24. #include "playmidi.h"
  25. #include "readmidi.h"
  26. #include "output.h"
  27. #include "ctrlmode.h"
  28. int32 quietchannels=0;
  29. static int midi_port_number;
  30. char midi_name[FILENAME_MAX+1];
  31. static int track_info, curr_track, curr_title_track;
  32. static char title[128];
  33. #if MAXCHAN <= 16
  34. #define MERGE_CHANNEL_PORT(ch) ((int)(ch))
  35. #else
  36. #define MERGE_CHANNEL_PORT(ch) ((int)(ch) | (midi_port_number << 4))
  37. #endif
  38. /* to avoid some unnecessary parameter passing */
  39. static MidiEventList *evlist;
  40. static int32 event_count;
  41. static SDL_RWops *rw;
  42. static int32 at;
  43. /* These would both fit into 32 bits, but they are often added in
  44.    large multiples, so it's simpler to have two roomy ints */
  45. static int32 sample_increment, sample_correction; /*samples per MIDI delta-t*/
  46. /* Computes how many (fractional) samples one MIDI delta-time unit contains */
  47. static void compute_sample_increment(int32 tempo, int32 divisions)
  48. {
  49.   double a;
  50.   a = (double) (tempo) * (double) (play_mode->rate) * (65536.0/1000000.0) /
  51.     (double)(divisions);
  52.   sample_correction = (int32)(a) & 0xFFFF;
  53.   sample_increment = (int32)(a) >> 16;
  54.   ctl->cmsg(CMSG_INFO, VERB_DEBUG, "Samples per delta-t: %d (correction %d)",
  55.        sample_increment, sample_correction);
  56. }
  57. /* Read variable-length number (7 bits per byte, MSB first) */
  58. static int32 getvl(void)
  59. {
  60.   int32 l=0;
  61.   uint8 c;
  62.   for (;;)
  63.     {
  64.       SDL_RWread(rw,&c,1,1);
  65.       l += (c & 0x7f);
  66.       if (!(c & 0x80)) return l;
  67.       l<<=7;
  68.     }
  69. }
  70. static int sysex(uint32 len, uint8 *syschan, uint8 *sysa, uint8 *sysb, SDL_RWops *rw)
  71. {
  72.   unsigned char *s=(unsigned char *)safe_malloc(len);
  73.   int id, model, ch, port, adhi, adlo, cd, dta, dtb, dtc;
  74.   if (len != (uint32)SDL_RWread(rw, s, 1, len))
  75.     {
  76.       free(s);
  77.       return 0;
  78.     }
  79.   if (len<5) { free(s); return 0; }
  80.   if (curr_track == curr_title_track && track_info > 1) title[0] = '';
  81.   id=s[0]; port=s[1]; model=s[2]; adhi=s[3]; adlo=s[4];
  82.   if (id==0x7e && port==0x7f && model==0x09 && adhi==0x01)
  83.     {
  84.       ctl->cmsg(CMSG_TEXT, VERB_VERBOSE, "GM System On", len);
  85.       GM_System_On=1;
  86.       free(s);
  87.       return 0;
  88.     }
  89.   ch = adlo & 0x0f;
  90.   *syschan=(uint8)ch;
  91.   if (id==0x7f && len==7 && port==0x7f && model==0x04 && adhi==0x01)
  92.     {
  93.       ctl->cmsg(CMSG_TEXT, VERB_DEBUG, "Master Volume %d", s[4]+(s[5]<<7));
  94.       free(s);
  95.       *sysa = s[4];
  96.       *sysb = s[5];
  97.       return ME_MASTERVOLUME;
  98.       /** return s[4]+(s[5]<<7); **/
  99.     }
  100.   if (len<8) { free(s); return 0; }
  101.   port &=0x0f;
  102.   ch = (adlo & 0x0f) | ((port & 0x03) << 4);
  103.   *syschan=(uint8)ch;
  104.   cd=s[5]; dta=s[6];
  105.   if (len >= 8) dtb=s[7];
  106.   else dtb=-1;
  107.   if (len >= 9) dtc=s[8];
  108.   else dtc=-1;
  109.   free(s);
  110.   if (id==0x43 && model==0x4c)
  111.     {
  112. if (!adhi && !adlo && cd==0x7e && !dta)
  113.   {
  114.            ctl->cmsg(CMSG_TEXT, VERB_VERBOSE, "XG System On", len);
  115.     XG_System_On=1;
  116.     #ifdef tplus
  117.     vol_table = xg_vol_table;
  118.     #endif
  119.   }
  120. else if (adhi == 2 && adlo == 1)
  121.  {
  122.     if (dtb==8) dtb=3;
  123.     switch (cd)
  124.       {
  125. case 0x00:
  126.   XG_System_reverb_type=(dta<<3)+dtb;
  127.   break;
  128. case 0x20:
  129.   XG_System_chorus_type=((dta-64)<<3)+dtb;
  130.   break;
  131. case 0x40:
  132.   XG_System_variation_type=dta;
  133.   break;
  134. case 0x5a:
  135.   /* dta==0 Insertion; dta==1 System */
  136.   break;
  137. default: break;
  138.       }
  139.  }
  140. else if (adhi == 8 && cd <= 40)
  141.  {
  142.     *sysa = dta & 0x7f;
  143.     switch (cd)
  144.       {
  145. case 0x01: /* bank select MSB */
  146.   return ME_TONE_KIT;
  147.   break;
  148. case 0x02: /* bank select LSB */
  149.   return ME_TONE_BANK;
  150.   break;
  151. case 0x03: /* program number */
  152.        /** MIDIEVENT(d->at, ME_PROGRAM, lastchan, a, 0); **/
  153.   return ME_PROGRAM;
  154.   break;
  155. case 0x08: /*  */
  156.   /* d->channel[adlo&0x0f].transpose = (char)(dta-64); */
  157.   channel[ch].transpose = (char)(dta-64);
  158.               ctl->cmsg(CMSG_TEXT, VERB_DEBUG, "transpose channel %d by %d",
  159. (adlo&0x0f)+1, dta-64);
  160.   break;
  161. case 0x0b: /* volume */
  162.   return ME_MAINVOLUME;
  163.   break;
  164. case 0x0e: /* pan */
  165.   return ME_PAN;
  166.   break;
  167. case 0x12: /* chorus send */
  168.   return ME_CHORUSDEPTH;
  169.   break;
  170. case 0x13: /* reverb send */
  171.   return ME_REVERBERATION;
  172.   break;
  173. case 0x14: /* variation send */
  174.   break;
  175. case 0x18: /* filter cutoff */
  176.   return ME_BRIGHTNESS;
  177.   break;
  178. case 0x19: /* filter resonance */
  179.   return ME_HARMONICCONTENT;
  180.   break;
  181. default: break;
  182.       }
  183.   }
  184.       return 0;
  185.     }
  186.   else if (id==0x41 && model==0x42 && adhi==0x12 && adlo==0x40)
  187.     {
  188. if (dtc<0) return 0;
  189. if (!cd && dta==0x7f && !dtb && dtc==0x41)
  190.   {
  191.            ctl->cmsg(CMSG_TEXT, VERB_VERBOSE, "GS System On", len);
  192.     GS_System_On=1;
  193.     #ifdef tplus
  194.     vol_table = gs_vol_table;
  195.     #endif
  196.   }
  197. else if (dta==0x15 && (cd&0xf0)==0x10)
  198.   {
  199.     int chan=cd&0x0f;
  200.     if (!chan) chan=9;
  201.     else if (chan<10) chan--;
  202.     chan = MERGE_CHANNEL_PORT(chan);
  203.     channel[chan].kit=dtb;
  204.   }
  205. else if (cd==0x01) switch(dta)
  206.   {
  207.     case 0x30:
  208. switch(dtb)
  209.   {
  210.     case 0: XG_System_reverb_type=16+0; break;
  211.     case 1: XG_System_reverb_type=16+1; break;
  212.     case 2: XG_System_reverb_type=16+2; break;
  213.     case 3: XG_System_reverb_type= 8+0; break;
  214.     case 4: XG_System_reverb_type= 8+1; break;
  215.     case 5: XG_System_reverb_type=32+0; break;
  216.     case 6: XG_System_reverb_type=8*17; break;
  217.     case 7: XG_System_reverb_type=8*18; break;
  218.   }
  219. break;
  220.     case 0x38:
  221. switch(dtb)
  222.   {
  223.     case 0: XG_System_chorus_type= 8+0; break;
  224.     case 1: XG_System_chorus_type= 8+1; break;
  225.     case 2: XG_System_chorus_type= 8+2; break;
  226.     case 3: XG_System_chorus_type= 8+4; break;
  227.     case 4: XG_System_chorus_type=  -1; break;
  228.     case 5: XG_System_chorus_type= 8*3; break;
  229.     case 6: XG_System_chorus_type=  -1; break;
  230.     case 7: XG_System_chorus_type=  -1; break;
  231.   }
  232. break;
  233.   }
  234.       return 0;
  235.     }
  236.   return 0;
  237. }
  238. /* Print a string from the file, followed by a newline. Any non-ASCII
  239.    or unprintable characters will be converted to periods. */
  240. static int dumpstring(int32 len, const char *label)
  241. {
  242.   signed char *s=safe_malloc(len+1);
  243.   if (len != (int32)SDL_RWread(rw, s, 1, len))
  244.     {
  245.       free(s);
  246.       return -1;
  247.     }
  248.   s[len]='';
  249.   while (len--)
  250.     {
  251.       if (s[len]<32)
  252. s[len]='.';
  253.     }
  254.   ctl->cmsg(CMSG_TEXT, VERB_VERBOSE, "%s%s", label, s);
  255.   free(s);
  256.   return 0;
  257. }
  258. #define MIDIEVENT(at,t,ch,pa,pb) 
  259.   new=safe_malloc(sizeof(MidiEventList)); 
  260.   new->event.time=at; new->event.type=t; new->event.channel=ch; 
  261.   new->event.a=pa; new->event.b=pb; new->next=0;
  262.   return new;
  263. #define MAGIC_EOT ((MidiEventList *)(-1))
  264. /* Read a MIDI event, returning a freshly allocated element that can
  265.    be linked to the event list */
  266. static MidiEventList *read_midi_event(void)
  267. {
  268.   static uint8 laststatus, lastchan;
  269.   static uint8 nrpn=0, rpn_msb[16], rpn_lsb[16]; /* one per channel */
  270.   uint8 me, type, a,b,c;
  271.   int32 len;
  272.   MidiEventList *new;
  273.   for (;;)
  274.     {
  275.       at+=getvl();
  276.       if (SDL_RWread(rw,&me,1,1)!=1)
  277. {
  278.   ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: read_midi_event: %s", 
  279.        current_filename, strerror(errno));
  280.   return 0;
  281. }
  282.       
  283.       if(me==0xF0 || me == 0xF7) /* SysEx event */
  284. {
  285.   int32 sret;
  286.   uint8 sysa=0, sysb=0, syschan=0;
  287.   len=getvl();
  288.   sret=sysex(len, &syschan, &sysa, &sysb, rw);
  289.   if (sret)
  290.    {
  291.      MIDIEVENT(at, sret, syschan, sysa, sysb);
  292.    }
  293. }
  294.       else if(me==0xFF) /* Meta event */
  295. {
  296.   SDL_RWread(rw,&type,1,1);
  297.   len=getvl();
  298.   if (type>0 && type<16)
  299.     {
  300.       static char *label[]={
  301. "Text event: ", "Text: ", "Copyright: ", "Track name: ",
  302. "Instrument: ", "Lyric: ", "Marker: ", "Cue point: "};
  303.       dumpstring(len, label[(type>7) ? 0 : type]);
  304.     }
  305.   else
  306.     switch(type)
  307.       {
  308.       case 0x21: /* MIDI port number */
  309. if(len == 1)
  310. {
  311.        SDL_RWread(rw,&midi_port_number,1,1);
  312.     if(midi_port_number == EOF)
  313.     {
  314.     ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
  315.       "Warning: "%s": Short midi file.",
  316.       midi_name);
  317.     return 0;
  318.     }
  319.     midi_port_number &= 0x0f;
  320.     if (midi_port_number)
  321. ctl->cmsg(CMSG_INFO, VERB_VERBOSE,
  322.   "(MIDI port number %d)", midi_port_number);
  323.     midi_port_number &= 0x03;
  324. }
  325. else SDL_RWseek(rw, len, RW_SEEK_CUR);
  326. break;
  327.       case 0x2F: /* End of Track */
  328. return MAGIC_EOT;
  329.       case 0x51: /* Tempo */
  330. SDL_RWread(rw,&a,1,1); SDL_RWread(rw,&b,1,1); SDL_RWread(rw,&c,1,1);
  331. MIDIEVENT(at, ME_TEMPO, c, a, b);
  332.       default:
  333. ctl->cmsg(CMSG_INFO, VERB_DEBUG, 
  334.      "(Meta event type 0x%02x, length %ld)", type, len);
  335. SDL_RWseek(rw, len, RW_SEEK_CUR);
  336. break;
  337.       }
  338. }
  339.       else
  340. {
  341.   a=me;
  342.   if (a & 0x80) /* status byte */
  343.     {
  344.       lastchan=a & 0x0F;
  345.       laststatus=(a>>4) & 0x07;
  346.       SDL_RWread(rw,&a, 1,1);
  347.       a &= 0x7F;
  348.     }
  349.   switch(laststatus)
  350.     {
  351.     case 0: /* Note off */
  352.       SDL_RWread(rw,&b, 1,1);
  353.       b &= 0x7F;
  354.       MIDIEVENT(at, ME_NOTEOFF, lastchan, a,b);
  355.     case 1: /* Note on */
  356.       SDL_RWread(rw,&b, 1,1);
  357.       b &= 0x7F;
  358.       if (curr_track == curr_title_track && track_info > 1) title[0] = '';
  359.       MIDIEVENT(at, ME_NOTEON, lastchan, a,b);
  360.     case 2: /* Key Pressure */
  361.       SDL_RWread(rw,&b, 1,1);
  362.       b &= 0x7F;
  363.       MIDIEVENT(at, ME_KEYPRESSURE, lastchan, a, b);
  364.     case 3: /* Control change */
  365.       SDL_RWread(rw,&b, 1,1);
  366.       b &= 0x7F;
  367.       {
  368. int control=255;
  369. switch(a)
  370.   {
  371.   case 7: control=ME_MAINVOLUME; break;
  372.   case 10: control=ME_PAN; break;
  373.   case 11: control=ME_EXPRESSION; break;
  374.   case 64: control=ME_SUSTAIN; break;
  375.   case 71: control=ME_HARMONICCONTENT; break;
  376.   case 72: control=ME_RELEASETIME; break;
  377.   case 73: control=ME_ATTACKTIME; break;
  378.   case 74: control=ME_BRIGHTNESS; break;
  379.   case 91: control=ME_REVERBERATION; break;
  380.   case 93: control=ME_CHORUSDEPTH; break;
  381.   case 120: control=ME_ALL_SOUNDS_OFF; break;
  382.   case 121: control=ME_RESET_CONTROLLERS; break;
  383.   case 123: control=ME_ALL_NOTES_OFF; break;
  384.     /* These should be the SCC-1 tone bank switch
  385.        commands. I don't know why there are two, or
  386.        why the latter only allows switching to bank 0.
  387.        Also, some MIDI files use 0 as some sort of
  388.        continuous controller. This will cause lots of
  389.        warnings about undefined tone banks. */
  390.   case 0: if (XG_System_On) control = ME_TONE_KIT; else control=ME_TONE_BANK; break;
  391.   case 32: if (XG_System_On) control = ME_TONE_BANK; break;
  392.   case 100: nrpn=0; rpn_msb[lastchan]=b; break;
  393.   case 101: nrpn=0; rpn_lsb[lastchan]=b; break;
  394.   case 99: nrpn=1; rpn_msb[lastchan]=b; break;
  395.   case 98: nrpn=1; rpn_lsb[lastchan]=b; break;
  396.     
  397.   case 6:
  398.     if (nrpn)
  399.       {
  400. if (rpn_msb[lastchan]==1) switch (rpn_lsb[lastchan])
  401.  {
  402. #ifdef tplus
  403.    case 0x08: control=ME_VIBRATO_RATE; break;
  404.    case 0x09: control=ME_VIBRATO_DEPTH; break;
  405.    case 0x0a: control=ME_VIBRATO_DELAY; break;
  406. #endif
  407.    case 0x20: control=ME_BRIGHTNESS; break;
  408.    case 0x21: control=ME_HARMONICCONTENT; break;
  409. /*
  410.    case 0x63: envelope attack rate
  411.    case 0x64: envelope decay rate
  412.    case 0x66: envelope release rate
  413. */
  414.  }
  415. else switch (rpn_msb[lastchan])
  416.  {
  417. /*
  418.    case 0x14: filter cutoff frequency
  419.    case 0x15: filter resonance
  420.    case 0x16: envelope attack rate
  421.    case 0x17: envelope decay rate
  422.    case 0x18: pitch coarse
  423.    case 0x19: pitch fine
  424. */
  425.    case 0x1a: drumvolume[lastchan][0x7f & rpn_lsb[lastchan]] = b; break;
  426.    case 0x1c:
  427.      if (!b) b=(int) (127.0*rand()/(RAND_MAX));
  428.      drumpanpot[lastchan][0x7f & rpn_lsb[lastchan]] = b;
  429.      break;
  430.    case 0x1d: drumreverberation[lastchan][0x7f & rpn_lsb[lastchan]] = b; break;
  431.    case 0x1e: drumchorusdepth[lastchan][0x7f & rpn_lsb[lastchan]] = b; break;
  432. /*
  433.    case 0x1f: variation send level
  434. */
  435.  }
  436. ctl->cmsg(CMSG_INFO, VERB_DEBUG, 
  437.   "(Data entry (MSB) for NRPN %02x,%02x: %ld)",
  438.   rpn_msb[lastchan], rpn_lsb[lastchan],
  439.   b);
  440. break;
  441.       }
  442.     
  443.     switch((rpn_msb[lastchan]<<8) | rpn_lsb[lastchan])
  444.       {
  445.       case 0x0000: /* Pitch bend sensitivity */
  446. control=ME_PITCH_SENS;
  447. break;
  448.       case 0x7F7F: /* RPN reset */
  449. /* reset pitch bend sensitivity to 2 */
  450. MIDIEVENT(at, ME_PITCH_SENS, lastchan, 2, 0);
  451.       default:
  452. ctl->cmsg(CMSG_INFO, VERB_DEBUG, 
  453.   "(Data entry (MSB) for RPN %02x,%02x: %ld)",
  454.   rpn_msb[lastchan], rpn_lsb[lastchan],
  455.   b);
  456. break;
  457.       }
  458.     break;
  459.     
  460.   default:
  461.     ctl->cmsg(CMSG_INFO, VERB_DEBUG, 
  462.       "(Control %d: %d)", a, b);
  463.     break;
  464.   }
  465. if (control != 255)
  466.   { 
  467.     MIDIEVENT(at, control, lastchan, b, 0); 
  468.   }
  469.       }
  470.       break;
  471.     case 4: /* Program change */
  472.       a &= 0x7f;
  473.       MIDIEVENT(at, ME_PROGRAM, lastchan, a, 0);
  474.     case 5: /* Channel pressure - NOT IMPLEMENTED */
  475.       break;
  476.     case 6: /* Pitch wheel */
  477.       SDL_RWread(rw,&b, 1,1);
  478.       b &= 0x7F;
  479.       MIDIEVENT(at, ME_PITCHWHEEL, lastchan, a, b);
  480.     default: 
  481.       ctl->cmsg(CMSG_ERROR, VERB_NORMAL, 
  482.    "*** Can't happen: status 0x%02X, channel 0x%02X",
  483.    laststatus, lastchan);
  484.       break;
  485.     }
  486. }
  487.     }
  488.   
  489.   return new;
  490. }
  491. #undef MIDIEVENT
  492. /* Read a midi track into the linked list, either merging with any previous
  493.    tracks or appending to them. */
  494. static int read_track(int append)
  495. {
  496.   MidiEventList *meep;
  497.   MidiEventList *next, *new;
  498.   int32 len;
  499.   char tmp[4];
  500.   meep=evlist;
  501.   if (append && meep)
  502.     {
  503.       /* find the last event in the list */
  504.       for (; meep->next; meep=meep->next)
  505. ;
  506.       at=meep->event.time;
  507.     }
  508.   else
  509.     at=0;
  510.   /* Check the formalities */
  511.   if ((SDL_RWread(rw,tmp,1,4) != 4) || (SDL_RWread(rw,&len,4,1) != 1))
  512.     {
  513.       ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
  514.    "%s: Can't read track header.", current_filename);
  515.       return -1;
  516.     }
  517.   len=BE_LONG(len);
  518.   if (memcmp(tmp, "MTrk", 4))
  519.     {
  520.       ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
  521.    "%s: Corrupt MIDI file.", current_filename);
  522.       return -2;
  523.     }
  524.   for (;;)
  525.     {
  526.       if (!(new=read_midi_event())) /* Some kind of error  */
  527. return -2;
  528.       if (new==MAGIC_EOT) /* End-of-track Hack. */
  529. {
  530.   return 0;
  531. }
  532.       next=meep->next;
  533.       while (next && (next->event.time < new->event.time))
  534. {
  535.   meep=next;
  536.   next=meep->next;
  537. }
  538.   
  539.       new->next=next;
  540.       meep->next=new;
  541.       event_count++; /* Count the event. (About one?) */
  542.       meep=new;
  543.     }
  544. }
  545. /* Free the linked event list from memory. */
  546. static void free_midi_list(void)
  547. {
  548.   MidiEventList *meep, *next;
  549.   if (!(meep=evlist)) return;
  550.   while (meep)
  551.     {
  552.       next=meep->next;
  553.       free(meep);
  554.       meep=next;
  555.     }
  556.   evlist=0;
  557. }
  558. static void xremap_percussion(int *banknumpt, int *this_notept, int this_kit) {
  559.         int i, newmap;
  560.         int banknum = *banknumpt;
  561.         int this_note = *this_notept;
  562.         int newbank, newnote;
  563.         if (this_kit != 127 && this_kit != 126) return;
  564.         for (i = 0; i < XMAPMAX; i++) {
  565.                 newmap = xmap[i][0];
  566.                 if (!newmap) return;
  567.                 if (this_kit == 127 && newmap != XGDRUM) continue;
  568.                 if (this_kit == 126 && newmap != SFXDRUM1) continue;
  569.                 if (xmap[i][1] != banknum) continue;
  570.                 if (xmap[i][3] != this_note) continue;
  571.                 newbank = xmap[i][2];
  572.                 newnote = xmap[i][4];
  573.                 if (newbank == banknum && newnote == this_note) return;
  574.                 if (!drumset[newbank]) return;
  575.                 *banknumpt = newbank;
  576.                 *this_notept = newnote;
  577.                 return;
  578.         }
  579. }
  580. /* Allocate an array of MidiEvents and fill it from the linked list of
  581.    events, marking used instruments for loading. Convert event times to
  582.    samples: handle tempo changes. Strip unnecessary events from the list.
  583.    Free the linked list. */
  584. static MidiEvent *groom_list(int32 divisions,int32 *eventsp,int32 *samplesp)
  585. {
  586.   MidiEvent *groomed_list, *lp;
  587.   MidiEventList *meep;
  588.   int32 i, our_event_count, tempo, skip_this_event, new_value;
  589.   int32 sample_cum, samples_to_do, at, st, dt, counting_time;
  590.   int current_bank[MAXCHAN], current_banktype[MAXCHAN], current_set[MAXCHAN],
  591.     current_kit[MAXCHAN], current_program[MAXCHAN];
  592.   /* Or should each bank have its own current program? */
  593.   int dset, dnote, drumsflag, mprog;
  594.   for (i=0; i<MAXCHAN; i++)
  595.     {
  596.       current_bank[i]=0;
  597.       current_banktype[i]=0;
  598.       current_set[i]=0;
  599.       current_kit[i]=channel[i].kit;
  600.       current_program[i]=default_program;
  601.     }
  602.   tempo=500000;
  603.   compute_sample_increment(tempo, divisions);
  604.   /* This may allocate a bit more than we need */
  605.   groomed_list=lp=safe_malloc(sizeof(MidiEvent) * (event_count+1));
  606.   meep=evlist;
  607.   our_event_count=0;
  608.   st=at=sample_cum=0;
  609.   counting_time=2; /* We strip any silence before the first NOTE ON. */
  610.   for (i=0; i<event_count; i++)
  611.     {
  612.       skip_this_event=0;
  613.       ctl->cmsg(CMSG_INFO, VERB_DEBUG_SILLY,
  614. "%6d: ch %2d: event %d (%d,%d)",
  615. meep->event.time, meep->event.channel + 1,
  616. meep->event.type, meep->event.a, meep->event.b);
  617.       if (meep->event.type==ME_TEMPO)
  618. {
  619.   tempo=
  620.     meep->event.channel + meep->event.b * 256 + meep->event.a * 65536;
  621.   compute_sample_increment(tempo, divisions);
  622.   skip_this_event=1;
  623. }
  624.       else if ((quietchannels & (1<<meep->event.channel)))
  625. skip_this_event=1;
  626.       else switch (meep->event.type)
  627. {
  628. case ME_PROGRAM:
  629.   if (current_kit[meep->event.channel])
  630.     {
  631.       if (current_kit[meep->event.channel]==126)
  632. {
  633.   /* note request for 2nd sfx rhythm kit */
  634.   if (meep->event.a && drumset[SFXDRUM2])
  635.   {
  636.  current_kit[meep->event.channel]=125;
  637.  current_set[meep->event.channel]=SFXDRUM2;
  638.          new_value=SFXDRUM2;
  639.   }
  640.   else if (!meep->event.a && drumset[SFXDRUM1])
  641.   {
  642.  current_set[meep->event.channel]=SFXDRUM1;
  643.          new_value=SFXDRUM1;
  644.   }
  645.   else
  646.   {
  647.    ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  648.         "XG SFX drum set is undefined");
  649. skip_this_event=1;
  650.    break;
  651.   }
  652. }
  653.       if (drumset[meep->event.a]) /* Is this a defined drumset? */
  654. new_value=meep->event.a;
  655.       else
  656. {
  657.   ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  658.        "Drum set %d is undefined", meep->event.a);
  659.   if (drumset[0])
  660.       new_value=meep->event.a=0;
  661.   else
  662.     {
  663. skip_this_event=1;
  664. break;
  665.     }
  666. }
  667.       if (current_set[meep->event.channel] != new_value)
  668. current_set[meep->event.channel]=new_value;
  669.       else 
  670. skip_this_event=1;
  671.     }
  672.   else
  673.     {
  674.       new_value=meep->event.a;
  675.       if ((current_program[meep->event.channel] != SPECIAL_PROGRAM)
  676.   && (current_program[meep->event.channel] != new_value))
  677. current_program[meep->event.channel] = new_value;
  678.       else
  679. skip_this_event=1;
  680.     }
  681.   break;
  682. case ME_NOTEON:
  683.   if (counting_time)
  684.     counting_time=1;
  685.   drumsflag = current_kit[meep->event.channel];
  686.   if (drumsflag) /* percussion channel? */
  687.     {
  688.       dset = current_set[meep->event.channel];
  689.       dnote=meep->event.a;
  690.       if (XG_System_On) xremap_percussion(&dset, &dnote, drumsflag);
  691.       /*if (current_config_pc42b) pcmap(&dset, &dnote, &mprog, &drumsflag);*/
  692.      if (drumsflag)
  693.      {
  694.       /* Mark this instrument to be loaded */
  695.       if (!(drumset[dset]->tone[dnote].layer))
  696.        {
  697. drumset[dset]->tone[dnote].layer=
  698.     MAGIC_LOAD_INSTRUMENT;
  699.        }
  700.       else drumset[dset]->tone[dnote].last_used
  701.  = current_tune_number;
  702.       if (!channel[meep->event.channel].name) channel[meep->event.channel].name=
  703.     drumset[dset]->name;
  704.      }
  705.     }
  706.   if (!drumsflag) /* not percussion */
  707.     {
  708.       int chan=meep->event.channel;
  709.       int banknum;
  710.       if (current_banktype[chan]) banknum=SFXBANK;
  711.       else banknum=current_bank[chan];
  712.       mprog = current_program[chan];
  713.       if (mprog==SPECIAL_PROGRAM)
  714. break;
  715.       if (XG_System_On && banknum==SFXBANK && !tonebank[SFXBANK] && tonebank[120]) 
  716.       banknum = 120;
  717.       /*if (current_config_pc42b) pcmap(&banknum, &dnote, &mprog, &drumsflag);*/
  718.      if (drumsflag)
  719.      {
  720.       /* Mark this instrument to be loaded */
  721.       if (!(drumset[dset]->tone[dnote].layer))
  722.        {
  723. drumset[dset]->tone[dnote].layer=MAGIC_LOAD_INSTRUMENT;
  724.        }
  725.       else drumset[dset]->tone[dnote].last_used = current_tune_number;
  726.       if (!channel[meep->event.channel].name) channel[meep->event.channel].name=
  727.     drumset[dset]->name;
  728.      }
  729.      if (!drumsflag)
  730.      {
  731.       /* Mark this instrument to be loaded */
  732.       if (!(tonebank[banknum]->tone[mprog].layer))
  733. {
  734.   tonebank[banknum]->tone[mprog].layer=MAGIC_LOAD_INSTRUMENT;
  735. }
  736.       else tonebank[banknum]->tone[mprog].last_used = current_tune_number;
  737.       if (!channel[meep->event.channel].name) channel[meep->event.channel].name=
  738.     tonebank[banknum]->tone[mprog].name;
  739.      }
  740.     }
  741.   break;
  742. case ME_TONE_KIT:
  743.   if (!meep->event.a || meep->event.a == 127)
  744.     {
  745.       new_value=meep->event.a;
  746.       if (current_kit[meep->event.channel] != new_value)
  747. current_kit[meep->event.channel]=new_value;
  748.       else 
  749. skip_this_event=1;
  750.       break;
  751.     }
  752.   else if (meep->event.a == 126)
  753.     {
  754.       if (drumset[SFXDRUM1]) /* Is this a defined tone bank? */
  755.         new_value=meep->event.a;
  756.       else
  757. {
  758.           ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  759.    "XG rhythm kit %d is undefined", meep->event.a);
  760.           skip_this_event=1;
  761.           break;
  762. }
  763.       current_set[meep->event.channel]=SFXDRUM1;
  764.       current_kit[meep->event.channel]=new_value;
  765.       break;
  766.     }
  767.   else if (meep->event.a != SFX_BANKTYPE)
  768.     {
  769.       ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  770.    "XG kit %d is impossible", meep->event.a);
  771.       skip_this_event=1;
  772.       break;
  773.     }
  774.   if (current_kit[meep->event.channel])
  775.     {
  776.       skip_this_event=1;
  777.       break;
  778.     }
  779.   if (tonebank[SFXBANK] || tonebank[120]) /* Is this a defined tone bank? */
  780.     new_value=SFX_BANKTYPE;
  781.   else 
  782.     {
  783.       ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  784.    "XG Sfx bank is undefined");
  785.       skip_this_event=1;
  786.       break;
  787.     }
  788.   if (current_banktype[meep->event.channel]!=new_value)
  789.     current_banktype[meep->event.channel]=new_value;
  790.   else
  791.     skip_this_event=1;
  792.   break;
  793. case ME_TONE_BANK:
  794.   if (current_kit[meep->event.channel])
  795.     {
  796.       skip_this_event=1;
  797.       break;
  798.     }
  799.   if (XG_System_On && meep->event.a > 0 && meep->event.a < 48) {
  800.       channel[meep->event.channel].variationbank=meep->event.a;
  801.       ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  802.    "XG variation bank %d", meep->event.a);
  803.       new_value=meep->event.a=0;
  804.   }
  805.   else if (tonebank[meep->event.a]) /* Is this a defined tone bank? */
  806.     new_value=meep->event.a;
  807.   else 
  808.     {
  809.       ctl->cmsg(CMSG_WARNING, VERB_VERBOSE,
  810.    "Tone bank %d is undefined", meep->event.a);
  811.       new_value=meep->event.a=0;
  812.     }
  813.   if (current_bank[meep->event.channel]!=new_value)
  814.     current_bank[meep->event.channel]=new_value;
  815.   else
  816.     skip_this_event=1;
  817.   break;
  818. case ME_HARMONICCONTENT:
  819.   channel[meep->event.channel].harmoniccontent=meep->event.a;
  820.   break;
  821. case ME_BRIGHTNESS:
  822.   channel[meep->event.channel].brightness=meep->event.a;
  823.   break;
  824. }
  825.       /* Recompute time in samples*/
  826.       if ((dt=meep->event.time - at) && !counting_time)
  827. {
  828.   samples_to_do=sample_increment * dt;
  829.   sample_cum += sample_correction * dt;
  830.   if (sample_cum & 0xFFFF0000)
  831.     {
  832.       samples_to_do += ((sample_cum >> 16) & 0xFFFF);
  833.       sample_cum &= 0x0000FFFF;
  834.     }
  835.   st += samples_to_do;
  836. }
  837.       else if (counting_time==1) counting_time=0;
  838.       if (!skip_this_event)
  839. {
  840.   /* Add the event to the list */
  841.   *lp=meep->event;
  842.   lp->time=st;
  843.   lp++;
  844.   our_event_count++;
  845. }
  846.       at=meep->event.time;
  847.       meep=meep->next;
  848.     }
  849.   /* Add an End-of-Track event */
  850.   lp->time=st;
  851.   lp->type=ME_EOT;
  852.   our_event_count++;
  853.   free_midi_list();
  854.   
  855.   *eventsp=our_event_count;
  856.   *samplesp=st;
  857.   return groomed_list;
  858. }
  859. MidiEvent *read_midi_file(SDL_RWops *mrw, int32 *count, int32 *sp)
  860. {
  861.   int32 len, divisions;
  862.   int16 format, tracks, divisions_tmp;
  863.   int i;
  864.   char tmp[4];
  865.   rw = mrw;
  866.   event_count=0;
  867.   at=0;
  868.   evlist=0;
  869.   GM_System_On=GS_System_On=XG_System_On=0;
  870.   /* vol_table = def_vol_table; */
  871.   XG_System_reverb_type=XG_System_chorus_type=XG_System_variation_type=0;
  872.   memset(&drumvolume,-1,sizeof(drumvolume));
  873.   memset(&drumchorusdepth,-1,sizeof(drumchorusdepth));
  874.   memset(&drumreverberation,-1,sizeof(drumreverberation));
  875.   memset(&drumpanpot,NO_PANNING,sizeof(drumpanpot));
  876.   for (i=0; i<MAXCHAN; i++)
  877.      {
  878. if (ISDRUMCHANNEL(i)) channel[i].kit = 127;
  879. else channel[i].kit = 0;
  880. channel[i].brightness = 64;
  881. channel[i].harmoniccontent = 64;
  882. channel[i].variationbank = 0;
  883. channel[i].chorusdepth = 0;
  884. channel[i].reverberation = 0;
  885. channel[i].transpose = 0;
  886.      }
  887. past_riff:
  888.   if ((SDL_RWread(rw,tmp,1,4) != 4) || (SDL_RWread(rw,&len,4,1) != 1))
  889.     {
  890.      /* if (ferror(fp))
  891. {
  892.   ctl->cmsg(CMSG_ERROR, VERB_NORMAL, "%s: %s", current_filename, 
  893.        strerror(errno));
  894. }
  895.       else*/
  896. ctl->cmsg(CMSG_ERROR, VERB_NORMAL, 
  897.      "%s: Not a MIDI file!", current_filename);
  898.       return 0;
  899.     }
  900.   len=BE_LONG(len);
  901.   if (!memcmp(tmp, "RIFF", 4))
  902.     {
  903.       SDL_RWread(rw,tmp,1,12);
  904.       goto past_riff;
  905.     }
  906.   if (memcmp(tmp, "MThd", 4) || len < 6)
  907.     {
  908.       ctl->cmsg(CMSG_ERROR, VERB_NORMAL,
  909.    "%s: Not a MIDI file!", current_filename);
  910.       return 0;
  911.     }
  912.   SDL_RWread(rw,&format, 2, 1);
  913.   SDL_RWread(rw,&tracks, 2, 1);
  914.   SDL_RWread(rw,&divisions_tmp, 2, 1);
  915.   format=BE_SHORT(format);
  916.   tracks=BE_SHORT(tracks);
  917.   track_info = tracks;
  918.   curr_track = 0;
  919.   curr_title_track = -1;
  920.   divisions_tmp=BE_SHORT(divisions_tmp);
  921.   if (divisions_tmp<0)
  922.     {
  923.       /* SMPTE time -- totally untested. Got a MIDI file that uses this? */
  924.       divisions=
  925. (int32)(-(divisions_tmp/256)) * (int32)(divisions_tmp & 0xFF);
  926.     }
  927.   else divisions=(int32)(divisions_tmp);
  928.   if (len > 6)
  929.     {
  930.       ctl->cmsg(CMSG_WARNING, VERB_NORMAL, 
  931.    "%s: MIDI file header size %ld bytes", 
  932.    current_filename, len);
  933.       SDL_RWseek(rw, len-6, RW_SEEK_CUR); /* skip the excess */
  934.     }
  935.   if (format<0 || format >2)
  936.     {
  937.       ctl->cmsg(CMSG_ERROR, VERB_NORMAL, 
  938.    "%s: Unknown MIDI file format %d", current_filename, format);
  939.       return 0;
  940.     }
  941.   ctl->cmsg(CMSG_INFO, VERB_VERBOSE, 
  942.        "Format: %d  Tracks: %d  Divisions: %d", format, tracks, divisions);
  943.   /* Put a do-nothing event first in the list for easier processing */
  944.   evlist=safe_malloc(sizeof(MidiEventList));
  945.   evlist->event.time=0;
  946.   evlist->event.type=ME_NONE;
  947.   evlist->next=0;
  948.   event_count++;
  949.   switch(format)
  950.     {
  951.     case 0:
  952.       if (read_track(0))
  953. {
  954.   free_midi_list();
  955.   return 0;
  956. }
  957.       else curr_track++;
  958.       break;
  959.     case 1:
  960.       for (i=0; i<tracks; i++)
  961. if (read_track(0))
  962.   {
  963.     free_midi_list();
  964.     return 0;
  965.   }
  966.       break;
  967.     case 2: /* We simply play the tracks sequentially */
  968.       for (i=0; i<tracks; i++)
  969. if (read_track(1))
  970.   {
  971.     free_midi_list();
  972.     return 0;
  973.   }
  974.          else curr_track++;
  975.       break;
  976.     }
  977.   return groom_list(divisions, count, sp);
  978. }