2#include <ossia/detail/config.hpp>
3#if defined(OSSIA_PROTOCOL_ARTNET)
4#include <ossia/detail/flat_map.hpp>
5#include <ossia/network/common/device_parameter.hpp>
6#include <ossia/protocols/artnet/artnet_protocol.hpp>
13template <std::
size_t I>
14struct artnet_in_visitor;
15template <std::
size_t I>
16struct artnet_out_visitor;
17struct artnet_out_var_visitor;
24class OSSIA_EXPORT dmx_parameter :
public device_parameter
28 net::node_base& node, dmx_buffer& buffer,
const unsigned int channel,
int min = 0,
29 int max = 255, int8_t bytes = 1);
33 uint32_t channel() const noexcept {
return m_channel; }
35 void set_dmx_value(
const uint8_t* start,
const uint8_t* buffer_end);
38 void device_update_value()
override;
41 const uint32_t m_channel{};
43 template <std::
size_t I>
44 friend struct artnet_in_visitor;
45 template <std::
size_t I>
46 friend struct artnet_out_visitor;
47 friend struct artnet_out_var_visitor;
50class OSSIA_EXPORT dmx_enum_parameter :
public device_parameter
54 net::node_base& node, dmx_parameter& p,
55 std::vector<std::pair<std::string, uint8_t>> values);
56 ~dmx_enum_parameter();
59 void device_update_value()
override;
61 dmx_parameter& m_param;
63 ossia::flat_map<std::string, uint8_t> m_map;
65 friend struct artnet_enum_visitor;
68class OSSIA_EXPORT dmx_range_parameter :
public device_parameter
72 net::node_base& node, dmx_buffer& buffer, dmx_range range,
int min = 0,
74 ~dmx_range_parameter();
76 uint32_t channel() const noexcept {
return m_channel; }
79 void device_update_value()
override;
85 template <std::
size_t I>
86 friend struct artnet_in_visitor;
87 template <std::
size_t I>
88 friend struct artnet_out_visitor;
89 friend struct artnet_out_var_visitor;