From ec691e0992b51a32d36bf2cb5afc7d45da87a556 Mon Sep 17 00:00:00 2001
From: t steve <pro@stevetonneau.fr>
Date: Tue, 16 May 2017 14:13:28 +0200
Subject: [PATCH] factorization du code de generation

---
 .../demos/siggraph_asia/bezier_traj.py        | 224 ++++++++++
 .../demos/siggraph_asia/hrp2_model.py         |  74 ++++
 .../demos/siggraph_asia/plan_execute.py       | 103 +++++
 .../demos/siggraph_asia/plane_hrp2_interp.py  | 408 +-----------------
 4 files changed, 423 insertions(+), 386 deletions(-)
 create mode 100644 script/scenarios/demos/siggraph_asia/bezier_traj.py
 create mode 100644 script/scenarios/demos/siggraph_asia/hrp2_model.py
 create mode 100644 script/scenarios/demos/siggraph_asia/plan_execute.py

diff --git a/script/scenarios/demos/siggraph_asia/bezier_traj.py b/script/scenarios/demos/siggraph_asia/bezier_traj.py
new file mode 100644
index 0000000..13811d7
--- /dev/null
+++ b/script/scenarios/demos/siggraph_asia/bezier_traj.py
@@ -0,0 +1,224 @@
+from gen_data_from_rbprm import *
+
+from hpp.corbaserver.rbprm.tools.com_constraints import get_com_constraint
+from hpp.gepetto import PathPlayer
+
+#computing com bounds 0 and 1
+def __get_com(robot, config):
+	save = robot.getCurrentConfig()
+	robot.setCurrentConfig(config)
+	com = robot.getCenterOfMass()
+	robot.setCurrentConfig(save)
+	return com
+
+from numpy import matrix, asarray
+from numpy.linalg import norm
+from spline import bezier
+
+
+def __curveToWps(curve):
+    return asarray(curve.waypoints().transpose()).tolist()
+
+
+def __Bezier(wps, init_acc = [0.,0.,0.], end_acc = [0.,0.,0.], init_vel = [0.,0.,0.], end_vel = [0.,0.,0.]):
+    c = curve_constraints();
+    c.init_vel = matrix(init_vel);
+    c.end_vel  = matrix(end_vel);
+    c.init_acc = matrix(init_acc);
+    c.end_acc  = matrix(end_acc);
+    matrix_bezier = matrix(wps).transpose()
+    curve =  bezier(matrix_bezier, c)
+    return __curveToWps(curve), curve
+    #~ return __curveToWps(bezier(matrix_bezier))
+
+allpaths = []
+
+def play_all_paths():
+    for _, pid in enumerate(allpaths):
+        ppl(pid)
+
+def play_all_paths_smooth():
+    for i, pid in enumerate(allpaths):
+        if i % 2 == 1 :
+            ppl(pid)
+            
+def play_all_paths_qs():
+    for i, pid in enumerate(allpaths):
+        if i % 2 == 0 :
+            ppl(pid)
+
+def test(stateid = 1, path = False, use_rand = False, just_one_curve = False, num_optim = 0, effector = False) :
+    com_1 = __get_com(fullBody, configs[stateid])
+    com_2 = __get_com(fullBody, configs[stateid+1])
+    createPtBox(viewer.client.gui, 0, com_1, 0.01, [0,1,1,1.])
+    createPtBox(viewer.client.gui, 0, com_2, 0.01, [0,1,1,1.])
+    data = gen_sequence_data_from_state(fullBody,stateid,configs, mu = 0.3)
+    c_bounds_1 = get_com_constraint(fullBody, stateid, configs[stateid], limbsCOMConstraints, interm = False)
+    c_bounds_mid = get_com_constraint(fullBody, stateid, configs[stateid], limbsCOMConstraints, interm = True)
+    c_bounds_2 = get_com_constraint(fullBody, stateid, configs[stateid+1], limbsCOMConstraints, interm = False)
+    success, c_mid_1, c_mid_2 = solve_quasi_static(data, c_bounds = [c_bounds_1, c_bounds_2, c_bounds_mid], use_rand = use_rand, mu = 0.3)
+    #~ success, c_mid_1, c_mid_2 = solve_dyn(data, c_bounds = [c_bounds_1, c_bounds_2, c_bounds_mid], use_rand = use_rand)
+    #~ success, c_mid_1, c_mid_2 = solve_dyn(data, c_bounds = [c_bounds_1, c_bounds_2])
+    
+    print "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ calling effector", effector
+    paths_ids = []
+    if path and success:
+        #~ fullBody.straightPath([c_mid_1[0].tolist(),c_mid_2[0].tolist()])
+        #~ fullBody.straightPath([c_mid_2[0].tolist(),com_2])
+        if just_one_curve:
+            print "just one curve"
+            bezier_0, curve = __Bezier([com_1,c_mid_1[0].tolist(),c_mid_2[0].tolist(),com_2])
+            createPtBox(viewer.client.gui, 0, c_mid_1[0].tolist(), 0.01, [0,1,0,1.])
+            createPtBox(viewer.client.gui, 0, c_mid_2[0].tolist(), 0.01, [0,1,0,1.])
+        
+            partions = [0.,0.3,0.7,1.]
+            p0 = fullBody.generateCurveTrajParts(bezier_0,partions)
+            #testing intermediary configurations 
+            print 'wtf', partions[1], " "
+            com_interm1 = curve(partions[1])
+            com_interm2 = curve(partions[2])
+            print "com_1", com_1
+            success_proj1 = project_com_colfree(fullBody, stateid  , asarray((com_interm1).transpose()).tolist()[0])
+            success_proj2 = project_com_colfree(fullBody, stateid+1, asarray((com_interm2).transpose()).tolist()[0])
+            
+            if not success_proj1:
+				print "proj 1 failed"
+				return False, c_mid_1, c_mid_2, paths_ids
+				
+            if not success_proj2:
+				print "proj 2 failed"
+				return False, c_mid_1, c_mid_2, paths_ids
+            
+            print "p0", p0
+            #~ pp.displayPath(p0+1)
+            #~ pp.displayPath(p0+2)
+            ppl.displayPath(p0)
+            #~ pp.displayPath(p0+1)
+            #~ pp.displayPath(p0+2)
+            #~ pp.displayPath(p0+3)
+            if(effector):
+				print "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ calling effector"
+				paths_ids = [int(el) for el in fullBody.effectorRRT(stateid,p0+1,p0+2,p0+3,num_optim)]
+            else:
+				paths_ids = [int(el) for el in fullBody.comRRTFromPos(stateid,p0+1,p0+2,p0+3,num_optim)]
+			
+        else:
+            
+            success_proj1 = project_com_colfree(fullBody, stateid  , c_mid_1[0].tolist())
+            success_proj2 = project_com_colfree(fullBody, stateid+1, c_mid_2[0].tolist())
+            
+            if not success_proj1:
+				print "proj 1 failed"
+				return False, c_mid_1, c_mid_2, paths_ids
+				
+            if not success_proj2:
+				print "proj 2 failed"
+				return False, c_mid_1, c_mid_2, paths_ids
+            
+            print "three curves"
+            bezier_0, curve = __Bezier([com_1,c_mid_1[0].tolist()]              , end_acc = c_mid_1[1].tolist() , end_vel = [0.,0.,0.])
+            bezier_1, curve = __Bezier([c_mid_1[0].tolist(),c_mid_2[0].tolist()], end_acc = c_mid_2[1].tolist(), init_acc = c_mid_1[1].tolist(), init_vel = [0.,0.,0.], end_vel = [0.,0.,0.])
+            bezier_2, curve = __Bezier([c_mid_2[0].tolist(),com_2]              , init_acc = c_mid_2[1].tolist(), init_vel = [0.,0.,0.])
+        
+            p0 = fullBody.generateCurveTraj(bezier_0)
+            print "p0", p0
+            fullBody.generateCurveTraj(bezier_1)
+            fullBody.generateCurveTraj(bezier_2)
+            ppl.displayPath(p0)
+            ppl.displayPath(p0+1)
+            ppl.displayPath(p0+2)
+            paths_ids = [int(el) for el in fullBody.comRRTFromPos(stateid,p0,p0+1,p0+2,num_optim)]
+        #~ paths_ids = []
+        global allpaths
+        allpaths += paths_ids[:-1]
+        #~ allpaths += [paths_ids[-1]]
+        #~ pp(paths_ids[-1])
+    
+        #~ return success, paths_ids, c_mid_1, c_mid_2
+    return success, c_mid_1, c_mid_2, paths_ids
+#~ data = gen_sequence_data_from_state(fullBody,3,configs)
+
+#~ pp(29),pp(9),pp(17)
+from hpp.corbaserver.rbprm.tools.path_to_trajectory import *
+
+
+def createPtBox(gui, winId, config, res = 0.01, color = [1,1,1,0.3]):
+	resolution = res
+	global scene
+	global b_id
+	boxname = scene+"/"+str(b_id)
+	b_id += 1
+	gui.addBox(boxname,resolution,resolution,resolution, color)
+	gui.applyConfiguration(boxname,[config[0],config[1],config[2],1,0,0,0])
+	gui.addSceneToWindow(scene,winId)
+	gui.refresh()
+
+def test_ineq(stateid, constraints, n_samples = 10, color=[1,1,1,1.]):
+	Kin = get_com_constraint(fullBody, stateid, configs[stateid], constraints, interm = False)
+	#~ print "kin ", Kin
+	#create box around current com
+	fullBody.setCurrentConfig(configs[stateid])
+	com = fullBody.getCenterOfMass()
+	bounds_c = flatten([[com[i]-1., com[i]+1.] for i in range(3)]) # arbitrary
+	for i in range(n_samples):
+		c = array([uniform(bounds_c[2*i], bounds_c[2*i+1]) for i in range(3)])
+		print "c: ", c
+		if(Kin[0].dot(c)<=Kin[1]).all():
+			print "boundaries satisfied"
+			createPtBox(viewer.client.gui, 0, c, 0.01, color)
+		
+#~ test_ineq(0,{ rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'}}, 1000, [1,0,0,1])
+#~ test_ineq(0,{ lLegId : {'file': "hrp2/LL_com.ineq", 'effector' : 'LLEG_JOINT5'}}, 1000, [0,1,0,1])
+#~ test_ineq(0,{ rLegId : {'file': "hrp2/RA_com.ineq", 'effector' : rHand}}, 1000, [0,0,1,1])
+#~ test_ineq(0,{ rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'}}, 1000, [0,1,1,1])
+#~ test_ineq(0, limbsCOMConstraints, 1000, [0,1,1,1])
+
+
+def gen(start = 0, len_con = 1, num_optim = 0, ine_curve =True, s = 1., effector = False):
+    n_fail = 0;
+    for i in range (start, start+len_con):
+		res =  test(i, True, False, ine_curve,num_optim, effector)
+		if(not res[0]):       
+			print "lp failed"
+			createPtBox(viewer.client.gui, 0, res[1][0], 0.01, [1,0,0,1.])
+			createPtBox(viewer.client.gui, 0, res[2][0], 0.01, [1,0,0,1.])
+			found = False
+			for j in range(1):
+				res = test(i, True, True, ine_curve, num_optim, effector)               
+				createPtBox(viewer.client.gui, 0, res[1][0], 0.01, [0,1,0,1.])
+				createPtBox(viewer.client.gui, 0, res[2][0], 0.01, [0,1,0,1.])
+				if res[0]:
+					break
+			if not res[0]:
+				n_fail += 1
+    print "n_fail ", n_fail
+        
+    a = gen_trajectory_to_play(fullBody, ppl, allpaths, flatten([[s*0.3, s* 0.6, s* 0.1] for _ in range(len(allpaths) / 3)]))
+    return a
+    
+viewer = None
+tp = None
+ppl = None
+fullBody = None
+b_id = 0
+scene = "bos"
+
+def clean_path():
+    global allpaths
+    allpaths = []
+
+
+def init_bezier_traj(robot, r, pplayer, qs, comConstraints):
+    global viewer
+    global tp
+    global ppl
+    global fullBody
+    global viewer
+    global configs
+    configs = qs
+    viewer = r
+    ppl = pplayer
+    fullBody = robot
+    viewer.client.gui.createScene(scene)
+    global limbsCOMConstraints
+    limbsCOMConstraints = comConstraints
diff --git a/script/scenarios/demos/siggraph_asia/hrp2_model.py b/script/scenarios/demos/siggraph_asia/hrp2_model.py
new file mode 100644
index 0000000..81297ba
--- /dev/null
+++ b/script/scenarios/demos/siggraph_asia/hrp2_model.py
@@ -0,0 +1,74 @@
+from hpp.corbaserver.rbprm.rbprmbuilder import Builder
+from hpp.corbaserver.rbprm.rbprmfullbody import FullBody
+from hpp.gepetto import Viewer
+
+import time
+
+
+
+packageName = "hrp2_14_description"
+meshPackageName = "hrp2_14_description"
+rootJointType = "freeflyer"
+##
+#  Information to retrieve urdf and srdf files.
+urdfName = "hrp2_14"
+urdfSuffix = "_reduced"
+srdfSuffix = ""
+
+fullBody = FullBody ()
+
+fullBody.loadFullBodyModel(urdfName, rootJointType, meshPackageName, packageName, urdfSuffix, srdfSuffix)
+fullBody.setJointBounds ("base_joint_xyz", [-0.135,2, -1, 1, 0, 2.2])
+
+
+
+#~ AFTER loading obstacles
+
+rLegId = 'hrp2_rleg_rom'
+rLeg = 'RLEG_JOINT0'
+rLegOffset = [0,0,-0.105]
+rLegNormal = [0,0,1]       
+rLegx = 0.09; rLegy = 0.05
+fullBody.addLimb(rLegId,rLeg,'',rLegOffset,rLegNormal, rLegx, rLegy, 10000, "manipulability", 0.1)
+                                                                                                
+lLegId = 'hrp2_lleg_rom'                                                                                
+lLeg = 'LLEG_JOINT0'                                                                     
+lLegx = 0.09; lLegy = 0.05      
+lLegOffset = [0,0,-0.105]
+lLegNormal = [0,0,1]                                                                  
+fullBody.addLimb(lLegId,lLeg,'',lLegOffset,rLegNormal, lLegx, lLegy, 10000, "manipulability", 0.1)
+
+#~ AFTER loading obstacles
+larmId = 'hrp2_larm_rom'
+larm = 'LARM_JOINT0'
+lHand = 'LARM_JOINT5'
+lArmOffset = [0,0,-0.1075]
+lArmNormal = [0,0,1]
+lArmx = 0.024; lArmy = 0.024
+#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF", False,grasp = True)
+#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF", True)
+#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF")
+fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF")
+
+
+rarmId = 'hrp2_rarm_rom'
+rarm = 'RARM_JOINT0'
+rHand = 'RARM_JOINT5'
+rArmOffset = [0,0,-0.1075]
+rArmNormal = [0,0,1]
+rArmx = 0.024; rArmy = 0.024
+#disabling collision for hook
+#~ fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF", False,grasp = True)
+#~ fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF", True)
+fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF")
+
+fullBody.runLimbSampleAnalysis(rLegId, "jointLimitsDistance", True)
+fullBody.runLimbSampleAnalysis(lLegId, "jointLimitsDistance", True)
+
+
+
+limbsCOMConstraints = { rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'},  
+						lLegId : {'file': "hrp2/LL_com.ineq", 'effector' : 'LLEG_JOINT5'},
+						rarmId : {'file': "hrp2/RA_com.ineq", 'effector' : rHand},
+						larmId : {'file': "hrp2/LA_com.ineq", 'effector' : lHand} }
+
diff --git a/script/scenarios/demos/siggraph_asia/plan_execute.py b/script/scenarios/demos/siggraph_asia/plan_execute.py
new file mode 100644
index 0000000..024d03c
--- /dev/null
+++ b/script/scenarios/demos/siggraph_asia/plan_execute.py
@@ -0,0 +1,103 @@
+from hpp.corbaserver.rbprm.rbprmbuilder import Builder
+from hpp.corbaserver.rbprm.rbprmfullbody import FullBody
+from hpp.gepetto import Viewer
+
+import time
+
+from hpp.corbaserver.rbprm.tools.cwc_trajectory_helper import step, clean,stats, saveAllData, play_traj
+from hpp.gepetto import PathPlayer
+
+def act(i, numOptim = 0, use_window = 0, friction = 0.5, optim_effectors = True, verbose = False, draw = False):
+	return step(fullBody, configs, i, numOptim, pp, limbsCOMConstraints, 0.4, optim_effectors = optim_effectors, time_scale = 20., useCOMConstraints = True, use_window = use_window,
+	verbose = verbose, draw = draw)
+
+def play(frame_rate = 1./24.):
+	play_traj(fullBody,pp,frame_rate)
+	
+def saveAll(name):
+	saveAllData(fullBody, r, name)
+	
+
+def initConfig():
+	r.client.gui.setVisibility("hrp2_14", "ON")
+	tp.cl.problem.selectProblem("default")
+	tp.r.client.gui.setVisibility("toto", "OFF")
+	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
+	r(q_init)
+	
+def endConfig():
+	r.client.gui.setVisibility("hrp2_14", "ON")
+	tp.cl.problem.selectProblem("default")
+	tp.r.client.gui.setVisibility("toto", "OFF")
+	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
+	r(q_goal)
+	
+
+def rootPath():
+	tp.cl.problem.selectProblem("rbprm_path")
+	r.client.gui.setVisibility("hrp2_14", "OFF")
+	tp.r.client.gui.setVisibility("toto", "OFF")
+	r.client.gui.setVisibility("hyq", "OFF")
+	r.client.gui.setVisibility("hrp2_trunk_flexible", "ON")
+	tp.pp(0)
+	r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
+	r.client.gui.setVisibility("hyq", "ON")
+	tp.cl.problem.selectProblem("default")
+	
+def genPlan(stepsize=0.1):
+	r.client.gui.setVisibility("hrp2_14", "ON")
+	tp.cl.problem.selectProblem("default")
+	tp.r.client.gui.setVisibility("toto", "OFF")
+	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
+	global configs
+	start = time.clock() 
+	configs = fullBody.interpolate(stepsize, 1, 2, True)
+	end = time.clock() 
+	print "Contact plan generated in " + str(end-start) + "seconds"
+	
+def contactPlan(step = 0.5):
+	r.client.gui.setVisibility("hyq", "ON")
+	tp.cl.problem.selectProblem("default")
+	tp.r.client.gui.setVisibility("toto", "OFF")
+	tp.r.client.gui.setVisibility("hyq_trunk_large", "OFF")
+	for i in range(0,len(configs)):
+		r(configs[i]);
+		time.sleep(step)	
+		
+		
+def a():
+	print "initial configuration"
+	initConfig()
+		
+def b():
+	print "end configuration"
+	endConfig()
+		
+def c():
+	print "displaying root path"
+	rootPath()
+	
+def d(step=0.1):
+	print "computing contact plan"
+	genPlan(step)
+	return configs
+	
+def e(step = 0.5):
+	print "displaying contact plan"
+	contactPlan(step)
+    
+r = None
+tp = None
+pp = None
+fullBody = None
+
+def init_plan_execute(robot, viewer, pathplanner, pplayer):
+    global r
+    global tp
+    global pp
+    global fullBody
+    r = viewer
+    tp = pathplanner
+    pp = pplayer
+    fullBody = robot
+    
diff --git a/script/scenarios/demos/siggraph_asia/plane_hrp2_interp.py b/script/scenarios/demos/siggraph_asia/plane_hrp2_interp.py
index 24fc694..4906521 100644
--- a/script/scenarios/demos/siggraph_asia/plane_hrp2_interp.py
+++ b/script/scenarios/demos/siggraph_asia/plane_hrp2_interp.py
@@ -1,83 +1,27 @@
 from hpp.corbaserver.rbprm.rbprmbuilder import Builder
 from hpp.corbaserver.rbprm.rbprmfullbody import FullBody
 from hpp.gepetto import Viewer
+from hpp.gepetto import PathPlayer
 
-import plane_hrp2_path as tp
+import plane_hrp2_path as path_planner
+import hrp2_model as model
+from hrp2_model import *
 import time
 
 
+ps = path_planner.ProblemSolver( model.fullBody )
+r = path_planner.Viewer (ps, viewerClient=path_planner.r.client)
+fullBody = model.fullBody
+pp = PathPlayer (fullBody.client.basic, r)
 
-packageName = "hrp2_14_description"
-meshPackageName = "hrp2_14_description"
-rootJointType = "freeflyer"
-##
-#  Information to retrieve urdf and srdf files.
-urdfName = "hrp2_14"
-urdfSuffix = "_reduced"
-srdfSuffix = ""
-
-fullBody = FullBody ()
-
-fullBody.loadFullBodyModel(urdfName, rootJointType, meshPackageName, packageName, urdfSuffix, srdfSuffix)
-fullBody.setJointBounds ("base_joint_xyz", [-0.135,2, -1, 1, 0, 2.2])
-
-
-ps = tp.ProblemSolver( fullBody )
-r = tp.Viewer (ps, viewerClient=tp.r.client)
-
-#~ AFTER loading obstacles
-
-rLegId = 'hrp2_rleg_rom'
-rLeg = 'RLEG_JOINT0'
-rLegOffset = [0,0,-0.105]
-rLegNormal = [0,0,1]       
-rLegx = 0.09; rLegy = 0.05
-fullBody.addLimb(rLegId,rLeg,'',rLegOffset,rLegNormal, rLegx, rLegy, 10000, "manipulability", 0.1)
-                                                                                                
-lLegId = 'hrp2_lleg_rom'                                                                                
-lLeg = 'LLEG_JOINT0'                                                                     
-lLegx = 0.09; lLegy = 0.05      
-lLegOffset = [0,0,-0.105]
-lLegNormal = [0,0,1]                                                                  
-fullBody.addLimb(lLegId,lLeg,'',lLegOffset,rLegNormal, lLegx, lLegy, 10000, "manipulability", 0.1)
-
-#~ AFTER loading obstacles
-larmId = 'hrp2_larm_rom'
-larm = 'LARM_JOINT0'
-lHand = 'LARM_JOINT5'
-lArmOffset = [0,0,-0.1075]
-lArmNormal = [0,0,1]
-lArmx = 0.024; lArmy = 0.024
-#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF", False,grasp = True)
-#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF", True)
-#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, "manipulability", 0.1, "_6_DOF")
-#~ fullBody.addLimb(larmId,larm,lHand,lArmOffset,lArmNormal, lArmx, lArmy, 10000, 0.05)
-
-
-rarmId = 'hrp2_rarm_rom'
-rarm = 'RARM_JOINT0'
-rHand = 'RARM_JOINT5'
-rArmOffset = [0,0,-0.1075]
-rArmNormal = [0,0,1]
-rArmx = 0.024; rArmy = 0.024
-#disabling collision for hook
-#~ fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF", False,grasp = True)
-#~ fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF", True)
-#~ fullBody.addLimb(rarmId,rarm,rHand,rArmOffset,rArmNormal, rArmx, rArmy, 10000, "manipulability", 0.1, "_6_DOF")
-
-fullBody.runLimbSampleAnalysis(rLegId, "jointLimitsDistance", True)
-fullBody.runLimbSampleAnalysis(lLegId, "jointLimitsDistance", True)
-
-#~ fullBody.client.basic.robot.setJointConfig('LARM_JOINT0',[1])
-#~ fullBody.client.basic.robot.setJointConfig('RARM_JOINT0',[-1])
+from plan_execute import a, b, c, d, e, init_plan_execute
+init_plan_execute(model.fullBody, r, path_planner, pp)
 
-q_0 = fullBody.getCurrentConfig(); 
+q_0 = model.fullBody.getCurrentConfig(); 
 #~ fullBody.createOctreeBoxes(r.client.gui, 1, rarmId, q_0,)
-q_init = fullBody.getCurrentConfig(); q_init[0:7] = tp.q_init[0:7]
-q_goal = fullBody.getCurrentConfig(); q_goal[0:7] = tp.q_goal[0:7]
+q_goal = model.fullBody.getCurrentConfig(); q_goal[0:7] = path_planner.q_goal[0:7]
 
 
-fullBody.setCurrentConfig (q_init)
 q_init =  [
         0, -0.82, 0.58, 1.0, 0.0 , 0.0, 0.0,                         	 # Free flyer 0-6
         0.0, 0.0, 0.0, 0.0,                                                  # CHEST HEAD 7-10
@@ -86,332 +30,24 @@ q_init =  [
         0.0, 0.0, -0.453785606, 0.872664626, -0.41887902, 0.0,               # LLEG       25-30
         0.0, 0.0, -0.453785606, 0.872664626, -0.41887902, 0.0,               # RLEG       31-36
         ]; r (q_init)
+        
+q_init[0:7] = path_planner.q_init[0:7]
 
-fullBody.setCurrentConfig (q_goal)
+model.fullBody.setCurrentConfig (q_goal)
 #~ r(q_goal)
-q_goal = fullBody.generateContacts(q_goal, [0,0,1])
-q_init = fullBody.generateContacts(q_init, [0,0,1])
+q_goal = model.fullBody.generateContacts(q_goal, [0,0,1])
+q_init = model.fullBody.generateContacts(q_init, [0,0,1])
 #~ r(q_goal)
 
 #~ fullBody.setStartState(q_init,[rLegId,lLegId,rarmId]) #,rarmId,larmId])
-fullBody.setStartState(q_init,[lLegId,rLegId]) #,rarmId,larmId])
+model.fullBody.setStartState(q_init,[model.lLegId,rLegId]) #,rarmId,larmId])
 fullBody.setEndState(q_goal,[rLegId,lLegId])#,rarmId,larmId])
-#~ 
-#~ configs = fullBody.interpolate(0.1)
-#~ configs = fullBody.interpolate(0.15)
-i = 0;
-configs = []
-#~ fullBody.draw(configs[i],r); i=i+1; i-1
-
-#~ r.loadObstacleModel ('hpp-rbprm-corba', "stair_bauzil", "contact")
-#~ fullBody.exportAll(r, configs, 'stair_bauzil_hrp2_robust_2');
-#~ fullBody.client.basic.robot.setJointConfig('LLEG_JOINT0',[-1])
-#~ q_0 = fullBody.getCurrentConfig(); 
-#~ fullBody.draw(q_0,r);
-#~ print(fullBody.client.rbprm.rbprm.getOctreeTransform(rarmId, q_0))
-#~ 
-#~ 
-#~ fullBody.client.basic.robot.setJointConfig('LLEG_JOINT0',[1])
-#~ q_0 = fullBody.getCurrentConfig(); 
-#~ fullBody.draw(q_0,r);
-#~ print(fullBody.client.rbprm.rbprm.getOctreeTransform(rarmId, q_0))
-#~ q_init = fullBody.generateContacts(q_init, [0,0,-1]); r (q_init)
-
-#~ f1 = open("secondchoice","w+")
-#~ f1 = open("hrp2_stair_not_robust_configs","w+")
-#~ f1.write(str(configs))
-#~ f1.close()
-
-limbsCOMConstraints = { rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'},  
-						lLegId : {'file': "hrp2/LL_com.ineq", 'effector' : 'LLEG_JOINT5'}, }
-						#~ rarmId : {'file': "hrp2/RA_com.ineq", 'effector' : rHand} }
-						#~ larmId : {'file': "hrp2/LA_com.ineq", 'effector' : lHand} }
-
-#~ fullBody.limbRRTFromRootPath(0,len(configs)-1,0,2)
-from hpp.corbaserver.rbprm.tools.cwc_trajectory_helper import step, clean,stats, saveAllData, play_traj
-from hpp.gepetto import PathPlayer
-pp = PathPlayer (fullBody.client.basic, r)
-
-def act(i, numOptim = 0, use_window = 0, friction = 0.5, optim_effectors = True, verbose = False, draw = False):
-	return step(fullBody, configs, i, numOptim, pp, limbsCOMConstraints, 0.4, optim_effectors = optim_effectors, time_scale = 20., useCOMConstraints = True, use_window = use_window,
-	verbose = verbose, draw = draw)
-
-def play(frame_rate = 1./24.):
-	play_traj(fullBody,pp,frame_rate)
-	
-def saveAll(name):
-	saveAllData(fullBody, r, name)
-	
-
-def initConfig():
-	r.client.gui.setVisibility("hrp2_14", "ON")
-	tp.cl.problem.selectProblem("default")
-	tp.r.client.gui.setVisibility("toto", "OFF")
-	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
-	r(q_init)
-	
-def endConfig():
-	r.client.gui.setVisibility("hrp2_14", "ON")
-	tp.cl.problem.selectProblem("default")
-	tp.r.client.gui.setVisibility("toto", "OFF")
-	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
-	r(q_goal)
-	
 
-def rootPath():
-	tp.cl.problem.selectProblem("rbprm_path")
-	r.client.gui.setVisibility("hrp2_14", "OFF")
-	tp.r.client.gui.setVisibility("toto", "OFF")
-	r.client.gui.setVisibility("hyq", "OFF")
-	r.client.gui.setVisibility("hrp2_trunk_flexible", "ON")
-	tp.pp(0)
-	r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
-	r.client.gui.setVisibility("hyq", "ON")
-	tp.cl.problem.selectProblem("default")
-	
-def genPlan(stepsize=0.1):
-	r.client.gui.setVisibility("hrp2_14", "ON")
-	tp.cl.problem.selectProblem("default")
-	tp.r.client.gui.setVisibility("toto", "OFF")
-	tp.r.client.gui.setVisibility("hrp2_trunk_flexible", "OFF")
-	global configs
-	start = time.clock() 
-	configs = fullBody.interpolate(stepsize, 1, 2, True)
-	end = time.clock() 
-	print "Contact plan generated in " + str(end-start) + "seconds"
-	
-def contactPlan(step = 0.5):
-	r.client.gui.setVisibility("hyq", "ON")
-	tp.cl.problem.selectProblem("default")
-	tp.r.client.gui.setVisibility("toto", "OFF")
-	tp.r.client.gui.setVisibility("hyq_trunk_large", "OFF")
-	for i in range(0,len(configs)):
-		r(configs[i]);
-		time.sleep(step)	
-		
-		
-def a():
-	print "initial configuration"
-	initConfig()
-		
-def b():
-	print "end configuration"
-	endConfig()
-		
-def c():
-	print "displaying root path"
-	rootPath()
-	
-def d(step=0.1):
-	print "computing contact plan"
-	genPlan(step)
-	
-def e(step = 0.5):
-	print "displaying contact plan"
-	contactPlan(step)
-	
-print "Root path generated in " + str(tp.t) + " ms."
-	
-d(0.05); e(0.01)
+configs = d(0.05); e(0.01)
 
-print "Root path generated in " + str(tp.t) + " ms."
-	
-#~ from gen_data_from_rbprm import *
-#~ 
-#~ for config in configs:
-	#~ r(config)
-	#~ print(fullBody.client.basic.robot.getComPosition())
-#~ 
-
-#~ gen_and_save(fullBody,configs, "stair_bauzil_contacts_data")
-#~ main()
-
-from gen_data_from_rbprm import *
-
-from hpp.corbaserver.rbprm.tools.com_constraints import get_com_constraint
-
-#computing com bounds 0 and 1
-def __get_com(robot, config):
-	save = robot.getCurrentConfig()
-	robot.setCurrentConfig(config)
-	com = robot.getCenterOfMass()
-	robot.setCurrentConfig(save)
-	return com
-
-from numpy import matrix, asarray
-from numpy.linalg import norm
-from spline import bezier
-
-
-def __curveToWps(curve):
-    return asarray(curve.waypoints().transpose()).tolist()
-
-
-def __Bezier(wps, init_acc = [0.,0.,0.], end_acc = [0.,0.,0.], init_vel = [0.,0.,0.], end_vel = [0.,0.,0.]):
-    c = curve_constraints();
-    c.init_vel = matrix(init_vel);
-    c.end_vel  = matrix(end_vel);
-    c.init_acc = matrix(init_acc);
-    c.end_acc  = matrix(end_acc);
-    matrix_bezier = matrix(wps).transpose()
-    curve =  bezier(matrix_bezier, c)
-    return __curveToWps(curve), curve
-    #~ return __curveToWps(bezier(matrix_bezier))
-
-allpaths = []
-
-def play_all_paths():
-    for _, pid in enumerate(allpaths):
-        pp(pid)
-
-def play_all_paths_smooth():
-    for i, pid in enumerate(allpaths):
-        if i % 2 == 1 :
-            pp(pid)
-            
-def play_all_paths_qs():
-    for i, pid in enumerate(allpaths):
-        if i % 2 == 0 :
-            pp(pid)
-
-def test(stateid = 1, path = False, use_rand = False, just_one_curve = False, num_optim = 0, effector = False) :
-    com_1 = __get_com(fullBody, configs[stateid])
-    com_2 = __get_com(fullBody, configs[stateid+1])
-    createPtBox(r.client.gui, 0, com_1, 0.01, [0,1,1,1.])
-    createPtBox(r.client.gui, 0, com_2, 0.01, [0,1,1,1.])
-    data = gen_sequence_data_from_state(fullBody,stateid,configs, mu = 0.3)
-    c_bounds_1 = get_com_constraint(fullBody, stateid, configs[stateid], limbsCOMConstraints, interm = False)
-    c_bounds_mid = get_com_constraint(fullBody, stateid, configs[stateid], limbsCOMConstraints, interm = True)
-    c_bounds_2 = get_com_constraint(fullBody, stateid, configs[stateid+1], limbsCOMConstraints, interm = False)
-    success, c_mid_1, c_mid_2 = solve_quasi_static(data, c_bounds = [c_bounds_1, c_bounds_2, c_bounds_mid], use_rand = use_rand, mu = 0.3)
-    #~ success, c_mid_1, c_mid_2 = solve_dyn(data, c_bounds = [c_bounds_1, c_bounds_2, c_bounds_mid], use_rand = use_rand)
-    #~ success, c_mid_1, c_mid_2 = solve_dyn(data, c_bounds = [c_bounds_1, c_bounds_2])
-    
-    paths_ids = []
-    if path and success:
-        #~ fullBody.straightPath([c_mid_1[0].tolist(),c_mid_2[0].tolist()])
-        #~ fullBody.straightPath([c_mid_2[0].tolist(),com_2])
-        if just_one_curve:
-            print "just one curve"
-            bezier_0, curve = __Bezier([com_1,c_mid_1[0].tolist(),c_mid_2[0].tolist(),com_2])
-            createPtBox(r.client.gui, 0, c_mid_1[0].tolist(), 0.01, [0,1,0,1.])
-            createPtBox(r.client.gui, 0, c_mid_2[0].tolist(), 0.01, [0,1,0,1.])
-        
-            partions = [0.,0.3,0.7,1.]
-            p0 = fullBody.generateCurveTrajParts(bezier_0,partions)
-            #testing intermediary configurations 
-            print 'wtf', partions[1], " "
-            com_interm1 = curve(partions[1])
-            com_interm2 = curve(partions[2])
-            print "com_1", com_1
-            success_proj1 = project_com_colfree(fullBody, stateid  , asarray((com_interm1).transpose()).tolist()[0])
-            success_proj2 = project_com_colfree(fullBody, stateid+1, asarray((com_interm2).transpose()).tolist()[0])
-            
-            if not success_proj1:
-				print "proj 1 failed"
-				return False, c_mid_1, c_mid_2, paths_ids
-				
-            if not success_proj2:
-				print "proj 2 failed"
-				return False, c_mid_1, c_mid_2, paths_ids
-            
-            print "p0", p0
-            #~ pp.displayPath(p0+1)
-            #~ pp.displayPath(p0+2)
-            pp.displayPath(p0)
-            #~ pp.displayPath(p0+1)
-            #~ pp.displayPath(p0+2)
-            #~ pp.displayPath(p0+3)
-            if(effector):
-				paths_ids = [int(el) for el in fullBody.effectorRRT(stateid,p0+1,p0+2,p0+3,num_optim)]
-            else:
-				paths_ids = [int(el) for el in fullBody.comRRTFromPos(stateid,p0+1,p0+2,p0+3,num_optim)]
-			
-        else:
-            print "just all curve"
-            bezier_0, curve = __Bezier([com_1,c_mid_1[0].tolist()]              , end_acc = c_mid_1[1].tolist() , end_vel = [0.,0.,0.])
-            bezier_1, curve = __Bezier([c_mid_1[0].tolist(),c_mid_2[0].tolist()], end_acc = c_mid_2[1].tolist(), init_acc = c_mid_1[1].tolist(), init_vel = [0.,0.,0.], end_vel = [0.,0.,0.])
-            bezier_2, curve = __Bezier([c_mid_2[0].tolist(),com_2]              , init_acc = c_mid_2[1].tolist(), init_vel = [0.,0.,0.])
-        
-            p0 = fullBody.generateCurveTraj(bezier_0)
-            print "p0", p0
-            fullBody.generateCurveTraj(bezier_1)
-            fullBody.generateCurveTraj(bezier_2)
-            pp.displayPath(p0)
-            pp.displayPath(p0+1)
-            pp.displayPath(p0+2)
-            paths_ids = [int(el) for el in fullBody.comRRTFromPos(stateid,p0,p0+1,p0+2,num_optim)]
-        #~ paths_ids = []
-        global allpaths
-        allpaths += paths_ids[:-1]
-        #~ allpaths += [paths_ids[-1]]
-        #~ pp(paths_ids[-1])
-    
-        #~ return success, paths_ids, c_mid_1, c_mid_2
-    return success, c_mid_1, c_mid_2, paths_ids
-#~ data = gen_sequence_data_from_state(fullBody,3,configs)
-
-#~ pp(29),pp(9),pp(17)
-from hpp.corbaserver.rbprm.tools.path_to_trajectory import *
-
-
-b_id = 0
-
-scene = "bos"
-r.client.gui.createScene(scene)
-def createPtBox(gui, winId, config, res = 0.01, color = [1,1,1,0.3]):
-	resolution = res
-	global scene
-	global b_id
-	boxname = scene+"/"+str(b_id)
-	b_id += 1
-	gui.addBox(boxname,resolution,resolution,resolution, color)
-	gui.applyConfiguration(boxname,[config[0],config[1],config[2],1,0,0,0])
-	gui.addSceneToWindow(scene,winId)
-	gui.refresh()
-
-def test_ineq(stateid, constraints, n_samples = 10, color=[1,1,1,1.]):
-	Kin = get_com_constraint(fullBody, stateid, configs[stateid], constraints, interm = False)
-	#~ print "kin ", Kin
-	#create box around current com
-	fullBody.setCurrentConfig(configs[stateid])
-	com = fullBody.getCenterOfMass()
-	bounds_c = flatten([[com[i]-1., com[i]+1.] for i in range(3)]) # arbitrary
-	for i in range(n_samples):
-		c = array([uniform(bounds_c[2*i], bounds_c[2*i+1]) for i in range(3)])
-		print "c: ", c
-		if(Kin[0].dot(c)<=Kin[1]).all():
-			print "boundaries satisfied"
-			createPtBox(r.client.gui, 0, c, 0.01, color)
-		
-#~ test_ineq(0,{ rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'}}, 1000, [1,0,0,1])
-#~ test_ineq(0,{ lLegId : {'file': "hrp2/LL_com.ineq", 'effector' : 'LLEG_JOINT5'}}, 1000, [0,1,0,1])
-#~ test_ineq(0,{ rLegId : {'file': "hrp2/RA_com.ineq", 'effector' : rHand}}, 1000, [0,0,1,1])
-#~ test_ineq(0,{ rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'}}, 1000, [0,1,1,1])
-#~ test_ineq(0, limbsCOMConstraints, 1000, [0,1,1,1])
-
-
-def gen(start = 0, len_con = 1, num_optim = 0, ine_curve =True, s = 1., effector = False):
-    n_fail = 0;
-    for i in range (start, start+len_con):
-		res =  test(i, True, False, ine_curve,num_optim)
-		if(not res[0]):       
-			print "lp failed"
-			createPtBox(r.client.gui, 0, res[1][0], 0.01, [1,0,0,1.])
-			createPtBox(r.client.gui, 0, res[2][0], 0.01, [1,0,0,1.])
-			found = False
-			for j in range(1):
-				res = test(i, True, True, ine_curve, num_optim)               
-				createPtBox(r.client.gui, 0, res[1][0], 0.01, [0,1,0,1.])
-				createPtBox(r.client.gui, 0, res[2][0], 0.01, [0,1,0,1.])
-				if res[0]:
-					break
-			if not res[0]:
-				n_fail += 1
-    print "n_fail ", n_fail
-        
-    a = gen_trajectory_to_play(fullBody, pp, allpaths, flatten([[s*0.3, s* 0.6, s* 0.1] for _ in range(len(allpaths) / 3)]))
-    return a
+from bezier_traj import *
+init_bezier_traj(model.fullBody, r, pp, configs, model.limbsCOMConstraints)
+#~ AFTER loading obstacles
 
 
 #~ test_ineq(0,{ rLegId : {'file': "hrp2/RL_com.ineq", 'effector' : 'RLEG_JOINT5'}}, 1000, [1,0,0,1])
-- 
GitLab