blob: 2496a29e3d09238073ee8e2d451cc4d68ac735b2 [file] [log] [blame] [raw]
/*
* A simple MIDI parsing library
*
* Copyright (C) 2014-2022 Mateusz Viste
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef midi_h_sentinel
#define midi_h_sentinel
/* Rule used to translate an amount of deltatime units into microseconds
*
* The MIDI file comes with a "divisor", it is a single 16-bit value in the
* MIDI header, it defines the number of delta-time units in a beat (quarter
* note). In other words: it is the "beat length" in delta-time units.
*
* Then, there is the tempo value. This is not fixed, can change many times
* during a song. If not explicitely defined, its defaults to 500'000.
* Tempo is the "beat length" in micro seconds.
*
* Keep in mind that a beat (also called a quarter note) isn't the shortest
* possible unit of time. The shortest unit is... one delta time unit.
*
* ...and for what's it's worth, a beat is divided into 24 MIDI clocks. Yes,
* the whole thing is insane indeed.
*
* The simple rule is (delta * tempo / unitdiv) but due to integer overflow
* on multiplication with large tempo values, some hacks must be applied.
*
* An interesting discussion on the subject can be found here:
* https://groups.google.com/g/comp.lang.c/c/1Nlc1zRXJqY
*
* This solution has been provided by Tim Rentsch:
* #define DELTATIME2US(delta, tempo, unitdiv) ((delta * (tempo / unitdiv)) + (delta * (tempo % unitdiv)) / unitdiv)
*
* but ultimately my benchmarks did not show any performance gain of this over
* using a wider computation width (64-bit, through long long), hence I use
* the latter as it is simpler.
*/
#define DELTATIME2US(delta, tempo, unitdiv) (((unsigned long long)delta * tempo) / unitdiv)
#ifdef DBGFILE
/* only needed with DBGFILE so midi_track2events() can use FILE for its log */
#include <stdio.h>
#endif
#define MIDI_OUTOFMEM -10
#define MIDI_EMPTYTRACK -1
#define MIDI_TRACKERROR -2
enum midi_midievents {
EVENT_NOTEOFF = 0,
EVENT_NOTEON = 1,
EVENT_TEMPO = 2,
EVENT_RAW = 3,
EVENT_PROGCHAN = 4,
EVENT_PITCH = 5,
EVENT_CONTROL = 6,
EVENT_KEYPRESSURE = 7,
EVENT_CHANPRESSURE = 8,
EVENT_SYSEX = 9,
EVENT_NONE = 100
};
struct midi_event_note_t {
unsigned char note;
unsigned char chan;
unsigned char velocity;
};
struct midi_event_prog_t {
unsigned char prog;
unsigned char chan;
};
struct midi_event_pitch_t {
unsigned short wheel;
unsigned char chan;
};
struct midi_event_control_t {
unsigned char id;
unsigned char chan;
unsigned char val;
};
struct midi_event_chanpressure_t {
unsigned char chan;
unsigned char pressure;
};
struct midi_event_keypressure_t {
unsigned char chan;
unsigned char note;
unsigned char pressure;
};
struct midi_event_sysex_t {
long sysexptr;
};
struct midi_event_t {
long next;
unsigned long deltatime;
union {
struct midi_event_note_t note;
struct midi_event_prog_t prog;
struct midi_event_pitch_t pitch;
struct midi_event_control_t control;
struct midi_event_chanpressure_t chanpressure;
struct midi_event_keypressure_t keypressure;
struct midi_event_sysex_t sysex;
unsigned long tempoval;
} data;
enum midi_midievents type;
};
/* returns number of tracks in midi file on success, neg val otherwise */
int midi_readhdr(struct fiofile_t *f, int *format, unsigned short *timeunitdiv, unsigned long *tracklist, int maxtracks);
/* parse a track object and returns the id of the first events in the linked list */
long midi_track2events(struct fiofile_t *f, char *title, int titlemaxlen,
char *copyright, int copyrightmaxlen, char *text,
int textmaxlen, unsigned short *channelsusage,
#ifdef DBGFILE
FILE *logfd,
#endif
unsigned long *tracklen, void *reqpatches);
/* merge two MIDI tracks into a single (serialized) one. returns a "pointer"
* to the unique track. I take care not to allocate/free memory here.
* All notes are already in RAM after all. totlen is filled with the total
* time of the merged tracks (in miliseconds). */
long midi_mergetrack(long t0, long t1, unsigned long *totlen, unsigned short timeunitdiv);
#endif