aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs
blob: 7fb72344c11991946c220dec1c736e92dbbf060b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;

namespace Ryujinx.Input.Motion.CemuHook.Protocol
{
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    struct ControllerDataRequest
    {
        public MessageType Type;
        public SubscriberType SubscriberType;
        public byte Slot;
        public Array6<byte> MacAddress;
    }

    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    public struct ControllerDataResponse
    {
        public SharedResponse Shared;
        public byte           Connected;
        public uint           PacketId;
        public byte           ExtraButtons;
        public byte           MainButtons;
        public ushort         PSExtraInput;
        public ushort         LeftStickXY;
        public ushort         RightStickXY;
        public uint           DPadAnalog;
        public ulong          MainButtonsAnalog;

        public Array6<byte> Touch1;
        public Array6<byte> Touch2;

        public ulong MotionTimestamp;
        public float AccelerometerX;
        public float AccelerometerY;
        public float AccelerometerZ;
        public float GyroscopePitch;
        public float GyroscopeYaw;
        public float GyroscopeRoll;
    }

    enum SubscriberType : byte
    {
        All,
        Slot,
        Mac
    }
}