# -*- encoding: UTF-8 -*- ''' Whole Body Motion: kick ''' ''' This example is only compatible with NAO ''' import argparse import motion import time import almath from naoqi import ALProxy def computePath(proxy, effector, frame): dx = 0.05 # translation axis X (meters) dz = 0.05 # translation axis Z (meters) dwy = 5.0*almath.TO_RAD # rotation axis Y (radian) useSensorValues = False path = [] currentTf = [] try: currentTf = proxy.getTransform(effector, frame, useSensorValues) except Exception, errorMsg: print str(errorMsg) print "This example is not allowed on this robot." exit() # 1 targetTf = almath.Transform(currentTf) targetTf *= almath.Transform(-dx, 0.0, dz) targetTf *= almath.Transform().fromRotY(dwy) path.append(list(targetTf.toVector())) # 2 targetTf = almath.Transform(currentTf) targetTf *= almath.Transform(dx, 0.0, dz) path.append(list(targetTf.toVector())) # 3 path.append(currentTf) return path def main(robotIP, PORT=9559): ''' Example of a whole body kick Warning: Needs a PoseInit before executing Whole body balancer must be inactivated at the end of the script ''' motionProxy = ALProxy("ALMotion", robotIP, PORT) postureProxy = ALProxy("ALRobotPosture", robotIP, PORT) # Wake up robot motionProxy.wakeUp() # Send robot to Stand Init postureProxy.goToPosture("StandInit", 0.5) # Activate Whole Body Balancer isEnabled = True motionProxy.wbEnable(isEnabled) # Legs are constrained fixed stateName = "Fixed" supportLeg = "Legs" motionProxy.wbFootState(stateName, supportLeg) # Constraint Balance Motion isEnable = True supportLeg = "Legs" motionProxy.wbEnableBalanceConstraint(isEnable, supportLeg) # Com go to LLeg supportLeg = "LLeg" duration = 2.0 motionProxy.wbGoToBalance(supportLeg, duration) # RLeg is free stateName = "Free" supportLeg = "RLeg" motionProxy.wbFootState(stateName, supportLeg) # RLeg is optimized effector = "RLeg" axisMask = 63 frame = motion.FRAME_WORLD # Motion of the RLeg times = [2.0, 2.7, 4.5] path = computePath(motionProxy, effector, frame) motionProxy.transformInterpolations(effector, frame, path, axisMask, times) # Example showing how to Enable Effector Control as an Optimization isActive = False motionProxy.wbEnableEffectorOptimization(effector, isActive) # Com go to LLeg supportLeg = "RLeg" duration = 2.0 motionProxy.wbGoToBalance(supportLeg, duration) # RLeg is free stateName = "Free" supportLeg = "LLeg" motionProxy.wbFootState(stateName, supportLeg) effector = "LLeg" path = computePath(motionProxy, effector, frame) motionProxy.transformInterpolations(effector, frame, path, axisMask, times) time.sleep(1.0) # Deactivate Head tracking isEnabled = False motionProxy.wbEnable(isEnabled) # send robot to Pose Init postureProxy.goToPosture("StandInit", 0.3) # Go to rest position motionProxy.rest() if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("--ip", type=str, default="127.0.0.1", help="Robot ip address") parser.add_argument("--port", type=int, default=9559, help="Robot port number") args = parser.parse_args() main(args.ip, args.port)