-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
pycozmo_replay.py
executable file
·97 lines (79 loc) · 3.15 KB
/
pycozmo_replay.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
#!/usr/bin/env python
from typing import Optional
import sys
import time
import dpkt
import pycozmo
class ReplayApp(object):
def __init__(self, log_messages: Optional[list] = None, replay_messages: Optional[list] = None):
self.log_messages = log_messages
self.frame_count = 0
self.pkts = []
self.first_ts = None
self.packet_id_filter = pycozmo.filter.Filter()
if replay_messages:
for i in replay_messages:
self.packet_id_filter.deny_ids(pycozmo.protocol_encoder.PACKETS_BY_GROUP[i])
def load_engine_pkts(self, fspec):
self.pkts = []
self.frame_count = 0
with open(fspec, "rb") as f:
self.first_ts = None
for ts, frame in dpkt.pcap.Reader(f):
if self.first_ts is None:
self.first_ts = ts
eth = dpkt.ethernet.Ethernet(frame)
if eth.type != dpkt.ethernet.ETH_TYPE_IP:
# Skip non-IP frames
continue
ip = eth.data
if ip.p != dpkt.ip.IP_PROTO_UDP:
# Skip non-UDP frames
continue
udp = ip.data
if udp.data[:7] != pycozmo.protocol_declaration.FRAME_ID:
# Skip non-Cozmo frames
continue
frame = pycozmo.Frame.from_bytes(udp.data)
if frame.type not in (pycozmo.protocol_declaration.FrameType.ENGINE,
pycozmo.protocol_declaration.FrameType.ENGINE_ACT):
# Skip non-engine frames
continue
for pkt in frame.pkts:
if pkt.type not in [pycozmo.protocol_declaration.PacketType.COMMAND,
pycozmo.protocol_declaration.PacketType.KEYFRAME]:
# Skip non-command packets
continue
self.pkts.append((ts, pkt))
self.frame_count += 1
print("Loaded {} engine packets from {} frames.".format(
len(self.pkts), self.frame_count))
def replay(self, fspec):
self.load_engine_pkts(fspec)
pycozmo.setup_basic_logging(log_level="DEBUG", protocol_log_level="DEBUG")
cli = pycozmo.Client(protocol_log_messages=self.log_messages)
cli.start()
cli.connect()
cli.wait_for_robot()
try:
for i, v in enumerate(self.pkts):
# if i < 1113:
# continue
ts, pkt = v
if self.packet_id_filter.filter(pkt.id):
continue
input()
print("{}, time={:.06f}".format(i, ts - self.first_ts))
cli.conn.send(pkt)
except KeyboardInterrupt:
pass
cli.disconnect()
time.sleep(1)
def main():
fspec = sys.argv[1]
log_messages = [] # "objects", "audio", "state"]
replay_messages = [] # "lights", "objects"]
app = ReplayApp(log_messages=log_messages, replay_messages=replay_messages)
app.replay(fspec)
if __name__ == '__main__':
main()