Working on user ROSWrapper, QtWrapper and UserPlugin methods

This commit is contained in:
Olek Bojda 2018-09-17 19:41:31 +02:00
parent a49b3bac15
commit ec606731c4
6 changed files with 94 additions and 38 deletions

View File

@ -1,35 +1,7 @@
<launch>
<arg name="port" />
<arg name="vis" default="true"/>
<group if="$(arg vis)">
<!--<param name="robot_description" command="$(find xacro)/xacro &#45;&#45;inorder '$(find tracz_ground_station)/urdf/tracz.xacro'" />-->
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher" output="screen">
<param name="publish_frequency" type="double" value="50.0" />
</node>
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher">
<param name="use_gui" value="FALSE"/>
</node>
<node pkg="rqt_gui"
type="rqt_gui"
name="rqt_gui"
/>
</group>
<node pkg="tracz_ground_station"
type="tracz_core.py"
name="tracz_core"
output="screen"
required="true"
>
<param name="port" type="string" value="$(arg port)" />
</node>
<node pkg="rqt_gui"
type="rqt_gui"
name="rqt_gui"
args="--standalone safety_user_plugin"
/>
</launch>

View File

@ -13,4 +13,14 @@ class QtWrapper:
self.widget.textBrowser.setText('Sukces')
def connect_signals(self):
raise NotImplementedError
def select_robot(self,robot_id):
raise NotImplementedError
def update_robots_list_gui(self,robots_id_list):
raise NotImplementedError
def update_selected_robot_info(self,robot_info):
raise NotImplementedError

View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
class RobotInfo:
def __init__(self):
raise(NotImplementedError)

View File

@ -1,6 +1,16 @@
#!/usr/bin/env python
class ROSWrapper:
def __init__(self):
pass
pass
def setup_node(self):
raise NotImplementedError
def select_robot(self,robot_id):
raise NotImplementedError
return False
def set_robots_list_update_callback(self,callback_function):
self.robots_list_update_callback = callback_function

View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
class UserInfo:
def __init__(self):
self.selected_robot_id = None
self.robots_id_list = []
def select_robot(self,robot_id):
self.selected_robot_id = robot_id
def update_robots_list(self,robots_id_list):
self.robots_id_list = robots_id_list

View File

@ -9,6 +9,7 @@ from qt_gui.plugin import Plugin
from qt_wrapper import QtWrapper
from ros_wrapper import ROSWrapper
from user_widget import UserWidget
from user_info import UserInfo
class UserPlugin(Plugin):
@ -16,6 +17,48 @@ class UserPlugin(Plugin):
super(UserPlugin, self).__init__(context)
self.setObjectName('User Plugin - L1.5 safety system')
self.widget = UserWidget(context)
self.qt_wrapper = QtWrapper(self.widget)
self.ros_wrapper = ROSWrapper()
self._widget = UserWidget(context)
self._qt_wrapper = QtWrapper(self._widget)
self._ros_wrapper = ROSWrapper()
self._user_info = UserInfo()
# self.register_callback_functions()
# At the end!
# self._qt_wrapper.connect_signals()
# self._ros_wrapper.setup_node()
def register_callback_functions(self):
raise NotImplementedError
# self._ros_wrapper.set_robots_list_update_callback(self.handle_robots_list_update)
# ROS callback functions
def handle_robots_list_update(self,robots_id_list):
self._user_info.update_robots_list(robots_id_list)
self._qt_wrapper.update_robots_list_gui(robots_id_list)
def handle_selected_robot_info_update(self,robot_info):
self._qt_wrapper.update_selected_robot_info(self,robot_info)
def handle_master_stop_update(self,topic_state):
raise(NotImplementedError)
# Qt callback functions
def handle_robot_selection(self,robot_id):
if self._user_info.selected_robot_id is None:
if self._ros_wrapper.select_robot(robot_id) == True:
self._qt_wrapper.select_robot(robot_id)
self._user_info.select_robot(robot_id)
else:
# TODO - raise ROS subscriptions problem exception
raise NotImplementedError
else:
# TODO - raise user already selected robot exception
raise NotImplementedError
def handle_user_stop_button_update(self,button_state):
raise NotImplementedError
def handle_clutch_switch(self,clutch_state):
raise NotImplementedError