Skip to content

Commit 9a4d49e

Browse files
committed
Provide hand functions on simulation mode
1 parent d987336 commit 9a4d49e

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

hrpsys_ros_bridge_tutorials/euslisp/hironxjsk-interface.l

+26-2
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,27 @@
254254
(defmethod hironxjsk-interface
255255
(:hand-angle-vector
256256
(hand &optional av (tm 1000))
257+
;; simulation mode
258+
(when (send self :simulation-modep)
259+
(flet ((get-joint-list (hand)
260+
(let (acc)
261+
(dotimes (i 4) (push (read-from-string (format nil "~a_joint~a" hand i)) acc))
262+
(nreverse acc))))
263+
(let ((joint-list (case hand
264+
(:hands (append (get-joint-list :rhand) (get-joint-list :lhand)))
265+
((:rhand :lhand) (get-joint-list hand))
266+
(t (error ";; No such hand: ~A~%." hand)))))
267+
(if (and (eql hand :hands) (= (length av) 4))
268+
(setq av (concatenate float-vector av av)))
269+
(return-from :hand-angle-vector
270+
(if av
271+
;; setjointangles
272+
(map nil #'(lambda (joint angle) (send robot joint :joint-angle angle))
273+
joint-list av)
274+
;; getjointangles
275+
(map float-vector #'(lambda (joint) (send robot joint :joint-angle))
276+
joint-list))))))
277+
;; real robot
257278
(if av
258279
;; setjointangles
259280
(let ((av-rad-list (map cons #'deg2rad av)))
@@ -286,11 +307,14 @@
286307
(* dir (send (send self :call-operation-return :servocontrollerservice_getjointangle :id id) :jv)))
287308
ids dirs))))
288309
(:hand-servo-on ()
289-
(send self :call-operation-return :servocontrollerservice_servoon))
310+
(unless (send self :simulation-modep)
311+
(send self :call-operation-return :servocontrollerservice_servoon)))
290312
(:hand-servo-off ()
291-
(send self :call-operation-return :servocontrollerservice_servooff))
313+
(unless (send self :simulation-modep)
314+
(send self :call-operation-return :servocontrollerservice_servooff)))
292315
(:hand-effort (&optional (hand :hands) effort)
293316
"effort is percentage or sequence of percentages"
317+
(if (send self :simulation-modep) (return-from :hand-effort nil))
294318
(let ((ids (case hand
295319
(:hands (list 2 3 4 5 6 7 8 9))
296320
(:rhand (list 2 3 4 5))

0 commit comments

Comments
 (0)