rlm@73
|
1 #+title: First attempt at a creature!
|
rlm@73
|
2 #+author: Robert McIntyre
|
rlm@73
|
3 #+email: rlm@mit.edu
|
rlm@73
|
4 #+description:
|
rlm@73
|
5 #+keywords: simulation, jMonkeyEngine3, clojure
|
rlm@73
|
6 #+SETUPFILE: ../../aurellem/org/setup.org
|
rlm@73
|
7 #+INCLUDE: ../../aurellem/org/level-0.org
|
rlm@73
|
8
|
rlm@99
|
9 * objectives
|
rlm@103
|
10 - [X] get an overall bitmap-like image for touch
|
rlm@103
|
11 - [X] write code to visuliaze this bitmap
|
rlm@99
|
12 - [ ] directly change the UV-pixels to show touch sensor activation
|
rlm@99
|
13 - [ ] write an explination for why b&w bitmaps for senses is appropiate
|
rlm@99
|
14 - [ ] clean up touch code and write visulazation test
|
rlm@99
|
15 - [ ] do the same for eyes
|
rlm@99
|
16
|
rlm@73
|
17 * Intro
|
rlm@73
|
18 So far, I've made the following senses --
|
rlm@73
|
19 - Vision
|
rlm@73
|
20 - Hearing
|
rlm@73
|
21 - Touch
|
rlm@73
|
22 - Proprioception
|
rlm@73
|
23
|
rlm@73
|
24 And one effector:
|
rlm@73
|
25 - Movement
|
rlm@73
|
26
|
rlm@73
|
27 However, the code so far has only enabled these senses, but has not
|
rlm@73
|
28 actually implemented them. For example, there is still a lot of work
|
rlm@73
|
29 to be done for vision. I need to be able to create an /eyeball/ in
|
rlm@73
|
30 simulation that can be moved around and see the world from different
|
rlm@73
|
31 angles. I also need to determine weather to use log-polar or cartesian
|
rlm@73
|
32 for the visual input, and I need to determine how/wether to
|
rlm@73
|
33 disceritise the visual input.
|
rlm@73
|
34
|
rlm@73
|
35 I also want to be able to visualize both the sensors and the
|
rlm@104
|
36 effectors in pretty pictures. This semi-retarted creature will be my
|
rlm@73
|
37 first attempt at bringing everything together.
|
rlm@73
|
38
|
rlm@73
|
39 * The creature's body
|
rlm@73
|
40
|
rlm@73
|
41 Still going to do an eve-like body in blender, but due to problems
|
rlm@104
|
42 importing the joints, etc into jMonkeyEngine3, I'm going to do all
|
rlm@73
|
43 the connecting here in clojure code, using the names of the individual
|
rlm@73
|
44 components and trial and error. Later, I'll maybe make some sort of
|
rlm@73
|
45 creature-building modifications to blender that support whatever
|
rlm@73
|
46 discreitized senses I'm going to make.
|
rlm@73
|
47
|
rlm@73
|
48 #+name: body-1
|
rlm@73
|
49 #+begin_src clojure
|
rlm@73
|
50 (ns cortex.silly
|
rlm@73
|
51 "let's play!"
|
rlm@73
|
52 {:author "Robert McIntyre"})
|
rlm@73
|
53
|
rlm@73
|
54 ;; TODO remove this!
|
rlm@73
|
55 (require 'cortex.import)
|
rlm@73
|
56 (cortex.import/mega-import-jme3)
|
rlm@73
|
57 (use '(cortex world util body hearing touch vision))
|
rlm@73
|
58
|
rlm@73
|
59 (rlm.rlm-commands/help)
|
rlm@99
|
60 (import java.awt.image.BufferedImage)
|
rlm@99
|
61 (import javax.swing.JPanel)
|
rlm@99
|
62 (import javax.swing.SwingUtilities)
|
rlm@99
|
63 (import java.awt.Dimension)
|
rlm@99
|
64 (import javax.swing.JFrame)
|
rlm@99
|
65 (import java.awt.Dimension)
|
rlm@106
|
66 (import com.aurellem.capture.RatchetTimer)
|
rlm@99
|
67 (declare joint-create)
|
rlm@108
|
68 (use 'clojure.contrib.def)
|
rlm@73
|
69
|
rlm@100
|
70 (defn points->image
|
rlm@100
|
71 "Take a sparse collection of points and visuliaze it as a
|
rlm@100
|
72 BufferedImage."
|
rlm@102
|
73
|
rlm@102
|
74 ;; TODO maybe parallelize this since it's easy
|
rlm@102
|
75
|
rlm@100
|
76 [points]
|
rlm@106
|
77 (if (empty? points)
|
rlm@106
|
78 (BufferedImage. 1 1 BufferedImage/TYPE_BYTE_BINARY)
|
rlm@106
|
79 (let [xs (vec (map first points))
|
rlm@106
|
80 ys (vec (map second points))
|
rlm@106
|
81 x0 (apply min xs)
|
rlm@106
|
82 y0 (apply min ys)
|
rlm@106
|
83 width (- (apply max xs) x0)
|
rlm@106
|
84 height (- (apply max ys) y0)
|
rlm@106
|
85 image (BufferedImage. (inc width) (inc height)
|
rlm@119
|
86 BufferedImage/TYPE_INT_RGB)]
|
rlm@118
|
87 (dorun
|
rlm@118
|
88 (for [x (range (.getWidth image))
|
rlm@118
|
89 y (range (.getHeight image))]
|
rlm@119
|
90 (.setRGB image x y 0xFF0000)))
|
rlm@106
|
91 (dorun
|
rlm@106
|
92 (for [index (range (count points))]
|
rlm@106
|
93 (.setRGB image (- (xs index) x0) (- (ys index) y0) -1)))
|
rlm@106
|
94
|
rlm@106
|
95 image)))
|
rlm@100
|
96
|
rlm@101
|
97 (defn average [coll]
|
rlm@101
|
98 (/ (reduce + coll) (count coll)))
|
rlm@101
|
99
|
rlm@101
|
100 (defn collapse-1d
|
rlm@101
|
101 "One dimensional analogue of collapse"
|
rlm@101
|
102 [center line]
|
rlm@101
|
103 (let [length (count line)
|
rlm@101
|
104 num-above (count (filter (partial < center) line))
|
rlm@101
|
105 num-below (- length num-above)]
|
rlm@101
|
106 (range (- center num-below)
|
rlm@115
|
107 (+ center num-above))))
|
rlm@99
|
108
|
rlm@99
|
109 (defn collapse
|
rlm@99
|
110 "Take a set of pairs of integers and collapse them into a
|
rlm@99
|
111 contigous bitmap."
|
rlm@99
|
112 [points]
|
rlm@108
|
113 (if (empty? points) []
|
rlm@108
|
114 (let
|
rlm@108
|
115 [num-points (count points)
|
rlm@108
|
116 center (vector
|
rlm@108
|
117 (int (average (map first points)))
|
rlm@108
|
118 (int (average (map first points))))
|
rlm@108
|
119 flattened
|
rlm@108
|
120 (reduce
|
rlm@108
|
121 concat
|
rlm@108
|
122 (map
|
rlm@108
|
123 (fn [column]
|
rlm@108
|
124 (map vector
|
rlm@108
|
125 (map first column)
|
rlm@108
|
126 (collapse-1d (second center)
|
rlm@108
|
127 (map second column))))
|
rlm@108
|
128 (partition-by first (sort-by first points))))
|
rlm@108
|
129 squeezed
|
rlm@108
|
130 (reduce
|
rlm@108
|
131 concat
|
rlm@108
|
132 (map
|
rlm@108
|
133 (fn [row]
|
rlm@108
|
134 (map vector
|
rlm@108
|
135 (collapse-1d (first center)
|
rlm@108
|
136 (map first row))
|
rlm@108
|
137 (map second row)))
|
rlm@108
|
138 (partition-by second (sort-by second flattened))))
|
rlm@108
|
139 relocate
|
rlm@108
|
140 (let [min-x (apply min (map first squeezed))
|
rlm@108
|
141 min-y (apply min (map second squeezed))]
|
rlm@108
|
142 (map (fn [[x y]]
|
rlm@108
|
143 [(- x min-x)
|
rlm@108
|
144 (- y min-y)])
|
rlm@108
|
145 squeezed))]
|
rlm@115
|
146 relocate)))
|
rlm@83
|
147
|
rlm@83
|
148 (defn load-bullet []
|
rlm@84
|
149 (let [sim (world (Node.) {} no-op no-op)]
|
rlm@102
|
150 (doto sim
|
rlm@102
|
151 (.enqueue
|
rlm@102
|
152 (fn []
|
rlm@102
|
153 (.stop sim)))
|
rlm@102
|
154 (.start))))
|
rlm@83
|
155
|
rlm@73
|
156 (defn load-blender-model
|
rlm@73
|
157 "Load a .blend file using an asset folder relative path."
|
rlm@73
|
158 [^String model]
|
rlm@73
|
159 (.loadModel
|
rlm@73
|
160 (doto (asset-manager)
|
rlm@73
|
161 (.registerLoader BlenderModelLoader (into-array String ["blend"])))
|
rlm@73
|
162 model))
|
rlm@73
|
163
|
rlm@74
|
164 (defn meta-data [blender-node key]
|
rlm@74
|
165 (if-let [data (.getUserData blender-node "properties")]
|
rlm@74
|
166 (.findValue data key)
|
rlm@74
|
167 nil))
|
rlm@73
|
168
|
rlm@78
|
169 (defn blender-to-jme
|
rlm@78
|
170 "Convert from Blender coordinates to JME coordinates"
|
rlm@78
|
171 [#^Vector3f in]
|
rlm@78
|
172 (Vector3f. (.getX in)
|
rlm@78
|
173 (.getZ in)
|
rlm@78
|
174 (- (.getY in))))
|
rlm@74
|
175
|
rlm@79
|
176 (defn jme-to-blender
|
rlm@79
|
177 "Convert from JME coordinates to Blender coordinates"
|
rlm@79
|
178 [#^Vector3f in]
|
rlm@79
|
179 (Vector3f. (.getX in)
|
rlm@79
|
180 (- (.getZ in))
|
rlm@79
|
181 (.getY in)))
|
rlm@79
|
182
|
rlm@78
|
183 (defn joint-targets
|
rlm@78
|
184 "Return the two closest two objects to the joint object, ordered
|
rlm@78
|
185 from bottom to top according to the joint's rotation."
|
rlm@78
|
186 [#^Node parts #^Node joint]
|
rlm@78
|
187 (loop [radius (float 0.01)]
|
rlm@78
|
188 (let [results (CollisionResults.)]
|
rlm@78
|
189 (.collideWith
|
rlm@78
|
190 parts
|
rlm@78
|
191 (BoundingBox. (.getWorldTranslation joint)
|
rlm@78
|
192 radius radius radius)
|
rlm@78
|
193 results)
|
rlm@78
|
194 (let [targets
|
rlm@78
|
195 (distinct
|
rlm@78
|
196 (map #(.getGeometry %) results))]
|
rlm@78
|
197 (if (>= (count targets) 2)
|
rlm@78
|
198 (sort-by
|
rlm@79
|
199 #(let [v
|
rlm@79
|
200 (jme-to-blender
|
rlm@79
|
201 (.mult
|
rlm@79
|
202 (.inverse (.getWorldRotation joint))
|
rlm@79
|
203 (.subtract (.getWorldTranslation %)
|
rlm@79
|
204 (.getWorldTranslation joint))))]
|
rlm@79
|
205 (println-repl (.getName %) ":" v)
|
rlm@79
|
206 (.dot (Vector3f. 1 1 1)
|
rlm@79
|
207 v))
|
rlm@78
|
208 (take 2 targets))
|
rlm@78
|
209 (recur (float (* radius 2))))))))
|
rlm@74
|
210
|
rlm@87
|
211 (defn world-to-local
|
rlm@87
|
212 "Convert the world coordinates into coordinates relative to the
|
rlm@87
|
213 object (i.e. local coordinates), taking into account the rotation
|
rlm@87
|
214 of object."
|
rlm@87
|
215 [#^Spatial object world-coordinate]
|
rlm@87
|
216 (let [out (Vector3f.)]
|
rlm@88
|
217 (.worldToLocal object world-coordinate out) out))
|
rlm@87
|
218
|
rlm@96
|
219 (defn local-to-world
|
rlm@96
|
220 "Convert the local coordinates into coordinates into world relative
|
rlm@96
|
221 coordinates"
|
rlm@96
|
222 [#^Spatial object local-coordinate]
|
rlm@96
|
223 (let [world-coordinate (Vector3f.)]
|
rlm@96
|
224 (.localToWorld object local-coordinate world-coordinate)
|
rlm@96
|
225 world-coordinate))
|
rlm@96
|
226
|
rlm@87
|
227 (defmulti joint-dispatch
|
rlm@87
|
228 "Translate blender pseudo-joints into real JME joints."
|
rlm@88
|
229 (fn [constraints & _]
|
rlm@87
|
230 (:type constraints)))
|
rlm@87
|
231
|
rlm@87
|
232 (defmethod joint-dispatch :point
|
rlm@87
|
233 [constraints control-a control-b pivot-a pivot-b rotation]
|
rlm@87
|
234 (println-repl "creating POINT2POINT joint")
|
rlm@87
|
235 (Point2PointJoint.
|
rlm@87
|
236 control-a
|
rlm@87
|
237 control-b
|
rlm@87
|
238 pivot-a
|
rlm@87
|
239 pivot-b))
|
rlm@87
|
240
|
rlm@87
|
241 (defmethod joint-dispatch :hinge
|
rlm@87
|
242 [constraints control-a control-b pivot-a pivot-b rotation]
|
rlm@87
|
243 (println-repl "creating HINGE joint")
|
rlm@87
|
244 (let [axis
|
rlm@87
|
245 (if-let
|
rlm@87
|
246 [axis (:axis constraints)]
|
rlm@87
|
247 axis
|
rlm@87
|
248 Vector3f/UNIT_X)
|
rlm@87
|
249 [limit-1 limit-2] (:limit constraints)
|
rlm@87
|
250 hinge-axis
|
rlm@87
|
251 (.mult
|
rlm@87
|
252 rotation
|
rlm@87
|
253 (blender-to-jme axis))]
|
rlm@87
|
254 (doto
|
rlm@87
|
255 (HingeJoint.
|
rlm@87
|
256 control-a
|
rlm@87
|
257 control-b
|
rlm@87
|
258 pivot-a
|
rlm@87
|
259 pivot-b
|
rlm@87
|
260 hinge-axis
|
rlm@87
|
261 hinge-axis)
|
rlm@87
|
262 (.setLimit limit-1 limit-2))))
|
rlm@87
|
263
|
rlm@87
|
264 (defmethod joint-dispatch :cone
|
rlm@87
|
265 [constraints control-a control-b pivot-a pivot-b rotation]
|
rlm@87
|
266 (let [limit-xz (:limit-xz constraints)
|
rlm@87
|
267 limit-xy (:limit-xy constraints)
|
rlm@87
|
268 twist (:twist constraints)]
|
rlm@87
|
269
|
rlm@87
|
270 (println-repl "creating CONE joint")
|
rlm@87
|
271 (println-repl rotation)
|
rlm@87
|
272 (println-repl
|
rlm@87
|
273 "UNIT_X --> " (.mult rotation (Vector3f. 1 0 0)))
|
rlm@87
|
274 (println-repl
|
rlm@87
|
275 "UNIT_Y --> " (.mult rotation (Vector3f. 0 1 0)))
|
rlm@87
|
276 (println-repl
|
rlm@87
|
277 "UNIT_Z --> " (.mult rotation (Vector3f. 0 0 1)))
|
rlm@87
|
278 (doto
|
rlm@87
|
279 (ConeJoint.
|
rlm@87
|
280 control-a
|
rlm@87
|
281 control-b
|
rlm@87
|
282 pivot-a
|
rlm@87
|
283 pivot-b
|
rlm@87
|
284 rotation
|
rlm@87
|
285 rotation)
|
rlm@87
|
286 (.setLimit (float limit-xz)
|
rlm@87
|
287 (float limit-xy)
|
rlm@87
|
288 (float twist)))))
|
rlm@87
|
289
|
rlm@88
|
290 (defn connect
|
rlm@87
|
291 "here are some examples:
|
rlm@87
|
292 {:type :point}
|
rlm@87
|
293 {:type :hinge :limit [0 (/ Math/PI 2)] :axis (Vector3f. 0 1 0)}
|
rlm@87
|
294 (:axis defaults to (Vector3f. 1 0 0) if not provided for hinge joints)
|
rlm@87
|
295
|
rlm@89
|
296 {:type :cone :limit-xz 0]
|
rlm@89
|
297 :limit-xy 0]
|
rlm@89
|
298 :twist 0]} (use XZY rotation mode in blender!)"
|
rlm@87
|
299 [#^Node obj-a #^Node obj-b #^Node joint]
|
rlm@87
|
300 (let [control-a (.getControl obj-a RigidBodyControl)
|
rlm@87
|
301 control-b (.getControl obj-b RigidBodyControl)
|
rlm@87
|
302 joint-center (.getWorldTranslation joint)
|
rlm@87
|
303 joint-rotation (.toRotationMatrix (.getWorldRotation joint))
|
rlm@87
|
304 pivot-a (world-to-local obj-a joint-center)
|
rlm@87
|
305 pivot-b (world-to-local obj-b joint-center)]
|
rlm@89
|
306
|
rlm@87
|
307 (if-let [constraints
|
rlm@87
|
308 (map-vals
|
rlm@87
|
309 eval
|
rlm@87
|
310 (read-string
|
rlm@87
|
311 (meta-data joint "joint")))]
|
rlm@89
|
312 ;; A side-effect of creating a joint registers
|
rlm@89
|
313 ;; it with both physics objects which in turn
|
rlm@89
|
314 ;; will register the joint with the physics system
|
rlm@89
|
315 ;; when the simulation is started.
|
rlm@87
|
316 (do
|
rlm@87
|
317 (println-repl "creating joint between"
|
rlm@87
|
318 (.getName obj-a) "and" (.getName obj-b))
|
rlm@87
|
319 (joint-dispatch constraints
|
rlm@87
|
320 control-a control-b
|
rlm@87
|
321 pivot-a pivot-b
|
rlm@87
|
322 joint-rotation))
|
rlm@87
|
323 (println-repl "could not find joint meta-data!"))))
|
rlm@87
|
324
|
rlm@78
|
325 (defn assemble-creature [#^Node pieces joints]
|
rlm@78
|
326 (dorun
|
rlm@78
|
327 (map
|
rlm@78
|
328 (fn [geom]
|
rlm@78
|
329 (let [physics-control
|
rlm@78
|
330 (RigidBodyControl.
|
rlm@78
|
331 (HullCollisionShape.
|
rlm@78
|
332 (.getMesh geom))
|
rlm@78
|
333 (if-let [mass (meta-data geom "mass")]
|
rlm@78
|
334 (do
|
rlm@78
|
335 (println-repl
|
rlm@78
|
336 "setting" (.getName geom) "mass to" (float mass))
|
rlm@78
|
337 (float mass))
|
rlm@78
|
338 (float 1)))]
|
rlm@78
|
339
|
rlm@78
|
340 (.addControl geom physics-control)))
|
rlm@78
|
341 (filter #(isa? (class %) Geometry )
|
rlm@78
|
342 (node-seq pieces))))
|
rlm@78
|
343 (dorun
|
rlm@78
|
344 (map
|
rlm@78
|
345 (fn [joint]
|
rlm@78
|
346 (let [[obj-a obj-b]
|
rlm@78
|
347 (joint-targets pieces joint)]
|
rlm@88
|
348 (connect obj-a obj-b joint)))
|
rlm@78
|
349 joints))
|
rlm@78
|
350 pieces)
|
rlm@74
|
351
|
rlm@116
|
352 (declare blender-creature)
|
rlm@74
|
353
|
rlm@78
|
354 (def hand "Models/creature1/one.blend")
|
rlm@74
|
355
|
rlm@78
|
356 (def worm "Models/creature1/try-again.blend")
|
rlm@78
|
357
|
rlm@90
|
358 (def touch "Models/creature1/touch.blend")
|
rlm@90
|
359
|
rlm@90
|
360 (defn worm-model [] (load-blender-model worm))
|
rlm@90
|
361
|
rlm@80
|
362 (defn x-ray [#^ColorRGBA color]
|
rlm@80
|
363 (doto (Material. (asset-manager)
|
rlm@80
|
364 "Common/MatDefs/Misc/Unshaded.j3md")
|
rlm@80
|
365 (.setColor "Color" color)
|
rlm@80
|
366 (-> (.getAdditionalRenderState)
|
rlm@80
|
367 (.setDepthTest false))))
|
rlm@80
|
368
|
rlm@91
|
369 (defn colorful []
|
rlm@91
|
370 (.getChild (worm-model) "worm-21"))
|
rlm@90
|
371
|
rlm@90
|
372 (import jme3tools.converters.ImageToAwt)
|
rlm@90
|
373
|
rlm@90
|
374 (import ij.ImagePlus)
|
rlm@90
|
375
|
rlm@108
|
376 ;; Every Mesh has many triangles, each with its own index.
|
rlm@108
|
377 ;; Every vertex has its own index as well.
|
rlm@90
|
378
|
rlm@108
|
379 (defn tactile-sensor-image
|
rlm@110
|
380 "Return the touch-sensor distribution image in BufferedImage format,
|
rlm@110
|
381 or nil if it does not exist."
|
rlm@91
|
382 [#^Geometry obj]
|
rlm@110
|
383 (if-let [image-path (meta-data obj "touch")]
|
rlm@110
|
384 (ImageToAwt/convert
|
rlm@110
|
385 (.getImage
|
rlm@110
|
386 (.loadTexture
|
rlm@110
|
387 (asset-manager)
|
rlm@110
|
388 image-path))
|
rlm@110
|
389 false false 0)))
|
rlm@110
|
390
|
rlm@91
|
391 (import ij.process.ImageProcessor)
|
rlm@91
|
392 (import java.awt.image.BufferedImage)
|
rlm@91
|
393
|
rlm@92
|
394 (def white -1)
|
rlm@94
|
395
|
rlm@91
|
396 (defn filter-pixels
|
rlm@108
|
397 "List the coordinates of all pixels matching pred, within the bounds
|
rlm@108
|
398 provided. Bounds -> [x0 y0 width height]"
|
rlm@92
|
399 {:author "Dylan Holmes"}
|
rlm@108
|
400 ([pred #^BufferedImage image]
|
rlm@108
|
401 (filter-pixels pred image [0 0 (.getWidth image) (.getHeight image)]))
|
rlm@108
|
402 ([pred #^BufferedImage image [x0 y0 width height]]
|
rlm@108
|
403 ((fn accumulate [x y matches]
|
rlm@108
|
404 (cond
|
rlm@108
|
405 (>= y (+ height y0)) matches
|
rlm@108
|
406 (>= x (+ width x0)) (recur 0 (inc y) matches)
|
rlm@108
|
407 (pred (.getRGB image x y))
|
rlm@108
|
408 (recur (inc x) y (conj matches [x y]))
|
rlm@108
|
409 :else (recur (inc x) y matches)))
|
rlm@108
|
410 x0 y0 [])))
|
rlm@91
|
411
|
rlm@91
|
412 (defn white-coordinates
|
rlm@108
|
413 "Coordinates of all the white pixels in a subset of the image."
|
rlm@112
|
414 ([#^BufferedImage image bounds]
|
rlm@112
|
415 (filter-pixels #(= % white) image bounds))
|
rlm@112
|
416 ([#^BufferedImage image]
|
rlm@112
|
417 (filter-pixels #(= % white) image)))
|
rlm@108
|
418
|
rlm@108
|
419 (defn triangle
|
rlm@112
|
420 "Get the triangle specified by triangle-index from the mesh within
|
rlm@112
|
421 bounds."
|
rlm@108
|
422 [#^Mesh mesh triangle-index]
|
rlm@108
|
423 (let [scratch (Triangle.)]
|
rlm@108
|
424 (.getTriangle mesh triangle-index scratch)
|
rlm@108
|
425 scratch))
|
rlm@108
|
426
|
rlm@108
|
427 (defn triangle-vertex-indices
|
rlm@108
|
428 "Get the triangle vertex indices of a given triangle from a given
|
rlm@108
|
429 mesh."
|
rlm@108
|
430 [#^Mesh mesh triangle-index]
|
rlm@108
|
431 (let [indices (int-array 3)]
|
rlm@108
|
432 (.getTriangle mesh triangle-index indices)
|
rlm@108
|
433 (vec indices)))
|
rlm@108
|
434
|
rlm@108
|
435 (defn vertex-UV-coord
|
rlm@108
|
436 "Get the uv-coordinates of the vertex named by vertex-index"
|
rlm@108
|
437 [#^Mesh mesh vertex-index]
|
rlm@108
|
438 (let [UV-buffer
|
rlm@108
|
439 (.getData
|
rlm@108
|
440 (.getBuffer
|
rlm@108
|
441 mesh
|
rlm@108
|
442 VertexBuffer$Type/TexCoord))]
|
rlm@108
|
443 [(.get UV-buffer (* vertex-index 2))
|
rlm@108
|
444 (.get UV-buffer (+ 1 (* vertex-index 2)))]))
|
rlm@108
|
445
|
rlm@108
|
446 (defn triangle-UV-coord
|
rlm@108
|
447 "Get the uv-cooridnates of the triangle's verticies."
|
rlm@108
|
448 [#^Mesh mesh width height triangle-index]
|
rlm@108
|
449 (map (fn [[u v]] (vector (* width u) (* height v)))
|
rlm@108
|
450 (map (partial vertex-UV-coord mesh)
|
rlm@108
|
451 (triangle-vertex-indices mesh triangle-index))))
|
rlm@91
|
452
|
rlm@102
|
453 (defn same-side?
|
rlm@102
|
454 "Given the points p1 and p2 and the reference point ref, is point p
|
rlm@102
|
455 on the same side of the line that goes through p1 and p2 as ref is?"
|
rlm@102
|
456 [p1 p2 ref p]
|
rlm@91
|
457 (<=
|
rlm@91
|
458 0
|
rlm@91
|
459 (.dot
|
rlm@91
|
460 (.cross (.subtract p2 p1) (.subtract p p1))
|
rlm@91
|
461 (.cross (.subtract p2 p1) (.subtract ref p1)))))
|
rlm@91
|
462
|
rlm@108
|
463 (defn triangle-seq [#^Triangle tri]
|
rlm@108
|
464 [(.get1 tri) (.get2 tri) (.get3 tri)])
|
rlm@108
|
465
|
rlm@108
|
466 (defn vector3f-seq [#^Vector3f v]
|
rlm@108
|
467 [(.getX v) (.getY v) (.getZ v)])
|
rlm@108
|
468
|
rlm@108
|
469 (defn inside-triangle?
|
rlm@108
|
470 "Is the point inside the triangle?"
|
rlm@108
|
471 {:author "Dylan Holmes"}
|
rlm@108
|
472 [#^Triangle tri #^Vector3f p]
|
rlm@108
|
473 (let [[vert-1 vert-2 vert-3] (triangle-seq tri)]
|
rlm@108
|
474 (and
|
rlm@108
|
475 (same-side? vert-1 vert-2 vert-3 p)
|
rlm@108
|
476 (same-side? vert-2 vert-3 vert-1 p)
|
rlm@108
|
477 (same-side? vert-3 vert-1 vert-2 p))))
|
rlm@108
|
478
|
rlm@94
|
479 (defn triangle->matrix4f
|
rlm@108
|
480 "Converts the triangle into a 4x4 matrix: The first three columns
|
rlm@108
|
481 contain the vertices of the triangle; the last contains the unit
|
rlm@108
|
482 normal of the triangle. The bottom row is filled with 1s."
|
rlm@94
|
483 [#^Triangle t]
|
rlm@94
|
484 (let [mat (Matrix4f.)
|
rlm@94
|
485 [vert-1 vert-2 vert-3]
|
rlm@94
|
486 ((comp vec map) #(.get t %) (range 3))
|
rlm@94
|
487 unit-normal (do (.calculateNormal t)(.getNormal t))
|
rlm@94
|
488 vertices [vert-1 vert-2 vert-3 unit-normal]]
|
rlm@94
|
489 (dorun
|
rlm@94
|
490 (for [row (range 4) col (range 3)]
|
rlm@94
|
491 (do
|
rlm@94
|
492 (.set mat col row (.get (vertices row)col))
|
rlm@94
|
493 (.set mat 3 row 1))))
|
rlm@94
|
494 mat))
|
rlm@94
|
495
|
rlm@94
|
496 (defn triangle-transformation
|
rlm@94
|
497 "Returns the affine transformation that converts each vertex in the
|
rlm@94
|
498 first triangle into the corresponding vertex in the second
|
rlm@94
|
499 triangle."
|
rlm@94
|
500 [#^Triangle tri-1 #^Triangle tri-2]
|
rlm@94
|
501 (.mult
|
rlm@94
|
502 (triangle->matrix4f tri-2)
|
rlm@94
|
503 (.invert (triangle->matrix4f tri-1))))
|
rlm@94
|
504
|
rlm@108
|
505 (defn point->vector2f [[u v]]
|
rlm@108
|
506 (Vector2f. u v))
|
rlm@94
|
507
|
rlm@94
|
508 (defn vector2f->vector3f [v]
|
rlm@94
|
509 (Vector3f. (.getX v) (.getY v) 0))
|
rlm@94
|
510
|
rlm@94
|
511 (defn map-triangle [f #^Triangle tri]
|
rlm@94
|
512 (Triangle.
|
rlm@94
|
513 (f 0 (.get1 tri))
|
rlm@94
|
514 (f 1 (.get2 tri))
|
rlm@94
|
515 (f 2 (.get3 tri))))
|
rlm@94
|
516
|
rlm@108
|
517 (defn points->triangle
|
rlm@108
|
518 "Convert a list of points into a triangle."
|
rlm@108
|
519 [points]
|
rlm@108
|
520 (apply #(Triangle. %1 %2 %3)
|
rlm@108
|
521 (map (fn [point]
|
rlm@108
|
522 (let [point (vec point)]
|
rlm@108
|
523 (Vector3f. (get point 0 0)
|
rlm@108
|
524 (get point 1 0)
|
rlm@108
|
525 (get point 2 0))))
|
rlm@108
|
526 (take 3 points))))
|
rlm@94
|
527
|
rlm@108
|
528 (defn convex-bounds
|
rlm@108
|
529 "Dimensions of the smallest integer bounding square of the list of
|
rlm@108
|
530 2D verticies in the form: [x y width height]."
|
rlm@108
|
531 [uv-verts]
|
rlm@108
|
532 (let [xs (map first uv-verts)
|
rlm@108
|
533 ys (map second uv-verts)
|
rlm@108
|
534 x0 (Math/floor (apply min xs))
|
rlm@108
|
535 y0 (Math/floor (apply min ys))
|
rlm@108
|
536 x1 (Math/ceil (apply max xs))
|
rlm@108
|
537 y1 (Math/ceil (apply max ys))]
|
rlm@108
|
538 [x0 y0 (- x1 x0) (- y1 y0)]))
|
rlm@93
|
539
|
rlm@106
|
540 (defn sensors-in-triangle
|
rlm@107
|
541 "Find the locations of the touch sensors within a triangle in both
|
rlm@107
|
542 UV and gemoetry relative coordinates."
|
rlm@107
|
543 [image mesh tri-index]
|
rlm@107
|
544 (let [width (.getWidth image)
|
rlm@108
|
545 height (.getHeight image)
|
rlm@108
|
546 UV-vertex-coords (triangle-UV-coord mesh width height tri-index)
|
rlm@108
|
547 bounds (convex-bounds UV-vertex-coords)
|
rlm@108
|
548
|
rlm@108
|
549 cutout-triangle (points->triangle UV-vertex-coords)
|
rlm@108
|
550 UV-sensor-coords
|
rlm@108
|
551 (filter (comp (partial inside-triangle? cutout-triangle)
|
rlm@108
|
552 (fn [[u v]] (Vector3f. u v 0)))
|
rlm@108
|
553 (white-coordinates image bounds))
|
rlm@108
|
554 UV->geometry (triangle-transformation
|
rlm@108
|
555 cutout-triangle
|
rlm@108
|
556 (triangle mesh tri-index))
|
rlm@108
|
557 geometry-sensor-coords
|
rlm@108
|
558 (map (fn [[u v]] (.mult UV->geometry (Vector3f. u v 0)))
|
rlm@108
|
559 UV-sensor-coords)]
|
rlm@108
|
560 {:UV UV-sensor-coords :geometry geometry-sensor-coords}))
|
rlm@107
|
561
|
rlm@108
|
562 (defn-memo locate-feelers
|
rlm@94
|
563 "Search the geometry's tactile UV image for touch sensors, returning
|
rlm@94
|
564 their positions in geometry-relative coordinates."
|
rlm@94
|
565 [#^Geometry geo]
|
rlm@108
|
566 (let [mesh (.getMesh geo)
|
rlm@108
|
567 num-triangles (.getTriangleCount mesh)]
|
rlm@108
|
568 (if-let [image (tactile-sensor-image geo)]
|
rlm@108
|
569 (map
|
rlm@108
|
570 (partial sensors-in-triangle image mesh)
|
rlm@108
|
571 (range num-triangles))
|
rlm@108
|
572 (repeat (.getTriangleCount mesh) {:UV nil :geometry nil}))))
|
rlm@102
|
573
|
rlm@102
|
574 (use 'clojure.contrib.def)
|
rlm@102
|
575
|
rlm@102
|
576 (defn-memo touch-topology [#^Gemoetry geo]
|
rlm@108
|
577 (vec (collapse (reduce concat (map :UV (locate-feelers geo))))))
|
rlm@108
|
578
|
rlm@108
|
579 (defn-memo feeler-coordinates [#^Geometry geo]
|
rlm@108
|
580 (vec (map :geometry (locate-feelers geo))))
|
rlm@102
|
581
|
rlm@97
|
582 (defn enable-touch [#^Geometry geo]
|
rlm@108
|
583 (let [feeler-coords (feeler-coordinates geo)
|
rlm@96
|
584 tris (triangles geo)
|
rlm@109
|
585 limit 0.1
|
rlm@109
|
586 ;;results (CollisionResults.)
|
rlm@109
|
587 ]
|
rlm@111
|
588 (if (empty? (touch-topology geo))
|
rlm@111
|
589 nil
|
rlm@111
|
590 (fn [node]
|
rlm@111
|
591 (let [sensor-origins
|
rlm@111
|
592 (map
|
rlm@111
|
593 #(map (partial local-to-world geo) %)
|
rlm@111
|
594 feeler-coords)
|
rlm@111
|
595 triangle-normals
|
rlm@111
|
596 (map (partial get-ray-direction geo)
|
rlm@111
|
597 tris)
|
rlm@111
|
598 rays
|
rlm@111
|
599 (flatten
|
rlm@111
|
600 (map (fn [origins norm]
|
rlm@111
|
601 (map #(doto (Ray. % norm)
|
rlm@97
|
602 (.setLimit limit)) origins))
|
rlm@111
|
603 sensor-origins triangle-normals))]
|
rlm@111
|
604 (vector
|
rlm@111
|
605 (touch-topology geo)
|
rlm@111
|
606 (vec
|
rlm@111
|
607 (for [ray rays]
|
rlm@111
|
608 (do
|
rlm@111
|
609 (let [results (CollisionResults.)]
|
rlm@111
|
610 (.collideWith node ray results)
|
rlm@111
|
611 (let [touch-objects
|
rlm@111
|
612 (set
|
rlm@111
|
613 (filter #(not (= geo %))
|
rlm@111
|
614 (map #(.getGeometry %) results)))]
|
rlm@111
|
615 (if (> (count touch-objects) 0)
|
rlm@111
|
616 1 0))))))))))))
|
rlm@111
|
617
|
rlm@111
|
618 (defn touch [#^Node pieces]
|
rlm@111
|
619 (filter (comp not nil?)
|
rlm@111
|
620 (map enable-touch
|
rlm@111
|
621 (filter #(isa? (class %) Geometry)
|
rlm@111
|
622 (node-seq pieces)))))
|
rlm@94
|
623
|
rlm@109
|
624
|
rlm@111
|
625 ;; human eye transmits 62kb/s to brain Bandwidth is 8.75 Mb/s
|
rlm@111
|
626 ;; http://en.wikipedia.org/wiki/Retina
|
rlm@109
|
627
|
rlm@111
|
628 (defn test-eye []
|
rlm@117
|
629 (.getChild
|
rlm@117
|
630 (.getChild (worm-model) "eyes")
|
rlm@117
|
631 "eye"))
|
rlm@111
|
632
|
rlm@111
|
633
|
rlm@111
|
634 (defn retina-sensor-image
|
rlm@111
|
635 "Return a map of pixel selection functions to BufferedImages
|
rlm@111
|
636 describing the distribution of light-sensitive components on this
|
rlm@111
|
637 geometry's surface. Each function creates an integer from the rgb
|
rlm@111
|
638 values found in the pixel. :red, :green, :blue, :gray are already
|
rlm@111
|
639 defined as extracting the red green blue and average components
|
rlm@111
|
640 respectively."
|
rlm@117
|
641 [#^Spatial eye]
|
rlm@111
|
642 (if-let [eye-map (meta-data eye "eye")]
|
rlm@111
|
643 (map-vals
|
rlm@111
|
644 #(ImageToAwt/convert
|
rlm@111
|
645 (.getImage (.loadTexture (asset-manager) %))
|
rlm@111
|
646 false false 0)
|
rlm@120
|
647 (eval (read-string eye-map)))))
|
rlm@111
|
648
|
rlm@117
|
649 (defn eye-dimensions
|
rlm@117
|
650 "returns the width and height specified in the metadata of the eye"
|
rlm@117
|
651 [#^Spatial eye]
|
rlm@117
|
652 (let [dimensions
|
rlm@117
|
653 (map #(vector (.getWidth %) (.getHeight %))
|
rlm@117
|
654 (vals (retina-sensor-image eye)))]
|
rlm@117
|
655 [(apply max (map first dimensions))
|
rlm@117
|
656 (apply max (map second dimensions))]))
|
rlm@117
|
657
|
rlm@116
|
658 (defn creature-eyes
|
rlm@116
|
659 "The eye nodes which are children of the \"eyes\" node in the
|
rlm@116
|
660 creature."
|
rlm@116
|
661 [#^Node creature]
|
rlm@116
|
662 (if-let [eye-node (.getChild creature "eyes")]
|
rlm@116
|
663 (seq (.getChildren eye-node))
|
rlm@116
|
664 (do (println-repl "could not find eyes node") [])))
|
rlm@111
|
665
|
rlm@123
|
666 ;; Here's how vision will work.
|
rlm@112
|
667
|
rlm@123
|
668 ;; Make the continuation in scene-processor take FrameBuffer,
|
rlm@123
|
669 ;; byte-buffer, BufferedImage already sized to the correct
|
rlm@123
|
670 ;; dimensions. the continuation will decide wether to "mix" them
|
rlm@123
|
671 ;; into the BufferedImage, lazily ignore them, or mix them halfway
|
rlm@123
|
672 ;; and call c/graphics card routines.
|
rlm@112
|
673
|
rlm@123
|
674 ;; (vision creature) will take an optional :skip argument which will
|
rlm@123
|
675 ;; inform the continuations in scene processor to skip the given
|
rlm@123
|
676 ;; number of cycles; 0 means that no cycles will be skipped.
|
rlm@112
|
677
|
rlm@123
|
678 ;; (vision creature) will return [init-functions sensor-functions].
|
rlm@123
|
679 ;; The init-functions are each single-arg functions that take the
|
rlm@123
|
680 ;; world and register the cameras and must each be called before the
|
rlm@123
|
681 ;; corresponding sensor-functions. Each init-function returns the
|
rlm@123
|
682 ;; viewport for that eye which can be manipulated, saved, etc. Each
|
rlm@123
|
683 ;; sensor-function is a thunk and will return data in the same
|
rlm@123
|
684 ;; format as the tactile-sensor functions; the structure is
|
rlm@123
|
685 ;; [topology, sensor-data]. Internally, these sensor-functions
|
rlm@123
|
686 ;; maintain a reference to sensor-data which is periodically updated
|
rlm@123
|
687 ;; by the continuation function established by its init-function.
|
rlm@123
|
688 ;; They can be queried every cycle, but their information may not
|
rlm@123
|
689 ;; necessairly be different every cycle.
|
rlm@112
|
690
|
rlm@123
|
691 ;; Each eye in the creature in blender will work the same way as
|
rlm@123
|
692 ;; joints -- a zero dimensional object with no geometry whose local
|
rlm@123
|
693 ;; coordinate system determines the orientation of the resulting
|
rlm@123
|
694 ;; eye. All eyes will have a parent named "eyes" just as all joints
|
rlm@123
|
695 ;; have a parent named "joints". The resulting camera will be a
|
rlm@123
|
696 ;; ChaseCamera or a CameraNode bound to the geo that is closest to
|
rlm@123
|
697 ;; the eye marker. The eye marker will contain the metadata for the
|
rlm@123
|
698 ;; eye, and will be moved by it's bound geometry. The dimensions of
|
rlm@123
|
699 ;; the eye's camera are equal to the dimensions of the eye's "UV"
|
rlm@123
|
700 ;; map.
|
rlm@116
|
701
|
rlm@123
|
702
|
rlm@123
|
703 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
rlm@123
|
704
|
rlm@123
|
705 ;; Ears work the same way as vision.
|
rlm@123
|
706
|
rlm@123
|
707 ;; (hearing creature) will return [init-functions
|
rlm@123
|
708 ;; sensor-functions]. The init functions each take the world and
|
rlm@123
|
709 ;; register a SoundProcessor that does foureier transforms on the
|
rlm@123
|
710 ;; incommong sound data, making it available to each sensor function.
|
rlm@123
|
711
|
rlm@123
|
712 (defn creature-ears
|
rlm@123
|
713 "The ear nodes which are children of the \"ears\" node in the
|
rlm@123
|
714 creature."
|
rlm@123
|
715 [#^Node creature]
|
rlm@123
|
716 (if-let [ear-node (.getChild creature "ears")]
|
rlm@123
|
717 (seq (.getChildren ear-node))
|
rlm@123
|
718 (do (println-repl "could not find ears node") [])))
|
rlm@123
|
719
|
rlm@123
|
720 (defn closest-node
|
rlm@123
|
721 "The closest object in creature to the given node."
|
rlm@116
|
722 [#^Node creature #^Node eye]
|
rlm@116
|
723 (loop [radius (float 0.01)]
|
rlm@116
|
724 (let [results (CollisionResults.)]
|
rlm@116
|
725 (.collideWith
|
rlm@116
|
726 creature
|
rlm@116
|
727 (BoundingBox. (.getWorldTranslation eye)
|
rlm@116
|
728 radius radius radius)
|
rlm@116
|
729 results)
|
rlm@116
|
730 (if-let [target (first results)]
|
rlm@116
|
731 (.getGeometry target)
|
rlm@116
|
732 (recur (float (* 2 radius)))))))
|
rlm@116
|
733
|
rlm@123
|
734 (defn bind-sense
|
rlm@123
|
735 "Bind the sense to the Spatial such that it will maintain its
|
rlm@117
|
736 current position relative to the Spatial no matter how the spatial
|
rlm@123
|
737 moves. 'sense can be either a Camera or Listener object."
|
rlm@123
|
738 [#^Spatial obj sense]
|
rlm@123
|
739 (let [sense-offset (.subtract (.getLocation sense)
|
rlm@123
|
740 (.getWorldTranslation obj))
|
rlm@123
|
741 initial-sense-rotation (Quaternion. (.getRotation sense))
|
rlm@117
|
742 base-anti-rotation (.inverse (.getWorldRotation obj))]
|
rlm@117
|
743 (.addControl
|
rlm@117
|
744 obj
|
rlm@117
|
745 (proxy [AbstractControl] []
|
rlm@117
|
746 (controlUpdate [tpf]
|
rlm@117
|
747 (let [total-rotation
|
rlm@117
|
748 (.mult base-anti-rotation (.getWorldRotation obj))]
|
rlm@123
|
749 (.setLocation sense
|
rlm@117
|
750 (.add
|
rlm@123
|
751 (.mult total-rotation sense-offset)
|
rlm@117
|
752 (.getWorldTranslation obj)))
|
rlm@123
|
753 (.setRotation sense
|
rlm@123
|
754 (.mult total-rotation initial-sense-rotation))))
|
rlm@117
|
755 (controlRender [_ _])))))
|
rlm@117
|
756
|
rlm@117
|
757
|
rlm@123
|
758 (defn update-listener-velocity
|
rlm@123
|
759 "Update the listener's velocity every update loop."
|
rlm@123
|
760 [#^Spatial obj #^Listener lis]
|
rlm@123
|
761 (let [old-position (atom (.getLocation lis))]
|
rlm@123
|
762 (.addControl
|
rlm@123
|
763 obj
|
rlm@123
|
764 (proxy [AbstractControl] []
|
rlm@123
|
765 (controlUpdate [tpf]
|
rlm@123
|
766 (let [new-position (.getLocation lis)]
|
rlm@123
|
767 (.setVelocity
|
rlm@123
|
768 lis
|
rlm@123
|
769 (.mult (.subtract new-position @old-position)
|
rlm@123
|
770 (float (/ tpf))))
|
rlm@123
|
771 (reset! old-position new-position)))
|
rlm@123
|
772 (controlRender [_ _])))))
|
rlm@123
|
773
|
rlm@123
|
774 (import com.aurellem.capture.audio.AudioSendRenderer)
|
rlm@123
|
775
|
rlm@123
|
776 (defn attach-ear
|
rlm@123
|
777 [#^Application world #^Node creature #^Spatial ear continuation]
|
rlm@123
|
778 (let [target (closest-node creature ear)
|
rlm@123
|
779 lis (Listener.)
|
rlm@123
|
780 audio-renderer (.getAudioRenderer world)
|
rlm@123
|
781 sp (sound-processor continuation)]
|
rlm@123
|
782 (println-repl "audio-renderer is " audio-renderer)
|
rlm@123
|
783 (.setLocation lis (.getWorldTranslation ear))
|
rlm@123
|
784 (.setRotation lis (.getWorldRotation ear))
|
rlm@123
|
785 (bind-sense target lis)
|
rlm@123
|
786 (update-listener-velocity target lis)
|
rlm@123
|
787 (.addListener audio-renderer lis)
|
rlm@123
|
788 (.registerSoundProcessor audio-renderer lis sp)))
|
rlm@123
|
789
|
rlm@123
|
790 (defn enable-hearing
|
rlm@123
|
791 [#^Node creature #^Spatial ear]
|
rlm@123
|
792 (let [hearing-data (atom [])]
|
rlm@123
|
793 [(fn [world]
|
rlm@123
|
794 (attach-ear world creature ear
|
rlm@123
|
795 (fn [data]
|
rlm@123
|
796 (reset! hearing-data (vec data)))))
|
rlm@123
|
797 [(fn []
|
rlm@123
|
798 (let [data @hearing-data
|
rlm@123
|
799 topology
|
rlm@123
|
800 (vec (map #(vector % 0) (range 0 (count data))))
|
rlm@123
|
801 scaled-data
|
rlm@123
|
802 (vec
|
rlm@123
|
803 (map
|
rlm@123
|
804 #(rem (int (* 255 (/ (+ 1 %) 2))) 256)
|
rlm@123
|
805 data))]
|
rlm@123
|
806 (println-repl (take 10 scaled-data))
|
rlm@123
|
807 [topology scaled-data]))
|
rlm@123
|
808 ]]))
|
rlm@123
|
809
|
rlm@123
|
810 (defn hearing
|
rlm@123
|
811 [#^Node creature]
|
rlm@123
|
812 (reduce
|
rlm@123
|
813 (fn [[init-a senses-a]
|
rlm@123
|
814 [init-b senses-b]]
|
rlm@123
|
815 [(conj init-a init-b)
|
rlm@123
|
816 (into senses-a senses-b)])
|
rlm@123
|
817 [[][]]
|
rlm@123
|
818 (for [ear (creature-ears creature)]
|
rlm@123
|
819 (enable-hearing creature ear))))
|
rlm@123
|
820
|
rlm@118
|
821 (defn attach-eye
|
rlm@118
|
822 "Attach a Camera to the appropiate area and return the Camera."
|
rlm@118
|
823 [#^Node creature #^Spatial eye]
|
rlm@123
|
824 (let [target (closest-node creature eye)
|
rlm@118
|
825 [cam-width cam-height] (eye-dimensions eye)
|
rlm@118
|
826 cam (Camera. cam-width cam-height)]
|
rlm@118
|
827 (.setLocation cam (.getWorldTranslation eye))
|
rlm@118
|
828 (.setRotation cam (.getWorldRotation eye))
|
rlm@119
|
829 (.setFrustumPerspective
|
rlm@119
|
830 cam 45 (/ (.getWidth cam) (.getHeight cam))
|
rlm@119
|
831 1 1000)
|
rlm@123
|
832 (bind-sense target cam)
|
rlm@118
|
833 cam))
|
rlm@118
|
834
|
rlm@118
|
835 (def presets
|
rlm@121
|
836 {:all 0xFFFFFF
|
rlm@119
|
837 :red 0xFF0000
|
rlm@119
|
838 :blue 0x0000FF
|
rlm@119
|
839 :green 0x00FF00})
|
rlm@119
|
840
|
rlm@118
|
841 (defn enable-vision
|
rlm@118
|
842 "return [init-function sensor-functions] for a particular eye"
|
rlm@118
|
843 [#^Node creature #^Spatial eye & {skip :skip :or {skip 0}}]
|
rlm@118
|
844 (let [retinal-map (retina-sensor-image eye)
|
rlm@123
|
845 camera (attach-eye creature eye)
|
rlm@123
|
846 vision-image
|
rlm@123
|
847 (atom
|
rlm@123
|
848 (BufferedImage. (.getWidth camera)
|
rlm@123
|
849 (.getHeight camera)
|
rlm@123
|
850 BufferedImage/TYPE_BYTE_BINARY))]
|
rlm@123
|
851 [(fn [world]
|
rlm@123
|
852 (add-eye
|
rlm@123
|
853 world camera
|
rlm@123
|
854 (let [counter (atom 0)]
|
rlm@123
|
855 (fn [r fb bb bi]
|
rlm@123
|
856 (if (zero? (rem (swap! counter inc) (inc skip)))
|
rlm@123
|
857 (reset! vision-image (BufferedImage! r fb bb bi)))))))
|
rlm@123
|
858 (vec
|
rlm@123
|
859 (map
|
rlm@123
|
860 (fn [[key image]]
|
rlm@123
|
861 (let [whites (white-coordinates image)
|
rlm@123
|
862 topology (vec (collapse whites))
|
rlm@123
|
863 mask (presets key)]
|
rlm@123
|
864 (fn []
|
rlm@123
|
865 (vector
|
rlm@123
|
866 topology
|
rlm@123
|
867 (vec
|
rlm@123
|
868 (for [[x y] whites]
|
rlm@123
|
869 (bit-and
|
rlm@123
|
870 mask (.getRGB @vision-image x y))))))))
|
rlm@123
|
871 retinal-map))]))
|
rlm@118
|
872
|
rlm@116
|
873 (defn vision
|
rlm@121
|
874 [#^Node creature & {skip :skip :or {skip 0}}]
|
rlm@121
|
875 (reduce
|
rlm@121
|
876 (fn [[init-a senses-a]
|
rlm@121
|
877 [init-b senses-b]]
|
rlm@121
|
878 [(conj init-a init-b)
|
rlm@121
|
879 (into senses-a senses-b)])
|
rlm@121
|
880 [[][]]
|
rlm@121
|
881 (for [eye (creature-eyes creature)]
|
rlm@121
|
882 (enable-vision creature eye))))
|
rlm@121
|
883
|
rlm@116
|
884
|
rlm@116
|
885 (defn blender-creature
|
rlm@116
|
886 "Return a creature with all joints in place."
|
rlm@116
|
887 [blender-path]
|
rlm@116
|
888 (let [model (load-blender-model blender-path)
|
rlm@116
|
889 joints
|
rlm@116
|
890 (if-let [joint-node (.getChild model "joints")]
|
rlm@116
|
891 (seq (.getChildren joint-node))
|
rlm@116
|
892 (do (println-repl "could not find joints node") []))]
|
rlm@116
|
893 (assemble-creature model joints)))
|
rlm@116
|
894
|
rlm@103
|
895 (defn debug-window
|
rlm@103
|
896 "creates function that offers a debug view of sensor data"
|
rlm@103
|
897 []
|
rlm@103
|
898 (let [vi (view-image)]
|
rlm@103
|
899 (fn
|
rlm@103
|
900 [[coords sensor-data]]
|
rlm@103
|
901 (let [image (points->image coords)]
|
rlm@103
|
902 (dorun
|
rlm@103
|
903 (for [i (range (count coords))]
|
rlm@103
|
904 (.setRGB image ((coords i) 0) ((coords i) 1)
|
rlm@123
|
905 ({0 0x000000
|
rlm@123
|
906 1 0xFFFFFF} (sensor-data i)))))
|
rlm@103
|
907 (vi image)))))
|
rlm@103
|
908
|
rlm@118
|
909 (defn debug-vision-window
|
rlm@118
|
910 "creates function that offers a debug view of sensor data"
|
rlm@118
|
911 []
|
rlm@118
|
912 (let [vi (view-image)]
|
rlm@118
|
913 (fn
|
rlm@118
|
914 [[coords sensor-data]]
|
rlm@118
|
915 (let [image (points->image coords)]
|
rlm@118
|
916 (dorun
|
rlm@118
|
917 (for [i (range (count coords))]
|
rlm@118
|
918 (.setRGB image ((coords i) 0) ((coords i) 1)
|
rlm@118
|
919 (sensor-data i))))
|
rlm@118
|
920 (vi image)))))
|
rlm@118
|
921
|
rlm@123
|
922 (defn debug-hearing-window
|
rlm@123
|
923 "view audio data"
|
rlm@123
|
924 [height]
|
rlm@123
|
925 (let [vi (view-image)]
|
rlm@123
|
926 (fn [[coords sensor-data]]
|
rlm@123
|
927 (let [image (BufferedImage. (count coords) height
|
rlm@123
|
928 BufferedImage/TYPE_INT_RGB)]
|
rlm@123
|
929 (dorun
|
rlm@123
|
930 (for [x (range (count coords))]
|
rlm@123
|
931 (dorun
|
rlm@123
|
932 (for [y (range height)]
|
rlm@123
|
933 (let [raw-sensor (sensor-data x)]
|
rlm@123
|
934 (.setRGB image x y
|
rlm@123
|
935 (+ raw-sensor
|
rlm@123
|
936 (bit-shift-left raw-sensor 8)
|
rlm@123
|
937 (bit-shift-left raw-sensor 16))))))))
|
rlm@123
|
938 (vi image)))))
|
rlm@123
|
939
|
rlm@123
|
940
|
rlm@123
|
941
|
rlm@106
|
942 ;;(defn test-touch [world creature]
|
rlm@83
|
943
|
rlm@78
|
944
|
rlm@123
|
945
|
rlm@123
|
946
|
rlm@123
|
947
|
rlm@123
|
948
|
rlm@106
|
949 (defn test-creature [thing]
|
rlm@106
|
950 (let [x-axis
|
rlm@106
|
951 (box 1 0.01 0.01 :physical? false :color ColorRGBA/Red)
|
rlm@106
|
952 y-axis
|
rlm@106
|
953 (box 0.01 1 0.01 :physical? false :color ColorRGBA/Green)
|
rlm@106
|
954 z-axis
|
rlm@106
|
955 (box 0.01 0.01 1 :physical? false :color ColorRGBA/Blue)
|
rlm@106
|
956 creature (blender-creature thing)
|
rlm@106
|
957 touch-nerves (touch creature)
|
rlm@106
|
958 touch-debug-windows (map (fn [_] (debug-window)) touch-nerves)
|
rlm@121
|
959 [init-vision-fns vision-data] (vision creature)
|
rlm@121
|
960 vision-debug (map (fn [_] (debug-vision-window)) vision-data)
|
rlm@118
|
961 me (sphere 0.5 :color ColorRGBA/Blue :physical? false)
|
rlm@123
|
962 [init-hearing-fns hearing-senses] (hearing creature)
|
rlm@123
|
963 hearing-windows (map (fn [_] (debug-hearing-window 50))
|
rlm@123
|
964 hearing-senses)
|
rlm@123
|
965 bang (AudioNode. (asset-manager)
|
rlm@123
|
966 "Sounds/dream.wav" false)
|
rlm@123
|
967 ;; dream
|
rlm@123
|
968
|
rlm@106
|
969 ]
|
rlm@106
|
970 (world
|
rlm@106
|
971 (nodify [creature
|
rlm@106
|
972 (box 10 2 10 :position (Vector3f. 0 -9 0)
|
rlm@106
|
973 :color ColorRGBA/Gray :mass 0)
|
rlm@106
|
974 x-axis y-axis z-axis
|
rlm@118
|
975 me
|
rlm@106
|
976 ])
|
rlm@123
|
977 (merge standard-debug-controls
|
rlm@123
|
978 {"key-return"
|
rlm@123
|
979 (fn [_ value]
|
rlm@123
|
980 (if value
|
rlm@123
|
981 (do
|
rlm@123
|
982 (println-repl "play-sound")
|
rlm@123
|
983 (.play bang))))})
|
rlm@106
|
984 (fn [world]
|
rlm@106
|
985 (light-up-everything world)
|
rlm@106
|
986 (enable-debug world)
|
rlm@122
|
987 (dorun (map #(% world) init-vision-fns))
|
rlm@123
|
988 (dorun (map #(% world) init-hearing-fns))
|
rlm@118
|
989
|
rlm@118
|
990 (add-eye world
|
rlm@118
|
991 (attach-eye creature (test-eye))
|
rlm@118
|
992 (comp (view-image) BufferedImage!))
|
rlm@118
|
993
|
rlm@118
|
994 (add-eye world (.getCamera world) no-op)
|
rlm@118
|
995
|
rlm@106
|
996 ;;(com.aurellem.capture.Capture/captureVideo
|
rlm@106
|
997 ;; world (file-str "/home/r/proj/ai-videos/hand"))
|
rlm@110
|
998 ;;(.setTimer world (RatchetTimer. 60))
|
rlm@119
|
999 (speed-up world)
|
rlm@106
|
1000 ;;(set-gravity world (Vector3f. 0 0 0))
|
rlm@106
|
1001 )
|
rlm@106
|
1002 (fn [world tpf]
|
rlm@109
|
1003 ;;(dorun
|
rlm@109
|
1004 ;; (map #(%1 %2) touch-nerves (repeat (.getRootNode world))))
|
rlm@123
|
1005
|
rlm@123
|
1006
|
rlm@123
|
1007
|
rlm@106
|
1008 (dorun
|
rlm@109
|
1009 (map #(%1 (%2 (.getRootNode world)))
|
rlm@121
|
1010 touch-debug-windows touch-nerves))
|
rlm@123
|
1011
|
rlm@121
|
1012 (dorun
|
rlm@121
|
1013 (map #(%1 (%2))
|
rlm@121
|
1014 vision-debug vision-data))
|
rlm@123
|
1015 (dorun
|
rlm@123
|
1016 (map #(%1 (%2)) hearing-windows hearing-senses))
|
rlm@123
|
1017
|
rlm@123
|
1018
|
rlm@118
|
1019 ;;(println-repl (vision-data))
|
rlm@118
|
1020 (.setLocalTranslation me (.getLocation (.getCamera world)))
|
rlm@118
|
1021
|
rlm@121
|
1022
|
rlm@106
|
1023 )
|
rlm@106
|
1024 ;;(let [timer (atom 0)]
|
rlm@106
|
1025 ;; (fn [_ _]
|
rlm@106
|
1026 ;; (swap! timer inc)
|
rlm@106
|
1027 ;; (if (= (rem @timer 60) 0)
|
rlm@106
|
1028 ;; (println-repl (float (/ @timer 60))))))
|
rlm@106
|
1029 )))
|
rlm@83
|
1030
|
rlm@109
|
1031
|
rlm@109
|
1032
|
rlm@109
|
1033
|
rlm@109
|
1034
|
rlm@109
|
1035
|
rlm@109
|
1036
|
rlm@109
|
1037
|
rlm@109
|
1038
|
rlm@109
|
1039 ;;; experiments in collisions
|
rlm@109
|
1040
|
rlm@109
|
1041
|
rlm@109
|
1042
|
rlm@109
|
1043 (defn collision-test []
|
rlm@110
|
1044 (let [b-radius 1
|
rlm@110
|
1045 b-position (Vector3f. 0 0 0)
|
rlm@109
|
1046 obj-b (box 1 1 1 :color ColorRGBA/Blue
|
rlm@109
|
1047 :position b-position
|
rlm@110
|
1048 :mass 0)
|
rlm@110
|
1049 node (nodify [obj-b])
|
rlm@110
|
1050 bounds-b
|
rlm@110
|
1051 (doto (Picture.)
|
rlm@110
|
1052 (.setHeight 50)
|
rlm@110
|
1053 (.setWidth 50)
|
rlm@110
|
1054 (.setImage (asset-manager)
|
rlm@110
|
1055 "Models/creature1/hand.png"
|
rlm@110
|
1056 false
|
rlm@110
|
1057 ))
|
rlm@110
|
1058
|
rlm@110
|
1059 ;;(Ray. (Vector3f. 0 -5 0) (.normalize (Vector3f. 0 1 0)))
|
rlm@110
|
1060
|
rlm@110
|
1061 collisions
|
rlm@110
|
1062 (let [cr (CollisionResults.)]
|
rlm@110
|
1063 (.collideWith node bounds-b cr)
|
rlm@110
|
1064 (println (map #(.getContactPoint %) cr))
|
rlm@110
|
1065 cr)
|
rlm@110
|
1066
|
rlm@110
|
1067 ;;collision-points
|
rlm@110
|
1068 ;;(map #(sphere 0.1 :position (.getContactPoint %))
|
rlm@110
|
1069 ;; collisions)
|
rlm@110
|
1070
|
rlm@110
|
1071 ;;node (nodify (conj collision-points obj-b))
|
rlm@110
|
1072
|
rlm@109
|
1073 sim
|
rlm@109
|
1074 (world node
|
rlm@110
|
1075 {"key-space"
|
rlm@110
|
1076 (fn [_ value]
|
rlm@110
|
1077 (if value
|
rlm@110
|
1078 (let [cr (CollisionResults.)]
|
rlm@110
|
1079 (.collideWith node bounds-b cr)
|
rlm@110
|
1080 (println-repl (map #(.getContactPoint %) cr))
|
rlm@110
|
1081 cr)))}
|
rlm@109
|
1082 no-op
|
rlm@109
|
1083 no-op)
|
rlm@109
|
1084
|
rlm@109
|
1085 ]
|
rlm@110
|
1086 sim
|
rlm@109
|
1087
|
rlm@109
|
1088 ))
|
rlm@109
|
1089
|
rlm@116
|
1090
|
rlm@116
|
1091 ;; the camera will stay in its initial position/rotation with relation
|
rlm@116
|
1092 ;; to the spatial.
|
rlm@116
|
1093
|
rlm@116
|
1094
|
rlm@117
|
1095 (defn follow-test
|
rlm@117
|
1096 "show a camera that stays in the same relative position to a blue cube."
|
rlm@117
|
1097 []
|
rlm@116
|
1098 (let [camera-pos (Vector3f. 0 30 0)
|
rlm@116
|
1099 rock (box 1 1 1 :color ColorRGBA/Blue
|
rlm@116
|
1100 :position (Vector3f. 0 10 0)
|
rlm@116
|
1101 :mass 30
|
rlm@116
|
1102 )
|
rlm@118
|
1103 rot (.getWorldRotation rock)
|
rlm@116
|
1104
|
rlm@116
|
1105 table (box 3 1 10 :color ColorRGBA/Gray :mass 0
|
rlm@116
|
1106 :position (Vector3f. 0 -3 0))]
|
rlm@116
|
1107
|
rlm@116
|
1108 (world
|
rlm@116
|
1109 (nodify [rock table])
|
rlm@116
|
1110 standard-debug-controls
|
rlm@116
|
1111 (fn [world]
|
rlm@116
|
1112 (let
|
rlm@116
|
1113 [cam (doto (.clone (.getCamera world))
|
rlm@116
|
1114 (.setLocation camera-pos)
|
rlm@116
|
1115 (.lookAt Vector3f/ZERO
|
rlm@116
|
1116 Vector3f/UNIT_X))]
|
rlm@123
|
1117 (bind-sense rock cam)
|
rlm@116
|
1118
|
rlm@116
|
1119 (.setTimer world (RatchetTimer. 60))
|
rlm@116
|
1120 (add-eye world cam (comp (view-image) BufferedImage!))
|
rlm@116
|
1121 (add-eye world (.getCamera world) no-op))
|
rlm@116
|
1122 )
|
rlm@118
|
1123 (fn [_ _] (println-repl rot)))))
|
rlm@116
|
1124
|
rlm@118
|
1125
|
rlm@123
|
1126
|
rlm@87
|
1127 #+end_src
|
rlm@83
|
1128
|
rlm@87
|
1129 #+results: body-1
|
rlm@109
|
1130 : #'cortex.silly/test-creature
|
rlm@78
|
1131
|
rlm@78
|
1132
|
rlm@78
|
1133 * COMMENT purgatory
|
rlm@78
|
1134 #+begin_src clojure
|
rlm@77
|
1135 (defn bullet-trans []
|
rlm@77
|
1136 (let [obj-a (sphere 0.5 :color ColorRGBA/Red
|
rlm@77
|
1137 :position (Vector3f. -10 5 0))
|
rlm@77
|
1138 obj-b (sphere 0.5 :color ColorRGBA/Blue
|
rlm@77
|
1139 :position (Vector3f. -10 -5 0)
|
rlm@77
|
1140 :mass 0)
|
rlm@77
|
1141 control-a (.getControl obj-a RigidBodyControl)
|
rlm@77
|
1142 control-b (.getControl obj-b RigidBodyControl)
|
rlm@77
|
1143 swivel
|
rlm@77
|
1144 (.toRotationMatrix
|
rlm@77
|
1145 (doto (Quaternion.)
|
rlm@77
|
1146 (.fromAngleAxis (/ Math/PI 2)
|
rlm@77
|
1147 Vector3f/UNIT_X)))]
|
rlm@77
|
1148 (doto
|
rlm@77
|
1149 (ConeJoint.
|
rlm@77
|
1150 control-a control-b
|
rlm@77
|
1151 (Vector3f. 0 5 0)
|
rlm@77
|
1152 (Vector3f. 0 -5 0)
|
rlm@77
|
1153 swivel swivel)
|
rlm@77
|
1154 (.setLimit (* 0.6 (/ Math/PI 4))
|
rlm@77
|
1155 (/ Math/PI 4)
|
rlm@77
|
1156 (* Math/PI 0.8)))
|
rlm@77
|
1157 (world (nodify
|
rlm@77
|
1158 [obj-a obj-b])
|
rlm@77
|
1159 standard-debug-controls
|
rlm@77
|
1160 enable-debug
|
rlm@77
|
1161 no-op)))
|
rlm@74
|
1162
|
rlm@74
|
1163
|
rlm@77
|
1164 (defn bullet-trans* []
|
rlm@77
|
1165 (let [obj-a (box 1.5 0.5 0.5 :color ColorRGBA/Red
|
rlm@77
|
1166 :position (Vector3f. 5 0 0)
|
rlm@77
|
1167 :mass 90)
|
rlm@77
|
1168 obj-b (sphere 0.5 :color ColorRGBA/Blue
|
rlm@77
|
1169 :position (Vector3f. -5 0 0)
|
rlm@77
|
1170 :mass 0)
|
rlm@77
|
1171 control-a (.getControl obj-a RigidBodyControl)
|
rlm@77
|
1172 control-b (.getControl obj-b RigidBodyControl)
|
rlm@77
|
1173 move-up? (atom nil)
|
rlm@77
|
1174 move-down? (atom nil)
|
rlm@77
|
1175 move-left? (atom nil)
|
rlm@77
|
1176 move-right? (atom nil)
|
rlm@77
|
1177 roll-left? (atom nil)
|
rlm@77
|
1178 roll-right? (atom nil)
|
rlm@77
|
1179 force 100
|
rlm@77
|
1180 swivel
|
rlm@77
|
1181 (.toRotationMatrix
|
rlm@77
|
1182 (doto (Quaternion.)
|
rlm@77
|
1183 (.fromAngleAxis (/ Math/PI 2)
|
rlm@77
|
1184 Vector3f/UNIT_X)))
|
rlm@77
|
1185 x-move
|
rlm@77
|
1186 (doto (Matrix3f.)
|
rlm@77
|
1187 (.fromStartEndVectors Vector3f/UNIT_X
|
rlm@77
|
1188 (.normalize (Vector3f. 1 1 0))))
|
rlm@77
|
1189
|
rlm@77
|
1190 timer (atom 0)]
|
rlm@77
|
1191 (doto
|
rlm@77
|
1192 (ConeJoint.
|
rlm@77
|
1193 control-a control-b
|
rlm@77
|
1194 (Vector3f. -8 0 0)
|
rlm@77
|
1195 (Vector3f. 2 0 0)
|
rlm@77
|
1196 ;;swivel swivel
|
rlm@77
|
1197 ;;Matrix3f/IDENTITY Matrix3f/IDENTITY
|
rlm@77
|
1198 x-move Matrix3f/IDENTITY
|
rlm@77
|
1199 )
|
rlm@77
|
1200 (.setCollisionBetweenLinkedBodys false)
|
rlm@77
|
1201 (.setLimit (* 1 (/ Math/PI 4)) ;; twist
|
rlm@77
|
1202 (* 1 (/ Math/PI 4)) ;; swing span in X-Y plane
|
rlm@77
|
1203 (* 0 (/ Math/PI 4)))) ;; swing span in Y-Z plane
|
rlm@77
|
1204 (world (nodify
|
rlm@77
|
1205 [obj-a obj-b])
|
rlm@77
|
1206 (merge standard-debug-controls
|
rlm@77
|
1207 {"key-r" (fn [_ pressed?] (reset! move-up? pressed?))
|
rlm@77
|
1208 "key-t" (fn [_ pressed?] (reset! move-down? pressed?))
|
rlm@77
|
1209 "key-f" (fn [_ pressed?] (reset! move-left? pressed?))
|
rlm@77
|
1210 "key-g" (fn [_ pressed?] (reset! move-right? pressed?))
|
rlm@77
|
1211 "key-v" (fn [_ pressed?] (reset! roll-left? pressed?))
|
rlm@77
|
1212 "key-b" (fn [_ pressed?] (reset! roll-right? pressed?))})
|
rlm@77
|
1213
|
rlm@77
|
1214 (fn [world]
|
rlm@77
|
1215 (enable-debug world)
|
rlm@77
|
1216 (set-gravity world Vector3f/ZERO)
|
rlm@77
|
1217 )
|
rlm@77
|
1218
|
rlm@77
|
1219 (fn [world _]
|
rlm@77
|
1220
|
rlm@77
|
1221 (if @move-up?
|
rlm@77
|
1222 (.applyForce control-a
|
rlm@77
|
1223 (Vector3f. force 0 0)
|
rlm@77
|
1224 (Vector3f. 0 0 0)))
|
rlm@77
|
1225 (if @move-down?
|
rlm@77
|
1226 (.applyForce control-a
|
rlm@77
|
1227 (Vector3f. (- force) 0 0)
|
rlm@77
|
1228 (Vector3f. 0 0 0)))
|
rlm@77
|
1229 (if @move-left?
|
rlm@77
|
1230 (.applyForce control-a
|
rlm@77
|
1231 (Vector3f. 0 force 0)
|
rlm@77
|
1232 (Vector3f. 0 0 0)))
|
rlm@77
|
1233 (if @move-right?
|
rlm@77
|
1234 (.applyForce control-a
|
rlm@77
|
1235 (Vector3f. 0 (- force) 0)
|
rlm@77
|
1236 (Vector3f. 0 0 0)))
|
rlm@77
|
1237
|
rlm@77
|
1238 (if @roll-left?
|
rlm@77
|
1239 (.applyForce control-a
|
rlm@77
|
1240 (Vector3f. 0 0 force)
|
rlm@77
|
1241 (Vector3f. 0 0 0)))
|
rlm@77
|
1242 (if @roll-right?
|
rlm@77
|
1243 (.applyForce control-a
|
rlm@77
|
1244 (Vector3f. 0 0 (- force))
|
rlm@77
|
1245 (Vector3f. 0 0 0)))
|
rlm@77
|
1246
|
rlm@77
|
1247 (if (zero? (rem (swap! timer inc) 100))
|
rlm@77
|
1248 (.attachChild
|
rlm@77
|
1249 (.getRootNode world)
|
rlm@77
|
1250 (sphere 0.05 :color ColorRGBA/Yellow
|
rlm@77
|
1251 :physical? false :position
|
rlm@77
|
1252 (.getWorldTranslation obj-a)))))
|
rlm@77
|
1253 )
|
rlm@77
|
1254 ))
|
rlm@77
|
1255
|
rlm@94
|
1256 (defn transform-trianglesdsd
|
rlm@94
|
1257 "Transform that converts each vertex in the first triangle
|
rlm@94
|
1258 into the corresponding vertex in the second triangle."
|
rlm@94
|
1259 [#^Triangle tri-1 #^Triangle tri-2]
|
rlm@94
|
1260 (let [in [(.get1 tri-1)
|
rlm@94
|
1261 (.get2 tri-1)
|
rlm@94
|
1262 (.get3 tri-1)]
|
rlm@94
|
1263 out [(.get1 tri-2)
|
rlm@94
|
1264 (.get2 tri-2)
|
rlm@94
|
1265 (.get3 tri-2)]]
|
rlm@94
|
1266 (let [translate (doto (Matrix4f.) (.setTranslation (.negate (in 0))))
|
rlm@94
|
1267 in* [(.mult translate (in 0))
|
rlm@94
|
1268 (.mult translate (in 1))
|
rlm@94
|
1269 (.mult translate (in 2))]
|
rlm@94
|
1270 final-translation
|
rlm@94
|
1271 (doto (Matrix4f.)
|
rlm@94
|
1272 (.setTranslation (out 1)))
|
rlm@94
|
1273
|
rlm@94
|
1274 rotate-1
|
rlm@94
|
1275 (doto (Matrix3f.)
|
rlm@94
|
1276 (.fromStartEndVectors
|
rlm@94
|
1277 (.normalize
|
rlm@94
|
1278 (.subtract
|
rlm@94
|
1279 (in* 1) (in* 0)))
|
rlm@94
|
1280 (.normalize
|
rlm@94
|
1281 (.subtract
|
rlm@94
|
1282 (out 1) (out 0)))))
|
rlm@94
|
1283 in** [(.mult rotate-1 (in* 0))
|
rlm@94
|
1284 (.mult rotate-1 (in* 1))
|
rlm@94
|
1285 (.mult rotate-1 (in* 2))]
|
rlm@94
|
1286 scale-factor-1
|
rlm@94
|
1287 (.mult
|
rlm@94
|
1288 (.normalize
|
rlm@94
|
1289 (.subtract
|
rlm@94
|
1290 (out 1)
|
rlm@94
|
1291 (out 0)))
|
rlm@94
|
1292 (/ (.length
|
rlm@94
|
1293 (.subtract (out 1)
|
rlm@94
|
1294 (out 0)))
|
rlm@94
|
1295 (.length
|
rlm@94
|
1296 (.subtract (in** 1)
|
rlm@94
|
1297 (in** 0)))))
|
rlm@94
|
1298 scale-1 (doto (Matrix4f.) (.setScale scale-factor-1))
|
rlm@94
|
1299 in*** [(.mult scale-1 (in** 0))
|
rlm@94
|
1300 (.mult scale-1 (in** 1))
|
rlm@94
|
1301 (.mult scale-1 (in** 2))]
|
rlm@94
|
1302
|
rlm@94
|
1303
|
rlm@94
|
1304
|
rlm@94
|
1305
|
rlm@94
|
1306
|
rlm@94
|
1307 ]
|
rlm@94
|
1308
|
rlm@94
|
1309 (dorun (map println in))
|
rlm@94
|
1310 (println)
|
rlm@94
|
1311 (dorun (map println in*))
|
rlm@94
|
1312 (println)
|
rlm@94
|
1313 (dorun (map println in**))
|
rlm@94
|
1314 (println)
|
rlm@94
|
1315 (dorun (map println in***))
|
rlm@94
|
1316 (println)
|
rlm@94
|
1317
|
rlm@99
|
1318 ))))
|
rlm@94
|
1319
|
rlm@94
|
1320
|
rlm@106
|
1321 (defn world-setup [joint]
|
rlm@106
|
1322 (let [joint-position (Vector3f. 0 0 0)
|
rlm@106
|
1323 joint-rotation
|
rlm@106
|
1324 (.toRotationMatrix
|
rlm@106
|
1325 (.mult
|
rlm@106
|
1326 (doto (Quaternion.)
|
rlm@106
|
1327 (.fromAngleAxis
|
rlm@106
|
1328 (* 1 (/ Math/PI 4))
|
rlm@106
|
1329 (Vector3f. -1 0 0)))
|
rlm@106
|
1330 (doto (Quaternion.)
|
rlm@106
|
1331 (.fromAngleAxis
|
rlm@106
|
1332 (* 1 (/ Math/PI 2))
|
rlm@106
|
1333 (Vector3f. 0 0 1)))))
|
rlm@106
|
1334 top-position (.mult joint-rotation (Vector3f. 8 0 0))
|
rlm@106
|
1335
|
rlm@106
|
1336 origin (doto
|
rlm@106
|
1337 (sphere 0.1 :physical? false :color ColorRGBA/Cyan
|
rlm@106
|
1338 :position top-position))
|
rlm@106
|
1339 top (doto
|
rlm@106
|
1340 (sphere 0.1 :physical? false :color ColorRGBA/Yellow
|
rlm@106
|
1341 :position top-position)
|
rlm@106
|
1342
|
rlm@106
|
1343 (.addControl
|
rlm@106
|
1344 (RigidBodyControl.
|
rlm@106
|
1345 (CapsuleCollisionShape. 0.5 1.5 1) (float 20))))
|
rlm@106
|
1346 bottom (doto
|
rlm@106
|
1347 (sphere 0.1 :physical? false :color ColorRGBA/DarkGray
|
rlm@106
|
1348 :position (Vector3f. 0 0 0))
|
rlm@106
|
1349 (.addControl
|
rlm@106
|
1350 (RigidBodyControl.
|
rlm@106
|
1351 (CapsuleCollisionShape. 0.5 1.5 1) (float 0))))
|
rlm@106
|
1352 table (box 10 2 10 :position (Vector3f. 0 -20 0)
|
rlm@106
|
1353 :color ColorRGBA/Gray :mass 0)
|
rlm@106
|
1354 a (.getControl top RigidBodyControl)
|
rlm@106
|
1355 b (.getControl bottom RigidBodyControl)]
|
rlm@106
|
1356
|
rlm@106
|
1357 (cond
|
rlm@106
|
1358 (= joint :cone)
|
rlm@106
|
1359
|
rlm@106
|
1360 (doto (ConeJoint.
|
rlm@106
|
1361 a b
|
rlm@106
|
1362 (world-to-local top joint-position)
|
rlm@106
|
1363 (world-to-local bottom joint-position)
|
rlm@106
|
1364 joint-rotation
|
rlm@106
|
1365 joint-rotation
|
rlm@106
|
1366 )
|
rlm@106
|
1367
|
rlm@106
|
1368
|
rlm@106
|
1369 (.setLimit (* (/ 10) Math/PI)
|
rlm@106
|
1370 (* (/ 4) Math/PI)
|
rlm@106
|
1371 0)))
|
rlm@106
|
1372 [origin top bottom table]))
|
rlm@106
|
1373
|
rlm@106
|
1374 (defn test-joint [joint]
|
rlm@106
|
1375 (let [[origin top bottom floor] (world-setup joint)
|
rlm@106
|
1376 control (.getControl top RigidBodyControl)
|
rlm@106
|
1377 move-up? (atom false)
|
rlm@106
|
1378 move-down? (atom false)
|
rlm@106
|
1379 move-left? (atom false)
|
rlm@106
|
1380 move-right? (atom false)
|
rlm@106
|
1381 roll-left? (atom false)
|
rlm@106
|
1382 roll-right? (atom false)
|
rlm@106
|
1383 timer (atom 0)]
|
rlm@106
|
1384
|
rlm@106
|
1385 (world
|
rlm@106
|
1386 (nodify [top bottom floor origin])
|
rlm@106
|
1387 (merge standard-debug-controls
|
rlm@106
|
1388 {"key-r" (fn [_ pressed?] (reset! move-up? pressed?))
|
rlm@106
|
1389 "key-t" (fn [_ pressed?] (reset! move-down? pressed?))
|
rlm@106
|
1390 "key-f" (fn [_ pressed?] (reset! move-left? pressed?))
|
rlm@106
|
1391 "key-g" (fn [_ pressed?] (reset! move-right? pressed?))
|
rlm@106
|
1392 "key-v" (fn [_ pressed?] (reset! roll-left? pressed?))
|
rlm@106
|
1393 "key-b" (fn [_ pressed?] (reset! roll-right? pressed?))})
|
rlm@106
|
1394
|
rlm@106
|
1395 (fn [world]
|
rlm@106
|
1396 (light-up-everything world)
|
rlm@106
|
1397 (enable-debug world)
|
rlm@106
|
1398 (set-gravity world (Vector3f. 0 0 0))
|
rlm@106
|
1399 )
|
rlm@106
|
1400
|
rlm@106
|
1401 (fn [world _]
|
rlm@106
|
1402 (if (zero? (rem (swap! timer inc) 100))
|
rlm@106
|
1403 (do
|
rlm@106
|
1404 ;; (println-repl @timer)
|
rlm@106
|
1405 (.attachChild (.getRootNode world)
|
rlm@106
|
1406 (sphere 0.05 :color ColorRGBA/Yellow
|
rlm@106
|
1407 :position (.getWorldTranslation top)
|
rlm@106
|
1408 :physical? false))
|
rlm@106
|
1409 (.attachChild (.getRootNode world)
|
rlm@106
|
1410 (sphere 0.05 :color ColorRGBA/LightGray
|
rlm@106
|
1411 :position (.getWorldTranslation bottom)
|
rlm@106
|
1412 :physical? false))))
|
rlm@106
|
1413
|
rlm@106
|
1414 (if @move-up?
|
rlm@106
|
1415 (.applyTorque control
|
rlm@106
|
1416 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1417 (Vector3f. 0 0 10))))
|
rlm@106
|
1418 (if @move-down?
|
rlm@106
|
1419 (.applyTorque control
|
rlm@106
|
1420 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1421 (Vector3f. 0 0 -10))))
|
rlm@106
|
1422 (if @move-left?
|
rlm@106
|
1423 (.applyTorque control
|
rlm@106
|
1424 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1425 (Vector3f. 0 10 0))))
|
rlm@106
|
1426 (if @move-right?
|
rlm@106
|
1427 (.applyTorque control
|
rlm@106
|
1428 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1429 (Vector3f. 0 -10 0))))
|
rlm@106
|
1430 (if @roll-left?
|
rlm@106
|
1431 (.applyTorque control
|
rlm@106
|
1432 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1433 (Vector3f. -1 0 0))))
|
rlm@106
|
1434 (if @roll-right?
|
rlm@106
|
1435 (.applyTorque control
|
rlm@106
|
1436 (.mult (.getPhysicsRotation control)
|
rlm@106
|
1437 (Vector3f. 1 0 0))))))))
|
rlm@106
|
1438
|
rlm@99
|
1439
|
rlm@99
|
1440
|
rlm@107
|
1441 (defprotocol Frame
|
rlm@107
|
1442 (frame [this]))
|
rlm@107
|
1443
|
rlm@107
|
1444 (extend-type BufferedImage
|
rlm@107
|
1445 Frame
|
rlm@107
|
1446 (frame [image]
|
rlm@107
|
1447 (merge
|
rlm@107
|
1448 (apply
|
rlm@107
|
1449 hash-map
|
rlm@107
|
1450 (interleave
|
rlm@107
|
1451 (doall (for [x (range (.getWidth image)) y (range (.getHeight image))]
|
rlm@107
|
1452 (vector x y)))
|
rlm@107
|
1453 (doall (for [x (range (.getWidth image)) y (range (.getHeight image))]
|
rlm@107
|
1454 (let [data (.getRGB image x y)]
|
rlm@107
|
1455 (hash-map :r (bit-shift-right (bit-and 0xff0000 data) 16)
|
rlm@107
|
1456 :g (bit-shift-right (bit-and 0x00ff00 data) 8)
|
rlm@107
|
1457 :b (bit-and 0x0000ff data)))))))
|
rlm@107
|
1458 {:width (.getWidth image) :height (.getHeight image)})))
|
rlm@107
|
1459
|
rlm@107
|
1460
|
rlm@107
|
1461 (extend-type ImagePlus
|
rlm@107
|
1462 Frame
|
rlm@107
|
1463 (frame [image+]
|
rlm@107
|
1464 (frame (.getBufferedImage image+))))
|
rlm@107
|
1465
|
rlm@107
|
1466
|
rlm@99
|
1467 #+end_src
|
rlm@99
|
1468
|
rlm@99
|
1469
|
rlm@99
|
1470 * COMMENT generate source
|
rlm@99
|
1471 #+begin_src clojure :tangle ../src/cortex/silly.clj
|
rlm@99
|
1472 <<body-1>>
|
rlm@99
|
1473 #+end_src
|
rlm@99
|
1474
|
rlm@99
|
1475
|
rlm@94
|
1476
|
rlm@94
|
1477
|