OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
dmx_parameter.hpp
1#pragma once
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>
7
8#include <cstdint>
9
10namespace ossia::net
11{
12
13template <std::size_t I>
14struct artnet_in_visitor;
15template <std::size_t I>
16struct artnet_out_visitor;
17struct artnet_out_var_visitor;
18struct dmx_buffer;
19struct dmx_range
20{
21 int start{};
22 int num_bytes{};
23};
24class OSSIA_EXPORT dmx_parameter : public device_parameter
25{
26public:
27 dmx_parameter(
28 net::node_base& node, dmx_buffer& buffer, const unsigned int channel, int min = 0,
29 int max = 255, int8_t bytes = 1);
30 ~dmx_parameter();
31 int8_t m_bytes{};
32
33 uint32_t channel() const noexcept { return m_channel; }
34
35 void set_dmx_value(const uint8_t* start, const uint8_t* buffer_end);
36
37private:
38 void device_update_value() override;
39
40 dmx_buffer& m_buffer;
41 const uint32_t m_channel{};
42
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;
48};
49
50class OSSIA_EXPORT dmx_enum_parameter : public device_parameter
51{
52public:
53 dmx_enum_parameter(
54 net::node_base& node, dmx_parameter& p,
55 std::vector<std::pair<std::string, uint8_t>> values);
56 ~dmx_enum_parameter();
57
58private:
59 void device_update_value() override;
60
61 dmx_parameter& m_param;
62
63 ossia::flat_map<std::string, uint8_t> m_map;
64
65 friend struct artnet_enum_visitor;
66};
67
68class OSSIA_EXPORT dmx_range_parameter : public device_parameter
69{
70public:
71 dmx_range_parameter(
72 net::node_base& node, dmx_buffer& buffer, dmx_range range, int min = 0,
73 int max = 255);
74 ~dmx_range_parameter();
75
76 uint32_t channel() const noexcept { return m_channel; }
77
78private:
79 void device_update_value() override;
80
81 dmx_buffer& m_buffer;
82 int16_t m_bytes{};
83 int16_t m_channel{};
84
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;
90};
91
92/*
93struct artnet_range_element {
94 std::string name;
95 int min{0};
96 int max{512};
97};
98
99class artnet_range_parameter : public device_parameter
100{
101 using dmx_buffer = artnet_protocol::dmx_buffer;
102
103public:
104 artnet_range_parameter(
105 net::node_base& node, dmx_buffer& buffer, unsigned int channel, int min,
106int max); ~artnet_range_parameter();
107
108private:
109 void device_update_value() override;
110
111 dmx_buffer& m_buffer;
112 const unsigned int m_channel{};
113
114 friend struct artnet_range_visitor;
115};
116*/
117
118}
119#endif