forked from Bediveren/RemoteControllerCsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerConnect.cs
More file actions
210 lines (166 loc) · 6.14 KB
/
ServerConnect.cs
File metadata and controls
210 lines (166 loc) · 6.14 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Runtime.Serialization.Formatters.Binary;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;
namespace RemoteControl
{
class ServerConnect
{
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 CommandShutdown = "CSD";
public const string CommandRightMouseDOWN = "RFD";
private const string CommandMiddleMouseUP = "MFU";
private const string CommandMiddleMouseDOWN = "MFD";
public static event EventHandler<ServerEventArgs> EventImageRecieved;
public static TcpClient server;
public static NetworkStream netStream;
public static BinaryReader binaryReader;
public static BinaryWriter binaryWriter;
public static Boolean isOnline = false;
public static Boolean sendMouseInput = true;
private static BinaryFormatter binaryFormatter;
public static Form parentForm;
public static Task listeningTask;
public static Task transmissionTask;
public static void Connect(string ipAdress, int port)
{
SetupFields(new ServerErrorHandler("Error connecting to server"), ipAdress, port);
}
private static void SetupFields(IErrorLogger log, string ipAdress, int port)
{
if (server != null) server.Close();
server = new TcpClient();
try
{
server.Connect(ipAdress, port);
netStream = server.GetStream();
binaryReader = new BinaryReader(netStream, Encoding.UTF8);
binaryWriter = new BinaryWriter(netStream, Encoding.UTF8);
binaryFormatter = new BinaryFormatter();
isOnline = true;
}
catch (Exception e)
{
log.HandleException(e);
}
}
public static void Listen()
{
listeningTask = new Task(() => RecieveTransmission());
transmissionTask = new Task(() => SendTransmission());
listeningTask.Start();
transmissionTask.Start();
listeningTask.Wait();
transmissionTask.Wait();
Disconnect(new ServerErrorHandler("Connection ending error."));
}
public static void RecieveTransmission()
{
if (server != null)
{
while (isOnline)
{
try
{
string message = binaryReader.ReadString();
switch (message)
{
case CommandImage:
RecieveImage();
break;
default:
break;
}
}
catch (Exception ex)
{
isOnline = false;
}
}
}
}
public static void SendTransmission()
{
if (sendMouseInput == true)
{
Point startingPoint = new Point(0, 0);
Point endingPoint = new Point(0, 0);
Point deltaPoint = new Point(0, 0);
while (isOnline)
{
if (sendMouseInput == true)
{
try
{
deltaPoint.X = endingPoint.X - startingPoint.X;
deltaPoint.Y = endingPoint.Y - startingPoint.Y;
startingPoint.X = Cursor.Position.X;
startingPoint.Y = Cursor.Position.Y;
binaryWriter.Write(CommandCursor);
binaryWriter.Write(deltaPoint.X);
binaryWriter.Write(deltaPoint.Y);
binaryWriter.Flush();
Thread.Sleep(30);
endingPoint.X = Cursor.Position.X;
endingPoint.Y = Cursor.Position.Y;
}
catch (Exception ex)
{
isOnline = false;
}
}
else
{
// Do nothing.
}
}
}
}
public static void Disconnect(IErrorLogger log)
{
isOnline = false;
try
{
binaryReader.Close();
binaryWriter.Close();
netStream.Close();
server.Close();
if (parentForm != null)
{
parentForm.Invoke((MethodInvoker)delegate () { parentForm.Close(); });
}
}
catch(Exception ex)
{
log.HandleException(ex);
}
}
private static void RecieveImage()
{
Image screenshot = (Image)DesktopScreen.DeserializeScreen(netStream);
OnEventImageRecieved(new ServerEventArgs() { Image = screenshot });
}
public static void OnEventImageRecieved(ServerEventArgs args)
{
if(EventImageRecieved != null)
{
EventImageRecieved(null, args);
}
}
}
}