gpt4 book ai didi

c++ - 我怎样才能明智地分配静态 RtMidi 回调对象?

转载 作者:行者123 更新时间:2023-11-30 04:18:18 25 4
gpt4 key购买 nike

我正在使用 C++ RtMidi 库从两个相同的设备(Novation 启动板)读取 MIDI 输入。
两个启动板都“活”在自己的对象中,打开自己的 MIDI 端口,并且(应该)设置自己的回调方法。但是,如果我按下启动板上的按钮,两个设备都会将 MIDI 数据放入同一个回调函数(最后分配的回调函数)。
我希望回调函数是特定于对象而不是特定于类的。经过大量研究和修改后,我怀疑问题与以下事实有关:回调函数被声明为静态(如 RtMidi 文档所建议的那样),因此被声明为类范围而不是对象范围。

如何修复代码,以便将启动板生成的 MIDI 事件发送到它们“自己的”回调函数?

这是(精简的)代码:

启动板.cpp

class launchpad {
public:
launchpad(int paramPortId, std::string paramPosition);
private:
static void listenerCallback(double deltatime, std::vector< unsigned char > *message, void *userData);
static std::string position;
};

std::string launchpad::position;

void launchpad::listenerCallback(double deltatime, std::vector< unsigned char > *message, void *userData) {
unsigned int nBytes = message->size();
for (unsigned int i = 0; i < nBytes; i++)
std::cout << position << "Byte " << i << " = " << (int) message->at(i) << ", ";
if (nBytes > 0)
std::cout << "stamp = " << deltatime << std::endl;
}

launchpad::launchpad(int paramPortId, std::string paramPosition) {

RtMidiIn *input = new RtMidiIn();
launchpad::position = paramPosition;
std::cout << "Launchpad found at port # " << paramPortId << " assigned position: " << position << std::endl;

input->setCallback(&listenerCallback);
input->openPort(paramPortId);
}

main.cpp

int main(int argc, char *argv[]) {

RtMidiIn *infoDevice;
launchpad *leftLaunchpad = 0;
launchpad *rightLaunchpad = 0;
int launchpadIndex = 0;
infoDevice = new RtMidiIn();
unsigned int nPorts = infoDevice->getPortCount();
string portName;

for (unsigned int i = 0; i < nPorts; i++) {
portName = infoDevice->getPortName(i);
if (portName == "Launchpad") {
if (launchpadIndex == 0) {
leftLaunchpad = new launchpad(i, "left");
launchpadIndex++;
} else if (launchpadIndex == 1) {
rightLaunchpad = new launchpad(i, "right");
launchpadIndex++;
}
}
}

char input;
std::cin.get(input);
return 0;

非常感谢任何帮助。谢谢

最佳答案

listenerCallback 可以是任何不是来自类的静态 C 函数

然后使用输入->setCallback(&listenerCallback,(void *)this);userdata 会告诉你正在调用什么

关于c++ - 我怎样才能明智地分配静态 RtMidi 回调对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16508595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com