3#include <ossia/network/base/protocol.hpp>
5#include <ossia-max/src/device_base.hpp>
10using network_context_ptr = std::shared_ptr<network_context>;
17class device :
public device_base
20 ossia::net::network_context_ptr network_context;
21 void* network_poll_clock{};
22 using is_device = std::true_type;
24 static void register_children(device*);
25 static void loadbang(device*);
27 static void expose(device* x, t_symbol*,
long argc, t_atom* argv);
28 static void name(device* x, t_symbol*,
long argc, t_atom* argv);
29 static void get_protocols(device* x);
30 static void get_oscq_clients(device* x);
31 static void stop_expose(device* x,
int index);
32 static void enable_buffering(device* x,
int index,
int enable);
33 static void send_buffer(device* x,
int index);
34 static void get_mess_cb(device* x, t_symbol* s);
35 static void assist(ossia::max_binding::device*,
void*,
long,
long,
char*);
36 static void send_raw_osc(device* x, t_symbol* s,
int argc, t_atom* argv);
37 static void resend_all_values(device* x, t_symbol* s);
39 static void* create(t_symbol*,
long, t_atom*);
40 static void destroy(ossia::max_binding::device*);
41 static void class_setup(t_class* c);
43 static void asio_timer(device* x);
46namespace protocol_settings
51 std::string remoteip{
"localhost"};
52 unsigned int remoteport = 13579;
53 unsigned int localport = 9998;
58 unsigned int oscport = 9999;
59 unsigned int wsport = 5678;
64 std::string remoteip{
"localhost"};
65 unsigned int remoteport = 9997;
66 unsigned int localport = 9996;
69static void print_protocol_help()
71 post(
"expose <protocol> <args> ...");
72 post(
"Available protocols (case sensitive): Minuit, oscquery, osc");
74 post(
"Protocols parameters :");
77 "Minuit <remoteip> <remoteport> <localport> :\n"
78 "\tremoteip (symbol): ip of target device\n"
79 "\tremoteport (int): port on which packet should be send\n"
80 "\tlocalport (int): port to which this device is listening");
83 "oscquery <oscport> <wsport> :\n"
84 "\toscport (int) : port on which osc packet are sent\n"
85 "\twsport (int) : WebSocket port on which distant application will "
89 "osc <remoteip> <remoteport> <localpoort>\n"
90 "\tremoteip (symbol): ip of target device\n"
91 "\tremoteport (int): port on which packet should be send\n"
92 "\tlocalport (int): port this device is listening.");