source: roaraudio/roard/include/midi.h @ 2486:f4ec482727d6

Last change on this file since 2486:f4ec482727d6 was 2461:82d60b12442a, checked in by phi, 15 years ago

added stub midi_conv_mes2ssynth()

File size: 3.8 KB
RevLine 
[169]1//midi.h:
2
[668]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[169]25#ifndef _MIDI_H_
26#define _MIDI_H_
27
28#include <roaraudio.h>
29
[188]30#ifdef __linux__
31#include <sys/ioctl.h>
32#include <linux/kd.h>
33#endif
34
[189]35#define MIDI_CB_NOOVERRIDE 0
36#define MIDI_CB_OVERRIDE   1
37
[1848]38#define MIDI_RATE    31250
39
[1852]40// standard MIDI commands:
[2408]41#define MIDI_TYPE_NOTE_OFF      0x80
42#define MIDI_TYPE_NOTE_ON       0x90
[1852]43#define MIDI_TYPE_PA            0xA0
44#define MIDI_TYPE_CONTROLER     0xB0
45#define MIDI_TYPE_PROGRAM       0xC0
[1864]46#define MIDI_TYPE_MA            0xD0
[1852]47#define MIDI_TYPE_PB            0xE0
48#define MIDI_TYPE_SYSEX         0xF0
49#define MIDI_TYPE_CLOCK_TICK    0xF8
50#define MIDI_TYPE_CLOCK_START   0xFA
51#define MIDI_TYPE_CLOCK_STOP    0xFC
52
53// RoarAudio MIDI Commands:
54#define MIDI_TYPE_NONE          0x00
55#define MIDI_TYPE_RAW_PASS      0x10
56#define MIDI_TYPE_RAW_NOPASS    0x20
57
[1892]58// controller events:
59#define MIDI_CCE_MAIN_VOL        7
60#define MIDI_CCE_BALANCE         8
61#define MIDI_CCE_PANORAMA       10
62#define MIDI_CCE_LOCAL_CONTR   122
63#define MIDI_CCE_ALL_NOTE_OFF  123
64
65
[1852]66#define MIDI_MES_BUFSIZE        4
[1858]67#define MIDI_READ_SIZE          256 /* this should be big enoth in both cfreq=20..100Hz mode */
[1852]68
69#define MIDI_MFLAG_FREE_DP     (1<<0)
70
[1924]71#define MIDI_INITED_MAIN        0x01
72#define MIDI_INITED_CB          0x02
73#define MIDI_INITED_CLOCK       0x04
74
75struct {
76 int init;
77 int inited;
78 int init_cb;
79 char * console_dev;
80} midi_config;
81
[1852]82struct midi_message {
83 unsigned char   type;
84 unsigned char   channel;
85 unsigned char   flags;
86 unsigned char   kk;
87 unsigned char   vv;
88 size_t          datalen;
89 unsigned char * dataptr;
90 union {
91  unsigned char           ldata[MIDI_MES_BUFSIZE];
92  struct roar_note_octave note;
93 }               d;
94};
95
[1863]96struct {
97 struct roar_buffer * buf;
98} g_midi_mess;
[1852]99
[1853]100struct {
101 int      console;
102 int      stream;
103 uint32_t stoptime;
104 int      playing;
105} g_midi_cb;
[1848]106
[1850]107struct {
108 int stream;
109 uint_least32_t bph; // beats per hour
[1852]110 uint_least32_t spt; // samples per tick
111 uint32_t       nt;  // time of next tick
[1850]112} g_midi_clock;
[192]113
[1858]114
115// general midi interface:
[1924]116int midi_init_config(void);
117
[185]118int midi_init (void);
119int midi_free (void);
120
[1841]121int midi_update(void);
[1855]122int midi_reinit(void);
[1841]123
[1858]124// streams:
[1841]125int midi_check_stream  (int id);
126int midi_send_stream   (int id);
127
[1858]128int midi_conv_midi2mes (int id);
129int midi_conv_mes2midi (int id);
130
[2461]131int midi_conv_mes2ssynth(void);
132
[1863]133int midi_new_bufmes    (struct roar_buffer ** buf, struct midi_message ** mes);
[1866]134int midi_add_buf       (int id, struct roar_buffer * buf);
[1863]135
[1858]136// bridges:
[1848]137int midi_check_bridge  (int id);
138
[1858]139// clock:
[1848]140int midi_clock_init (void);
[1852]141int midi_clock_set_bph (uint_least32_t bph);
142int midi_clock_tick (void);
[1848]143
[185]144// cb = console beep
[1843]145int midi_cb_init(void);
146int midi_cb_free(void);
[185]147int midi_cb_play(float t, float freq, int override);
[190]148int midi_cb_update (void);
[185]149int midi_cb_start(float freq);
150int midi_cb_stop (void);
[1882]151int midi_cb_readbuf(void);
[185]152
[1848]153// dummys:
154int     midi_vio_set_dummy(int stream);
155int     midi_vio_ok(struct roar_vio_calls * vio, ...);
156
[169]157#endif
158
159//ll
Note: See TracBrowser for help on using the repository browser.