12
12
using JuliusSweetland . OptiKey . Static ;
13
13
using System . Runtime . InteropServices ;
14
14
15
- namespace SmoothMouse
15
+ namespace EyeGestures
16
16
{
17
17
public class MousePosition
18
18
{
@@ -23,7 +23,7 @@ public class MousePosition
23
23
}
24
24
25
25
26
- public class MouseInput : IPointService , IDisposable
26
+ public class EyeGesturesInput : IPointService , IDisposable
27
27
{
28
28
#region Fields
29
29
private event EventHandler < Timestamped < Point > > pointEvent ;
@@ -37,16 +37,17 @@ public class MouseInput : IPointService, IDisposable
37
37
#region Ctor
38
38
39
39
private const string ServerIp = "127.0.0.1" ; // Replace with your server IP
40
- private const int ServerPort = 12345 ; // Replace with your server port
40
+ private const int ServerPort = 65432 ; // Replace with your server port
41
41
42
- public MouseInput ( )
42
+ public EyeGesturesInput ( )
43
43
{
44
- pollWorker = new BackgroundWorker ( ) ;
45
- pollWorker . DoWork += pollMouse ;
46
- pollWorker . WorkerSupportsCancellation = true ;
47
44
48
45
try
49
46
{
47
+ pollWorker = new BackgroundWorker ( ) ;
48
+ pollWorker . DoWork += pollMouse ;
49
+ pollWorker . WorkerSupportsCancellation = true ;
50
+
50
51
tcpClient = new TcpClient ( ) ;
51
52
tcpClient . Connect ( ServerIp , ServerPort ) ;
52
53
networkStream = tcpClient . GetStream ( ) ;
@@ -108,38 +109,35 @@ private void pollMouse(object sender, DoWorkEventArgs e)
108
109
{
109
110
while ( ! pollWorker . CancellationPending )
110
111
{
111
- lock ( this )
112
- {
113
-
114
- try {
115
- // Get latest mouse position from the socket
116
- var timeStamp = Time . HighResolutionUtcNow . ToUniversalTime ( ) ;
117
112
118
- // Read JSON data from the socket
119
- byte [ ] buffer = new byte [ 1024 ] ;
120
- int bytesRead = networkStream . Read ( buffer , 0 , buffer . Length ) ;
121
- string jsonData = Encoding . UTF8 . GetString ( buffer , 0 , bytesRead ) ;
113
+ try {
114
+ // Get latest mouse position from the socket
115
+ var timeStamp = Time . HighResolutionUtcNow . ToUniversalTime ( ) ;
122
116
123
- // Parse JSON data
124
- var mousePosition = JsonSerializer . Deserialize < MousePosition > ( jsonData ) ;
117
+ // Read JSON data from the socket
118
+ byte [ ] buffer = new byte [ 1024 ] ;
119
+ int bytesRead = networkStream . Read ( buffer , 0 , buffer . Length ) ;
120
+ string jsonData = Encoding . UTF8 . GetString ( buffer , 0 , bytesRead ) ;
125
121
126
- // Gets the absolute mouse position, relative to screen
127
- double x = mousePosition . x ;
128
- double y = mousePosition . y ;
122
+ // Parse JSON data
123
+ var mousePosition = JsonSerializer . Deserialize < MousePosition > ( jsonData ) ;
129
124
130
- // Emit a point event
131
- pointEvent ? . Invoke ( this , new Timestamped < Point > ( new Point ( ( int ) x , ( int ) y ) , timeStamp ) ) ;
125
+ // Gets the absolute mouse position, relative to screen
126
+ double x = mousePosition . x ;
127
+ double y = mousePosition . y ;
132
128
133
- }
134
- catch ( Exception ex )
135
- {
136
- PublishError ( this , ex ) ;
137
- }
129
+ // Emit a point event
130
+ pointEvent ? . Invoke ( this , new Timestamped < Point > ( new Point ( ( int ) x , ( int ) y ) , timeStamp ) ) ;
138
131
139
- // Sleep thread to avoid hot loop
140
- int delay = 30 ; // ms
141
- Thread . Sleep ( delay ) ;
142
132
}
133
+ catch ( Exception ex )
134
+ {
135
+ PublishError ( this , ex ) ;
136
+ }
137
+
138
+ // Sleep thread to avoid hot loop
139
+ int delay = 30 ; // ms
140
+ Thread . Sleep ( delay ) ;
143
141
}
144
142
}
145
143
#endregion
0 commit comments