-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator_waypt_test2.py
57 lines (49 loc) · 2.49 KB
/
operator_waypt_test2.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
#! /usr/bin/env python
# Copyright 2017-2018 by University of Cincinnati
# Copyright 2014-2016 by California Institute of Technology
# All rights reserved. See LICENSE file at:
# https://github.com/cmcghan/rss_git_lite
"""
=== Summary of contents ===
"""
# Note that the following may only work if you run this python script from the directory in which it resides...
#
# This is done so you can use the import command on other/separate modules (this is adding it to the beginning like it should've automagically done for you); remember to create an empty __init__.py in the local directory for this to load properly
import os
import sys # for sys.exit() and sys.path.append()
sys.path.append(os.getcwd()) # modify sys.path to include current directory
sys.path.append(os.getcwd() + '/common') # modify sys.path to include ./common directory
import ws4pyRosMsgSrvFunctions_gen as ws4pyROS
import getConnectionIPaddress as gC
from time import sleep
if __name__ == '__main__':
connection = gC.getConnectionIPaddress()
try:
#
# example code for sending waypoints to pseudoDL
#
ws_waypts_out = ws4pyROS.PubClient(connection)
ws_waypts_out.connect('/operator/waypoint_list','nav_msgs/Path',ws4pyROS.pack_waypoints)
ws_dlmsg_in = ws4pyROS.SubClient(connection)
ws_dlmsg_in.connect('/simulator/delib_layer_msg','rss_msgs/DLmsg2',ws4pyROS.unpack_deliblayermsg2)
sleep(3)
waypoints_to_send = [ [8.0, -8.0] ]
ws_waypts_out.send_pieces([waypoints_to_send, 1]) # send waypoint(s), waytype=1 ([x,y] points, no set orientation)
while(1):
new_dlmsg = ws_dlmsg_in.copy_and_clear_received()
checkthis = new_dlmsg != None
if (checkthis): # new_dlmsg = [dlstatus, seq, some_constraint, some_flag]
[dlstatus, seq, some_constraint, some_flag] = new_dlmsg
if dlstatus == 900:
print("Received status 900, ready for next waypoint set!")
break
else:
print("Received message %s." % (str(dlstatus),))
else:
print("Still asleep / waiting for DL to respond...")
sleep(1)
waypoints_to_send = [ [1.0, 2.0], [7.0, 2.0], [6.0, 3.0], [-1.0, 2.0], [1.0, 2.0] ] # list of lists
ws_waypts_out.send_pieces([waypoints_to_send, 1]) # send waypoint(s), waytype=1 ([x,y] points, no set orientation)
sleep(3)
except KeyboardInterrupt:
ws_waypts_out.close()