OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
editor/state/state.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <ossia/detail/config.hpp>
4
7
8#include <memory>
12namespace ossia
13{
24class OSSIA_EXPORT state
25{
26 using children_type = std::vector<state_element>;
27
28public:
29 OSSIA_EXPORT friend bool operator==(const state& lhs, const state& rhs);
30 OSSIA_EXPORT friend bool operator!=(const state& lhs, const state& rhs);
31
32 children_type::iterator begin() noexcept;
33 children_type::iterator end() noexcept;
34 children_type::const_iterator begin() const noexcept;
35 children_type::const_iterator end() const noexcept;
36 children_type::const_iterator cbegin() const noexcept;
37 children_type::const_iterator cend() const noexcept;
38
39 const children_type& children() const noexcept;
40
41 std::size_t size() const;
42 bool empty() const;
43
44 void launch();
45
46 void add(const state_element& e);
47 void add(state_element&& e);
48
49 template <class Optional_T>
50 auto add(Optional_T&& opt)
51 -> decltype(std::declval<typename std::remove_reference_t<Optional_T>::value_type>(), void())
52 {
53 if(opt)
54 add(*std::forward<Optional_T>(opt));
55 }
56
57 void remove(const state_element& e);
58 void remove(children_type::iterator e);
59 void remove(children_type::const_iterator e);
60
61 void reserve(std::size_t);
62 void clear();
63
64private:
65 std::vector<state_element> m_children;
66};
67
68inline auto begin(state& s)
69{
70 return s.begin();
71}
72inline auto begin(const state& s)
73{
74 return s.begin();
75}
76inline auto end(state& s)
77{
78 return s.end();
79}
80inline auto end(const state& s)
81{
82 return s.end();
83}
84
89OSSIA_EXPORT void flatten_and_filter(state&, const state_element& element);
90OSSIA_EXPORT void flatten_and_filter(state&, state_element&& element);
91
93OSSIA_EXPORT void merge_flatten_and_filter(state&, const state_element& element);
94OSSIA_EXPORT void merge_flatten_and_filter(state&, state_element&& element);
95
96inline ossia::state_element& get_state_element(ossia::state_element* iterator)
97{
98 return *iterator;
99}
100}
The state class.
Definition editor/state/state.hpp:25
Definition git_info.h:7
void launch(state_element &e)
launch Launch a state_element
Definition state_element.cpp:18
void flatten_and_filter(ossia::state &state, const state_element &element)
append each message of the state to the current state in order to eliminate address redundancy
Definition editor/state/state.cpp:106
ossia::nullable_variant< message, state, piecewise_message, piecewise_vec_message< 2 >, piecewise_vec_message< 3 >, piecewise_vec_message< 4 > > state_element
Definition state_element_fwd.hpp:28
void merge_flatten_and_filter(ossia::state &state, const state_element &element)
These will also merge single addresses.
Definition editor/state/state.cpp:116