readmidi.cpp
上传用户:mengshanjx
上传日期:2013-09-13
资源大小:10k
文件大小:33k
源码类别:

midi

开发平台:

Visual C++

  1. /*
  2.   $Id: readmidi.c,v 1.6 2005/04/20 22:33:36 pkot Exp $
  3.   G N O K I I
  4.   A Linux/Unix toolset and driver for the mobile phones.
  5.   This file is part of gnokii.
  6.   Gnokii is free software; you can redistribute it and/or modify
  7.   it under the terms of the GNU General Public License as published by
  8.   the Free Software Foundation; either version 2 of the License, or
  9.   (at your option) any later version.
  10.   Gnokii is distributed in the hope that it will be useful,
  11.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.   GNU General Public License for more details.
  14.   You should have received a copy of the GNU General Public License
  15.   along with gnokii; if not, write to the Free Software
  16.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.   Copyright (C) 1999-2000 Hugh Blemings & Pavel Jank ml.
  18.   Copyright (C) 2003      Tomi Ollila, BORBELY Zoltan
  19.   Functions to read and write common file types.
  20. */
  21. /*
  22.  * This file was downloaded from http://www.guru-group.fi/~too/sw/xring/
  23.  * The page states this is a GPL'd program, so I added an explicit GPL
  24.  * header (required by savannah). -- bozo
  25.  */
  26. /* embedding modified midifile.h and midifile.c into this file */
  27. /***** midifile.h ******/
  28. struct MF {
  29. /* definitions for MIDI file parsing code */
  30. int (*Mf_getc) (struct MF *);
  31. void (*Mf_header) (struct MF *, int, int, int);
  32. void (*Mf_trackstart) (struct MF *);
  33. void (*Mf_trackend) (struct MF *);
  34. void (*Mf_noteon) (struct MF *, int, int, int);
  35. void (*Mf_noteoff) (struct MF *, int, int, int);
  36. void (*Mf_pressure) (struct MF *, int, int, int);
  37. void (*Mf_parameter) (struct MF *, int, int, int);
  38. void (*Mf_pitchbend) (struct MF *, int, int, int);
  39. void (*Mf_program) (struct MF *, int, int);
  40. void (*Mf_chanpressure) (struct MF *, int, int);
  41. void (*Mf_sysex) (struct MF *, int, char *);
  42. void (*Mf_metamisc) (struct MF *, int, int, char *);
  43. void (*Mf_seqspecific) (struct MF *, int, int, char *);
  44. void (*Mf_seqnum) (struct MF *, int);
  45. void (*Mf_text) (struct MF *, int, int, char *);
  46. void (*Mf_eot) (struct MF *);
  47. void (*Mf_timesig) (struct MF *, int, int, int, int);
  48. void (*Mf_smpte) (struct MF *, int, int, int, int, int);
  49. void (*Mf_tempo) (struct MF *, long);
  50. void (*Mf_keysig) (struct MF *, int, int);
  51. void (*Mf_arbitrary) (struct MF *, int, char *);
  52. void (*Mf_error) (struct MF *, char *);
  53. /* definitions for MIDI file writing code */
  54. int (*Mf_putc) (struct MF *, int);
  55. long (*Mf_getpos) (struct MF *);
  56. int (*Mf_setpos) (struct MF *, long);
  57. void (*Mf_writetrack) (struct MF *, int);
  58. void (*Mf_writetempotrack) (struct MF *);
  59. /* variables */
  60. int Mf_nomerge; /* 1 => continue'ed system exclusives are */
  61. /* not collapsed. */
  62. long Mf_currtime; /* current time in delta-time units */
  63. /* private stuff */
  64. long Mf_toberead;
  65. long Mf_numbyteswritten;
  66. char *Msgbuff; /* message buffer */
  67. int Msgsize; /* Size of currently allocated Msg */
  68. int Msgindex; /* index of next available location in Msg */
  69. };
  70. float mf_ticks2sec(unsigned long ticks, int division, unsigned int tempo);
  71. unsigned long mf_sec2ticks(float secs, int division, unsigned int tempo);
  72. void mferror(struct MF *mf, char *s);
  73. /*void mfwrite(); */
  74. /* MIDI status commands most significant bit is 1 */
  75. #define note_off          0x80
  76. #define note_on           0x90
  77. #define poly_aftertouch   0xa0
  78. #define control_change     0xb0
  79. #define program_chng      0xc0
  80. #define channel_aftertouch      0xd0
  81. #define pitch_wheel       0xe0
  82. #define system_exclusive       0xf0
  83. #define delay_packet   (1111)
  84. /* 7 bit controllers */
  85. #define damper_pedal            0x40
  86. #define portamento         0x41
  87. #define sostenuto         0x42
  88. #define soft_pedal         0x43
  89. #define general_4               0x44
  90. #define hold_2         0x45
  91. #define general_5         0x50
  92. #define general_6         0x51
  93. #define general_7         0x52
  94. #define general_8         0x53
  95. #define tremolo_depth         0x5c
  96. #define chorus_depth         0x5d
  97. #define detune         0x5e
  98. #define phaser_depth         0x5f
  99. /* parameter values */
  100. #define data_inc         0x60
  101. #define data_dec         0x61
  102. /* parameter selection */
  103. #define non_reg_lsb         0x62
  104. #define non_reg_msb         0x63
  105. #define reg_lsb         0x64
  106. #define reg_msb         0x65
  107. /* Standard MIDI Files meta event definitions */
  108. #define meta_event 0xFF
  109. #define sequence_number  0x00
  110. #define text_event 0x01
  111. #define copyright_notice  0x02
  112. #define sequence_name     0x03
  113. #define instrument_name  0x04
  114. #define lyric          0x05
  115. #define marker 0x06
  116. #define cue_point 0x07
  117. #define channel_prefix 0x20
  118. #define end_of_track 0x2f
  119. #define set_tempo 0x51
  120. #define smpte_offset 0x54
  121. #define time_signature 0x58
  122. #define key_signature 0x59
  123. #define sequencer_specific 0x74
  124. /* Manufacturer's ID number */
  125. #define Seq_Circuits (0x01) /* Sequential Circuits Inc. */
  126. #define Big_Briar    (0x02) /* Big Briar Inc.           */
  127. #define Octave       (0x03) /* Octave/Plateau           */
  128. #define Moog         (0x04) /* Moog Music               */
  129. #define Passport     (0x05) /* Passport Designs         */
  130. #define Lexicon      (0x06) /* Lexicon                  */
  131. #define Tempi        (0x20) /* Bon Tempi                */
  132. #define Siel         (0x21) /* S.I.E.L.                 */
  133. #define Kawai        (0x41)
  134. #define Roland       (0x42)
  135. #define Korg         (0x42)
  136. #define Yamaha       (0x43)
  137. /* miscellaneous definitions */
  138. #define MThd 0x4d546864
  139. #define MTrk 0x4d54726b
  140. #define lowerbyte(x) ((unsigned char)(x & 0xff))
  141. #define upperbyte(x) ((unsigned char)((x & 0xff00)>>8))
  142. /* the midifile interface */
  143. void midifile(struct MF *mf);
  144. /***** midifile.c ******/
  145. /*
  146.  * midifile 1.11
  147.  * 
  148.  * Read and write a MIDI file.  Externally-assigned function pointers are 
  149.  * called upon recognizing things in the file.
  150.  *
  151.  * Original release ?
  152.  * June 1989 - Added writing capability, M. Czeiszperger.
  153.  *
  154.  *          The file format implemented here is called
  155.  *          Standard MIDI Files, and is part of the Musical
  156.  *          instrument Digital Interface specification.
  157.  *          The spec is avaiable from:
  158.  *
  159.  *               International MIDI Association
  160.  *               5316 West 57th Street
  161.  *               Los Angeles, CA 90056
  162.  *
  163.  *          An in-depth description of the spec can also be found
  164.  *          in the article "Introducing Standard MIDI Files", published
  165.  *          in Electronic Musician magazine, April, 1989.
  166.  * 
  167.  */
  168. #include "config.h"
  169. #include "misc.h"
  170. #include "gnokii.h"
  171. #include <stdio.h>
  172. #include <stdlib.h>
  173. #include <string.h>
  174. #define NULLFUNC NULL
  175. static void readheader(struct MF *mf);
  176. static int readtrack(struct MF *mf);
  177. static void chanmessage(struct MF *mf, int status, int c1, int c2);
  178. static void msginit(struct MF *mf);
  179. static void msgadd(struct MF *mf, int c);
  180. static void metaevent(struct MF *mf, int type);
  181. static void sysex(struct MF *mf);
  182. static int msgleng(struct MF *mf);
  183. static void badbyte(struct MF *mf, int c);
  184. static void biggermsg(struct MF *mf);
  185. static void mf_write_track_chunk(struct MF *mf, int which_track);
  186. static void mf_write_header_chunk(struct MF *mf, int format, int ntracks, int division);
  187. static long readvarinum(struct MF *mf);
  188. static long read32bit(struct MF *mf);
  189. static long to32bit(int, int, int, int);
  190. static int read16bit(struct MF *mf);
  191. static int to16bit(int, int);
  192. static char *msg(struct MF *mf);
  193. static void write32bit(struct MF *mf, unsigned long data);
  194. static void write16bit(struct MF *mf, int data);
  195. static int eputc(struct MF *mf, unsigned char c);
  196. static void WriteVarLen(struct MF *mf, unsigned long value);
  197. /* The only non-static function in this file. */
  198. void mfread(struct MF *mf)
  199. {
  200. if (mf->Mf_getc == NULLFUNC)
  201. mferror(mf, "mfread() called without setting Mf_getc");
  202. readheader(mf);
  203. while (readtrack(mf))
  204. ;
  205. }
  206. /* for backward compatibility with the original lib */
  207. void midifile(struct MF *mf)
  208. {
  209. mfread(mf);
  210. }
  211. /* read through the "MThd" or "MTrk" header string */
  212. static int readmt(struct MF *mf, char *s)
  213. {
  214. int n = 0;
  215. char *p = s;
  216. int c;
  217. while (n++ < 4 && (c = mf->Mf_getc(mf)) != EOF) {
  218. if (c != *p++) {
  219. char buff[32];
  220. (void) strcpy(buff, "expecting ");
  221. (void) strcat(buff, s);
  222. mferror(mf, buff);
  223. }
  224. }
  225. return c;
  226. }
  227. /* read a single character and abort on EOF */
  228. static int egetc(struct MF *mf)
  229. {
  230. int c = mf->Mf_getc(mf);
  231. if (c == EOF)
  232. mferror(mf, "premature EOF");
  233. mf->Mf_toberead--;
  234. return c;
  235. }
  236. /* read a header chunk */
  237. static void readheader(struct MF *mf)
  238. {
  239. int format, ntrks, division;
  240. if (readmt(mf, "MThd") == EOF)
  241. return;
  242. mf->Mf_toberead = read32bit(mf);
  243. format = read16bit(mf);
  244. ntrks = read16bit(mf);
  245. division = read16bit(mf);
  246. if (mf->Mf_header)
  247. (*mf->Mf_header) (mf, format, ntrks, division);
  248. /* flush any extra stuff, in case the length of header is not 6 */
  249. while (mf->Mf_toberead > 0)
  250. (void) egetc(mf);
  251. }
  252. static int readtrack(struct MF *mf)
  253. { /* read a track chunk */
  254. /* This array is indexed by the high half of a status byte.  It's */
  255. /* value is either the number of bytes needed (1 or 2) for a channel */
  256. /* message, or 0 (meaning it's not  a channel message). */
  257. static int chantype[] = {
  258. 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 through 0x70 */
  259. 2, 2, 2, 2, 1, 1, 2, 0 /* 0x80 through 0xf0 */
  260. };
  261. long lookfor;
  262. int c, c1, type;
  263. int sysexcontinue = 0; /* 1 if last message was an unfinished sysex */
  264. int running = 0;               /* 1 when running status used */
  265. int status = 0;        /* status value (e.g. 0x90==note-on) */
  266. int needed;
  267. if (readmt(mf, "MTrk") == EOF)
  268. return (0);
  269. mf->Mf_toberead = read32bit(mf);
  270. mf->Mf_currtime = 0;
  271. if (mf->Mf_trackstart)
  272. (*mf->Mf_trackstart) (mf);
  273. while (mf->Mf_toberead > 0) {
  274. mf->Mf_currtime += readvarinum(mf); /* delta time */
  275. c = egetc(mf);
  276. if (sysexcontinue && c != 0xf7)
  277. mferror(mf, "didn't find expected continuation of a sysex");
  278. if ((c & 0x80) == 0)
  279. { /* running status? */
  280. if (status == 0)
  281. mferror(mf, "unexpected running status");
  282. running = 1;
  283. }
  284. else
  285. {
  286. status = c;
  287. running = 0;
  288. }
  289. needed = chantype[(status >> 4) & 0xf];
  290. if (needed) { /* ie. is it a channel message? */
  291. if (running)
  292. c1 = c;
  293. else
  294. c1 = egetc(mf);
  295. chanmessage(mf, status, c1, (needed > 1) ? egetc(mf) : 0);
  296. continue;;
  297. }
  298. switch (c) {
  299. case 0xff: /* meta event */
  300. type = egetc(mf);
  301. lookfor = mf->Mf_toberead - readvarinum(mf);
  302. msginit(mf);
  303. while (mf->Mf_toberead > lookfor)
  304. msgadd(mf, egetc(mf));
  305. metaevent(mf, type);
  306. break;
  307. case 0xf0: /* start of system exclusive */
  308. lookfor = mf->Mf_toberead - readvarinum(mf);
  309. msginit(mf);
  310. msgadd(mf, 0xf0);
  311. while (mf->Mf_toberead > lookfor)
  312. msgadd(mf, c = egetc(mf));
  313. if (c == 0xf7 || mf->Mf_nomerge == 0)
  314. sysex(mf);
  315. else
  316. sysexcontinue = 1; /* merge into next msg */
  317. break;
  318. case 0xf7: /* sysex continuation or arbitrary stuff */
  319. lookfor = mf->Mf_toberead - readvarinum(mf);
  320. if (!sysexcontinue)
  321. msginit(mf);
  322. while (mf->Mf_toberead > lookfor)
  323. msgadd(mf, c = egetc(mf));
  324. if (!sysexcontinue) {
  325. if (mf->Mf_arbitrary)
  326. (*mf->Mf_arbitrary) (mf, msgleng(mf), msg(mf));
  327. } else if (c == 0xf7) {
  328. sysex(mf);
  329. sysexcontinue = 0;
  330. }
  331. break;
  332. default:
  333. badbyte(mf, c);
  334. break;
  335. }
  336. }
  337. if (mf->Mf_trackend)
  338. (*mf->Mf_trackend) (mf);
  339. return (1);
  340. }
  341. static void badbyte(struct MF *mf, int c)
  342. {
  343. char buff[32];
  344. (void) sprintf(buff, "unexpected byte: 0x%02x", c);
  345. mferror(mf, buff);
  346. }
  347. static void metaevent(struct MF *mf, int type)
  348. {
  349. int leng = msgleng(mf);
  350. char *m = msg(mf);
  351. switch (type) {
  352. case 0x00:
  353. if (mf->Mf_seqnum)
  354. (*mf->Mf_seqnum) (mf, to16bit(m[0], m[1]));
  355. break;
  356. case 0x01: /* Text event */
  357. case 0x02: /* Copyright notice */
  358. case 0x03: /* Sequence/Track name */
  359. case 0x04: /* Instrument name */
  360. case 0x05: /* Lyric */
  361. case 0x06: /* Marker */
  362. case 0x07: /* Cue point */
  363. case 0x08:
  364. case 0x09:
  365. case 0x0a:
  366. case 0x0b:
  367. case 0x0c:
  368. case 0x0d:
  369. case 0x0e:
  370. case 0x0f:
  371. /* These are all text events */
  372. if (mf->Mf_text)
  373. (*mf->Mf_text) (mf, type, leng, m);
  374. break;
  375. case 0x2f: /* End of Track */
  376. if (mf->Mf_eot)
  377. (*mf->Mf_eot) (mf);
  378. break;
  379. case 0x51: /* Set tempo */
  380. if (mf->Mf_tempo)
  381. (*mf->Mf_tempo) (mf, to32bit(0, m[0], m[1], m[2]));
  382. break;
  383. case 0x54:
  384. if (mf->Mf_smpte)
  385. (*mf->Mf_smpte) (mf, m[0], m[1], m[2], m[3], m[4]);
  386. break;
  387. case 0x58:
  388. if (mf->Mf_timesig)
  389. (*mf->Mf_timesig) (mf, m[0], m[1], m[2], m[3]);
  390. break;
  391. case 0x59:
  392. if (mf->Mf_keysig)
  393. (*mf->Mf_keysig) (mf, m[0], m[1]);
  394. break;
  395. case 0x7f:
  396. if (mf->Mf_seqspecific)
  397. (*mf->Mf_seqspecific) (mf, type, leng, m);
  398. break;
  399. default:
  400. if (mf->Mf_metamisc)
  401. (*mf->Mf_metamisc) (mf, type, leng, m);
  402. }
  403. }
  404. static void sysex(struct MF *mf)
  405. {
  406. if (mf->Mf_sysex)
  407. (*mf->Mf_sysex) (mf, msgleng(mf), msg(mf));
  408. }
  409. static void chanmessage(struct MF *mf, int status, int c1, int c2)
  410. {
  411. int chan = status & 0xf;
  412. switch (status & 0xf0) {
  413. case 0x80:
  414. if (mf->Mf_noteoff)
  415. (*mf->Mf_noteoff) (mf, chan, c1, c2);
  416. break;
  417. case 0x90:
  418. if (mf->Mf_noteon)
  419. (*mf->Mf_noteon) (mf, chan, c1, c2);
  420. break;
  421. case 0xa0:
  422. if (mf->Mf_pressure)
  423. (*mf->Mf_pressure) (mf, chan, c1, c2);
  424. break;
  425. case 0xb0:
  426. if (mf->Mf_parameter)
  427. (*mf->Mf_parameter) (mf, chan, c1, c2);
  428. break;
  429. case 0xe0:
  430. if (mf->Mf_pitchbend)
  431. (*mf->Mf_pitchbend) (mf, chan, c1, c2);
  432. break;
  433. case 0xc0:
  434. if (mf->Mf_program)
  435. (*mf->Mf_program) (mf, chan, c1);
  436. break;
  437. case 0xd0:
  438. if (mf->Mf_chanpressure)
  439. (*mf->Mf_chanpressure) (mf, chan, c1);
  440. break;
  441. }
  442. }
  443. /* readvarinum - read a varying-length number, and return the */
  444. /* number of characters it took. */
  445. static long readvarinum(struct MF *mf)
  446. {
  447. long value;
  448. int c;
  449. c = egetc(mf);
  450. value = c;
  451. if (c & 0x80) {
  452. value &= 0x7f;
  453. do {
  454. c = egetc(mf);
  455. value = (value << 7) + (c & 0x7f);
  456. } while (c & 0x80);
  457. }
  458. return (value);
  459. }
  460. static long to32bit(int c1, int c2, int c3, int c4)
  461. {
  462. long value = 0L;
  463. value = (c1 & 0xff);
  464. value = (value << 8) + (c2 & 0xff);
  465. value = (value << 8) + (c3 & 0xff);
  466. value = (value << 8) + (c4 & 0xff);
  467. return (value);
  468. }
  469. static int to16bit(int c1, int c2)
  470. {
  471. return ((c1 & 0xff) << 8) + (c2 & 0xff);
  472. }
  473. static long read32bit(struct MF *mf)
  474. {
  475. int c1, c2, c3, c4;
  476. c1 = egetc(mf);
  477. c2 = egetc(mf);
  478. c3 = egetc(mf);
  479. c4 = egetc(mf);
  480. return to32bit(c1, c2, c3, c4);
  481. }
  482. static int read16bit(struct MF *mf)
  483. {
  484. int c1, c2;
  485. c1 = egetc(mf);
  486. c2 = egetc(mf);
  487. return to16bit(c1, c2);
  488. }
  489. /* static */
  490. void mferror(struct MF *mf, char *s)
  491. {
  492. if (mf->Mf_error)
  493. (*mf->Mf_error) (mf, s);
  494. exit(1);
  495. }
  496. /* The code below allows collection of a system exclusive message of */
  497. /* arbitrary length.  The Msgbuff is expanded as necessary.  The only */
  498. /* visible data/routines are msginit(), msgadd(), msg(), msgleng(). */
  499. #define MSGINCREMENT 128
  500. static void msginit(struct MF *mf)
  501. {
  502. mf->Msgindex = 0;
  503. }
  504. static char *msg(struct MF *mf)
  505. {
  506. return (mf->Msgbuff);
  507. }
  508. static int msgleng(struct MF *mf)
  509. {
  510. return (mf->Msgindex);
  511. }
  512. static void msgadd(struct MF *mf, int c)
  513. {
  514. /* If necessary, allocate larger message buffer. */
  515. if (mf->Msgindex >= mf->Msgsize)
  516. biggermsg(mf);
  517. mf->Msgbuff[mf->Msgindex++] = c;
  518. }
  519. static void biggermsg(struct MF *mf)
  520. {
  521. char *newmess;
  522. char *oldmess = mf->Msgbuff;
  523. int oldleng = mf->Msgsize;
  524. mf->Msgsize += MSGINCREMENT;
  525. newmess = (char *) malloc((unsigned) (sizeof(char) * mf->Msgsize));
  526. if (newmess == NULL)
  527. mferror(mf, "malloc error!");
  528. /* copy old message into larger new one */
  529. if (oldmess != NULL) {
  530. register char *p = newmess;
  531. register char *q = oldmess;
  532. register char *endq = &oldmess[oldleng];
  533. for (; q != endq; p++, q++)
  534. *p = *q;
  535. free(oldmess);
  536. }
  537. mf->Msgbuff = newmess;
  538. }
  539. /*
  540.  * mfwrite() - The only fuction you'll need to call to write out
  541.  *             a midi file.
  542.  *
  543.  * format      0 - Single multi-channel track
  544.  *             1 - Multiple simultaneous tracks
  545.  *             2 - One or more sequentially independent
  546.  *                 single track patterns                
  547.  * ntracks     The number of tracks in the file.
  548.  * division    This is kind of tricky, it can represent two
  549.  *             things, depending on whether it is positive or negative
  550.  *             (bit 15 set or not).  If  bit  15  of division  is zero,
  551.  *             bits 14 through 0 represent the number of delta-time
  552.  *             "ticks" which make up a quarter note.  If bit  15 of
  553.  *             division  is  a one, delta-times in a file correspond to
  554.  *             subdivisions of a second similiar to  SMPTE  and  MIDI
  555.  *             time code.  In  this format bits 14 through 8 contain
  556.  *             one of four values - 24, -25, -29, or -30,
  557.  *             corresponding  to  the  four standard  SMPTE and MIDI
  558.  *             time code frame per second formats, where  -29
  559.  *             represents  30  drop  frame.   The  second  byte
  560.  *             consisting  of  bits 7 through 0 corresponds the the
  561.  *             resolution within a frame.  Refer the Standard MIDI
  562.  *             Files 1.0 spec for more details.
  563.  * fp          This should be the open file pointer to the file you
  564.  *             want to write.  It will have be a global in order
  565.  *             to work with Mf_putc.  
  566.  */
  567. void mfwrite(struct MF *mf, int format, int ntracks, int division)
  568. {
  569. int i;
  570. if (mf->Mf_putc == NULLFUNC)
  571. mferror(mf, "mfmf_write() called without setting Mf_putc");
  572. if (mf->Mf_writetrack == NULLFUNC)
  573. mferror(mf, "mfmf_write() called without setting Mf_writetrack");
  574. if (mf->Mf_getpos == NULLFUNC)
  575. mferror(mf, "mfmf_write() called without setting Mf_getpos");
  576. if (mf->Mf_setpos == NULLFUNC)
  577. mferror(mf, "mfmf_write() called without setting Mf_setpos");
  578. /* every MIDI file starts with a header */
  579. mf_write_header_chunk(mf, format, ntracks, division);
  580. /* In format 1 files, the first track is a tempo map */
  581. if (format == 1 && (mf->Mf_writetempotrack)) {
  582. (*mf->Mf_writetempotrack) (mf);
  583. }
  584. /* The rest of the file is a series of tracks */
  585. for (i = 0; i < ntracks; i++)
  586. mf_write_track_chunk(mf, i);
  587. }
  588. static void mf_write_track_chunk(struct MF *mf, int which_track)
  589. {
  590. unsigned long trkhdr, trklength;
  591. long offset, place_marker;
  592. trkhdr = MTrk;
  593. trklength = 0;
  594. /* Remember where the length was written, because we don't
  595.    know how long it will be until we've finished writing */
  596. offset = (*mf->Mf_getpos) (mf);
  597. #ifdef DEBUG
  598. printf("offset = %dn", (int) offset);
  599. #endif
  600. /* Write the track chunk header */
  601. write32bit(mf, trkhdr);
  602. write32bit(mf, trklength);
  603. mf->Mf_numbyteswritten = 0L; /* the header's length doesn't count */
  604. if (mf->Mf_writetrack) {
  605. (*mf->Mf_writetrack) (mf, which_track);
  606. }
  607. /* mf_write End of track meta event */
  608. eputc(mf, 0);
  609. eputc(mf, meta_event);
  610. eputc(mf, end_of_track);
  611. eputc(mf, 0);
  612. /* It's impossible to know how long the track chunk will be beforehand,
  613.    so the position of the track length data is kept so that it can
  614.    be written after the chunk has been generated */
  615. place_marker = (*mf->Mf_getpos) (mf);
  616. /* This method turned out not to be portable because the
  617.    parameter returned from ftell is not guaranteed to be
  618.    in bytes on every machine */
  619. /* track.length = place_marker - offset - (long) sizeof(track); */
  620. #ifdef DEBUG
  621. printf("length = %dn", (int) trklength);
  622. #endif
  623. if (mf->Mf_setpos(mf, offset) < 0)
  624. mferror(mf, "error seeking during final stage of write");
  625. trklength = mf->Mf_numbyteswritten;
  626. /* Re-mf_write the track chunk header with right length */
  627. write32bit(mf, trkhdr);
  628. write32bit(mf, trklength);
  629. mf->Mf_setpos(mf, place_marker);
  630. } /* End gen_track_chunk() */
  631. static void mf_write_header_chunk(struct MF *mf, int format, int ntracks, int division)
  632. {
  633. unsigned long ident, length;
  634. ident = MThd; /* Head chunk identifier                    */
  635. length = 6; /* Chunk length                             */
  636. /* individual bytes of the header must be written separately
  637.    to preserve byte order across cpu types :-( */
  638. write32bit(mf, ident);
  639. write32bit(mf, length);
  640. write16bit(mf, format);
  641. write16bit(mf, ntracks);
  642. write16bit(mf, division);
  643. } /* end gen_header_chunk() */
  644. /*
  645.  * mf_write_midi_event()
  646.  * 
  647.  * Library routine to mf_write a single MIDI track event in the standard MIDI
  648.  * file format. The format is:
  649.  *
  650.  *                    <delta-time><event>
  651.  *
  652.  * In this case, event can be any multi-byte midi message, such as
  653.  * "note on", "note off", etc.      
  654.  *
  655.  * delta_time - the time in ticks since the last event.
  656.  * type - the type of meta event.
  657.  * chan - The midi channel.
  658.  * data - A pointer to a block of chars containing the META EVENT,
  659.  *        data.
  660.  * size - The length of the meta-event data.
  661.  */
  662. int mf_write_midi_event(struct MF *mf, unsigned long delta_time, unsigned int type, unsigned int chan, unsigned char *data, unsigned long size)
  663. {
  664. int i;
  665. unsigned char c;
  666. WriteVarLen(mf, delta_time);
  667. /* all MIDI events start with the type in the first four bits,
  668.    and the channel in the lower four bits */
  669. c = type | chan;
  670. if (chan > 15)
  671. mferror(mf, "error: MIDI channel greater than 16n");
  672. eputc(mf, c);
  673. /* write out the data bytes */
  674. for (i = 0; i < size; i++)
  675. eputc(mf, data[i]);
  676. return (size);
  677. } /* end mf_write MIDI event */
  678. /*
  679.  * mf_write_meta_event()
  680.  *
  681.  * Library routine to mf_write a single meta event in the standard MIDI
  682.  * file format. The format of a meta event is:
  683.  *
  684.  *          <delta-time><FF><type><length><bytes>
  685.  *
  686.  * delta_time - the time in ticks since the last event.
  687.  * type - the type of meta event.
  688.  * data - A pointer to a block of chars containing the META EVENT,
  689.  *        data.
  690.  * size - The length of the meta-event data.
  691.  */
  692. int mf_write_meta_event(struct MF *mf, unsigned long delta_time, unsigned char type, unsigned char *data, unsigned long size)
  693. {
  694. int i;
  695. WriteVarLen(mf, delta_time);
  696. /* This marks the fact we're writing a meta-event */
  697. eputc(mf, meta_event);
  698. /* The type of meta event */
  699. eputc(mf, type);
  700. /* The length of the data bytes to follow */
  701. WriteVarLen(mf, size);
  702. for (i = 0; i < size; i++) {
  703. if (eputc(mf, data[i]) != data[i])
  704. return (-1);
  705. }
  706. return (size);
  707. } /* end mf_write_meta_event */
  708. void mf_write_tempo(struct MF *mf, unsigned long tempo)
  709. {
  710. /* Write tempo */
  711. /* all tempos are written as 120 beats/minute, */
  712. /* expressed in microseconds/quarter note     */
  713. eputc(mf, 0);
  714. eputc(mf, meta_event);
  715. eputc(mf, set_tempo);
  716. eputc(mf, 3);
  717. eputc(mf, (unsigned) (0xff & (tempo >> 16)));
  718. eputc(mf, (unsigned) (0xff & (tempo >> 8)));
  719. eputc(mf, (unsigned) (0xff & tempo));
  720. }
  721. /*
  722.  * Write multi-length bytes to MIDI format files
  723.  */
  724. static void WriteVarLen(struct MF *mf, unsigned long value)
  725. {
  726. unsigned long buffer;
  727. buffer = value & 0x7f;
  728. while ((value >>= 7) > 0) {
  729. buffer <<= 8;
  730. buffer |= 0x80;
  731. buffer += (value & 0x7f);
  732. }
  733. while (1) {
  734. eputc(mf, (unsigned) (buffer & 0xff));
  735. if (buffer & 0x80)
  736. buffer >>= 8;
  737. else
  738. return;
  739. }
  740. } /* end of WriteVarLen */
  741. /*
  742.  * write32bit()
  743.  * write16bit()
  744.  *
  745.  * These routines are used to make sure that the byte order of
  746.  * the various data types remains constant between machines. This
  747.  * helps make sure that the code will be portable from one system
  748.  * to the next.  It is slightly dangerous that it assumes that longs
  749.  * have at least 32 bits and ints have at least 16 bits, but this
  750.  * has been true at least on PCs, UNIX machines, and Macintosh's.
  751.  *
  752.  */
  753. static void write32bit(struct MF *mf, unsigned long data)
  754. {
  755. eputc(mf, (unsigned) ((data >> 24) & 0xff));
  756. eputc(mf, (unsigned) ((data >> 16) & 0xff));
  757. eputc(mf, (unsigned) ((data >> 8) & 0xff));
  758. eputc(mf, (unsigned) (data & 0xff));
  759. }
  760. static void write16bit(struct MF *mf, int data)
  761. {
  762. eputc(mf, (unsigned) ((data & 0xff00) >> 8));
  763. eputc(mf, (unsigned) (data & 0xff));
  764. }
  765. /* write a single character and abort on error */
  766. static int eputc(struct MF *mf, unsigned char c)
  767. {
  768. int return_val;
  769. if ((mf->Mf_putc) == NULLFUNC) {
  770. mferror(mf, "Mf_putc undefined");
  771. return (-1);
  772. }
  773. return_val = (mf->Mf_putc) (mf, c);
  774. if (return_val == EOF)
  775. mferror(mf, "error writing");
  776. mf->Mf_numbyteswritten++;
  777. return (return_val);
  778. }
  779. unsigned long mf_sec2ticks(float secs, int division, unsigned int tempo)
  780. {
  781. return (long) (((secs * 1000.0) / 4.0 * division) / tempo);
  782. }
  783. /* 
  784.  * This routine converts delta times in ticks into seconds. The
  785.  * else statement is needed because the formula is different for tracks
  786.  * based on notes and tracks based on SMPTE times.
  787.  *
  788.  */
  789. float mf_ticks2sec(unsigned long ticks, int division, unsigned int tempo)
  790. {
  791. float smpte_format, smpte_resolution;
  792. if (division > 0)
  793. return ((float)
  794. (((float) (ticks) * (float) (tempo)) /
  795.  ((float) (division) * 1000000.0)));
  796. else {
  797. smpte_format = upperbyte(division);
  798. smpte_resolution = lowerbyte(division);
  799. return (float) ((float) ticks /
  800. (smpte_format * smpte_resolution *
  801.  1000000.0));
  802. }
  803. } /* end of ticks2sec() */
  804. /* code to utilize the interface */
  805. #define TRACE(x, y) do { if (x) printf y; } while (0)
  806. typedef unsigned long ulg;
  807. typedef unsigned char uch;
  808. typedef unsigned int ui;
  809. struct MFX {
  810. struct MF mfi;
  811. int division;
  812. int trackstate;
  813. int prevnoteonpitch; /* -1, nothing, 0 pause, 1-x note. */
  814. ulg prevnoteontime;
  815. gn_ringtone *ringtone;
  816. FILE *istream;
  817. gn_error err;
  818. };
  819. enum { TRK_NONE, TRK_READING, TRK_FINISHED };
  820. static void lm_error(struct MF *mf, char *s);
  821. static int lm_getc(struct MF *mf);
  822. static void lm_header(struct MF *mf, int, int, int);
  823. static void lm_trackstart(struct MF *mf);
  824. static void lm_trackend(struct MF *mf);
  825. static void lm_tempo(struct MF *, long);
  826. static void lm_noteon(struct MF *, int, int, int);
  827. static void lm_noteoff(struct MF *, int, int, int);
  828. static void lm_error(struct MF *mf, char *s)
  829. {
  830. struct MFX *mfx = (struct MFX *) mf;
  831. if (mfx->err == GN_ERR_NONE)
  832. mfx->err = GN_ERR_WRONGDATAFORMAT;
  833. fprintf(stderr, "%sn", s);
  834. }
  835. static int lm_getc(struct MF *mf)
  836. {
  837. struct MFX *mfx = (struct MFX *) mf;
  838. int ch;
  839. if ((ch = fgetc(mfx->istream)) == EOF)
  840. return -1;
  841. return ch;
  842. }
  843. static void lm_header(struct MF *mf, int format, int ntrks, int division)
  844. {
  845. struct MFX *mfx = (struct MFX *) mf;
  846. TRACE(0, ("lm_header(%p, %d, %d, %d)n", mf, format, ntrks, division));
  847. mfx->division = division;
  848. }
  849. /* this is just a quess */
  850. static void lm_tempo(struct MF *mf, long tempo)
  851. {
  852. struct MFX *mfx = (struct MFX *) mf;
  853. TRACE(0, ("lm_tempo(%p, %ld)n", mf, tempo));
  854. if (mfx->trackstate != TRK_FINISHED)
  855. mfx->ringtone->tempo = 60000000 / tempo;
  856. }
  857. static void addnote(struct MFX *mfx, int pitch, int duration, int special)
  858. {
  859. gn_ringtone_note *note;
  860. int scale;
  861. int lengths[] = { 4, 8, 16, 32, 64, 128 };
  862.             /*  c, c#,  d, d#,  e,  f, f#,  g, g#,  a, a#,  h */
  863. int notes[] = { 0,  1,  2,  3,  4,  6,  7,  8,  9, 10, 11, 12 };
  864. /* truncate the ringtone if it's too long */
  865. if (mfx->ringtone->notes_count == GN_RINGTONE_MAX_NOTES-1)
  866. return;
  867. note = mfx->ringtone->notes + mfx->ringtone->notes_count;
  868. mfx->ringtone->notes_count++;
  869. if (pitch == 0) {
  870. /* pause */
  871. note->note = 255;
  872. } else {
  873. pitch--;
  874. scale = pitch / 12;
  875. if (scale < 4)
  876. scale = 0;
  877. else if (scale > 7)
  878. scale = 3;
  879. else
  880. scale -= 4;
  881. note->note = 14 * (pitch / 12 - 4) + notes[pitch % 12];
  882. }
  883. if (duration < sizeof(lengths) / sizeof(lengths[0]))
  884. note->duration = lengths[duration];
  885. else
  886. note->duration = 4;
  887. if (special)
  888. note->duration *= 1.5;
  889. }
  890. /* currently supported */
  891. static /*  N  32  32. 16  16.   8    8.   4    4.   2    2.   1     1.  */
  892. int vals[] = { 15, 38, 54, 78, 109, 156, 218, 312, 437, 625, 875, 1250 };
  893. static void writenote(struct MFX *mfx, int delta)
  894. {
  895. ulg millinotetime = delta * 250 / mfx->division;
  896. int i;
  897. int duration;
  898. int special;
  899. for (i = 0; i < sizeof vals / sizeof vals[0]; i++) {
  900. if (millinotetime < vals[i])
  901. break;
  902. }
  903. if (i == 0)
  904. return;
  905. i--;
  906. duration = i / 2;
  907. special = i & 1;
  908. addnote(mfx, mfx->prevnoteonpitch, duration, special); /* XXX think this */
  909. }
  910. static void lm_trackstart(struct MF *mf)
  911. {
  912. struct MFX *mfx = (struct MFX *) mf;
  913. TRACE(0, ("lm_trackstart(%p)n", mf));
  914. if (mfx->trackstate == TRK_NONE)
  915. mfx->trackstate = TRK_READING;
  916. mfx->prevnoteonpitch = -1;
  917. }
  918. static void lm_trackend(struct MF *mf)
  919. {
  920. struct MFX *mfx = (struct MFX *) mf;
  921. long time = mf->Mf_currtime;
  922. TRACE(0, ("lm_trackend(%p)n", mf));
  923. if (mfx->trackstate == TRK_READING && mfx->ringtone->notes_count > 0)
  924. mfx->trackstate = TRK_FINISHED;
  925. if (mfx->prevnoteonpitch >= 0)
  926. writenote(mfx, time - mfx->prevnoteontime);
  927. mfx->prevnoteonpitch = -1;
  928. }
  929. static void lm_noteon(struct MF *mf, int chan, int pitch, int vol)
  930. {
  931. struct MFX *mfx = (struct MFX *) mf;
  932. long time = mf->Mf_currtime;
  933. TRACE(0, ("lm_noteon(%p, %d, %d, %d)n", mf, chan, pitch, vol));
  934. if (vol == 0) /* kludge? to handle some (format 1? midi files) */
  935. return;
  936. if (mfx->trackstate != TRK_READING)
  937. return;
  938. if (mfx->prevnoteonpitch >= 0)
  939. writenote(mfx, time - mfx->prevnoteontime);
  940. if (vol == 0)
  941. mfx->prevnoteonpitch = 0;
  942. else
  943. mfx->prevnoteonpitch = pitch + 1;
  944. mfx->prevnoteontime = time;
  945. }
  946. static void lm_noteoff(struct MF *mf, int chan, int pitch, int vol)
  947. {
  948. struct MFX *mfx = (struct MFX *) mf;
  949. long time = mf->Mf_currtime;
  950. TRACE(0, ("lm_noteoff(%p, %d, %d, %d)n", mf, chan, pitch, vol));
  951. if (mfx->prevnoteonpitch >= 0) {
  952. writenote(mfx, time - mfx->prevnoteontime);
  953. mfx->prevnoteonpitch = -1;
  954. }
  955. mfx->prevnoteonpitch = 0;
  956. mfx->prevnoteontime = time;
  957. }
  958. static int lm_putc(struct MF *mf, int c)
  959. {
  960. struct MFX *mfx = (struct MFX *) mf;
  961. return fputc(c, mfx->istream);
  962. }
  963. static long lm_getpos(struct MF *mf)
  964. {
  965. struct MFX *mfx = (struct MFX *) mf;
  966. return ftell(mfx->istream);
  967. }
  968. static int lm_setpos(struct MF *mf, long pos)
  969. {
  970. struct MFX *mfx = (struct MFX *) mf;
  971. return fseek(mfx->istream, pos, SEEK_SET);
  972. }
  973. static void lm_writetrack(struct MF *mf, int track)
  974. {
  975. struct MFX *mfx = (struct MFX *) mf;
  976. gn_ringtone_note *note;
  977. int i, delta;
  978. int volume = 100;
  979. char data[2];
  980. int notes[] = {0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 10, 11, 11};
  981. mf_write_tempo(mf, 60000000 / mfx->ringtone->tempo);
  982. for (i = 0; i < mfx->ringtone->notes_count; i++) {
  983. note = mfx->ringtone->notes + i;
  984. delta = note->duration * mfx->division / 32;
  985. if (note->note == 0xff) {
  986. data[0] = 0;
  987. data[1] = 0;
  988. mf_write_midi_event(mf, delta, note_off, 1, data, 2);
  989. } else {
  990. data[0] = 12 * (4 + note->note / 14) + notes[note->note % 14];
  991. data[1] = volume;
  992. mf_write_midi_event(mf, 1, note_on, 1, data, 2);
  993. data[1] = 0;
  994. mf_write_midi_event(mf, delta, note_off, 1, data, 2);
  995. }
  996. }
  997. }
  998. gn_error file_midi_load(FILE * file, gn_ringtone * ringtone)
  999. {
  1000. struct MFX mfxi;
  1001. struct MF *mf;
  1002. ringtone->location = 0;
  1003. strcpy(ringtone->name, "GNOKII");
  1004. ringtone->tempo = 120;
  1005. ringtone->notes_count = 0;
  1006. memset(&mfxi, 0, sizeof(struct MFX));
  1007. mf = &mfxi.mfi;
  1008. mfxi.ringtone = ringtone;
  1009. mfxi.istream = file;
  1010. mfxi.err = GN_ERR_NONE;
  1011. /* set variables to their initial values */
  1012. mfxi.division = 0;
  1013. mfxi.trackstate = TRK_NONE;
  1014. mfxi.prevnoteonpitch = -1;
  1015. mf->Mf_getc = lm_getc;
  1016. mf->Mf_header = lm_header;
  1017. mf->Mf_tempo = lm_tempo;
  1018. mf->Mf_trackstart = lm_trackstart;
  1019. mf->Mf_trackend = lm_trackend;
  1020. mf->Mf_noteon = lm_noteon;
  1021. mf->Mf_noteoff = lm_noteoff;
  1022. mf->Mf_error = lm_error;
  1023. midifile(mf);
  1024. return mfxi.err;
  1025. }
  1026. gn_error file_midi_save(FILE * file, gn_ringtone * ringtone)
  1027. {
  1028. struct MFX mfxi;
  1029. struct MF *mf;
  1030. memset(&mfxi, 0, sizeof(struct MFX));
  1031. mf = &mfxi.mfi;
  1032. mfxi.ringtone = ringtone;
  1033. mfxi.istream = file;
  1034. mfxi.err = GN_ERR_NONE;
  1035. /* set variables to their initial values */
  1036. mfxi.division = 480;
  1037. mf->Mf_putc = lm_putc;
  1038. mf->Mf_getpos = lm_getpos;
  1039. mf->Mf_setpos = lm_setpos;
  1040. mf->Mf_writetrack = lm_writetrack;
  1041. mf->Mf_writetempotrack = NULLFUNC;
  1042. mf->Mf_error = lm_error;
  1043. mfwrite(mf, 0, 1, mfxi.division);
  1044. return mfxi.err;
  1045. }