Skip to content

Commit c4aad01

Browse files
committedFeb 14, 2025
connection established!
1 parent 0a8c836 commit c4aad01

File tree

4 files changed

+40
-37
lines changed

4 files changed

+40
-37
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ obj/**
88
.vs/SmoothMouse/v17/.suo
99
.vs/SmoothMouse/v17/DocumentLayout.backup.json
1010
.vs/SmoothMouse/v17/DocumentLayout.json
11+
*.vsidx
12+
.vs/EyeGesturesPlugin/v17/DocumentLayout.json
13+
.vs/EyeGesturesPlugin/v17/DocumentLayout.backup.json
14+
.vs/EyeGesturesPlugin/v17/.suo
15+
.vs/EyeGesturesPlugin.csproj.dtbcache.json

‎SmoothMouse.csproj ‎EyeGesturesPlugin.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{53B53968-536D-47E8-9E91-7E05BE3BCCC0}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>SmoothMouse</RootNamespace>
11-
<AssemblyName>SmoothMouse</AssemblyName>
10+
<RootNamespace>EyeGestures</RootNamespace>
11+
<AssemblyName>EyeGestures</AssemblyName>
1212
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>

‎SmoothMouse.sln ‎EyeGesturesPlugin.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.28307.1259
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.13.35806.99 d17.13
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmoothMouse", "SmoothMouse.csproj", "{53B53968-536D-47E8-9E91-7E05BE3BCCC0}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EyeGesturesPlugin", "EyeGesturesPlugin.csproj", "{53B53968-536D-47E8-9E91-7E05BE3BCCC0}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

‎MouseInput.cs

+30-32
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using JuliusSweetland.OptiKey.Static;
1313
using System.Runtime.InteropServices;
1414

15-
namespace SmoothMouse
15+
namespace EyeGestures
1616
{
1717
public class MousePosition
1818
{
@@ -23,7 +23,7 @@ public class MousePosition
2323
}
2424

2525

26-
public class MouseInput : IPointService, IDisposable
26+
public class EyeGesturesInput : IPointService, IDisposable
2727
{
2828
#region Fields
2929
private event EventHandler<Timestamped<Point>> pointEvent;
@@ -37,16 +37,17 @@ public class MouseInput : IPointService, IDisposable
3737
#region Ctor
3838

3939
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
4141

42-
public MouseInput()
42+
public EyeGesturesInput()
4343
{
44-
pollWorker = new BackgroundWorker();
45-
pollWorker.DoWork += pollMouse;
46-
pollWorker.WorkerSupportsCancellation = true;
4744

4845
try
4946
{
47+
pollWorker = new BackgroundWorker();
48+
pollWorker.DoWork += pollMouse;
49+
pollWorker.WorkerSupportsCancellation = true;
50+
5051
tcpClient = new TcpClient();
5152
tcpClient.Connect(ServerIp, ServerPort);
5253
networkStream = tcpClient.GetStream();
@@ -108,38 +109,35 @@ private void pollMouse(object sender, DoWorkEventArgs e)
108109
{
109110
while (!pollWorker.CancellationPending)
110111
{
111-
lock (this)
112-
{
113-
114-
try{
115-
// Get latest mouse position from the socket
116-
var timeStamp = Time.HighResolutionUtcNow.ToUniversalTime();
117112

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();
122116

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);
125121

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);
129124

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;
132128

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));
138131

139-
// Sleep thread to avoid hot loop
140-
int delay = 30; // ms
141-
Thread.Sleep(delay);
142132
}
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);
143141
}
144142
}
145143
#endregion

0 commit comments

Comments
 (0)