2#include <ossia/detail/config.hpp>
4#include <ossia/dataflow/graph/small_graph.hpp>
5#include <ossia/detail/flat_map.hpp>
6#include <ossia/detail/flat_set.hpp>
7#include <ossia/detail/pod_vector.hpp>
9#include <ossia/detail/ptr_set.hpp>
10#include <ossia/detail/small_vector.hpp>
14#include <boost/graph/adjacency_list.hpp>
16#include <ankerl/unordered_dense.h>
23using interval_set = ossia::flat_set<time_interval*>;
24using sync_set = ossia::flat_set<time_sync*>;
25using small_sync_vec = ossia::small_vector<time_sync*, 4>;
26using small_event_vec = std::vector<time_event*>;
33using overtick_map = ossia::flat_map<time_sync*, overtick>;
36using scenario_graph_vertex = time_sync*;
37using scenario_graph_edge = time_interval*;
39using scenario_graph_t = boost::adjacency_list<
40 boost::smallvecS, boost::smallvecS, boost::undirectedS, scenario_graph_vertex,
44remove_vertex(
typename scenario_graph_t::vertex_descriptor v, scenario_graph_t& g)
46 typedef typename scenario_graph_t::directed_category Cat;
47 g.removing_vertex(v, boost::graph_detail::iterator_stability(g.m_vertices));
48 boost::detail::remove_vertex_dispatch(g, v, Cat());
82class OSSIA_EXPORT scenario final :
public looping_process<scenario>
84 friend class looping_process<scenario>;
94 void add_time_interval(std::shared_ptr<time_interval>);
99 void remove_time_interval(
const std::shared_ptr<time_interval>&);
103 void add_time_sync(std::shared_ptr<time_sync>);
107 void remove_time_sync(
const std::shared_ptr<time_sync>&);
111 const std::shared_ptr<time_sync>& get_start_time_sync()
const;
115 const ptr_container<time_sync>& get_time_syncs()
const;
119 const ptr_container<time_interval>& get_time_intervals()
const;
121 friend struct scenario_graph;
124 void state_impl(
const ossia::token_request& req);
126 void start()
override;
127 void stop()
override;
128 void pause()
override;
129 void resume()
override;
132 void mute_impl(
bool)
override;
147 small_sync_vec get_roots() const noexcept;
150 const ptr_container<time_sync>&, const ptr_container<time_interval>&,
153 ossia::time_value last_date() const noexcept {
return m_last_date; }
155 void set_exclusive(
bool excl)
noexcept;
156 bool exclusive(
bool excl)
const noexcept;
159 void stop_all_intervals();
162 ptr_container<time_interval> m_intervals;
163 ptr_container<time_sync> m_nodes;
166 interval_set m_runningIntervals;
167 sync_set m_waitingNodes;
168 small_sync_vec m_rootNodes;
169 small_event_vec m_pendingEvents;
170 small_event_vec m_maxReachedEvents;
171 overtick_map m_overticks;
172 ossia::flat_map<time_interval*, time_value> m_itv_end_map;
173 sync_set m_retry_syncs;
177 sync_set m_component_visit_cache;
178 std::vector<ossia::time_sync*> m_component_visit_stack;
183 struct quantized_interval
186 double quantization_ratio{};
190 ossia::small_vector<quantized_interval, 2> m_itv_to_start;
191 ossia::small_vector<quantized_interval, 2> m_itv_to_stop;
193 static void make_happen(
194 time_event& event, interval_set& started, interval_set& stopped,
197 static void make_dispose(time_event& event, interval_set& stopped);
199 sync_status process_this(
200 time_sync& node, small_event_vec& pendingEvents, small_event_vec& maxReachedEvents,
202 const token_request& tok);
204 sync_status trigger_sync(
205 time_sync& node, small_event_vec& pending, small_event_vec& maxReachedEv,
207 const token_request& req,
bool maxReached);
209 sync_status process_this_musical(
210 time_sync& node, small_event_vec& pendingEvents, small_event_vec& maxReachedEvents,
213 sync_status trigger_sync_musical(
214 time_sync& node, small_event_vec& maxReachedEvents,
ossia::time_value tick_offset,
215 const token_request& req,
bool maxReached)
noexcept;
218 quantify_time_sync(time_sync& sync,
const ossia::token_request& tk)
noexcept;
221 trigger_quantified_time_sync(time_sync& sync,
bool& maximalDurationReached)
noexcept;
The time_interval class.
Definition time_interval.hpp:49
time_sync is use to describe temporal structure to synchronize each attached #time_event evaluation.
Definition time_sync.hpp:103
OSSIA_INLINE constexpr auto min(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
min function tailored for values
Definition math.hpp:125
OSSIA_INLINE constexpr auto max(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
max function tailored for values
Definition math.hpp:96
The time_value class.
Definition ossia/editor/scenario/time_value.hpp:30