OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
ocue.hpp
1#pragma once
2#include "ext.h"
3#include "ext_obex.h"
4
5#include <ossia/preset/cue.hpp>
6
7#include <ossia-max/src/object_base.hpp>
8
9#include <ossia-max/src/search_filter.hpp>
10#include <rapidjson/stringbuffer.h>
11
12namespace ossia
13{
14namespace max_binding
15{
16
17struct ocue
18 : object_base
19 , search_sort_filter
20{
21 static t_class* max_class;
22 t_symbol* m_device_name = _sym_nothing;
23
24 void create(int argc, t_atom* argv);
25 void update(int argc, t_atom* argv);
26 void remove(int argc, t_atom* argv);
27 void rename(int argc, t_atom* argv);
28 void clear();
29 void move(int argc, t_atom* argv);
30 void output(int argc, t_atom* argv);
31 void read(int argc, t_atom* argv);
32 void write(int argc, t_atom* argv);
33 void edit(int argc, t_atom* argv);
34 void sort(int argc, t_atom* argv);
35 void json();
36 void names();
37
38 void explore(int argc, t_atom* argv);
39 void do_explore(t_symbol* name);
40
41 void recall(int argc, t_atom* argv);
42 void recall_next(int argc, t_atom* argv);
43 void recall_previous(int argc, t_atom* argv);
44
45 void display_model(int argc, t_atom* argv);
46 void do_display_model(std::string_view);
47 void select_model(int argc, t_atom* argv);
48 void select(int argc, t_atom* argv);
49
50 // Selection: what is actually going to be on the cue when we create / update
51 void selection_dump();
52 void selection_add(int argc, t_atom* argv);
53 void selection_switch(int argc, t_atom* argv);
54 void selection_filter_all(int argc, t_atom* argv);
55 void selection_filter_any(int argc, t_atom* argv);
56 void selection_remove(int argc, t_atom* argv);
57 void selection_grab(int argc, t_atom* argv);
58
59 // Filter: what we display as the output of ossia.explore
60 void filter_dump();
61 void filter_add(int argc, t_atom* argv);
62 void filter_filter_all(int argc, t_atom* argv);
63 void filter_filter_any(int argc, t_atom* argv);
64 void filter_remove(int argc, t_atom* argv);
65 void filter_grab(int argc, t_atom* argv);
66
67 void do_registration();
68 void unregister();
69
70 void update_selection();
71
72 ossia::net::device_base* get_device() const noexcept;
73 t_max_err get_device_name(long* ac, t_atom** av);
74 t_max_err set_device_name(long ac, t_atom* av);
75
76 static void in_long(ocue* x, long argc);
77 static void reset(ocue* x);
78 static void free(ocue* x);
79 static void closebang(ocue* x);
80 static t_max_err notify(ocue* x, t_symbol* s, t_symbol* msg, void* sender, void* data);
81
82 static void assist(ocue* x, void* b, long m, long a, char* s);
83
84 template <typename... T>
85 void dump_message(std::string_view str, T&&...);
86 void dump_message(std::string_view msg, const std::vector<std::string_view>& t);
87
88 std::shared_ptr<ossia::cues> m_cues;
89 namespace_selection m_ns;
90 namespace_selection m_filter;
91 std::string m_last_filename;
92 t_symbol* m_last_explore{_sym_nothing};
93};
94
95} // namespace max
96} // namespace ossia
Root of a device tree.
Definition ossia/network/base/device.hpp:58
Definition git_info.h:7