hacking MIDI...

Published May 08, 2013
Advertisement
well, I was basically left considering something:
I want a new mixer with new functionality;
I am kind of lazy, and have ended up starting building the mixer on top of my preexisting MIDI synthesizer;
...

(note: just because it is MIDI doesn't necessarily mean this really has much to do with music, vs say, using it as a command-language for controlling a game mixer...).


all this then leads to a seeming "solution" of sorts:
hacking MIDI in some nasty ways, basically to allow more functionality (basically, by hacking said functionality directly into the MIDI command-stream).

types of functionality being added:
support for loading arbitrary samples / patches (basically, the ability to pass the synth either a patch name, or raw sample data);
support for a larger max number of channels (probably setting a limit somewhere between 1024 and 16384, vs the original 16);
support for 3D spatial positioning;
...

I debated the specifics for a little while, but settled mostly on using the 0xFD byte mostly as an escape-code for new wider command-space (still nicer IMO).


For example, older style events:
0x80|,, NoteOff
0x90|,, NoteOn
0xA0|,, NoteAftertouch
0xB0|,, ControllerChange
0xC0|, ProgramChange
0xD0|, ChannelAftertouch
0xE0|, PitchBlend

Vs newer wider events:
0xFD,0x08,,, NoteOff
0xFD,0x09,,, NoteOn
0xFD,0x0A,,, NoteAftertouch
0xFD,0x0B,,, ControllerChange
0xFD,0x0C,, ProgramChange
0xFD,0x0D,, ChannelAftertouch
0xFD,0x0E,, PitchBlend

where an SV is a signed variable-length integer value (1 or more bytes).

as well as adding things like vector-based ControllerChange events:
Int Vector ControllerChange
0xFD,0x10,,,
0xFD,0x11,,,,
0xFD,0x12,,,,,
0xFD,0x13,,,,,,
Float Vector ControllerChange
0xFD,0x14,,,,
0xFD,0x15,,,,,
0xFD,0x16,,,,,,
0xFD,0x17,,,,,,,

and, other commands like:
0xFD,0x01,, Load Patch / Sample (VFS path).


...

yes, it is ugly, but probably still cleaner than basically hacking in extensions via a pile of ControllerChange events (and the occasional SysEx).

note that there is little particular need for interop in this case (since this data will unlikely leave the program), and I had partly considered throwing out MIDI up-front, but mostly didn't really want to have to deal with the hassle of providing a "this is not MIDI" flag for parts of the pipeline already set up to assume MIDI, seemed easier mostly to just hack it.

similarly, this hacked form assumes the ability to send full 8-bit data.


now, whether or not there is a whole lot of a point is debatable...


or such...
0 likes 0 comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Profile
Author
Advertisement
Advertisement
Advertisement