#! /usr/bin/env python # -*- encoding: UTF-8 -*- """Example: Use transformInterpolations Method to play short animation""" import qi import argparse import sys import almath import motion def main(session): """ Use transformInterpolations Method to play short animation. This example will only work on Nao. """ # Get the services ALMotion & ALRobotPosture. motion_service = session.service("ALMotion") posture_service = session.service("ALRobotPosture") # end initialize proxy, begin go to Stand Init # Wake up robot motion_service.wakeUp() # Send robot to Stand Init posture_service.goToPosture("StandInit", 0.5) # end go to Stand Init, begin define control point effector = "Torso" frame = motion.FRAME_ROBOT axisMask = almath.AXIS_MASK_ALL useSensorValues = False currentTf = almath.Transform(motion_service.getTransform(effector, frame, useSensorValues)) # end define control point, begin define target # Define the changes relative to the current position dx = 0.03 # translation axis X (meter) dy = 0.03 # translation axis Y (meter) dwx = 8.0*almath.TO_RAD # rotation axis X (rad) dwy = 8.0*almath.TO_RAD # rotation axis Y (rad) # point 01 : forward / bend backward target1Tf = almath.Transform(currentTf.r1_c4, currentTf.r2_c4, currentTf.r3_c4) target1Tf *= almath.Transform(dx, 0.0, 0.0) target1Tf *= almath.Transform().fromRotY(-dwy) # point 02 : right / bend left target2Tf = almath.Transform(currentTf.r1_c4, currentTf.r2_c4, currentTf.r3_c4) target2Tf *= almath.Transform(0.0, -dy, 0.0) target2Tf *= almath.Transform().fromRotX(-dwx) # point 03 : backward / bend forward target3Tf = almath.Transform(currentTf.r1_c4, currentTf.r2_c4, currentTf.r3_c4) target3Tf *= almath.Transform(-dx, 0.0, 0.0) target3Tf *= almath.Transform().fromRotY(dwy) # point 04 : left / bend right target4Tf = almath.Transform(currentTf.r1_c4, currentTf.r2_c4, currentTf.r3_c4) target4Tf *= almath.Transform(0.0, dy, 0.0) target4Tf *= almath.Transform().fromRotX(dwx) path = [] path.append(list(target1Tf.toVector())) path.append(list(target2Tf.toVector())) path.append(list(target3Tf.toVector())) path.append(list(target4Tf.toVector())) path.append(list(target1Tf.toVector())) path.append(list(target2Tf.toVector())) path.append(list(target3Tf.toVector())) path.append(list(target4Tf.toVector())) path.append(list(target1Tf.toVector())) path.append(list(currentTf.toVector())) timeOneMove = 0.5 #seconds times = [] for i in range(len(path)): times.append((i+1)*timeOneMove) # end define target, begin call motion api # call the cartesian control API motion_service.transformInterpolations(effector, frame, path, axisMask, times) # Go to rest position motion_service.rest() if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--ip", type=str, default="127.0.0.1", help="Robot IP address. On robot or Local Naoqi: use '127.0.0.1'.") parser.add_argument("--port", type=int, default=9559, help="Naoqi port number") args = parser.parse_args() session = qi.Session() try: session.connect("tcp://" + args.ip + ":" + str(args.port)) except RuntimeError: print ("Can't connect to Naoqi at ip \"" + args.ip + "\" on port " + str(args.port) +".\n" "Please check your script arguments. Run with -h option for help.") sys.exit(1) main(session)