2#include <ossia/detail/hash_map.hpp>
3#include <ossia/detail/timer.hpp>
4#include <ossia/network/base/protocol.hpp>
5#include <ossia/network/common/complex_type.hpp>
6#include <ossia/network/common/device_parameter.hpp>
7#include <ossia/network/context_functions.hpp>
8#include <ossia/network/domain/domain.hpp>
9#include <ossia/protocols/wiimote/wiimote_parameter.hpp>
16#define MAX_WIIMOTES_COUNT 4
24 struct wiimote_parameters
26 ossia::hash_map<uint16_t, device_parameter*> button_parameters;
28 device_parameter* wiimote_axis{};
29 device_parameter* wiimote_gravity{};
31 device_parameter* nunchuk_button_c{};
32 device_parameter* nunchuk_button_z{};
34 device_parameter* nunchuk_axis{};
35 device_parameter* nunchuk_gravity{};
36 device_parameter* nunchuk_joystick{};
38 device_parameter* ir_cursor;
39 device_parameter* ir_detection;
43 wiimote_protocol(ossia::net::network_context_ptr ptr,
const bool enable_ir);
56 void create_wiimote_parameters(
const unsigned int wiimote_id);
57 void close_event_loop();
59 void process_events();
60 void handle_wiimote_event(
const unsigned int wiimote_id);
62 std::array<wiimote_parameters, MAX_WIIMOTES_COUNT> m_wiimotes_parameters;
67 const bool m_enable_ir{};
69 struct wiimote_t** m_wiimotes{};
70 unsigned int m_wiimote_count{};
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The protocol_base class.
Definition protocol.hpp:40
The value class.
Definition value.hpp:173
Full information about a parameter.
Definition parameter_data.hpp:61