OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
search_filter.hpp
1#pragma once
2
3#include "ext.h"
4
5#include <ossia/network/base/node.hpp>
6
7static const constexpr int MAX_NUM_ITEMS = 256;
8
9namespace ossia
10{
11namespace max_binding
12{
13class matcher;
14struct search_filter
15{
16 t_symbol* m_filter_type[MAX_NUM_ITEMS] = { nullptr };
17 long m_filter_type_size{};
18 t_symbol* m_filter_tags[MAX_NUM_ITEMS] = { nullptr };
19 long m_filter_tags_size{};
20 t_symbol* m_filter_modes[3] = {nullptr};
21 long m_filter_modes_size{};
22 long m_filter_visible{0};
23 long m_filter_terminal{0};
24
25 bool filter(const ossia::net::node_base& node);
26
27 template <typename T>
28 static void setup_attribute(t_class* c)
29 {
30 CLASS_ATTR_SYM_VARSIZE(
31 c, "type", 0, T, m_filter_type, m_filter_type_size, MAX_NUM_ITEMS);
32 CLASS_ATTR_LABEL(c, "type", 0, "Type of object to search");
33
34 CLASS_ATTR_SYM_VARSIZE(
35 c, "tags", 0, T, m_filter_tags, m_filter_tags_size, MAX_NUM_ITEMS);
36 CLASS_ATTR_LABEL(c, "tags", 0, "Filter by tags");
37
38 CLASS_ATTR_SYM_VARSIZE(c, "mode", 0, T, m_filter_modes, m_filter_modes_size, 3);
39 CLASS_ATTR_LABEL(c, "mode", 0, "Filter by access mode");
40
41 CLASS_ATTR_LONG(c, "visible", 0, T, m_filter_visible);
42 CLASS_ATTR_LABEL(
43 c, "visible", 0,
44 "Filter by visibility (0 means no filtering, 1 only visible, 2 only hidden");
45 CLASS_ATTR_FILTER_CLIP(c, "visible", 0, 2);
46
47 CLASS_ATTR_LONG(c, "terminal", 0, T, m_filter_terminal);
48 CLASS_ATTR_STYLE_LABEL(c, "terminal", 0, "onoff", "Only show terminal nodes");
49 }
50};
51
52struct search_sort_filter : search_filter
53{
54 long m_depth{0}; // 0 means no depth filtering
55
56 t_symbol* m_sort{};
57 t_symbol* m_format{};
58
59 std::vector<ossia::net::node_base*>
60 sort_and_filter(std::vector<std::shared_ptr<matcher>>& matchers);
61
62 template <typename T>
63 static void setup_attribute(t_class* c)
64 {
65 search_filter::setup_attribute<T>(c);
66
67 CLASS_ATTR_LONG(c, "depth", 0, T, m_depth);
68 CLASS_ATTR_LABEL(c, "depth", 0, "Limit exploration depth");
69 CLASS_ATTR_FILTER_MIN(c, "depth", 0);
70
71 CLASS_ATTR_SYM(c, "format", 0, T, m_format);
72 CLASS_ATTR_LABEL(c, "format", 0, "Format to output the namespace in");
73 CLASS_ATTR_ENUM(c, "format", 0, "list jit.cellblock");
74
75 CLASS_ATTR_SYM(c, "sort", 0, T, m_sort);
76 CLASS_ATTR_LABEL(c, "sort", 0, "Sorting");
77 CLASS_ATTR_ENUM(c, "sort", 0, "none alphabetic priority");
78 }
79};
80
81void dump_node_list(
82 void* outlet, const std::vector<ossia::net::node_base*>& nodes, t_symbol* format,
83 t_symbol* prefix = nullptr);
84} // namespace max
85} // namespace ossia
The node_base class.
Definition node.hpp:48
Definition git_info.h:7