Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/warp-lab/ofxoscpkt
Alternative to ofxOsc, Julien Pommiers OscPkt.
https://github.com/warp-lab/ofxoscpkt
Last synced: 28 days ago
JSON representation
Alternative to ofxOsc, Julien Pommiers OscPkt.
- Host: GitHub
- URL: https://github.com/warp-lab/ofxoscpkt
- Owner: WARP-LAB
- Created: 2014-05-07T17:00:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-09T22:35:14.000Z (over 9 years ago)
- Last Synced: 2024-03-26T06:36:16.138Z (9 months ago)
- Language: C++
- Size: 150 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ofxOscPkt
=========Alternative to ofxOsc, Julien Pommiers OscPkt.
Using Julien Pommiers OscPkt in oF.
http://gruntthepeon.free.fr/oscpkt/
ofxOsc and Cinder OSC relies on oscpack lib. When sending OSC messages to node-osc from Cinder, everything works, but those sent from oF go are lost somewhere. Not saying that node-osc isn't to blame. Anyways, insted of trying to find and solve the issue, Julien lib with two headers is great alternative.
_another crucial thing that oscpkt has is incoming bundle parsing. imagine sending messages from one computer to another that nature is to describe features/states of app per one run loop/frame. i bundle them so all the messages that describes one frame are together. on every receiving computer loop i just take the last bundle received (there are cases you need all of them, i.e., if data is aggregating/accumultating in its nature), discard older buffers. in such way one has as realtime as possible data flow plus one is guaranteed that all the messages in the bundle correspond to the same frame. ofxOsc does not parse bundles (more corretly - just throws them into a message bowl), makes sad panda. OscPkt makes panda happy._
See Juliens original examples.
```
// To send a simple msg
oscpkt::UdpSocket oscPingSock; // instance variable
string oscPingIp = "127.0.0.1";
int oscPingPort = "8000";
oscPingSock.connectTo(oscPingIp, oscPingPort);
if (!oscPingSock.isOk()) {
cerr << "Error connection to port " << oscPingPort << ": " << oscPingSock.errorMessage() << "\n";
}
oscpkt::Message msg("/ping");
msg.pushInt32(1);
oscpkt::PacketWriter pw;
pw.addMessage(msg);
oscPingSock.sendPacket(pw.packetData(), pw.packetSize());```
```
/* Copyright (C) 2010 Julien PommierThis software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.(this is the zlib license)
*/
```