OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
ossia-max/src/device.hpp
1#pragma once
2
3#include <ossia/network/base/protocol.hpp>
4
5#include <ossia-max/src/device_base.hpp>
6
7namespace ossia::net
8{
9struct network_context;
10using network_context_ptr = std::shared_ptr<network_context>;
11}
12namespace ossia
13{
14namespace max_binding
15{
16
17class device : public device_base
18{
19public:
20 ossia::net::network_context_ptr network_context;
21 void* network_poll_clock{};
22 using is_device = std::true_type;
23
24 static void register_children(device*);
25 static void loadbang(device*);
26
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);
38
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);
42
43 static void asio_timer(device* x);
44};
45
46namespace protocol_settings
47{
48
49struct minuit
50{
51 std::string remoteip{"localhost"};
52 unsigned int remoteport = 13579;
53 unsigned int localport = 9998;
54};
55
56struct oscquery
57{
58 unsigned int oscport = 9999;
59 unsigned int wsport = 5678;
60};
61
62struct osc
63{
64 std::string remoteip{"localhost"};
65 unsigned int remoteport = 9997;
66 unsigned int localport = 9996;
67};
68
69static void print_protocol_help()
70{
71 post("expose <protocol> <args> ...");
72 post("Available protocols (case sensitive): Minuit, oscquery, osc");
73
74 post("Protocols parameters :");
75
76 post(
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");
81
82 post(
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 "
86 "connect.");
87
88 post(
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.");
93}
94
95} // protocol_setting namespace
96} // max namespace
97} // ossia namespace
Definition git_info.h:7