-
-
Notifications
You must be signed in to change notification settings - Fork 426
/
Copy pathInputContextImplementationBase.cs
53 lines (47 loc) · 1.6 KB
/
InputContextImplementationBase.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using Silk.NET.Windowing;
using Silk.NET.Windowing.Internals;
namespace Silk.NET.Input.Internals;
internal abstract class InputContextImplementationBase : IInputContext
{
protected InputContextImplementationBase(IView window)
{
Window = window;
if (window is ViewImplementationBase view)
{
view.ProcessEvents += ProcessEvents;
}
else
{
window.Update += Update;
}
}
private void Update(double delta) => ProcessEvents();
public void Dispose()
{
if (Window is ViewImplementationBase view)
{
view.ProcessEvents -= ProcessEvents;
}
else
{
Window.Update -= Update;
}
CoreDispose();
}
public abstract void CoreDispose();
public abstract void ProcessEvents();
public IView Window { get; }
public abstract nint Handle { get; }
public abstract IReadOnlyList<IGamepad> Gamepads { get; }
public abstract IReadOnlyList<IJoystick> Joysticks { get; }
public abstract IReadOnlyList<IKeyboard> Keyboards { get; }
public abstract IReadOnlyList<IMouse> Mice { get; }
public abstract IReadOnlyList<ITouchDevice> TouchDevices { get; }
public abstract ITouchDevice? PrimaryTouchDevice { get; }
public abstract IReadOnlyList<IInputDevice> OtherDevices { get; }
public abstract event Action<IInputDevice, bool>? ConnectionChanged;
}