OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
router.hpp
1#pragma once
2#include "ext.h"
3#include "ext_obex.h"
4#undef error
5#undef post
6
7#include <regex>
8#include <string>
9#include <vector>
10
11namespace ossia
12{
13namespace max_binding
14{
15
16#pragma mark -
17#pragma mark router structure declaration
18
19struct router
20{
21 t_object m_object;
22 long m_truncate{1};
23 long m_leadslash{0};
24
25 router();
26 ~router();
27
28 void change_pattern(int index, std::string&& pattern);
29
30 static void free(ossia::max_binding::router* x);
31 static void
32 in_anything(ossia::max_binding::router* x, t_symbol* s, long argc, t_atom* argv);
33
34 static void in_float(ossia::max_binding::router* x, double f);
35 static void in_int(ossia::max_binding::router* x, long int f);
36 static void in_symbol(ossia::max_binding::router* x, t_symbol* f);
37 static void in_list(ossia::max_binding::router* x, t_symbol*, int argc, t_atom* argv);
38
39 static void assist(router* x, void* b, long m, long a, char* s);
40
41 struct pattern {
42 std::string pattern;
43 std::regex regex;
44 bool simple{};
45 };
46
47 std::vector<pattern> m_patterns{};
48 std::vector<void*> m_outlets{};
49 std::vector<void*> m_inlets{};
50};
51} // max namespace
52} // ossia namespace
53
54#pragma mark -
55#pragma mark ossia_router class declaration
56
57extern "C" {
58void* ossia_router_new(t_symbol* s, long argc, t_atom* argv);
59}
Definition git_info.h:7