2#include <ossia/dataflow/graph_node.hpp>
3#include <ossia/dataflow/node_process.hpp>
4#include <ossia/dataflow/port.hpp>
9class metronome final :
public ossia::nonowning_graph_node
12 metronome() { m_outlets.push_back(&value_out); }
14 ~metronome()
override =
default;
16 [[nodiscard]] std::string label() const noexcept
override {
return "metronome"; }
18 void set_curve(std::shared_ptr<curve<double, float>> b) { m_curve = std::move(b); }
23 void run(
const ossia::token_request& t, ossia::exec_state_facade e)
noexcept override
25 ossia::value_port& vp = *value_out;
26 const auto date = t.date;
27 const auto pos = t.position();
37 time_value cur{int64_t(m_curve->value_at(pos))};
41 if(date > t.prev_date)
43 time_value elapsed = date - t.prev_date;
44 if(m_metroPrevTick + elapsed < cur)
47 m_metroPrevTick += elapsed;
52 m_metroPrevTick = elapsed - cur;
55 t.physical_start(e.modelToSamples()));
58 else if(date < t.prev_date)
60 time_value elapsed = t.prev_date - date;
61 if(m_metroPrevTick + elapsed < cur)
64 m_metroPrevTick += elapsed;
69 m_metroPrevTick = elapsed - cur;
72 t.physical_start(e.modelToSamples()));
77 std::shared_ptr<curve<double, float>> m_curve;
78 ossia::value_outlet value_out;
79 time_value m_metroPrevTick{};
82class metronome_process final :
public ossia::node_process
85 using ossia::node_process::node_process;
86 void start()
override {
static_cast<ossia::nodes::metronome*
>(node.get())->reset(); }
The time_value class.
Definition ossia/editor/scenario/time_value.hpp:30