# HG changeset patch # User Robert Jack # Date 1466533997 -3600 # Node ID 5779ed0562acb93cf893ba872f50c05eb6004174 # Parent a23d74e2f6cbbedacc40645c201782b5387afc63 Typo, OSC example. diff -r a23d74e2f6cb -r 5779ed0562ac examples/05-Communication/OSC/render.cpp --- a/examples/05-Communication/OSC/render.cpp Tue Jun 21 18:50:03 2016 +0100 +++ b/examples/05-Communication/OSC/render.cpp Tue Jun 21 19:33:17 2016 +0100 @@ -31,40 +31,40 @@ // this example is designed to be run alongside resources/osc/osc.js -// parse messages recieved by OSC Server +// parse messages received by OSC Server // msg is Message class of oscpkt: http://gruntthepeon.free.fr/oscpkt/ void parseMessage(oscpkt::Message msg){ - rt_printf("recieved message to: %s\n", msg.addressPattern().c_str()); + rt_printf("received message to: %s\n", msg.addressPattern().c_str()); int intArg; float floatArg; if (msg.match("/osc-test").popInt32(intArg).popFloat(floatArg).isOkNoMoreArgs()){ - rt_printf("recieved int %i and float %f\n", intArg, floatArg); + rt_printf("received int %i and float %f\n", intArg, floatArg); } } bool setup(BelaContext *context, void *userData) { - // setup the OSC server to recieve on port 7562 + // setup the OSC server to receive on port 7562 oscServer.setup(7562); // setup the OSC client to send on port 7563 oscClient.setup(7563); // the following code sends an OSC message to address /osc-setup // then waits 1 second for a reply on /osc-setup-reply - bool handshakeRecieved = false; + bool handshakeReceived = false; oscClient.sendMessageNow(oscClient.newMessage.to("/osc-setup").end()); - oscServer.recieveMessageNow(1000); + oscServer.receiveMessageNow(1000); while (oscServer.messageWaiting()){ if (oscServer.popMessage().match("/osc-setup-reply")){ - handshakeRecieved = true; + handshakeReceived = true; } } - if (handshakeRecieved){ - rt_printf("handshake recieved!\n"); + if (handshakeReceived){ + rt_printf("handshake received!\n"); } else { rt_printf("timeout!\n"); } @@ -74,10 +74,10 @@ void render(BelaContext *context, void *userData) { - // recieve OSC messages, parse them, and send back an acknowledgment + // receive OSC messages, parse them, and send back an acknowledgment while (oscServer.messageWaiting()){ parseMessage(oscServer.popMessage()); - oscClient.queueMessage(oscClient.newMessage.to("/osc-acknowledge").add(5).add(4.2f).add(std::string("OSC message recieved")).end()); + oscClient.queueMessage(oscClient.newMessage.to("/osc-acknowledge").add(5).add(4.2f).add(std::string("OSC message received")).end()); } }