3#include <ossia/detail/optional.hpp>
4#include <ossia/detail/safe_vec.hpp>
6#include <ossia/network/base/value_callback.hpp>
7#include <ossia/network/common/path.hpp>
8#include <ossia/network/dataspace/dataspace.hpp>
13#include <cicm_wrapper.h>
15#include <readerwriterqueue.h>
17#define OSSIA_PD_MAX_ATTR_SIZE 256
31enum class object_class
48 t_select_clock(t_canvas* canvas, object_base* obj);
51 static void deselect(t_select_clock* x);
64 t_matcher(
const t_matcher&) =
delete;
65 t_matcher(t_matcher&& other)
noexcept;
66 t_matcher& operator=(
const t_matcher&) =
delete;
67 t_matcher& operator=(t_matcher&& other)
noexcept;
71 auto get_node()
const {
return node; }
72 auto get_owner()
const {
return owner; }
73 t_atom* get_atom_addr_ptr() {
return &m_addr; }
74 void set_owner_addr();
76 inline bool operator==(
const t_matcher& rhs)
const noexcept
78 return (this->node == rhs.node);
80 inline bool operator!=(
const t_matcher& rhs)
const noexcept
82 return (this->node != rhs.node);
85 std::vector<ossia::value> m_set_pool;
91 std::optional<ossia::callback_container<ossia::value_callback>::iterator> callbackit
94 moodycamel::ReaderWriterQueue<ossia::value, 64> m_queue_list;
105 t_outlet* m_setout{};
106 t_outlet* m_dataout{};
107 t_outlet* m_dumpout{};
109 object_class m_otype{};
111 ossia::net::address_scope m_addr_scope{};
114 bool m_is_deleted{
false};
115 unsigned int m_queue_length{64};
116 int m_recall_safe{0};
119 std::chrono::milliseconds m_last_click{};
121 t_clock* m_poll_clock{};
124 ossia::net::generic_device* m_device{};
129 std::vector<t_matcher> m_matchers{};
130 std::vector<t_matcher*> m_node_selection{};
131 std::optional<ossia::traversal::path> m_selection_path{};
132 std::vector<t_canvas*> m_patcher_hierarchy;
135 static void class_setup(t_eclass* c);
137 void fill_selection();
140 void set_description();
144 void set_recall_safe();
146 static void get_mess_cb(object_base* x, t_symbol* s);
148 notify(object_base* x, t_symbol* s, t_symbol* msg,
void* sender,
void* data);
149 static void print_hierarchy(object_base* x);
151 static void get_description(object_base* x, std::vector<t_matcher*> nodes);
152 static void get_tags(object_base* x, std::vector<t_matcher*> nodes);
153 static void get_priority(object_base* x, std::vector<t_matcher*> nodes);
154 static void get_hidden(object_base* x, std::vector<t_matcher*> nodes);
155 static void get_recall_safe(object_base* x, std::vector<t_matcher*> nodes);
156 static void get_zombie(object_base* x, std::vector<t_matcher*> nodes);
157 static void loadbang(object_base* x, t_float flag);
159 t_atom m_tags[OSSIA_PD_MAX_ATTR_SIZE] = {{}};
160 t_atom m_description[OSSIA_PD_MAX_ATTR_SIZE] = {{}};
165 long m_description_size{};
168 object_base(t_eclass* c);
171 static void update_attribute(
172 object_base* x, ossia::string_view attribute,
182 static bool find_and_display_friend(object_base* x);
188 static void get_address(object_base* x, std::vector<t_matcher*> nodes);
190 static void select_mess_cb(object_base* x, t_symbol* s,
int argc, t_atom* argv);
193 std::optional<ossia::traversal::path> m_path;
194 std::map<std::string_view, ossia::value> m_value_map;
The node_base class.
Definition node.hpp:48
The value class.
Definition value.hpp:173