OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
cue.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/detail/hash_map.hpp>
5#include <ossia/network/common/parameter_properties.hpp>
6#include <ossia/network/value/value.hpp>
7#include <ossia/preset/preset.hpp>
8
9#include <nano_observer.hpp>
10
11#include <optional>
12
13namespace ossia
14{
15namespace net
16{
17class node_base;
18class device_base;
19}
20struct cue
21{
22 std::string name{};
23 ossia::presets::preset preset;
24};
25
26struct selection_filters
27{
28 std::vector<std::string> selection;
29 std::vector<ossia::val_type> type;
30 std::vector<ossia::access_mode> access;
31 std::vector<ossia::bounding_mode> bounding;
32 std::vector<std::string> tags;
33
34 enum visibility_t
35 {
36 visible,
37 invisible
38 };
39 std::optional<visibility_t> visibility;
40};
41
42class OSSIA_EXPORT namespace_selection : Nano::Observer
43{
44 public:
45 void set_device(ossia::net::device_base* dev);
46
47 void namespace_select(std::string_view pat);
48 void namespace_deselect(std::string_view pat);
49 void namespace_switch(std::string_view pat);
50 void namespace_filter_all(const selection_filters& pat);
51 void namespace_filter_any(const selection_filters& pat);
52 void namespace_grab(std::string_view pat);
53
54 void on_node_created(const ossia::net::node_base& n);
55 void on_node_removed(const ossia::net::node_base& n);
56
57
59 ossia::hash_set<ossia::net::node_base*> m_selection;
60};
61
62class OSSIA_EXPORT cues
63{
64public:
65 std::vector<cue> m_cues{{.name{"Init"}, .preset = {}}};
66
67 int size() const noexcept { return this->m_cues.size(); }
68
69 int current_index() const noexcept { return m_current; }
70 cue* current_cue() noexcept {
71 if(has_cue(m_current))
72 return &this->m_cues[m_current];
73 else
74 return nullptr;
75 }
76 cue* get_cue(int idx) noexcept
77 {
78 return (idx >= 0 && idx < std::ssize(this->m_cues)) ? &this->m_cues[idx] : nullptr;
79 }
80 std::optional<int> find_cue(std::string_view name);
81 int get_cue(std::string_view name);
82
83 void create(std::string_view name);
84
85 void update(ossia::net::node_base& root, const namespace_selection& sel, std::string_view name);
86 void update(ossia::net::node_base& root, const namespace_selection& sel, int idx); // update cue by index
87 void update(ossia::net::node_base& root, const namespace_selection& sel); // update current cue
88
89 void recall(ossia::net::node_base& root, namespace_selection& sel, std::string_view name);
90 void recall(ossia::net::node_base& root, namespace_selection& sel, int idx);
91 void recall(ossia::net::node_base& root, namespace_selection& sel);
92
93 void remove(std::string_view name);
94 void remove(int idx);
95 void remove();
96 void clear();
97
98 void rename(std::string_view oldname, std::string_view newname);
99 void rename(int idx, std::string_view newname);
100 void rename(std::string_view newname);
101
102 void move(std::string_view name, int index);
103 void move(int from, int to);
104
105 void output(std::string_view name);
106 void output(std::string_view name, std::string_view pattern);
107
108 bool has_cue(int cue) const noexcept;
109 //private:
110 int m_current{0};
111};
112}
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48
Definition git_info.h:7
std::vector< std::string > tags
Tags applied to a node: {"model", "interesting", ...}.
Definition node_attributes.hpp:71