f4e879a1e6
* common: Make BinaryReaderExtensions Read & Write take unamanged types This allows us to not rely on Marshal.PtrToStructure and Marshal.StructureToPtr for those. * common: Make MemoryHelper Read & Write takes unamanged types * Update Marshal.SizeOf => Unsafe.SizeOf when appropriate and start moving software applet to unmanaged types
47 lines
No EOL
1.3 KiB
C#
47 lines
No EOL
1.3 KiB
C#
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
|
|
}
|
|
} |