Source code for morse.actuators.keyboard
import logging; logger = logging.getLogger("morse." + __name__)
from morse.core import blenderapi
from morse.core.actuator import Actuator
from morse.helpers.components import add_data, add_property
[docs]class Keyboard(Actuator):
"""
This actuator does not require a connection with external data. It
simply responds to the keyboard arrows to generate movement
instructions for the robot attached.
When parented to a robot, the user can press the arrow keys to modify the
linear and angular velocities (V, W) of the robot.
:kbd:`Up` forward
:kbd:`Down` backwards
:kbd:`Left` turn left
:kbd:`Right` turn right
"""
_name = "Keyboard Actuator"
_short_desc="A 'fake' actuator that allows to move a robot from the keyboard."
add_property('_type', 'Position', 'ControlType', 'string',
"Kind of control to move the parent robot, in ['Position', "
"'Velocity', 'Differential']")
add_property('_speed', 1.0, 'Speed', 'float',
"Movement speed of the parent robot, in m/s")
def __init__(self, obj, parent=None):
logger.info('%s initialization' % obj.name)
# Call the constructor of the parent class
Actuator.__init__(self, obj, parent)
# Correct the speed considering the Blender clock
if self._type == 'Position':
self._speed = self._speed / self.frequency
logger.info('Component initialized')
[docs] def default_action(self):
""" Interpret keyboard presses and assign them to movement
for the robot."""
keyboard = blenderapi.keyboard()
is_actived = blenderapi.input_active()
# Reset movement variables
vx, vy, vz = 0.0, 0.0, 0.0
rx, ry, rz = 0.0, 0.0, 0.0
if keyboard.events[blenderapi.UPARROWKEY] == is_actived:
vx = self._speed
if keyboard.events[blenderapi.DOWNARROWKEY] == is_actived:
vx = -self._speed
if keyboard.events[blenderapi.LEFTARROWKEY] == is_actived:
rz = self._speed
if keyboard.events[blenderapi.RIGHTARROWKEY] == is_actived:
rz = -self._speed
if self._type == 'Position' or self._type == 'Velocity':
self.robot_parent.apply_speed(self._type, [vx, vy, vz], [rx, ry, rz / 2.0])
elif self._type == 'Differential':
self.robot_parent.apply_vw_wheels(vx, rz)