commit cd69c43d482554ec32960fc8cea45736b981ff1b
parent ad75e3744776a25a307cc0809a14867bec751923
Author: fundamental <[email protected]>
Date: Mon, 6 Jun 2016 10:58:43 -0400
Middleware: Track All OSC Remote UIs
Diffstat:
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/src/Misc/MiddleWare.cpp b/src/Misc/MiddleWare.cpp
@@ -665,6 +665,11 @@ public:
void write(const char *path, const char *args, ...);
void write(const char *path, const char *args, va_list va);
+ void currentUrl(string addr)
+ {
+ curr_url = addr;
+ known_remotes.insert(addr);
+ }
// Send a message to a remote client
void sendToRemote(const char *msg, std::string dest);
@@ -723,6 +728,7 @@ public:
//LIBLO
lo_server server;
string last_url, curr_url;
+ std::set<string> known_remotes;
//Synthesis Rate Parameters
const SYNTH_T synth;
@@ -1170,7 +1176,7 @@ static rtosc::Ports middlewareReplyPorts = {
const char *type = rtosc_argument(msg, 0).s;
const char *url = rtosc_argument(msg, 1).s;
if(!strcmp(type, "OSC_URL"))
- impl.curr_url = url;
+ impl.currentUrl(url);
rEnd},
{"free:sb", 0, 0,
rBegin;
@@ -1357,8 +1363,9 @@ void MiddleWareImpl::broadcastToRemote(const char *rtmsg)
sendToRemote(rtmsg, "GUI");
//Send to remote UI if there's one listening
- if(curr_url != "GUI")
- sendToRemote(rtmsg, curr_url);
+ for(auto rem:known_remotes)
+ if(rem != "GUI")
+ sendToRemote(rtmsg, rem);
broadcast = false;
}