3#include <ossia/detail/small_flat_map.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>
10typedef struct _SDL_GameController SDL_GameController;
13class joystick_protocol_manager;
14struct joystick_event_processor;
18 friend class joystick_protocol_manager;
19 friend struct joystick_event_processor;
22 game_controller_protocol(
23 ossia::net::network_context_ptr,
const int32_t joystick_id,
24 const int joystick_index);
25 game_controller_protocol(
const game_controller_protocol&) =
delete;
26 game_controller_protocol(game_controller_protocol&&) =
delete;
27 game_controller_protocol& operator=(
const game_controller_protocol&) =
delete;
28 game_controller_protocol& operator=(game_controller_protocol&&) =
delete;
29 ~game_controller_protocol()
override;
42 joystick_protocol_manager& m_manager;
43 joystick_event_processor& m_processor;
44 ossia::net::network_context_ptr m_ctx{};
48 ossia::small_flat_map<int, device_parameter*, 6> m_axis_parameters;
49 ossia::small_flat_map<int, device_parameter*, 32> m_button_parameters;
50 ossia::small_flat_map<int, device_parameter*, 10> m_sensor_parameters;
54 device_parameter* lo_freq{};
55 device_parameter* hi_freq{};
56 device_parameter* duration{};
61 device_parameter* left{};
62 device_parameter* right{};
63 device_parameter* duration{};
69 device_parameter* x{};
70 device_parameter* y{};
71 device_parameter* pressure{};
73 std::vector<finger> fingers;
75 ossia::small_flat_map<int, touchpad, 2> m_touchpads;
77 int32_t m_joystick_id{};
78 int32_t m_joystick_index{};
80 SDL_GameController* m_joystick{};
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