-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathhanoi-arm.l
138 lines (124 loc) · 5.13 KB
/
hanoi-arm.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) 1987- JSK, The University of Tokyo. All Rights Reserved.
;;;
;;; This software is a collection of EusLisp code for robot applications,
;;; which has been developed by the JSK Laboratory for the IRT project.
;;; For more information on EusLisp and its application to the robotics,
;;; please refer to the following papers.
;;;
;;; Toshihiro Matsui
;;; Multithread object-oriented language euslisp for parallel and
;;; asynchronous programming in robotics
;;; Workshop on Concurrent Object-based Systems,
;;; IEEE 6th Symposium on Parallel and Distributed Processing, 1994
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions are met:
;;;
;;; * Redistributions of source code must retain the above copyright notice,
;;; this list of conditions and the following disclaimer.
;;; * Redistributions in binary form must reproduce the above copyright notice,
;;; this list of conditions and the following disclaimer in the documentation
;;; and/or other materials provided with the distribution.
;;; * Neither the name of JSK Robotics Laboratory, The University of Tokyo
;;; (JSK) nor the names of its contributors may be used to endorse or promote
;;; products derived from this software without specific prior written
;;; permission.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
;;; THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
;;; PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
;;; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
;;; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
;;; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
;;; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
;;; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
;;; ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;
(load "sample-arm-model.l")
(load "hanoi.l")
(defmethod cascaded-link
(:pick
(obj &rest args)
(send self :open-hand)
(prog1
(send* self :inverse-kinematics
obj
:link-list (send self :link-list (send self :end-coords :parent))
:move-target (send self :end-coords)
args)
(send self :close-hand obj))
)
(:place
(obj &rest args)
(prog1
(send* self :inverse-kinematics
obj
:link-list (send self :link-list (send self :end-coords :parent))
:move-target (send self :end-coords)
args)
(send self :open-hand)))
)
(defun move-disk (d from to) ;; re-define
(let (pav)
(if (eq from 'ground)
(move-on d (table-top to))
(progn
(move-arm d 'pick)
(move-arm (get (table-top to) :top-coords) 'place)))
(setf (get from :disks) (cdr (get from :disks)))
(setf (get to :disks) (cons d (get to :disks)))
))
(defun move-arm (to pick/place)
(let ()
(unless
(send *sarm* (if (eq pick/place 'pick) :pick :place)
to :rotation-axis :z
:obstacles
(remove-if #'(lambda (x) (< (norm (send x :difference-position to :translation-axis :z)) 50)) *tables*)
:stop 500
;; collision free motion generation stucks...
; :avoid-collision-distance 200 ;; 200
:avoid-collision-joint-gain 2.0 ;; 1.0
:avoid-collision-null-gain 1.0 ;; 1.0
:debug-view :no-message
:dump-command nil
)
(break))
(send *irtviewer* :draw-objects)))
;; sarm sample
(defun hanoi-arm nil
(send *irtviewer* :title "hanoi-arm")
(setq *sarm* (instance sarmclass :init))
(send *sarm* :reset-pose)
(objects (list *sarm*))
(send *sarm* :reset-pose)
(send *irtviewer* :draw-objects)
(send *sarm* :inverse-kinematics
(make-cascoords :pos #f(500 0 100))
:link-list (send *sarm* :link-list (send *sarm* :end-coords :parent))
:move-target (send *sarm* :end-coords)
:avoid-collision-null-gain 0.0 ;; 1.0
:rotation-axis t :debug-view nil :dump-command nil)
(send *sarm* :open-hand)
(send *irtviewer* :draw-objects)
(setq *table-a* (hanoi-table :name "table-a" :height 350 :pos #f(300 200 0)))
(setq *table-b* (hanoi-table :name "table-b" :height 400 :pos #f(350 0 0)))
(setq *table-c* (hanoi-table :name "table-b" :height 300 :pos #f(300 -200 0)))
(setq *tables* (list *table-a* *table-b* *table-c*))
(hanoi-init 3 *table-a*)
(setq *disk-1* (car *disks*))
(setq *disk-2* (cadr *disks*))
(setq *disk-3* (caddr *disks*))
(send *sarm* :reset-pose)
(objects (flatten (list *tables* *disks* *sarm*)))
(dolist (action (hanoi-program (length *disks*)))
(print action)
(eval action)
(unix:usleep (* 100 1000))
))
(unless (boundp '*irtviewer*) (make-irtviewer))
(warn "(hanoi-arm) ;; for arm solving hanoi tower~%")