aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Hid/ControllerType.cs
blob: cf61b79fdee16a94c3f4c1d96d888fd3e036d525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Ryujinx.Common.Utilities;
using System;
using System.Text.Json.Serialization;

namespace Ryujinx.Common.Configuration.Hid
{
    // This enum was duplicated from Ryujinx.HLE.HOS.Services.Hid.PlayerIndex and should be kept identical
    [Flags]
    [JsonConverter(typeof(TypedStringEnumConverter<ControllerType>))]
    public enum ControllerType
    {
        None,
        ProController = 1 << 0,
        Handheld = 1 << 1,
        JoyconPair = 1 << 2,
        JoyconLeft = 1 << 3,
        JoyconRight = 1 << 4,
        Invalid = 1 << 5,
        Pokeball = 1 << 6,
        SystemExternal = 1 << 29,
        System = 1 << 30,
    }
}