-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathServerHost.cs
More file actions
244 lines (199 loc) · 7.68 KB
/
ServerHost.cs
File metadata and controls
244 lines (199 loc) · 7.68 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Drawing;
using System.Runtime.Serialization.Formatters.Binary;
using System.Windows.Forms;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Drawing.Imaging;
using WindowsInput;
namespace RemoteControl
{
static class ServerHost
{
public const string CommandImage = "RECIEVEIMAGE";
public const string CommandCursor = "RECIEVECURSORPOSITION";
public const string CommandStop = "STOP";
public const string CommandKeyPressed = "KEY";
public const string CommandMousePressed = "MOUSE";
public const string CommandLeftMouseUP = "LFU";
public const string CommandLeftMouseDOWN = "LFD";
public const string CommandRightMouseUP = "RFU";
public const string CommandRightMouseDOWN = "RFD";
private const string CommandMiddleMouseUP = "MFU";
private const string CommandMiddleMouseDOWN = "MFD";
private const string CommandShutdown = "CSD";
private static IPAddress serverIP;
private static int serverPort;
private static TcpListener server;
private static TcpClient client;
public static Boolean isOnline = false;
private static Boolean connectionTerminated = true;
private static BinaryWriter binaryWriter;
private static BinaryReader binaryReader;
private static BinaryFormatter binaryFormatter;
private static NetworkStream netStream;
private static Task listeningTask;
private static Task transmissionTask;
public static Form parentForm;
public static event EventHandler<ServerEventArgs> EventCursorUpdate;
public static void Start()
{
serverIP = IPAddress.Any;
serverPort = 2000;
server = new TcpListener(serverIP, serverPort);
binaryFormatter = new BinaryFormatter();
isOnline = true;
connectionTerminated = false;
server.Start();
}
public static void Stop(IErrorLogger log)
{
if (connectionTerminated == false)
{
try
{
isOnline = false;
binaryWriter.Close();
binaryReader.Close();
netStream.Close();
client.Close();
server.Stop();
connectionTerminated = true;
if (parentForm != null)
{
parentForm.Invoke((MethodInvoker)delegate () { parentForm.Close(); });
}
}
catch (Exception ex)
{
log.HandleException(ex);
}
}
}
public static void AcceptClient()
{
client = server.AcceptTcpClient();
netStream = client.GetStream();
binaryReader = new BinaryReader(netStream, Encoding.UTF8);
binaryWriter = new BinaryWriter(netStream, Encoding.UTF8);
EventCursorUpdate += NewCursorPosition;
}
public static void Listen()
{
Task acceptClientTask = new Task(() => AcceptClient());
acceptClientTask.Start();
acceptClientTask.Wait();
listeningTask = new Task(() => RecieveTransmission());
transmissionTask = new Task(() => SendTransmission());
listeningTask.Start();
transmissionTask.Start();
listeningTask.Wait();
transmissionTask.Wait();
Stop(new ServerErrorHandler("Client disconnected."));
}
private static void RecieveTransmission()
{
while (isOnline)
{
try
{
string message = binaryReader.ReadString();
switch (message)
{
case CommandCursor:
UpdateCursorPosition();
break;
case CommandMousePressed:
InputMouseClicked(binaryReader.ReadString());
break;
case CommandKeyPressed:
InputKeyPressed(binaryReader.ReadInt32());
break;
case CommandShutdown:
Process.Start("shutdown", "/s /t 0");
break;
default:
break;
}
}
catch (Exception ex)
{
isOnline = false;
}
}
}
private static void NewCursorPosition(object source, ServerEventArgs args)
{
Cursor.Position = new Point(Cursor.Position.X + args.CursorPosition.X, Cursor.Position.Y + args.CursorPosition.Y);
}
private static void UpdateCursorPosition()
{
OnEventCursorUpdate(new ServerEventArgs() { CursorPosition = new Point(binaryReader.ReadInt32(), binaryReader.ReadInt32()) });
}
public static void OnEventCursorUpdate(ServerEventArgs args)
{
if (EventCursorUpdate != null)
{
EventCursorUpdate(null, args);
}
}
public static void InputMouseClicked(string mouse)
{
switch(mouse)
{
case CommandLeftMouseDOWN:
Mouse.mouse_event(Mouse.MOUSEEVENTF_LEFTDOWN, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
case CommandRightMouseDOWN:
Mouse.mouse_event(Mouse.MOUSEEVENTF_RIGHTDOWN, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
case CommandMiddleMouseDOWN:
Mouse.mouse_event(Mouse.MOUSEEVENTF_MIDDLEDOWN, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
case CommandLeftMouseUP:
Mouse.mouse_event(Mouse.MOUSEEVENTF_LEFTUP, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
case CommandRightMouseUP:
Mouse.mouse_event(Mouse.MOUSEEVENTF_RIGHTUP, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
case CommandMiddleMouseUP:
Mouse.mouse_event(Mouse.MOUSEEVENTF_MIDDLEUP, Cursor.Position.X, Cursor.Position.Y, 0, 0);
break;
default:
break;
}
}
public static void InputKeyPressed(Int32 key)
{
VirtualKeyCode keyCode = (VirtualKeyCode) key;
InputSimulator.SimulateKeyDown(keyCode);
}
private static void SendTransmission()
{
while (isOnline)
{
try
{
binaryWriter.Write(CommandImage);
binaryWriter.Flush();
Bitmap screenshot = DesktopScreen.CaptureScreen(true);
DesktopScreen.SerializeScreen(netStream, screenshot);
netStream.Flush();
}
catch(Exception e)
{
isOnline = false;
}
Thread.Sleep(10);
}
}
}
}