-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProtocolConstants.cs
More file actions
144 lines (133 loc) · 3.83 KB
/
Copy pathProtocolConstants.cs
File metadata and controls
144 lines (133 loc) · 3.83 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
namespace SwitchifyPc.Protocol;
public static class ProtocolConstants
{
public const int ProtocolVersion = 1;
public const int MaxTextLength = 2000;
public const int MaxTextStreamIdLength = 80;
public const int MaxTextStreamItems = 2000;
public const int MaxTextStreamChunkLength = 120;
public const int MaxPointerDelta = 500;
public const int MaxScrollDelta = 50;
public const int MaxShortcutKeys = 6;
public const int MaxErrorMessageLength = 300;
public static readonly IReadOnlySet<string> CommandTypes = new HashSet<string>(StringComparer.Ordinal)
{
"mouse.move",
"mouse.click",
"mouse.doubleClick",
"mouse.rightClick",
"mouse.scroll",
"mouse.repeat.start",
"mouse.repeat.stop",
"mouse.dragStart",
"mouse.dragEnd",
"keyboard.key",
"keyboard.modifierDown",
"keyboard.modifierUp",
"keyboard.shortcut",
"keyboard.typeText",
"keyboard.textStream.open",
"keyboard.textStream.char",
"keyboard.textStream.chunk",
"keyboard.textStream.key",
"keyboard.textStream.close",
"media.control",
"window.control",
"pointer.profile",
"connection.ping",
"connection.disconnecting"
};
public static readonly IReadOnlySet<string> PairingRequestTypes = new HashSet<string>(StringComparer.Ordinal)
{
"pairing.request"
};
public static readonly IReadOnlySet<string> NoAckControlCommandTypes = new HashSet<string>(StringComparer.Ordinal)
{
"mouse.move",
"mouse.click",
"mouse.doubleClick",
"mouse.rightClick",
"mouse.scroll",
"mouse.dragStart",
"mouse.dragEnd",
"keyboard.key",
"keyboard.modifierDown",
"keyboard.modifierUp",
"keyboard.shortcut",
"keyboard.typeText",
"keyboard.textStream.char",
"keyboard.textStream.key",
"media.control",
"window.control"
};
public static readonly IReadOnlySet<string> MouseButtons = new HashSet<string>(StringComparer.Ordinal)
{
"left",
"right",
"middle"
};
public static readonly IReadOnlySet<string> KeyboardKeys = new HashSet<string>(StringComparer.Ordinal)
{
"Backspace",
"Delete",
"Enter",
"Escape",
"Space",
"Tab",
"Meta",
"ArrowUp",
"ArrowDown",
"ArrowLeft",
"ArrowRight",
"Home",
"End",
"PageUp",
"PageDown",
"F1",
"F2",
"F3",
"F4",
"F5",
"F6",
"F7",
"F8",
"F9",
"F10",
"F11",
"F12"
};
public static readonly IReadOnlySet<string> ShortcutKeys = new HashSet<string>(
KeyboardKeys.Concat(["Ctrl", "Alt", "Shift", "Meta"]).Concat(Enumerable.Range('A', 26).Select(code => ((char)code).ToString())),
StringComparer.Ordinal);
public static readonly IReadOnlySet<string> ModifierKeys = new HashSet<string>(StringComparer.Ordinal)
{
"Ctrl",
"Alt",
"Shift",
"Meta"
};
public static readonly IReadOnlySet<string> MediaActions = new HashSet<string>(StringComparer.Ordinal)
{
"playPause",
"nextTrack",
"previousTrack",
"volumeUp",
"volumeDown",
"mute"
};
public static readonly IReadOnlySet<string> WindowControlActions = new HashSet<string>(StringComparer.Ordinal)
{
"switchNext",
"switchPrevious",
"taskView",
"showDesktop",
"closeFocused",
"minimizeFocused",
"maximizeFocused"
};
public static readonly IReadOnlySet<string> CommandResponseModes = new HashSet<string>(StringComparer.Ordinal)
{
"ack",
"none"
};
}