我正在尝试制作一种自定义的 midi 播放器,为此我使用了一个已经正确记住了 midi 消息数据的数组,如下所示:
int array[3000][4]={{time,status,data1,data2},{...},...}
当我希望我的程序发送 midi 消息(以便可以播放)时,我调用这个数组并在 note/off、pitch-bend 等之间进行必要的区分。弯音值(范围从 0 到 16383,但通常在 8192 左右,这意味着没有音高偏移)全部存储在 data1(array[i][2])中。对于从 int 到要传递给 midiOutShortMsg() 的两个 7 位值的转换,我使用了我在此处找到的一些代码。这是我实际使用的代码:
union { unsigned long word; unsigned char data[4]; } message;
int main(int argc, char** argv) {
int midiport; // select which MIDI output port to open
uint16_t bend;
int flag,u; // monitor the status of returning functions
uint16_t mask = 0x007F;
HMIDIOUT device; // MIDI device interface for sending MIDI output
message.data[0] = 0x90;
message.data[1] = 60;
message.data[2] = 100;
message.data[3] = 0; // Unused parameter
// Assign the MIDI output port number (from input or default to 0)
if (!midiOutGetNumDevs()){
printf("non ci sono devices");
}
if (argc < 2) {
midiport = 0;
}
else {
midiport = 0;
}
printf("MIDI output port set to %d.\n", midiport);
// Open the MIDI output port
flag = midiOutOpen(&device, midiport, 0, 0, CALLBACK_NULL);
if (flag != MMSYSERR_NOERROR) {
printf("Error opening MIDI Output.\n");
return 1;
}i = 0;
message.data[0] = 0xC0;
message.data[1] = 25;
message.data[2] = 0;
flag = midiOutShortMsg(device, message.word); //program change to steel guitar
if (flag != MMSYSERR_NOERROR) {
printf("Warning: MIDI Output is not open.\n");
}
while (1){
if (array[i][1] == 1) { //note on
this_works();i++;
}
else if (array[i][1] == 0){//note off
this_also_works();i++;
}
else if (array[i][1] == 2){//pitch bend
while (array[i][1] == 2){
Sleep(10);
message.data[0] = 0xE0;
bend = (uint16_t) array[i][2];
message.data[1] = bend & mask;
message.data[2] = (bend & (mask << 7)) >> 7;
printf("bending %d, %d\n", message.data[1],message.data[2]);
flag = midiOutShortMsg(device, message.word);
if (flag != MMSYSERR_NOERROR) {
printf("Warning: MIDI Output is not open.\n");
}i++;
}
}
}}
printf("bending %d,%d") 函数总是将第一个 %d 打印为 0,无论如何。这是我第一次在 midi 中编程,以前我从来没有处理过 7 位值,所以我很困惑,任何帮助将不胜感激。