|
254 | 254 | (defmethod hironxjsk-interface
|
255 | 255 | (:hand-angle-vector
|
256 | 256 | (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 |
257 | 278 | (if av
|
258 | 279 | ;; setjointangles
|
259 | 280 | (let ((av-rad-list (map cons #'deg2rad av)))
|
|
286 | 307 | (* dir (send (send self :call-operation-return :servocontrollerservice_getjointangle :id id) :jv)))
|
287 | 308 | ids dirs))))
|
288 | 309 | (: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))) |
290 | 312 | (: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))) |
292 | 315 | (:hand-effort (&optional (hand :hands) effort)
|
293 | 316 | "effort is percentage or sequence of percentages"
|
| 317 | + (if (send self :simulation-modep) (return-from :hand-effort nil)) |
294 | 318 | (let ((ids (case hand
|
295 | 319 | (:hands (list 2 3 4 5 6 7 8 9))
|
296 | 320 | (:rhand (list 2 3 4 5))
|
|
0 commit comments