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
|
/*
MidiWidgetsManager.m:
Copyright (C) 2014 Steven Yi, Aurelius Prochazka
This file is part of Csound for iOS.
The Csound for iOS Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA
*/
#import "MidiWidgetsManager.h"
#import "SliderMidiWidgetWrapper.h"
void MidiWidgetsManagerReadProc(const MIDIPacketList *pktlist, void *refcon, void *srcConnRefCon);
@implementation MidiWidgetsManager
-(id)init {
if(self = [super init]) {
_widgetWrappers = [[NSMutableArray alloc] init];
for (int i = 0; i < 128; i++) {
[_widgetWrappers addObject:[NSNull null]];
}
}
return self;
}
-(void)addSlider:(UISlider *)slider forControllerNumber:(int)controllerNumber {
SliderMidiWidgetWrapper *wrapper = [[SliderMidiWidgetWrapper alloc] init:slider];
[self addMidiWidgetWrapper:wrapper forControllerNumber:controllerNumber];
}
-(void)addMidiWidgetWrapper:(id<MidiWidgetWrapper>)wrapper
forControllerNumber:(int)controllerNumber {
if (controllerNumber < 0 || controllerNumber > 127) {
NSLog(@"Error: Attempted to add a widget with controller number outside of range 0-127: %d", controllerNumber);
return;
}
[_widgetWrappers replaceObjectAtIndex:controllerNumber withObject:wrapper];
}
/* coremidi callback, called when MIDI data is available */
void MidiWidgetsManagerReadProc(const MIDIPacketList *pktlist, void *refcon, void *srcConnRefCon){
MidiWidgetsManager* manager = (__bridge MidiWidgetsManager *)refcon;
MIDIPacket *packet = &((MIDIPacketList *)pktlist)->packet[0];
Byte *curpack;
int i, j;
for (i = 0; i < pktlist->numPackets; i++) {
for(j=0; j < packet->length; j+=3){
curpack = packet->data+j;
if ((*curpack++ | 0xB0) > 0) {
unsigned int controllerNumber = (unsigned int)(*curpack++);
unsigned int controllerValue = (unsigned int)(*curpack++);
id wrapper = [manager.widgetWrappers objectAtIndex:controllerNumber];
//NSLog(@"Controller Number: %d Value: %d", controllerNumber, controllerValue);
if (wrapper != [NSNull null]) {
[(id<MidiWidgetWrapper>)wrapper setMIDIValue:controllerValue];
}
}
}
packet = MIDIPacketNext(packet);
}
}
#pragma mark CoreMidi Code
-(void)openMidiIn {
int k;
ItemCount endpoints;
CFStringRef name = NULL, cname = NULL, pname = NULL;
CFStringEncoding defaultEncoding = CFStringGetSystemEncoding();
MIDIPortRef mport = 0;
MIDIEndpointRef endpoint;
OSStatus ret;
/* MIDI client */
cname = CFStringCreateWithCString(NULL, "my client", defaultEncoding);
ret = MIDIClientCreate(cname, NULL, NULL, &mclient);
if(!ret){
/* MIDI output port */
pname = CFStringCreateWithCString(NULL, "outport", defaultEncoding);
ret = MIDIInputPortCreate(mclient, pname, MidiWidgetsManagerReadProc, (__bridge void *)(self), &mport);
if(!ret){
/* sources, we connect to all available input sources */
endpoints = MIDIGetNumberOfSources();
//NSLog(@"midi srcs %d\n", endpoints);
for(k=0; k < endpoints; k++){
endpoint = MIDIGetSource(k);
MIDIPortConnectSource(mport, endpoint, NULL);
}
}
}
if(name) CFRelease(name);
if(pname) CFRelease(pname);
if(cname) CFRelease(cname);
}
-(void)closeMidiIn {
MIDIClientDispose(mclient);
}
@end
|