可以在同一个 Cinder 文件中发送和接收 OSC 数据吗?

Can you send and receive OSC data in the same Cinder file?

我有一个正在向 python 脚本发送数据的 cpp 文件。反过来,这个脚本将数据发送回 Cinder,我想知道我是否也可以设置一个接收器。我正在使用 Cinder 附带的 OSC 块,我有点困惑,因为在 Sender 示例中,构造函数是这样写的

OSCTestApp::OSCTestApp() : mSender(10000, destinationHost, destinationPort){}

并且在 Receiver 示例中编写了构造函数

OSCTestApp::OSCTestApp():mReceiver(10001){}

那么如何将两者结合起来呢?

谢谢

答案出奇的简单:

OSCTestApp::OSCTestApp():App()、mReceiver(9000)、mSender(8000、destinationHost、destinationPort){}