-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathparticle.l
More file actions
270 lines (256 loc) · 7.59 KB
/
particle.l
File metadata and controls
270 lines (256 loc) · 7.59 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; 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.
;;;
;;;
;;; Simulation Sample
;;; Soft-III 2009.11.16 M.I
;;;
(defparameter *gravity* (float-vector 0 0 -0.5))
(defmacro v-x (v) `(elt ,v 0))
(defmacro v-y (v) `(elt ,v 1))
(defmacro v-z (v) `(elt ,v 2))
;;;
(defclass particle
:super body
:slots (pname
mass
velocity
acceleration))
(defmethod particle
(:init (&key shape)
(if (derivedp shape body)
(replace-object self shape))
(setq pname nil
mass 1
velocity (float-vector 0 0 0)
acceleration *gravity*)
self)
(:pname (&optional v)
(if v (setq pname v))
pname)
(:mass (&optional v)
(if v (setq mass v)) mass)
(:position
(&optional v)
(when v
(send self :locate v :world)
(send self :bounce-check))
(send self :worldpos))
(:position-x
(&optional v)
(if v (setf (v-x (send self :position)) v))
(v-x (send self :position)))
(:position-y
(&optional v)
(if v (setf (v-y (send self :position)) v))
(v-y (send self :position)))
(:position-z
(&optional v)
(if v (setf (v-z (send self :position)) v))
(v-z (send self :position)))
(:velocity (&optional (v velocity))
(setq velocity v))
(:velocity-x (&optional (x (v-x velocity)))
(setf (elt velocity 0) x))
(:velocity-y (&optional (y (v-y velocity)))
(setf (v-y velocity) y))
(:velocity-z (&optional (z (v-z velocity)))
(setf (v-z velocity) z))
(:acceleration
(&optional (a acceleration))
(setq acceleration a))
;;;
(:new-position
() (send self :position
(v+ (send self :position)
(send self :velocity))))
(:new-velocity
() (send self :velocity
(v+ (send self :velocity)
(send self :acceleration))))
(:status
()
(format t
"~%~a: P:~a V:~a A:~a"
(send self :pname)
(send self :position)
(send self :velocity)
(send self :acceleration)))
(:bounce-x
nil
(send self :velocity-x
(- (send self :velocity-x))))
(:bounce-y
nil
(send self :velocity-y
(- (send self :velocity-y))))
(:bounce-z
nil
(send self :velocity-z
(- (send self :velocity-z))))
(:bounce-check
()
(let ((x (send self :position-x))
(y (send self :position-y))
(z (send self :position-z)))
(cond
((< x (v-x *space-box-min*))
(send self :position-x (v-x *space-box-min*))
(send self :bounce-x))
((> x (v-x *space-box-max*))
(send self :position-x (v-x *space-box-max*))
(send self :bounce-x)))
(cond
((< y (v-y *space-box-min*))
(send self :position-y (v-y *space-box-min*))
(send self :bounce-y))
((> y (v-y *space-box-max*))
(send self :position-y (v-y *space-box-max*))
(send self :bounce-y)))
(cond
((< z (v-z *space-box-min*))
(send self :position-z (v-z *space-box-min*))
(send self :bounce-z))
((> z (v-z *space-box-max*))
(send self :position-z (v-z *space-box-max*))
(send self :bounce-z)))
)
)
)
;;;
(defclass rocket
:super particle
:slots (motor-force))
;;;
(defmethod rocket
(:init (&rest args &key shape &allow-other-keys)
(send-super* :init args)
(setq motor-force (float-vector 0 0 0))
self)
(:motor
(&optional f)
(cond (f
(setq motor-force f)
(send self :acceleration
(v+ *gravity* motor-force)))
(t motor-force)))
(:status
()
(send-super :status)
(format t " M:~a" (send self :motor)))
)
;;;
(defun make-something (typ particle-info)
(let* ((b (make-gdome (make-icosahedron 15)))
x)
(setq x (instance typ :init :shape b))
(send x :pname (elt particle-info 0))
(send x :position (elt particle-info 1))
(send x :velocity (elt particle-info 2))
(if (> (length particle-info) 3)
(send x :set-color (elt particle-info 3))
(send x :set-color :white))
x)
)
(defun init (&optional (a 400))
(unless (boundp '*irtviewer*)
(make-irtviewer :hither 10))
(send *irtviewer* :title "particle")
(setq *space-box* (make-cube a a a))
(send *space-box* :set-color :yellow)
(gl::transparent *space-box* 0.2)
(setq *space-box-min*
(send (send *space-box* :box) :minpoint))
(setq *space-box-max*
(send (send *space-box* :box) :maxpoint))
(setq *p1*
(make-something
particle '(p1 #f(10 -40 30) #f(2 0 5))))
(setq *p2*
(make-something
particle '(p2 #f(-50 50 100) #f(0 4 1))))
(setq *p3*
(make-something
particle '(p3 #f(80 0 10) #f(-4 -5 4))))
(setq *r1*
(make-something
rocket '(r1 #f(20 0 30) #f(4 3 3) :blue)))
(setq *r2*
(make-something
rocket '(r2 #f(70 50 50) #f(2 -2 1) :blue)))
(setq *r3*
(make-something
rocket '(r3 #f(20 100 40) #f(4 0 2) :blue)))
(setq *particles*
(list *p1* *p2* *p3* *r1* *r2* *r3*))
(objects (append *particles* (list *space-box*)))
t)
(defun particle-update ()
(dolist (o *particles*)
(send o :new-position)
(send o :new-velocity)
(send *irtviewer* :draw-objects)
(x::window-main-one)))
(defun add-motor (r m)
(send r :set-color :yellow)
(send r :motor m)
(send r :status))
(defun all-status ()
(dolist (p *particles*) (send p :status)))
(defun test (&optional (cnt 100))
(do-until-key (particle-update)))
(defun sim-start ()
(setq *top-selector-interval* 0.01)
(pushnew 'particle-update *timer-job*)
t)
(defun sim-stop ()
(setq *top-selector-interval* 2)
(setq *timer-job*
(remove 'particle-update *timer-job*))
nil)
;;;
(defun particle ()
(format t "(init) (test) (sim-start) (sim-stop) (all-status)~%")
(init)
(test)
(sim-start)
(sim-stop)
(all-status))
(warn "(particle) ;; for particle simulation~%")