aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/Input/GTK3/GTK3MouseDriver.cs
blob: 5962bcb25b6cf40276cb2cf1ac1dd7d03573eb60 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using Gdk;
using Gtk;
using System;
using System.Numerics;
using Size = System.Drawing.Size;

namespace Ryujinx.Input.GTK3
{
    public class GTK3MouseDriver : IGamepadDriver
    {
        private Widget _widget;
        private bool _isDisposed;

        public bool[] PressedButtons { get; }

        public Vector2 CurrentPosition { get; private set; }
        public Vector2 Scroll { get; private set; }

        public GTK3MouseDriver(Widget parent)
        {
            _widget = parent;

            _widget.MotionNotifyEvent += Parent_MotionNotifyEvent;
            _widget.ButtonPressEvent += Parent_ButtonPressEvent;
            _widget.ButtonReleaseEvent += Parent_ButtonReleaseEvent;
            _widget.ScrollEvent += Parent_ScrollEvent;

            PressedButtons = new bool[(int)MouseButton.Count];
        }


        [GLib.ConnectBefore]
        private void Parent_ScrollEvent(object o, ScrollEventArgs args)
        {
            Scroll = new Vector2((float)args.Event.X, (float)args.Event.Y);
        }

        [GLib.ConnectBefore]
        private void Parent_ButtonReleaseEvent(object o, ButtonReleaseEventArgs args)
        {
            PressedButtons[args.Event.Button - 1] = false;
        }

        [GLib.ConnectBefore]
        private void Parent_ButtonPressEvent(object o, ButtonPressEventArgs args)
        {
            PressedButtons[args.Event.Button - 1] = true;
        }

        [GLib.ConnectBefore]
        private void Parent_MotionNotifyEvent(object o, MotionNotifyEventArgs args)
        {
            if (args.Event.Device.InputSource == InputSource.Mouse)
            {
                CurrentPosition = new Vector2((float)args.Event.X, (float)args.Event.Y);
            }
        }

        public bool IsButtonPressed(MouseButton button)
        {
            return PressedButtons[(int)button];
        }

        public Size GetClientSize()
        {
            return new Size(_widget.AllocatedWidth, _widget.AllocatedHeight);
        }

        public string DriverName => "GTK3";

        public event Action<string> OnGamepadConnected
        {
            add { }
            remove { }
        }

        public event Action<string> OnGamepadDisconnected
        {
            add { }
            remove { }
        }

        public ReadOnlySpan<string> GamepadsIds => new[] { "0" };

        public IGamepad GetGamepad(string id)
        {
            return new GTK3Mouse(this);
        }

        public void Dispose()
        {
            if (_isDisposed)
            {
                return;
            }

            GC.SuppressFinalize(this);

            _isDisposed = true;

            _widget.MotionNotifyEvent -= Parent_MotionNotifyEvent;
            _widget.ButtonPressEvent -= Parent_ButtonPressEvent;
            _widget.ButtonReleaseEvent -= Parent_ButtonReleaseEvent;

            _widget = null;
        }
    }
}