-
Notifications
You must be signed in to change notification settings - Fork 0
/
NatNetClient_Old.py
444 lines (355 loc) · 17.8 KB
/
NatNetClient_Old.py
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import socket
import struct
from threading import Thread
def trace( *args ):
pass # print( "".join(map(str,args)) )
# Create structs for reading various object types to speed up parsing.
Vector3 = struct.Struct( '<fff' )
Quaternion = struct.Struct( '<ffff' )
FloatValue = struct.Struct( '<f' )
DoubleValue = struct.Struct( '<d' )
class NatNetClient:
callCounter = 0 #This is to keep track of number of calls to the call-back function which updates pose measurements of one copter at each function call.
def __init__( self ):
# Change this value to the IP address of the NatNet server.
self.serverIPAddress = "192.168.1.2"
# This should match the multicast address listed in Motive's streaming settings.
self.multicastAddress = "239.255.42.99"
# NatNet Command channel
self.commandPort = 1510
# NatNet Data channel
self.dataPort = 1511
# Set this to a callback method of your choice to receive per-rigid-body data at each frame.
self.rigidBodyListener = None
# NatNet stream version. This will be updated to the actual version the server is using during initialization.
self.__natNetStreamVersion = (3,0,0,0)
# Client/server message ids
NAT_PING = 0
NAT_PINGRESPONSE = 1
NAT_REQUEST = 2
NAT_RESPONSE = 3
NAT_REQUEST_MODELDEF = 4
NAT_MODELDEF = 5
NAT_REQUEST_FRAMEOFDATA = 6
NAT_FRAMEOFDATA = 7
NAT_MESSAGESTRING = 8
NAT_DISCONNECT = 9
NAT_UNRECOGNIZED_REQUEST = 100
# Create a data socket to attach to the NatNet stream
def __createDataSocket( self, port ):
result = socket.socket( socket.AF_INET, # Internet
socket.SOCK_DGRAM,
socket.IPPROTO_UDP) # UDP
result.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
result.bind( ('', port) )
mreq = struct.pack("4sl", socket.inet_aton(self.multicastAddress), socket.INADDR_ANY)
result.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, mreq)
return result
# Create a command socket to attach to the NatNet stream
def __createCommandSocket( self ):
result = socket.socket( socket.AF_INET, socket.SOCK_DGRAM )
result.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
result.bind( ('', 0) )
result.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
return result
# Unpack a rigid body object from a data packet
def __unpackRigidBody( self, data ):
offset = 0
# ID (4 bytes)
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "ID:", id )
# Position and orientation
pos1 = Vector3.unpack( data[offset:offset+12] )
offset += 12
trace( "\tPosition:", pos1[0],",", pos1[1],",", pos1[2] )
rot = Quaternion.unpack( data[offset:offset+16] )
offset += 16
trace( "\tOrientation:", rot[0],",", rot[1],",", rot[2],",", rot[3] )
# Marker count (4 bytes)
markerCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
markerCountRange = range( 0, markerCount )
trace( "\tMarker Count:", markerCount )
# Marker positions
for i in markerCountRange:
pos = Vector3.unpack( data[offset:offset+12] )
offset += 12
trace( "\tMarker", i, ":", pos[0],",", pos[1],",", pos[2] )
if( self.__natNetStreamVersion[0] >= 2 ):
# Marker ID's
for i in markerCountRange:
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "\tMarker ID", i, ":", id )
# Marker sizes
for i in markerCountRange:
size = FloatValue.unpack( data[offset:offset+4] )
offset += 4
trace( "\tMarker Size", i, ":", size[0] )
markerError, = FloatValue.unpack( data[offset:offset+4] )
offset += 4
trace( "\tMarker Error:", markerError )
# Version 2.6 and later
if( ( ( self.__natNetStreamVersion[0] == 2 ) and ( self.__natNetStreamVersion[1] >= 6 ) ) or self.__natNetStreamVersion[0] > 2 or self.__natNetStreamVersion[0] == 0 ):
param, = struct.unpack( 'h', data[offset:offset+2] )
trackingValid = ( param & 0x01 ) != 0
offset += 2
trace( "\tTracking Valid:", 'True' if trackingValid else 'False' )
# Send information to any listener.
if self.rigidBodyListener is not None:
self.rigidBodyListener( id, pos1, rot, trackingValid)
return offset
# Unpack a skeleton object from a data packet
def __unpackSkeleton( self, data ):
offset = 0
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "ID:", id )
rigidBodyCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Rigid Body Count:", rigidBodyCount )
for j in range( 0, rigidBodyCount ):
offset += self.__unpackRigidBody( data[offset:] )
return offset
# Unpack data from a motion capture frame message
def __unpackMocapData( self, data ):
trace( "Begin MoCap Frame\n-----------------\n" )
data = memoryview( data )
offset = 0
# Frame number (4 bytes)
frameNumber = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Frame #:", frameNumber )
# Marker set count (4 bytes)
markerSetCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Marker Set Count:", markerSetCount )
for i in range( 0, markerSetCount ):
# Model name
modelName, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( modelName ) + 1
trace( "Model Name:", modelName.decode( 'utf-8' ) )
# Marker count (4 bytes)
markerCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Marker Count:", markerCount )
for j in range( 0, markerCount ):
pos = Vector3.unpack( data[offset:offset+12] )
offset += 12
#trace( "\tMarker", j, ":", pos[0],",", pos[1],",", pos[2] )
# Unlabeled markers count (4 bytes)
unlabeledMarkersCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Unlabeled Markers Count:", unlabeledMarkersCount )
for i in range( 0, unlabeledMarkersCount ):
pos = Vector3.unpack( data[offset:offset+12] )
offset += 12
trace( "\tMarker", i, ":", pos[0],",", pos[1],",", pos[2] )
# Rigid body count (4 bytes)
rigidBodyCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Rigid Body Count:", rigidBodyCount )
for i in range( 0, rigidBodyCount ):
offset += self.__unpackRigidBody( data[offset:] )
# Version 2.1 and later
skeletonCount = 0
if( ( self.__natNetStreamVersion[0] == 2 and self.__natNetStreamVersion[1] > 0 ) or self.__natNetStreamVersion[0] > 2 ):
skeletonCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Skeleton Count:", skeletonCount )
for i in range( 0, skeletonCount ):
offset += self.__unpackSkeleton( data[offset:] )
# Labeled markers (Version 2.3 and later)
labeledMarkerCount = 0
if( ( self.__natNetStreamVersion[0] == 2 and self.__natNetStreamVersion[1] > 3 ) or self.__natNetStreamVersion[0] > 2 ):
labeledMarkerCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Labeled Marker Count:", labeledMarkerCount )
for i in range( 0, labeledMarkerCount ):
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
pos = Vector3.unpack( data[offset:offset+12] )
offset += 12
size = FloatValue.unpack( data[offset:offset+4] )
offset += 4
# Version 2.6 and later
if( ( self.__natNetStreamVersion[0] == 2 and self.__natNetStreamVersion[1] >= 6 ) or self.__natNetStreamVersion[0] > 2 or major == 0 ):
param, = struct.unpack( 'h', data[offset:offset+2] )
offset += 2
occluded = ( param & 0x01 ) != 0
pointCloudSolved = ( param & 0x02 ) != 0
modelSolved = ( param & 0x04 ) != 0
# Force Plate data (version 2.9 and later)
if( ( self.__natNetStreamVersion[0] == 2 and self.__natNetStreamVersion[1] >= 9 ) or self.__natNetStreamVersion[0] > 2 ):
forcePlateCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Force Plate Count:", forcePlateCount )
for i in range( 0, forcePlateCount ):
# ID
forcePlateID = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "Force Plate", i, ":", forcePlateID )
# Channel Count
forcePlateChannelCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
# Channel Data
for j in range( 0, forcePlateChannelCount ):
trace( "\tChannel", j, ":", forcePlateID )
forcePlateChannelFrameCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
for k in range( 0, forcePlateChannelFrameCount ):
forcePlateChannelVal = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
trace( "\t\t", forcePlateChannelVal )
# Latency
latency, = FloatValue.unpack( data[offset:offset+4] )
offset += 4
# Timecode
timecode = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
timecodeSub = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
# Timestamp (increased to double precision in 2.7 and later)
if( ( self.__natNetStreamVersion[0] == 2 and self.__natNetStreamVersion[1] >= 7 ) or self.__natNetStreamVersion[0] > 2 ):
timestamp, = DoubleValue.unpack( data[offset:offset+8] )
offset += 8
else:
timestamp, = FloatValue.unpack( data[offset:offset+4] )
offset += 4
# Frame parameters
param, = struct.unpack( 'h', data[offset:offset+2] )
isRecording = ( param & 0x01 ) != 0
trackedModelsChanged = ( param & 0x02 ) != 0
offset += 2
# Send information to any listener.
if self.newFrameListener is not None:
self.newFrameListener( frameNumber, markerSetCount, unlabeledMarkersCount, rigidBodyCount, skeletonCount,
labeledMarkerCount, latency, timecode, timecodeSub, timestamp, isRecording, trackedModelsChanged )
# Unpack a marker set description packet
def __unpackMarkerSetDescription( self, data ):
offset = 0
name, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( name ) + 1
trace( "Markerset Name:", name.decode( 'utf-8' ) )
markerCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
for i in range( 0, markerCount ):
name, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( name ) + 1
trace( "\tMarker Name:", name.decode( 'utf-8' ) )
return offset
# Unpack a rigid body description packet
def __unpackRigidBodyDescription( self, data ):
offset = 0
# Version 2.0 or higher
if( self.__natNetStreamVersion[0] >= 2 ):
name, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( name ) + 1
trace( "\tMarker Name:", name.decode( 'utf-8' ) )
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
parentID = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
timestamp = Vector3.unpack( data[offset:offset+12] )
offset += 12
return offset
# Unpack a skeleton description packet
def __unpackSkeletonDescription( self, data ):
offset = 0
name, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( name ) + 1
trace( "\tMarker Name:", name.decode( 'utf-8' ) )
id = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
rigidBodyCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
for i in range( 0, rigidBodyCount ):
offset += self.__unpackRigidBodyDescription( data[offset:] )
return offset
# Unpack a data description packet
def __unpackDataDescriptions( self, data ):
offset = 0
datasetCount = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
for i in range( 0, datasetCount ):
type = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
if( type == 0 ):
offset += self.__unpackMarkerSetDescription( data[offset:] )
elif( type == 1 ):
offset += self.__unpackRigidBodyDescription( data[offset:] )
elif( type == 2 ):
offset += self.__unpackSkeletonDescription( data[offset:] )
def __dataThreadFunction( self, socket ):
while True:
# Block for input
data, addr = socket.recvfrom( 32768 ) # 32k byte buffer size
if( len( data ) > 0 ):
self.__processMessage( data )
def __processMessage( self, data ):
trace( "Begin Packet\n------------\n" )
messageID = int.from_bytes( data[0:2], byteorder='little' )
trace( "Message ID:", messageID )
packetSize = int.from_bytes( data[2:4], byteorder='little' )
trace( "Packet Size:", packetSize )
offset = 4
if( messageID == self.NAT_FRAMEOFDATA ):
self.__unpackMocapData( data[offset:] )
elif( messageID == self.NAT_MODELDEF ):
self.__unpackDataDescriptions( data[offset:] )
elif( messageID == self.NAT_PINGRESPONSE ):
offset += 256 # Skip the sending app's Name field
offset += 4 # Skip the sending app's Version info
self.__natNetStreamVersion = struct.unpack( 'BBBB', data[offset:offset+4] )
offset += 4
elif( messageID == self.NAT_RESPONSE ):
if( packetSize == 4 ):
commandResponse = int.from_bytes( data[offset:offset+4], byteorder='little' )
offset += 4
else:
message, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( message ) + 1
trace( "Command response:", message.decode( 'utf-8' ) )
elif( messageID == self.NAT_UNRECOGNIZED_REQUEST ):
trace( "Received 'Unrecognized request' from server" )
elif( messageID == self.NAT_MESSAGESTRING ):
message, separator, remainder = bytes(data[offset:]).partition( b'\0' )
offset += len( message ) + 1
trace( "Received message from server:", message.decode( 'utf-8' ) )
else:
trace( "ERROR: Unrecognized packet type" )
trace( "End Packet\n----------\n" )
def sendCommand( self, command, commandStr, socket, address ):
# Compose the message in our known message format
if( command == self.NAT_REQUEST_MODELDEF or command == self.NAT_REQUEST_FRAMEOFDATA ):
packetSize = 0
commandStr = ""
elif( command == self.NAT_REQUEST ):
packetSize = len( commandStr ) + 1
elif( command == self.NAT_PING ):
commandStr = "Ping"
packetSize = len( commandStr ) + 1
data = command.to_bytes( 2, byteorder='little' )
data += packetSize.to_bytes( 2, byteorder='little' )
data += commandStr.encode( 'utf-8' )
data += b'\0'
socket.sendto( data, address )
def run( self):
# Create the data socket
self.dataSocket = self.__createDataSocket( self.dataPort )
if( self.dataSocket is None ):
print( "Could not open data channel" )
exit
# Create the command socket
self.commandSocket = self.__createCommandSocket()
if( self.commandSocket is None ):
print( "Could not open command channel" )
exit
# Create a separate thread for receiving data packets
dataThread = Thread( target = self.__dataThreadFunction, args = (self.dataSocket,))
dataThread.start()
# Create a separate thread for receiving command packets
commandThread = Thread( target = self.__dataThreadFunction, args = (self.commandSocket,))
commandThread.start()
self.sendCommand( self.NAT_REQUEST_MODELDEF, "", self.commandSocket, (self.serverIPAddress, self.commandPort) )