-
Notifications
You must be signed in to change notification settings - Fork 7
/
midi.h
163 lines (141 loc) · 5.41 KB
/
midi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* Copyright (c) 2018, The libmidi authors.
* 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.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* 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_INCLUDED_
#define MIDI_H_INCLUDED_
#ifdef __cplusplus
extern "C" {
#endif
/*
* As libmidi is primarily intended for use in embedded environments, users
* will likely need to configure their UART. The MIDI_BAUD_RATE macro is
* provided as a convenience and as a reminder of the correct baud rate.
* This constant is not used by libmidi.
*/
#define MIDI_BAUD_RATE 31250
/*
* Routines return a status code.
*/
typedef signed char status_t;
/*
* This library uses an event-driven paradigm for receiving data: callers
* register callback functions for events they are interested in, and these
* are invoked when events are received.
*
* For the sake of simplicity, we define one type, midi_event_callback_t for
* all callback functions. Please note that some parameters are unused in
* certain contexts: the documentation is clear on what parameters are valid
* for each event type.
*
* The caller is only obligated to register callback functions for those
* events she is interested in; other events will be dispatched to a null
* handler implements within the library.
*/
typedef void (*midi_event_callback_t)(char chan, char data1, char data2);
/*
* Error codes returned by library functions.
*/
enum {
E_MIDI_BAD_EVENT_HANDLER = -1,
E_MIDI_BAD_CHANNEL_STATE = -2
};
/*
* As noted elsewhere, libmidi is event-driven, and handles received data
* via a callback mechanism. The enumeration values of event_type describe
* the different types of events for which callers may register.
*/
typedef enum event_type {
/*
* System real-time messages.
*/
EVT_SYS_REALTIME_TIMING_CLOCK = 0,
EVT_SYS_REALTIME_RESERVED_F9,
EVT_SYS_REALTIME_SEQ_START,
EVT_SYS_REALTIME_SEQ_CONTINUE,
EVT_SYS_REALTIME_SEQ_STOP,
EVT_SYS_REALTIME_RESERVED_FD,
EVT_SYS_REALTIME_ACTIVE_SENSE,
EVT_SYS_REALTIME_RESET,
/*
* Channel messages.
*/
EVT_CHAN_NOTE_OFF,
EVT_CHAN_NOTE_ON,
EVT_CHAN_POLY_AFTERTOUCH,
EVT_CHAN_CONTROL_CHANGE,
EVT_CHAN_PROGRAM_CHANGE,
EVT_CHAN_AFTERTOUCH,
EVT_CHAN_PITCH_BEND,
/*
* Placeholder whose value is equal to the total number of event types
* that we support above.
*/
EVT_MAX
} event_type;
/**
* Initialize the MIDI library. This routine must be called prior to using
* library functions or unpredictable behavior may result.
*
* @return Zero on success; nonzero status otherwise.
*/
status_t midi_init();
/**
* Register an event handler for the specified event. To clear an event
* handler, simply pass a NULL pointer for the callback argument.
*
* Returns 0 if a callback was registered or cleared successfully.
* Returns -1 if the event type was invalid.
*
* @param evt Event to register. See the EVT_xxx enumerations, above.
* @param cb Function to invoke upon receipt of the MIDI event.
* @return Status code indicating (see above for comments.)
*/
status_t midi_register_event_handler(event_type evt, midi_event_callback_t cb);
/**
* Processes a byte arriving via the MIDI input of the device. This function
* *must* be invoked for every byte that arrives so that the internal state
* machine maintained by the library is updated properly. Calling this function
* may result in callback invocations. The library user is cautioned to process
* callbacks as quickly as feasible to avoid missing data and/or events/
*
* On success, the function returns the number of callbacks that resulted from
* the new byte's arrival. In the event that the received byte is invalid, a
* negative code is returned (see the section above that outlines status codes
* for this library.)
*
* @param byte Byte of data received from an input port.
*
* @return Number of callback invocations. Returns negative status on error.
*/
status_t midi_receive_byte(char byte);
#ifdef __cplusplus
}
#endif
#endif /* MIDI_H_INCLUDED_ */