-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrSimCommandsOutput.cs
109 lines (91 loc) · 3.68 KB
/
GrSimCommandsOutput.cs
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
using System;
using System.Collections.Concurrent;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using Google.Protobuf;
namespace RobocupSSLController
{
public class GrSimCommandsOutput : ICommandsOutput
{
public const int MaxQueueSize = 16;
public const int MaxPacketSize = 8192;
private readonly BlockingCollection<RobotCommand[]> _commandQueue = new BlockingCollection<RobotCommand[]>();
private readonly RobocupTeam _team;
private readonly byte[] _buffer = new byte[MaxPacketSize];
private readonly Socket _socket;
private readonly Thread _workerThread;
private readonly CancellationTokenSource _cancellationTokenSource;
private readonly CancellationToken _cancellationToken;
public GrSimCommandsOutput(RobocupTeam team, IPEndPoint endPoint)
{
_team = team;
_socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
_socket.Connect(endPoint);
_cancellationTokenSource = new CancellationTokenSource();
_cancellationToken = _cancellationTokenSource.Token;
_workerThread = new Thread(Worker);
_workerThread.Start();
}
public void PostCommands(RobotCommand[] commands)
{
// We (should) have only one reader and one writer
if (_commandQueue.Count >= MaxQueueSize)
return; // Drop exceeding commands
// ReSharper disable once MethodSupportsCancellation
_commandQueue.Add(commands);
}
public void Stop()
{
_cancellationTokenSource.Cancel();
_workerThread.Join();
_socket.Dispose();
}
private void Worker()
{
try
{
while (true)
{
var commands = _commandQueue.Take(_cancellationToken);
var grSimCommands = commands.Select((c, i) => new grSim_Robot_Command
{
Id = (uint) i,
Velnormal = (float) c.VelocityNormal,
Veltangent = (float) c.VelocityTangent,
Velangular = (float) c.AngularVelocity,
Kickspeedx = (float) c.KickSpeedX,
Kickspeedz = (float) c.KickSpeedZ,
Spinner = c.EnableDribbler,
Wheelsspeed = false,
});
var grSimCommandsPacket = new grSim_Commands
{
Isteamyellow = _team == RobocupTeam.Yellow,
Timestamp = ((DateTimeOffset) DateTime.UtcNow).ToUnixTimeSeconds(),
RobotCommands = {grSimCommands}
};
var grSimPacket = new grSim_Packet
{
Commands = grSimCommandsPacket
};
var cos = new CodedOutputStream(_buffer);
grSimPacket.WriteTo(cos);
var message = new ArraySegment<byte>(_buffer, 0, (int) cos.Position);
// ReSharper disable once MethodSupportsCancellation
_socket.SendAsync(message, SocketFlags.None, _cancellationToken).AsTask().GetAwaiter().GetResult();
}
}
catch (OperationCanceledException)
{
}
}
public void Dispose()
{
if (_workerThread?.IsAlive ?? false)
Stop();
}
}
}