OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
fuzzysearch.hpp
1#pragma once
2#include "ext.h"
3#include "ext_obex.h"
4#undef error
5#undef post
6
7#include "search_filter.hpp"
8
9#include <ossia/network/base/node.hpp>
11
12#include <set>
13
14namespace ossia
15{
16namespace max_binding
17{
18
19#pragma mark -
20#pragma mark t_fuzzysearch structure declaration
21
22struct fuzzysearch : search_filter
23{
24 t_object m_object;
25 t_symbol* m_scope{};
26
27 void* m_outlet{};
28 long m_case_sensitive{};
29
30 std::set<ossia::net::node_base*> m_roots;
31 std::vector<std::string> patterns;
32 std::vector<ossia::net::fuzzysearch_result> matches;
33
34 fuzzysearch();
35 ~fuzzysearch();
36
37 static void
38 search(ossia::max_binding::fuzzysearch* x, t_symbol* s, long argc, t_atom* argv);
39 static void free(ossia::max_binding::fuzzysearch* x);
40 static t_max_err
41 notify(fuzzysearch* x, t_symbol* s, t_symbol* msg, void* sender, void* data);
42
43 static void assist(fuzzysearch* x, void* b, long m, long a, char* s);
44};
45} // max namespace
46} // ossia namespace
47
48#pragma mark -
49#pragma mark ossia_fuzzysearch class declaration
50
51extern "C" {
52void* ossia_fuzzysearch_new(t_symbol* s, long argc, t_atom* argv);
53}
Definition git_info.h:7