Mercurial > hg > beaglert
view include/OSCServer.h @ 383:e42bc9ba7550 prerelease
Fixed when rebuilding non-main() project after main() project: the 'nasty kludge' was looking in ALL the .o files in projectFolder/build/ instead of only those that have a corresponding .cpp/.c/.S file. An even better fix is make sure that object files associated with source files deleted by rsync are removed as well
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Mon, 13 Jun 2016 00:44:47 +0100 |
parents | e4392164b458 |
children | faa5f58c71af |
line wrap: on
line source
/***** OSCServer.h *****/ #ifndef __OSCServer_H_INCLUDED__ #define __OSCServer_H_INCLUDED__ #include <UdpServer.h> #include <oscpkt.hh> #include <Bela.h> #include <queue> #define UDP_RECIEVE_TIMEOUT_MS 20 #define UDP_RECIEVE_MAX_LENGTH 16384 class OSCServer{ public: OSCServer(); // must be called once during setup void setup(int port); // returns true if messages are queued // audio-thread safe bool messageWaiting(); // removes and returns the oldest message from the queue // audio-thread safe, but don't call unless messageWaiting() returns true oscpkt::Message popMessage(); // if there are OSC messages waiting, decode and queue them // not audio-thread safe! void recieveMessageNow(int timeout); private: int port; UdpServer socket; AuxiliaryTask OSCRecieveTask; void createAuxTasks(); void messageCheck(); static void checkMessages(void*); int inBuffer[UDP_RECIEVE_MAX_LENGTH]; std::queue<oscpkt::Message> inQueue; oscpkt::Message poppedMessage; oscpkt::PacketReader pr; }; #endif