aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/winmidi.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-10-05 19:30:22 +0200
committercbdev <cb@cbcdn.com>2019-10-05 19:30:22 +0200
commit65bd41387c8dbf67812de1881198a47c9bb4b55e (patch)
treeafe63538f6c3922cb47a523787244495138e9f1d /backends/winmidi.c
parente556b1719a8906c14d329eb3c08574428cad0aae (diff)
downloadmidimonster-65bd41387c8dbf67812de1881198a47c9bb4b55e.tar.gz
midimonster-65bd41387c8dbf67812de1881198a47c9bb4b55e.tar.bz2
midimonster-65bd41387c8dbf67812de1881198a47c9bb4b55e.zip
Implement detect option for winmidi
Diffstat (limited to 'backends/winmidi.c')
-rw-r--r--backends/winmidi.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/backends/winmidi.c b/backends/winmidi.c
index 13c4b4a..83d0c7e 100644
--- a/backends/winmidi.c
+++ b/backends/winmidi.c
@@ -9,6 +9,7 @@
static struct {
uint8_t list_devices;
+ uint8_t detect;
int socket_pair[2];
CRITICAL_SECTION push_events;
@@ -60,6 +61,13 @@ static int winmidi_configure(char* option, char* value){
}
return 0;
}
+ else if(!strcmp(option, "detect")){
+ backend_config.detect = 0;
+ if(!strcmp(value, "on")){
+ backend_config.detect = 1;
+ }
+ return 0;
+ }
fprintf(stderr, "Unknown winmidi backend option %s\n", option);
return 1;
@@ -232,6 +240,22 @@ static int winmidi_set(instance* inst, size_t num, channel** c, channel_value* v
return 0;
}
+static char* winmidi_type_name(uint8_t typecode){
+ switch(typecode){
+ case note:
+ return "note";
+ case cc:
+ return "cc";
+ case pressure:
+ return "pressure";
+ case aftertouch:
+ return "aftertouch";
+ case pitchbend:
+ return "pitch";
+ }
+ return "unknown";
+}
+
static int winmidi_handle(size_t num, managed_fd* fds){
size_t u;
ssize_t bytes = 0;
@@ -249,6 +273,23 @@ static int winmidi_handle(size_t num, managed_fd* fds){
//push queued events
EnterCriticalSection(&backend_config.push_events);
for(u = 0; u < backend_config.events_active; u++){
+ if(backend_config.detect){
+ //pretty-print channel-wide events
+ if(backend_config.event[u].channel.fields.type == pitchbend
+ || backend_config.event[u].channel.fields.type == aftertouch){
+ fprintf(stderr, "Incoming MIDI data on channel %s.ch%d.%s\n",
+ backend_config.event[u].inst->name,
+ backend_config.event[u].channel.fields.channel,
+ winmidi_type_name(backend_config.event[u].channel.fields.type));
+ }
+ else{
+ fprintf(stderr, "Incoming MIDI data on channel %s.ch%d.%s%d\n",
+ backend_config.event[u].inst->name,
+ backend_config.event[u].channel.fields.channel,
+ winmidi_type_name(backend_config.event[u].channel.fields.type),
+ backend_config.event[u].channel.fields.control);
+ }
+ }
chan = mm_channel(backend_config.event[u].inst, backend_config.event[u].channel.label, 0);
if(chan){
mm_channel_event(chan, backend_config.event[u].value);