I'm having a hard time parsing Midi Packets. At times its 3 bytes then it can be 155 bytes on one stream. How can I iterate through the massive packet and just get what I need? Say for "b0" its only 3 bytes of 12 a byte packet, I just want to split "b0" and its following bytes: [b02c2c] then the others [b02c2d] or [f0....] in the same packet...
Heres what I've been working on and is giving me a headache..
NSString *StringFromPacket(const MIDIPacket *packet,id self)
{
NSMutableString * result = [[NSMutableString alloc] init];
for (int i = 0; i < packet->length; i++) {
NSString *s = [NSString stringWithFormat:@"%02x",packet->data[i]];
for (NSString *line in [s componentsSeparatedByString:@"b0"]) {
//This appends to string but b0 disappears and only get the following 2 bytes
//Along with the others like f0,a0,90. I would like to filter without losing b0
[result appendFormat:line];
}
}
[self controlEvent:result];
}
-(void)controlEvent:(NSString *)line{
if (line == @"b02c2c"){
//Do Something
}