Mercurial > cortex
view org/cortex.org @ 15:c32f3eb9fdeb
modified fire-cannon-ball to place the ball on a specific node
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sun, 23 Oct 2011 11:50:17 -0700 |
parents | e3c6d1c1cb00 |
children | 01e1427126af |
line wrap: on
line source
1 #+title: Simulated Senses2 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+description: Simulating senses for AI research using JMonkeyEngine35 #+SETUPFILE: ../../aurellem/org/setup.org6 #+INCLUDE: ../../aurellem/org/level-0.org7 #+babel: :mkdirp yes :noweb yes9 * Background10 Artificial Intelligence has tried and failed for more than half a11 century to produce programs as flexible, creative, and “intelligent”12 as the human mind itself. Clearly, we are still missing some important13 ideas concerning intelligent programs or we would have strong AI14 already. What idea could be missing?16 When Turing first proposed his famous “Turing Test” in the17 groundbreaking paper [[./sources/turing.pdf][/Computing Machines and Intelligence/]], he gave18 little importance to how a computer program might interact with the19 world:21 #+BEGIN_QUOTE22 \ldquo{}We need not be too concerned about the legs, eyes, etc. The example of23 Miss Helen Keller shows that education can take place provided that24 communication in both directions between teacher and pupil can take25 place by some means or other.\rdquo{}26 #+END_QUOTE28 And from the example of Hellen Keller he went on to assume that the29 only thing a fledgling AI program could need by way of communication30 is a teletypewriter. But Hellen Keller did possess vision and hearing31 for the first few months of her life, and her tactile sense was far32 more rich than any text-stream could hope to achieve. She possessed a33 body she could move freely, and had continual access to the real world34 to learn from her actions.36 I believe that our programs are suffering from too little sensory37 input to become really intelligent. Imagine for a moment that you38 lived in a world completely cut off form all sensory stimulation. You39 have no eyes to see, no ears to hear, no mouth to speak. No body, no40 taste, no feeling whatsoever. The only sense you get at all is a41 single point of light, flickering on and off in the void. If this was42 your life from birth, you would never learn anything, and could never43 become intelligent. Actual humans placed in sensory deprivation44 chambers experience hallucinations and can begin to loose their sense45 of reality in as little as 15 minutes[sensory-deprivation]. Most of46 the time, the programs we write are in exactly this situation. They do47 not interface with cameras and microphones, and they do not control a48 real or simulated body or interact with any sort of world.51 * Simulation vs. Reality52 I want demonstrate that multiple senses are what enable53 intelligence. There are two ways of playing around with senses and54 computer programs:56 The first is to go entirely with simulation: virtual world, virtual57 character, virtual senses. The advantages are that when everything is58 a simulation, experiments in that simulation are absolutely59 reproducible. It's also easier to change the character and world to60 explore new situations and different sensory combinations.63 ** Issues with Simulation65 If the world is to be simulated on a computer, then not only do you66 have to worry about whether the character's senses are rich enough to67 learn from the world, but whether the world itself is rendered with68 enough detail and realism to give enough working material to the69 character's senses. To name just a few difficulties facing modern70 physics simulators: destructibility of the environment, simulation of71 water/other fluids, large areas, nonrigid bodies, lots of objects,72 smoke. I don't know of any computer simulation that would allow a73 character to take a rock and grind it into fine dust, then use that74 dust to make a clay sculpture, at least not without spending years75 calculating the interactions of every single small grain of76 dust. Maybe a simulated world with today's limitations doesn't provide77 enough richness for real intelligence to evolve.79 ** Issues with Reality81 The other approach for playing with senses is to hook your software up82 to real cameras, microphones, robots, etc., and let it loose in the83 real world. This has the advantage of eliminating concerns about84 simulating the world at the expense of increasing the complexity of85 implementing the senses. Instead of just grabbing the current rendered86 frame for processing, you have to use an actual camera with real87 lenses and interact with photons to get an image. It is much harder to88 change the character, which is now partly a physical robot of some89 sort, since doing so involves changing things around in the real world90 instead of modifying lines of code. While the real world is very rich91 and definitely provides enough stimulation for intelligence to develop92 as evidenced by our own existence, it is also uncontrollable in the93 sense that a particular situation cannot be recreated perfectly or94 saved for later use. It is harder to conduct science because it is95 harder to repeat an experiment. The worst thing about using the real96 world instead of a simulation is the matter of time. Instead of97 simulated time you get the constant and unstoppable flow of real98 time. This severely limits the sorts of software you can use to99 program the AI because all sense inputs must be handled in real100 time. Complicated ideas may have to be implemented in hardware or may101 simply be impossible given the current speed of our102 processors. Contrast this with a simulation, in which the flow of time103 in the simulated world can be slowed down to accommodate the104 limitations of the character's programming. In terms of cost, doing105 everything in software is far cheaper than building custom real-time106 hardware. All you need is a laptop and some patience.108 * Choose a Simulation Engine110 Mainly because of issues with controlling the flow of time, I chose to111 simulate both the world and the character. I set out to make a minimal112 world in which I could embed a character with multiple senses. My main113 goal is to make an environment where I can perform further experiments114 in simulated senses.116 As Carl Sagan once said, "If you wish to make an apple pie from117 scratch, you must first invent the universe.” I examined many118 different 3D environments to try and find something I would use as the119 base for my simulation; eventually the choice came down to three120 engines: the Quake II engine, the Source Engine, and jMonkeyEngine.122 ** Quake II/Jake2124 I spent a bit more than a month working with the Quake II Engine from125 ID software to see if I could use it for my purposes. All the source126 code was released by ID software into the Public Domain several years127 ago, and as a result it has been ported and modified for many128 different reasons. This engine was famous for its advanced use of129 realistic shading and had decent and fast physics130 simulation. Researchers at Princeton [[http://www.nature.com/nature/journal/v461/n7266/pdf/nature08499.pdf][used this code]] to study spatial131 information encoding in the hippocampal cells of rats. Those132 researchers created a special Quake II level that simulated a maze,133 and added an interface where a mouse could run around inside a ball in134 various directions to move the character in the simulated maze. They135 measured hippocampal activity during this exercise to try and tease136 out the method in which spatial data was stored in that area of the137 brain. I find this promising because if a real living rat can interact138 with a computer simulation of a maze in the same way as it interacts139 with a real-world maze, then maybe that simulation is close enough to140 reality that a simulated sense of vision and motor control interacting141 with that simulation could reveal useful information about the real142 thing. It happens that there is a Java port of the original C source143 code called Jake2. The port demonstrates Java's OpenGL bindings and144 runs anywhere from 90% to 105% as fast as the C version. After145 reviewing much of the source of Jake2, I eventually rejected it146 because the engine is too tied to the concept of a first-person147 shooter game. One of the problems I had was that there does not seem148 to be any easy way to attach multiple cameras to a single149 character. There are also several physics clipping issues that are150 corrected in a way that only applies to the main character and does151 not apply to arbitrary objects. While there is a large community of152 level modders, I couldn't find a community to support using the engine153 to make new things.155 ** Source Engine157 The Source Engine evolved from the Quake II and Quake I engines and is158 used by Valve in the Half-Life series of games. The physics simulation159 in the Source Engine is quite accurate and probably the best out of160 all the engines I investigated. There is also an extensive community161 actively working with the engine. However, applications that use the162 Source Engine must be written in C++, the code is not open, it only163 runs on Windows, and the tools that come with the SDK to handle models164 and textures are complicated and awkward to use.166 ** jMonkeyEngine168 jMonkeyEngine is a new library for creating games in Java. It uses169 OpenGL to render to the screen and uses screengraphs to avoid drawing170 things that do not appear on the screen. It has an active community171 and several games in the pipeline. The engine was not built to serve172 any particular game but is instead meant to be used for any 3D173 game. After experimenting with each of these three engines and a few174 others for about 2 months I settled on jMonkeyEngine. I chose it175 because it had the most features out of all the open projects I looked176 at, and because I could then write my code in Clojure, an177 implementation of LISP that runs on the JVM.179 * Setup181 First, I checked out the source to jMonkeyEngine:183 #+srcname: checkout184 #+begin_src sh :results verbatim185 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine jme3186 #+end_src188 #+results: checkout189 : Checked out revision 7975.192 Building jMonkeyEngine is easy enough:194 #+srcname: build195 #+begin_src sh :results verbatim196 cd jme3197 ant jar | tail -n 2198 #+end_src200 #+results: build201 : BUILD SUCCESSFUL202 : Total time: 15 seconds205 Also build the javadoc:207 #+srcname: javadoc208 #+begin_src sh :results verbatim209 cd jme3210 ant javadoc | tail -n 2211 #+end_src213 #+results: javadoc214 : BUILD SUCCESSFUL215 : Total time: 12 seconds217 Now, move the jars from the compilation into the project's lib folder.219 #+srcname: move-jars220 #+begin_src sh :results verbatim221 mkdir -p lib222 mkdir -p src223 cp jme3/dist/jMonkeyEngine3.jar lib/224 cp jme3/dist/lib/* lib/225 ls lib226 #+end_src228 #+results: move-jars229 #+begin_example230 eventbus-1.4.jar231 jbullet.jar232 jheora-jst-debug-0.6.0.jar233 jinput.jar234 jME3-jbullet.jar235 jME3-lwjgl-natives.jar236 jME3-testdata.jar237 jME3-test.jar238 jMonkeyEngine3.jar239 j-ogg-oggd.jar240 j-ogg-vorbisd.jar241 lwjgl.jar242 nifty-1.3.jar243 nifty-default-controls-1.3.jar244 nifty-examples-1.3.jar245 nifty-lwjgl-renderer-1.3.jar246 nifty-openal-soundsystem-1.0.jar247 nifty-style-black-1.3.jar248 nifty-style-grey-1.0.jar249 noise-0.0.1-SNAPSHOT.jar250 stack-alloc.jar251 vecmath.jar252 xmlpull-xpp3-1.1.4c.jar253 #+end_example255 It's good to create a =assets= directory in the style that the256 =AssetManager= will like.258 #+srcname: create-assets259 #+begin_src sh :results verbatim260 mkdir -p assets261 mkdir -p assets/Interface262 mkdir -p assets/Materials263 mkdir -p assets/MatDefs264 mkdir -p assets/Models265 mkdir -p assets/Scenes266 mkdir -p assets/Shaders267 mkdir -p assets/Sounds268 mkdir -p assets/Textures269 tree -L 1 assets270 #+end_src272 #+results: create-assets273 #+begin_example274 assets275 |-- Interface276 |-- MatDefs277 |-- Materials278 |-- Models279 |-- Scenes280 |-- Shaders281 |-- Sounds282 `-- Textures284 8 directories, 0 files285 #+end_example288 The java classpath should have all the jars contained in the =lib=289 directory as well as the src directory.291 For example, here is the file I use to run my REPL for clojure.293 #+include: "~/swank-all" src sh :exports code295 The important thing here is that =cortex/lib/*=, =cortex/src=, and296 =cortex/assets= appear on the classpath. (=cortex= is the base297 directory of this project.)299 #+srcname: pwd300 #+begin_src sh301 pwd302 #+end_src304 #+results: pwd305 : /home/r/cortex308 * Simulation Base310 ** Imports311 First, I'll import jme core classes.312 #+srcname: import313 #+begin_src clojure :results silent314 (ns cortex.import315 (:require swank.util.class-browse))317 (defn import-jme3 []318 (import '[com.jme3.system AppSettings JmeSystem])319 (import '[com.jme3.app Application SimpleApplication])320 (import 'com.jme3.material.Material)321 (import '[com.jme3.math Vector3f ColorRGBA Quaternion Transform])322 (import '[com.jme3.scene Node Geometry])323 (import '[com.jme3.scene.shape Box Sphere Sphere$TextureMode])324 (import 'com.jme3.font.BitmapText)325 (import '[com.jme3.input KeyInput InputManager])326 (import '[com.jme3.input.controls327 ActionListener AnalogListener KeyTrigger MouseButtonTrigger])328 (import '[com.jme3.asset AssetManager DesktopAssetManager] )329 (import '[com.jme3.asset.plugins HttpZipLocator ZipLocator])330 (import '[com.jme3.light PointLight DirectionalLight])331 (import '[com.jme3.animation AnimControl Skeleton Bone])332 (import '[com.jme3.bullet.collision.shapes333 MeshCollisionShape SphereCollisionShape BoxCollisionShape])334 (import 'com.jme3.renderer.queue.RenderQueue$ShadowMode)335 (import 'jme3test.TestChooser)336 (import '[com.jme3.bullet PhysicsTickListener PhysicsSpace])337 (import '[com.jme3.bullet.joints SixDofJoint HingeJoint338 SliderJoint Point2PointJoint ConeJoint]))341 (defmacro permissive-import* [class-symbol]342 `(try343 (import ~class-symbol)344 (catch Exception e#345 (println "can't import " ~class-symbol))))347 (defn permissive-import [class-symbol]348 (eval (list 'cortex.import/permissive-import* class-symbol)))350 (defn selection-import [selection-fn]351 (dorun352 (map (comp permissive-import symbol)353 (filter selection-fn354 (map :name355 swank.util.class-browse/available-classes)))))357 (defn mega-import-jme3358 "ALL the jme classes. For REPL use."359 []360 (selection-import361 #(and362 (.startsWith % "com.jme3.")363 ;; Don't import the Lwjgl stuff since it can throw exceptions364 ;; upon being loaded.365 (not (re-matches #".*Lwjgl.*" %)))))366 #+end_src368 The =mega-import-jme3= is quite usefull for debugging purposes since369 it allows completion for almost all of JME's classes371 ** Simplification372 *** World374 It is comvienent to wrap the JME elements that deal with creating a375 world, creation of basic objects, and Keyboard input with a nicer376 interface (at least for my purposes).378 #+srcname: world-inputs379 #+begin_src clojure :results silent380 (ns cortex.world)381 (require 'cortex.import)382 (use 'clojure.contrib.def)383 (rlm.rlm-commands/help)384 (cortex.import/mega-import-jme3)386 (defvar *app-settings*387 (doto (AppSettings. true)388 (.setFullscreen false)389 (.setTitle "Aurellem.")390 ;; disable 32 bit stuff for now391 ;;(.setAudioRenderer "Send")392 )393 "These settings control how the game is displayed on the screen for394 debugging purposes. Use binding forms to change this if desired.395 Full-screen mode does not work on some computers.")397 (defn asset-manager398 "returns a new, configured assetManager" []399 (JmeSystem/newAssetManager400 (.getResource401 (.getContextClassLoader (Thread/currentThread))402 "com/jme3/asset/Desktop.cfg")))404 (defmacro no-exceptions405 "Sweet relief like I never knew."406 [& forms]407 `(try ~@forms (catch Exception e# (.printStackTrace e#))))409 (defn thread-exception-removal []410 (println "removing exceptions from " (Thread/currentThread))411 (.setUncaughtExceptionHandler412 (Thread/currentThread)413 (proxy [Thread$UncaughtExceptionHandler] []414 (uncaughtException415 [thread thrown]416 (println "uncaught-exception thrown in " thread)417 (println (.getMessage thrown))))))419 (def println-repl (bound-fn [& args] (apply println args)))421 (use '[pokemon [lpsolve :only [constant-map]]])423 (defn no-op [& _])425 (defn all-keys426 "Construct a map of strings representing all the manual inputs from427 either the keyboard or mouse."428 []429 (let [inputs (constant-map KeyInput)]430 (assoc431 (zipmap (map (fn [field]432 (.toLowerCase (re-gsub #"_" "-" field))) (vals inputs))433 (map (fn [val] (KeyTrigger. val)) (keys inputs)))434 ;;explicitly add mouse controls435 "mouse-left" (MouseButtonTrigger. 0)436 "mouse-middle" (MouseButtonTrigger. 2)437 "mouse-right" (MouseButtonTrigger. 1))))439 (defn initialize-inputs440 "more java-interop cruft to establish keybindings for a particular virtual world"441 [game input-manager key-map]442 (doall (map (fn [[name trigger]]443 (.addMapping ^InputManager input-manager444 name (into-array (class trigger) [trigger]))) key-map))445 (doall (map (fn [name]446 (.addListener ^InputManager input-manager game447 (into-array String [name]))) (keys key-map))))449 #+end_src451 These functions are all for debug controlling of the world through452 keyboard and mouse.454 We reuse =constant-map= from =pokemon.lpsolve= to get the numerical455 values for all the keys defined in the =KeyInput= class. The456 documentation for =constant-map= is:458 #+begin_src clojure :results output459 (doc pokemon.lpsolve/constant-map)460 #+end_src462 #+results:463 : -------------------------464 : pokemon.lpsolve/constant-map465 : ([class])466 : Takes a class and creates a map of the static constant integer467 : fields with their names. This helps with C wrappers where they have468 : just defined a bunch of integer constants instead of enums471 Then, =all-keys= converts the constant names like =KEY_J= to the more472 clojure-like =key-j=, and returns a map from these keys to473 jMonkeyEngine KeyTrigger objects, the use of which will soon become474 apparent. =all-keys= also adds the three mouse button controls to the475 map.477 #+srcname: world478 #+begin_src clojure :results silent479 (in-ns 'cortex.world)481 (defn traverse482 "apply f to every non-node, deeply"483 [f node]484 (if (isa? (class node) Node)485 (dorun (map (partial traverse f) (.getChildren node)))486 (f node)))488 (def gravity (Vector3f. 0 -9.81 0))490 (defn world491 [root-node key-map setup-fn update-fn]492 (let [physics-manager (BulletAppState.)493 shadow-renderer (BasicShadowRenderer. (asset-manager) (int 256))494 ;;maybe use a better shadow renderer someday!495 ;;shadow-renderer (PssmShadowRenderer. (asset-manager) 256 1)496 ]497 (doto498 (proxy [SimpleApplication ActionListener] []499 (simpleInitApp500 []501 (no-exceptions502 (.setTimer this (IsoTimer. 60))503 ;; Create key-map.504 (.setFrustumFar (.getCamera this) 300)505 (initialize-inputs this (.getInputManager this) (all-keys))506 ;; Don't take control of the mouse507 (org.lwjgl.input.Mouse/setGrabbed false)508 ;; add all objects to the world509 (.attachChild (.getRootNode this) root-node)510 ;; enable physics511 ;; add a physics manager512 (.attach (.getStateManager this) physics-manager)513 (.setGravity (.getPhysicsSpace physics-manager) gravity)516 ;; go through every object and add it to the physics manager517 ;; if relavant.518 (traverse (fn [geom]519 (dorun520 (for [n (range (.getNumControls geom))]521 (do522 (println-repl "adding control " (.getControl geom n))523 (.add (.getPhysicsSpace physics-manager)524 (.getControl geom n))))))525 (.getRootNode this))526 ;;(.addAll (.getPhysicsSpace physics-manager) (.getRootNode this))528 (setup-fn this)529 (.setDirection shadow-renderer530 (.normalizeLocal (Vector3f. -1 -1 -1)))531 (.addProcessor (.getViewPort this) shadow-renderer)532 (.setShadowMode (.getRootNode this) RenderQueue$ShadowMode/Off)533 ))534 (simpleUpdate535 [tpf]536 (no-exceptions537 (update-fn this tpf)))538 (onAction539 [binding value tpf]540 ;; whenever a key is pressed, call the function returned from541 ;; key-map.542 (no-exceptions543 (if-let [react (key-map binding)]544 (react this value)))))545 ;; don't show a menu to change options.547 (.setShowSettings false)548 (.setPauseOnLostFocus false)549 (.setSettings *app-settings*))))551 (defn apply-map552 "Like apply, but works for maps and functions that expect an implicit map553 and nothing else as in (fn [& {}]).554 ------- Example -------555 (defn jjj [& {:keys [www] :or {www \"oh yeah\"} :as env}] (println www))556 (apply-map jjj {:www \"whatever\"})557 -->\"whatever\""558 [fn m]559 (apply fn (reduce #(into %1 %2) [] m)))561 #+end_src564 =world= is the most important function here.565 *** TODO more documentation567 #+srcname: world-shapes568 #+begin_src clojure :results silent569 (in-ns 'cortex.world)570 (defrecord shape-description571 [name572 color573 mass574 friction575 texture576 material577 position578 rotation579 shape580 physical?])582 (def base-shape583 (shape-description.584 "default-shape"585 false586 ;;ColorRGBA/Blue587 1.0 ;; mass588 1.0 ;; friction589 ;; texture590 "Textures/Terrain/BrickWall/BrickWall.jpg"591 ;; material592 "Common/MatDefs/Misc/Unshaded.j3md"593 Vector3f/ZERO594 Quaternion/IDENTITY595 (Box. Vector3f/ZERO 0.5 0.5 0.5)596 true))598 (defn make-shape599 [#^shape-description d]600 (let [asset-manager (if (:asset-manager d) (:asset-manager d) (asset-manager))601 mat (Material. asset-manager (:material d))602 geom (Geometry. (:name d) (:shape d))]603 (if (:texture d)604 (let [key (TextureKey. (:texture d))]605 (.setGenerateMips key true)606 (.setTexture mat "ColorMap" (.loadTexture asset-manager key))))607 (if (:color d) (.setColor mat "Color" (:color d)))608 (.setMaterial geom mat)609 (if-let [rotation (:rotation d)] (.rotate geom rotation))610 (.setLocalTranslation geom (:position d))611 (if (:physical? d)612 (let [impact-shape (doto (GImpactCollisionShape.613 (.getMesh geom)) (.setMargin 0))614 physics-control (RigidBodyControl.615 ;;impact-shape ;; comment to disable616 (float (:mass d)))]617 (.createJmeMesh impact-shape)618 (.addControl geom physics-control)619 ;;(.setSleepingThresholds physics-control (float 0) (float 0))620 (.setFriction physics-control (:friction d))))621 ;;the default is to keep this node in the physics engine forever.622 ;;these commands must come after the control is added to the geometry.623 ;;624 geom))626 (defn box627 ([l w h & {:as options}]628 (let [options (merge base-shape options)]629 (make-shape (assoc options630 :shape (Box. l w h)))))631 ([] (box 0.5 0.5 0.5)))633 (defn sphere634 ([r & {:as options}]635 (let [options (merge base-shape options)]636 (make-shape (assoc options637 :shape (Sphere. 32 32 (float r))))))638 ([] (sphere 0.5)))640 (defn add-element641 ([game element node]642 (.addAll643 (.getPhysicsSpace644 (.getState645 (.getStateManager game)646 BulletAppState))647 element)648 (.attachChild node element))649 ([game element]650 (add-element game element (.getRootNode game))))653 (defn set-gravity*654 [game gravity]655 (traverse656 (fn [geom]657 (if-let658 [control (.getControl geom RigidBodyControl)]659 (do660 (.setGravity control gravity)661 (.applyImpulse control Vector3f/ZERO Vector3f/ZERO)662 )))663 (.getRootNode game)))665 #+end_src667 These are convienence functions for creating JME objects and668 manipulating a world.670 #+srcname: world-view671 #+begin_src clojure :results silent672 (in-ns 'cortex.world)674 (defprotocol Viewable675 (view [something]))677 (extend-type com.jme3.scene.Geometry678 Viewable679 (view [geo]680 (view (doto (Node.)(.attachChild geo)))))682 (extend-type com.jme3.scene.Node683 Viewable684 (view [node]685 (.start686 (world node687 {}688 (fn [world]689 (.enableDebug690 (.getPhysicsSpace691 (.getState692 (.getStateManager world)693 BulletAppState))694 (asset-manager))695 (set-gravity* world Vector3f/ZERO)696 ;; (set-gravity* world (Vector3f. 0 (float -0.4) 0))697 (let [sun (doto (DirectionalLight.)698 (.setDirection (.normalizeLocal (Vector3f. 1 0 -2)))699 (.setColor ColorRGBA/White))]700 (.addLight (.getRootNode world) sun)))701 no-op))))703 (defn position-camera [game]704 (doto (.getCamera game)705 (.setLocation (Vector3f. 0 6 6))706 (.lookAt Vector3f/ZERO (Vector3f. 0 1 0))))708 #+end_src710 Here I make the =Viewable= protocol and extend it to JME's types. Now711 hello-world can be written as easily as:713 #+begin_src clojure :results silent714 (cortex.world/view (cortex.world/box))715 #+end_src717 ** Hello718 Here are the jmonkeyengine "Hello" programs translated to clojure.719 *** Hello Simple App720 Here is the hello world example for jme3 in clojure.721 It's a more or less direct translation from the java source722 from723 http://jmonkeyengine.org/wiki/doku.php/jme3:beginner:hello_simpleapplication.725 Of note is the fact that since we don't have access to the726 =AssetManager= via extendig =SimpleApplication=, we have to build one727 ourselves.729 #+srcname: hello-simple-app730 #+begin_src clojure :results silent731 (ns hello.hello-simple-app)732 (require 'cortex.import)733 (use 'clojure.contrib.def)734 (rlm.rlm-commands/help)735 (cortex.import/import-jme3)736 (use 'cortex.world)739 (def cube (Box. Vector3f/ZERO 1 1 1))741 (def geom (Geometry. "Box" cube))743 (def mat (Material. (asset-manager) "Common/MatDefs/Misc/Unshaded.j3md"))745 (.setColor mat "Color" ColorRGBA/Blue)747 (.setMaterial geom mat)749 (defn simple-app []750 (doto751 (proxy [SimpleApplication] []752 (simpleInitApp753 []754 ;; Don't take control of the mouse755 (org.lwjgl.input.Mouse/setGrabbed false)756 (.attachChild (.getRootNode this) geom)))757 ;; don't show a menu to change options.758 (.setShowSettings false)759 (.setPauseOnLostFocus false)760 (.setSettings *app-settings*)))761 #+end_src763 Running this program will begin a new jMonkeyEngine game which764 displays a single blue cube.766 #+begin_src clojure :exports code :results silent767 (.start (hello.hello-simple-app/simple-app))768 #+end_src770 #+caption: the simplest JME game.771 [[./images/simple-app.jpg]]775 *** Hello Physics776 From http://jmonkeyengine.org/wiki/doku.php/jme3:beginner:hello_physics778 #+srcname: brick-wall-header779 #+begin_src clojure :results silent780 (ns hello.brick-wall)781 (require 'cortex.import)782 (use 'clojure.contrib.def)783 (rlm.rlm-commands/help)784 (cortex.import/mega-import-jme3)785 (use '[pokemon [lpsolve :only [constant-map]]])786 (use 'cortex.world)787 #+end_src789 #+srcname: brick-wall-body790 #+begin_src clojure :results silent791 (in-ns 'hello.brick-wall)793 (defn floor794 "make a sturdy, unmovable physical floor"795 []796 (box 20 1 20 :mass 0 :color false :position (Vector3f. 0 -2 0)))798 (def brick-length 0.48)799 (def brick-width 0.24)800 (def brick-height 0.12)803 (defn brick* [position]804 (doto (box brick-length brick-height brick-width805 :position position :name "brick"806 :material "Common/MatDefs/Misc/Unshaded.j3md"807 :texture "Textures/Terrain/BrickWall/BrickWall.jpg"808 :mass 36)809 (->810 (.getMesh)811 (.scaleTextureCoordinates (Vector2f. 1 0.5)))812 ;;(.setShadowMode RenderQueue$ShadowMode/CastAndReceive)813 )814 )816 (defn inception-brick-wall817 "construct a physical brick wall"818 []819 (let [node (Node. "brick-wall")]820 (dorun821 (map (comp #(.attachChild node %) brick*)822 (for823 [x (range 15)824 y (range 10)825 z (range 1)]826 (Vector3f.827 (* brick-length x 1.03)828 (* brick-width y y 10)829 (* brick-height z)))))830 node))832 (defn gravity-toggle833 [new-value]834 (fn [game value]835 (println-repl "set gravity to " new-value)836 (if value837 (set-gravity* game new-value)838 (set-gravity* game gravity))))840 (defn fire-cannon-ball841 ([node]842 (fn [game value]843 (if (not value)844 (let [camera (.getCamera game)845 cannon-ball846 (sphere 0.7847 :material "Common/MatDefs/Misc/Unshaded.j3md"848 :texture "Textures/PokeCopper.jpg"849 :position850 (.add (.getLocation camera)851 (.mult (.getDirection camera) (float 1)))852 :mass 3)] ;200 0.05853 (.setShadowMode cannon-ball RenderQueue$ShadowMode/CastAndReceive)854 (.setLinearVelocity855 (.getControl cannon-ball RigidBodyControl)856 (.mult (.getDirection camera) (float 50))) ;50857 (add-element game cannon-ball node)))))858 ([]859 (fire-cannon-ball false)))862 (defn floor* []863 (doto (box 10 0.1 5 :name "floor" ;10 0.1 5 ; 240 0.1 240864 :material "Common/MatDefs/Misc/Unshaded.j3md"865 :texture "Textures/Terrain/Pond/Pond.png"866 :position (Vector3f. 0 -0.1 0 )867 :mass 0)868 (->869 (.getMesh)870 (.scaleTextureCoordinates (Vector2f. 3 6)));64 64871 (->872 (.getMaterial)873 (.getTextureParam "ColorMap")874 (.getTextureValue)875 (.setWrap Texture$WrapMode/Repeat))876 (.setShadowMode RenderQueue$ShadowMode/Receive)877 ))879 (defn brick-wall* []880 (let [node (Node. "brick-wall")]881 (dorun882 (map883 (comp #(.attachChild node %) brick*)884 (for [y (range 15)885 x (range 4)886 z (range 1)]887 (Vector3f.888 (+ (* 2 x brick-length)889 (if (even? (+ y z))890 (/ brick-length 4) (/ brick-length -4)))891 (+ (* brick-height (inc (* 2 y))))892 (* 2 z brick-width) ))))893 (.setShadowMode node RenderQueue$ShadowMode/CastAndReceive)894 node))896 (defn brick-wall-game-run []897 (doto898 (world899 (doto (Node.) (.attachChild (floor*))900 (.attachChild (brick-wall*))901 )902 {"key-i" (gravity-toggle (Vector3f. 0 0 -9.81))903 "key-m" (gravity-toggle (Vector3f. 0 0 9.81))904 "key-l" (gravity-toggle (Vector3f. 9.81 0 0))905 "key-j" (gravity-toggle (Vector3f. -9.81 0 0))906 "key-k" (gravity-toggle Vector3f/ZERO)907 "key-u" (gravity-toggle (Vector3f. 0 9.81 0))908 "key-o" (gravity-toggle (Vector3f. 0 -9.81 0))909 "key-f" (fn[game value]910 (if (not value) (add-element game (brick-wall*))))911 "key-return" (fire-cannon-ball)}912 position-camera913 (fn [& _]))914 (.start)))915 #+end_src917 #+begin_src clojure :results silent918 (hello.brick-wall/brick-wall-game-run)919 #+end_src921 #+caption: the brick wall standing922 [[./images/brick-wall-standing.jpg]]924 #+caption: the brick wall after it has been knocked over by a "pok\eacute{}ball"925 [[./images/brick-wall-knocked-down.jpg]]927 *** Other Brick Games928 #+srcname: other-games929 #+begin_src clojure :results silent930 (ns cortex.other-games931 {:author "Dylan Holmes"})932 (use 'cortex.world)933 (use 'hello.brick-wall)934 (use 'cortex.import)935 (cortex.import/mega-import-jme3)937 (defn scad [position]938 (doto (box 0.1 0.1 0.1939 :position position :name "brick"940 :material "Common/MatDefs/Misc/Unshaded.j3md"941 :texture "Textures/Terrain/BrickWall/BrickWall.jpg"942 :mass 20)943 (->944 (.getMesh)945 (.scaleTextureCoordinates (Vector2f. 1 0.5))946 )947 (-> (.getControl RigidBodyControl)948 (.setLinearVelocity (Vector3f. 0 100 0))949 )951 ;;(.setShadowMode RenderQueue$ShadowMode/Cast)952 ))955 (defn shrapnel []956 (let [node (Node. "explosion-day")]957 (dorun958 (map959 (comp #(.attachChild node %) scad)960 (for [y (range 15)961 x (range 4)962 z (range 1)]963 (Vector3f.964 (+ (* 2 x brick-height)965 (if (even? (+ y z)) (/ brick-height 4) (/ brick-height -4)))966 (+ (* brick-height (inc (* 2 y))))967 (* 2 z brick-height) ))))968 node))971 (def domino-height 0.48)972 (def domino-thickness 0.12)973 (def domino-width 0.24)975 (def domino-thickness 0.05)976 (def domino-width 0.5)977 (def domino-height 1)979 (defn domino980 ([position]981 (domino position (Quaternion/IDENTITY)))982 ([position rotation]983 (doto (box domino-width domino-height domino-thickness984 :position position :name "domino"985 :material "Common/MatDefs/Misc/Unshaded.j3md"986 :texture "Textures/Terrain/BrickWall/BrickWall.jpg"987 :mass 1988 :rotation rotation)989 (.setShadowMode RenderQueue$ShadowMode/CastAndReceive)990 )))993 (defn domino-row []994 (let [node (Node. "domino-row")]995 (dorun996 (map997 (comp #(.attachChild node %) domino)998 (for [999 z (range 10)1000 x (range 5)1001 ]1002 (Vector3f.1003 (+ (* z domino-width) (* x 5 domino-width))1004 (/ domino-height 1)1005 (* -5.5 domino-thickness z) ))))1007 node))1009 (defn domino-cycle []1010 (let [node (Node. "domino-cycle")]1011 (dorun1012 (map1013 (comp #(.attachChild node %) (partial apply domino) )1014 (for [n (range 720)]1015 (let [space (* domino-height 5.5)1016 r (fn[n] (* (+ n 3) domino-width 0.5))1017 t (fn[n] (reduce1018 +1019 (map1020 (fn dt[n] (/ space (* 2 (Math/PI) (r n))))1021 (range n))))1022 t (t n)1023 r (r n)1024 ct (Math/cos t)1025 st (Math/sin t)1026 ]1027 (list1028 (Vector3f.1029 (* -1 r st)1030 (/ domino-height 1)1031 (* r ct))1032 (.fromAngleAxis (Quaternion.)1033 (- (/ 3.1415926 2) t) (Vector3f. 0 1 0))1034 )))1035 ))1036 node))1039 (defn domino-game-run []1040 (doto1041 (world1042 (doto (Node.) (.attachChild (floor*))1043 )1044 {"key-i" (gravity-toggle (Vector3f. 0 0 -9.81))1045 "key-m" (gravity-toggle (Vector3f. 0 0 9.81))1046 "key-l" (gravity-toggle (Vector3f. 9.81 0 0))1047 "key-j" (gravity-toggle (Vector3f. -9.81 0 0))1048 "key-k" (gravity-toggle (Vector3f. 0 9.81 0) )1049 "key-u" (fn[g v] ((gravity-toggle (Vector3f. 0 -0 0)) g true))1050 "key-o" (gravity-toggle (Vector3f. 0 -9.81 0))1052 "key-space"1053 (fn[game value]1055 (if (not value)1056 (let [d (domino (Vector3f. 0 (/ domino-height 0.25) 0)1057 (.fromAngleAxis (Quaternion.)1058 (/ Math/PI 2) (Vector3f. 0 1 0)))]1059 (add-element game d))))1060 "key-f"1061 (fn[game value](if (not value) (add-element game (domino-cycle))))1062 "key-return" (fire-cannon-ball)}1063 position-camera1064 (fn [& _]))1065 (.start)))1066 #+end_src1068 #+begin_src clojure :results silent1069 (cortex.other-games/domino-game-run)1070 #+end_src1072 #+caption: floating dominos1073 [[./images/dominos.jpg]]1075 *** Hello Loop1076 #+srcname: hello-loop1077 #+begin_src clojure :results silent1078 (ns hello.loop)1079 (use 'cortex.world)1080 (use 'cortex.import)1081 (cortex.import/mega-import-jme3)1082 (rlm.rlm-commands/help)1084 (defn blue-cube []1085 (box 1 1 11086 :color ColorRGBA/Blue1087 :texture false1088 :material "Common/MatDefs/Misc/Unshaded.j3md"1089 :name "blue-cube"1090 :physical? false))1092 (defn blue-cube-game []1093 (let [cube (blue-cube)1094 root (doto (Node.) (.attachChild cube))]1095 (world root1096 {}1097 no-op1098 (fn [game tpf]1099 (.rotate cube 0.0 (* 2 tpf) 0.0)))))1100 #+end_src1102 *** Hello Collision1104 #+srcname: hello-collision1105 #+begin_src clojure :results silent1106 (ns hello.collision)1107 (use 'cortex.world)1108 (use 'cortex.import)1109 (use 'clojure.contrib.def)1112 (cortex.import/mega-import-jme3)1113 (rlm.rlm-commands/help)1114 (use '[hello [brick-wall :only [fire-cannon-ball brick-wall*]]])1117 (defn environment []1118 (let1119 [scene-model1120 (doto1121 (.loadModel1122 (doto (asset-manager)1123 (.registerLocator1124 "/home/r/cortex/assets/zips/town.zip" ZipLocator))1125 "main.scene")1126 (.setLocalScale (float 2.0)))1127 collision-shape1128 (CollisionShapeFactory/createMeshShape #^Node scene-model)1129 landscape (RigidBodyControl. collision-shape 0)]1130 (.setShadowMode scene-model RenderQueue$ShadowMode/CastAndReceive)1131 (.addControl scene-model landscape)1132 scene-model))1134 (defn player-fn []1135 (doto1136 (CharacterControl.1137 (CapsuleCollisionShape. (float 1.5) (float 6)(float 1))1138 (float 0.05))1139 (.setJumpSpeed 20)1140 (.setFallSpeed 30)1141 (.setGravity 30) ;301142 (.setPhysicsLocation (Vector3f. 0 10 0))))1144 (defn lights []1145 [(doto (AmbientLight.) (.setColor (.mult (ColorRGBA. 1 1 1 1) (float 1))))1146 (doto (AmbientLight.) (.setColor (.mult (ColorRGBA. 1 0.7 0 1) (float 1))))1147 (doto (DirectionalLight.)1148 (.setColor (.mult ColorRGBA/White (float 0.9) ))1149 (.setDirection (.normalizeLocal (Vector3f. 2.8 -28 2.8))))])1151 (defn night-lights []1152 [(doto (AmbientLight.) (.setColor (.mult (ColorRGBA. 0.275 0.467 0.784 1) (float 0.3))))1153 (doto (DirectionalLight.)1154 (.setColor (.mult ColorRGBA/White (float 0.2) ))1155 (.setDirection (.normalizeLocal (Vector3f. 2.8 -28 2.8))))])1157 (def player (atom (player-fn)))1159 (defn setup-fn [game]1160 (dorun (map #(.addLight (.getRootNode game) %) (lights)))1161 ;; set the color of the sky1162 (.setBackgroundColor (.getViewPort game) (ColorRGBA. 0.3 0.4 0.9 1))1163 ;(.setBackgroundColor (.getViewPort game) (ColorRGBA. 0 0 0 1)1164 (doto (.getFlyByCamera game)1165 (.setMoveSpeed (float 100))1166 (.setRotationSpeed 3))1167 (.add1168 (.getPhysicsSpace1169 (.getState (.getStateManager game) BulletAppState))1170 @player)1172 (doto (Node.) (.attachChild (.getRootNode game))1173 (.attachChild (brick-wall*))1174 )1176 )1179 (def walking-up? (atom false))1180 (def walking-down? (atom false))1181 (def walking-left? (atom false))1182 (def walking-right? (atom false))1184 (defn set-walk [walk-atom game value]1185 ;;(println-repl "setting stuff to " value)1186 (reset! walk-atom value))1188 (defn responses []1189 {"key-w" (partial set-walk walking-up?)1190 "key-d" (partial set-walk walking-right?)1191 "key-s" (partial set-walk walking-down?)1192 "key-a" (partial set-walk walking-left?)1193 "key-return" (fire-cannon-ball)1194 "key-space" (fn [game value] (.jump @player))1195 })1197 (defn update-fn1198 [game tpf]1199 (let [camera (.getCamera game)1200 cam-dir (.multLocal1201 (.clone1202 (.getDirection camera)) (float 0.6))1203 cam-left (.multLocal1204 (.clone1205 (.getLeft camera)) (float 0.4))1206 walk-direction (Vector3f. 0 0 0)]1208 (cond1209 @walking-up? (.addLocal walk-direction cam-dir)1210 @walking-right? (.addLocal walk-direction (.negate cam-left))1211 @walking-down? (.addLocal walk-direction (.negate cam-dir))1212 @walking-left? (.addLocal walk-direction cam-left))1213 (.setWalkDirection @player walk-direction)1214 (.setLocation camera (.getPhysicsLocation @player))))1216 (defn run-game []1217 (.start1218 (world (environment)1219 (responses)1220 setup-fn1221 update-fn)))1222 #+end_src1224 *** Hello Terrain1225 #+srcname: hello-terrain1226 #+begin_src clojure :results silent1227 (ns hello.terrain)1228 (use 'cortex.world)1229 (use 'cortex.import)1230 (use 'clojure.contrib.def)1231 (import jme3tools.converters.ImageToAwt)1234 (cortex.import/mega-import-jme3)1235 (rlm.rlm-commands/help)1236 (use '[hello [brick-wall :only [fire-cannon-ball brick-wall*]]])1239 (defn setup-fn [type game]1240 (.setMoveSpeed (.getFlyByCamera game) 50)1241 (.setFrustumFar (.getCamera game) 10000)1242 (let [env (environment type)1243 cameras [(.getCamera game)]1244 control (TerrainLodControl. env cameras)]1245 ;;(.addControl env control)1246 (.attachChild (.getRootNode game) env)))1248 (defn environment [type]1249 (let1250 [mat_terrain1251 (Material. (asset-manager) "Common/MatDefs/Terrain/Terrain.j3md")1252 grass (.loadTexture (asset-manager) "Textures/Terrain/splat/grass.jpg")1253 dirt (.loadTexture (asset-manager) "Textures/Terrain/splat/dirt.jpg")1254 rock (.loadTexture (asset-manager) "Textures/Terrain/splat/road.jpg")1255 heightmap-image (.loadTexture (asset-manager)1256 ({:mountain "Textures/Terrain/splat/mountains512.png"1257 :fortress "Textures/Terrain/splat/fortress512.png"1258 }type))1259 heightmap (ImageBasedHeightMap.1260 (ImageToAwt/convert (.getImage heightmap-image) false true 0))1261 terrain (do (.load heightmap)1262 (TerrainQuad. "my terrain" 65 513 (.getHeightMap heightmap)))1263 ]1265 (dorun (map #(.setWrap % Texture$WrapMode/Repeat)1266 [grass dirt rock]))1268 (doto mat_terrain1269 (.setTexture "Tex1" grass)1270 (.setFloat "Tex1Scale" (float 64))1272 (.setTexture "Tex2" dirt)1273 (.setFloat "Tex2Scale" (float 32))1275 (.setTexture "Tex3" rock)1276 (.setFloat "Tex3Scale" (float 128))1278 (.setTexture "Alpha"1279 (.loadTexture1280 (asset-manager)1281 ({:mountain "Textures/Terrain/splat/alphamap.png"1282 :fortress "Textures/Terrain/splat/alphamap2.png"} type))))1284 (doto terrain1285 (.setMaterial mat_terrain)1286 (.setLocalTranslation 0 -100 0)1287 (.setLocalScale 2 1 2))))1291 (defn run-terrain-game [type]1292 (.start1293 (world1294 (Node.)1295 {}1296 (partial setup-fn type)1297 no-op)))1298 #+end_src1302 #+srcname: hello-animation1303 #+begin_src clojure :results silent1304 (ns hello.animation)1305 (use 'cortex.world)1306 (use 'cortex.import)1307 (use 'clojure.contrib.def)1308 (cortex.import/mega-import-jme3)1309 (rlm.rlm-commands/help)1310 (use '[hello [collision :only [lights]]])1312 (defn stand1313 [channel]1314 (doto channel1315 (.setAnim "stand" (float 0.5))1316 (.setLoopMode LoopMode/DontLoop)1317 (.setSpeed (float 1))))1319 (defn anim-listener []1320 (proxy [AnimEventListener] []1321 (onAnimChange1322 [control channel animation-name]1323 (println-repl "RLM --- onAnimChange"))1324 (onAnimCycleDone1325 [control channel animation-name]1326 (if (= animation-name "Walk")1327 (stand channel)1328 ))))1330 (defn setup-fn [channel game]1331 (dorun (map #(.addLight (.getRootNode game) %) (lights)))1332 ;; set the color of the sky1333 (.setBackgroundColor (.getViewPort game) (ColorRGBA. 0.3 0.4 0.9 1))1334 ;(.setBackgroundColor (.getViewPort game) (ColorRGBA. 0 0 0 1)1335 (.setAnim channel "stand")1336 (doto (.getFlyByCamera game)1337 (.setMoveSpeed (float 10))1338 (.setRotationSpeed 1)))1340 (defn walk [channel]1341 (println-repl "zzz")1342 (doto channel1343 (.setAnim "Walk" (float 0.5))1344 (.setLoopMode LoopMode/Loop)))1347 (defn key-map [channel]1348 {"key-space" (fn [game value]1349 (if (not value)1350 (walk channel)))})1352 (defn player []1353 (let [model (.loadModel (asset-manager) "Models/Oto/Oto.mesh.xml")1354 control (.getControl model AnimControl)]1355 (.setLocalScale model (float 0.5))1356 (.clearListeners control)1357 (.addListener control (anim-control))1358 model))1362 (defn run-anim-game []1363 (let [ninja (player)1364 control (.getControl ninja AnimControl)1365 channel (.createChannel control)]1366 (.start1367 (world1368 ninja1369 (key-map channel)1370 (partial setup-fn channel)1371 no-op))))1372 #+end_src1374 *** Hello Materials1375 #+srcname: material1376 #+begin_src clojure :results silent1377 (ns hello.material)1378 (use 'cortex.world)1379 (use 'cortex.import)1380 (use 'clojure.contrib.def)1381 (cortex.import/mega-import-jme3)1382 (rlm.rlm-commands/help)1384 (defn simple-cube []1385 (box 1 1 11386 :position (Vector3f. -3 1.1 0)1387 :material "Common/MatDefs/Misc/Unshaded.j3md"1388 :texture "Interface/Logo/Monkey.jpg"1389 :physical? false))1391 (defn leaky-box []1392 (box 1 1 11393 :position (Vector3f. 3 -1 0)1394 :material "Common/MatDefs/Misc/ColoredTextured.j3md"1395 :texture "Textures/ColoredTex/Monkey.png"1396 :color (ColorRGBA. 1 0 1 1)1397 :physical? false))1399 (defn transparent-box []1400 (doto1401 (box 1 1 0.11402 :position Vector3f/ZERO1403 :name "window frame"1404 :material "Common/MatDefs/Misc/Unshaded.j3md"1405 :texture "Textures/ColoredTex/Monkey.png"1406 :physical? false)1407 (-> (.getMaterial)1408 (.getAdditionalRenderState)1409 (.setBlendMode RenderState$BlendMode/Alpha))1410 (.setQueueBucket RenderQueue$Bucket/Transparent)))1412 (defn bumpy-sphere []1413 (doto1414 (sphere 21415 :position (Vector3f. 0 2 -2)1416 :name "Shiny rock"1417 :material "Common/MatDefs/Light/Lighting.j3md"1418 :texture false1419 :physical? false)1420 (-> (.getMesh)1421 (doto1422 (.setTextureMode Sphere$TextureMode/Projected)1423 (TangentBinormalGenerator/generate)))1424 (-> (.getMaterial)1425 (doto1426 (.setTexture "DiffuseMap" (.loadTexture (asset-manager)1427 "Textures/Terrain/Pond/Pond.png"))1428 (.setTexture "NormalMap" (.loadTexture (asset-manager)1429 "Textures/Terrain/Pond/Pond_normal.png"))1430 (.setFloat "Shininess" (float 5))))1431 (.rotate (float 1.6) 0 0)))1434 (defn start-game []1435 (.start1436 (world1437 (let [root (Node.)]1438 (dorun (map #(.attachChild root %)1439 [(simple-cube) (leaky-box) (transparent-box) (bumpy-sphere)]))1440 root)1441 {}1442 (fn [world]1443 (let [sun (doto (DirectionalLight.)1444 (.setDirection (.normalizeLocal (Vector3f. 1 0 -2)))1445 (.setColor ColorRGBA/White))]1446 (.addLight (.getRootNode world) sun)))1447 no-op1448 )))1449 #+end_src1453 * The Body1454 ** Eyes1456 Ultimately I want to make creatures with eyes. Each eye can be1457 independely moved and should see its own version of the world1458 depending on where it is.1459 #+srcname: eyes1460 #+begin_src clojure1461 (ns body.eye)1462 (use 'cortex.world)1463 (use 'cortex.import)1464 (use 'clojure.contrib.def)1465 (cortex.import/mega-import-jme3)1466 (rlm.rlm-commands/help)1467 (import java.nio.ByteBuffer)1468 (import java.awt.image.BufferedImage)1469 (import java.awt.Color)1470 (import java.awt.Dimension)1471 (import java.awt.Graphics)1472 (import java.awt.Graphics2D)1473 (import java.awt.event.WindowAdapter)1474 (import java.awt.event.WindowEvent)1475 (import java.awt.image.BufferedImage)1476 (import java.nio.ByteBuffer)1477 (import javax.swing.JFrame)1478 (import javax.swing.JPanel)1479 (import javax.swing.SwingUtilities)1480 (import javax.swing.ImageIcon)1481 (import javax.swing.JOptionPane)1482 (import java.awt.image.ImageObserver)1486 (defn scene-processor1487 "deals with converting FrameBuffers to BufferedImages so1488 that the continuation function can be defined only in terms1489 of what it does with BufferedImages"1490 [continuation]1491 (let [byte-buffer (atom nil)1492 renderer (atom nil)1493 image (atom nil)]1494 (proxy [SceneProcessor] []1495 (initialize1496 [renderManager viewPort]1497 (let [cam (.getCamera viewPort)1498 width (.getWidth cam)1499 height (.getHeight cam)]1500 (reset! renderer (.getRenderer renderManager))1501 (reset! byte-buffer1502 (BufferUtils/createByteBuffer1503 (* width height 4)))1504 (reset! image (BufferedImage. width height1505 BufferedImage/TYPE_4BYTE_ABGR))))1506 (isInitialized [] (not (nil? @byte-buffer)))1507 (reshape [_ _ _])1508 (preFrame [_])1509 (postQueue [_])1510 (postFrame1511 [#^FrameBuffer fb]1512 (.clear @byte-buffer)1513 (.readFrameBuffer @renderer fb @byte-buffer)1514 (Screenshots/convertScreenShot @byte-buffer @image)1515 (continuation @image))1516 (cleanup []))))1518 (defn add-eye1519 "Add an eye to the world, and call continuation on1520 every frame produced"1521 [world camera continuation]1522 (let [width (.getWidth camera)1523 height (.getHeight camera)1524 render-manager (.getRenderManager world)1525 viewport (.createMainView render-manager "eye-view" camera)]1526 (doto viewport1527 (.setBackgroundColor ColorRGBA/Black)1528 (.setClearFlags true true true)1529 (.addProcessor (scene-processor continuation))1530 (.attachScene (.getRootNode world)))))1532 (defn make-display-frame [display width height]1533 (SwingUtilities/invokeLater1534 (fn []1535 (.setPreferredSize display (Dimension. width height))1536 (doto (JFrame. "Eye Camera!")1537 (-> (.getContentPane) (.add display))1538 (.setDefaultCloseOperation JFrame/DISPOSE_ON_CLOSE)1539 (.pack)1540 (.setLocationRelativeTo nil)1541 (.setResizable false)1542 (.setVisible true)))))1544 (defn image-monitor [#^BufferedImage image]1545 (proxy [JPanel] []1546 (paintComponent1547 [g]1548 (proxy-super paintComponent g)1549 (locking image1550 (.drawImage g image 0 01551 (proxy [ImageObserver]1552 []1553 (imageUpdate1554 []1555 (proxy-super imageUpdate))))))))1557 (defn movie-image []1558 (let [setup1559 (runonce1560 (fn [#^BufferedImage image]1561 (let [width (.getWidth image)1562 height (.getHeight image)1563 display (image-monitor image)1564 frame (make-display-frame display width height)]1565 display)))]1566 (fn [#^BufferedImage image]1567 (.repaint (setup image)))))1570 (defn observer1571 "place thy eye!"1572 [world camera]1573 (let [eye camera1574 width (.getWidth eye)1575 height (.getHeight eye)]1576 (no-exceptions1577 (add-eye1578 world1579 eye1580 (movie-image)))))1581 #+end_src1583 #+srcname: test-vision1584 #+begin_src clojure1586 (ns test.vision)1587 (use 'cortex.world)1588 (use 'cortex.import)1589 (use 'clojure.contrib.def)1590 (use 'body.eye)1591 (cortex.import/mega-import-jme3)1592 (rlm.rlm-commands/help)1593 (import java.nio.ByteBuffer)1594 (import java.awt.image.BufferedImage)1595 (import java.awt.Color)1596 (import java.awt.Dimension)1597 (import java.awt.Graphics)1598 (import java.awt.Graphics2D)1599 (import java.awt.event.WindowAdapter)1600 (import java.awt.event.WindowEvent)1601 (import java.awt.image.BufferedImage)1602 (import java.nio.ByteBuffer)1603 (import javax.swing.JFrame)1604 (import javax.swing.JPanel)1605 (import javax.swing.SwingUtilities)1606 (import javax.swing.ImageIcon)1607 (import javax.swing.JOptionPane)1608 (import java.awt.image.ImageObserver)1611 (def width 200)1612 (def height 200)1614 (defn camera []1615 (doto (Camera. width height)1616 (.setFrustumPerspective 45 1 1 1000)1617 (.setLocation (Vector3f. -3 0 -5))1618 (.lookAt Vector3f/ZERO Vector3f/UNIT_Y)))1620 (defn camera2 []1621 (doto (Camera. width height)1622 (.setFrustumPerspective 45 1 1 1000)1623 (.setLocation (Vector3f. 3 0 -5))1624 (.lookAt Vector3f/ZERO Vector3f/UNIT_Y)))1626 (defn setup-fn [world]1627 (let [eye (camera)1628 width (.getWidth eye)1629 height (.getHeight eye)]1630 (no-exceptions1631 (add-eye1632 world1633 eye1634 (runonce visual))1635 (add-eye1636 world1637 (camera2)1638 (runonce visual)))))1640 (defn spider-eye [position]1641 (doto (Camera. 200 200 )1642 (.setFrustumPerspective 45 1 1 1000)1643 (.setLocation position)1644 (.lookAt Vector3f/ZERO Vector3f/UNIT_Y)))1646 (defn setup-fn* [world]1647 (let [eye (camera)1648 width (.getWidth eye)1649 height (.getHeight eye)]1650 ;;(.setClearFlags (.getViewPort world) true true true)1651 (observer world (.getCamera world))1652 (observer world (spider-eye (Vector3f. 3 0 -5)))1653 ;;(observer world (spider-eye (Vector3f. 0 0 -5)))1654 ;; (observer world (spider-eye (Vector3f. -3 0 -5)))1655 ;; (observer world (spider-eye (Vector3f. 0 3 -5)))1656 ;; (observer world (spider-eye (Vector3f. 0 -3 -5)))1657 ;; (observer world (spider-eye (Vector3f. 3 3 -5)))1658 ;; (observer world (spider-eye (Vector3f. -3 3 -5)))1659 ;; (observer world (spider-eye (Vector3f. 3 -3 -5)))1660 ;; (observer world (spider-eye (Vector3f. -3 -3 -5)))1662 )1663 world)1665 (defn test-world []1666 (let [thing (box 1 1 1 :physical? false)]1667 (world1668 (doto (Node.)1669 (.attachChild thing))1670 {}1671 setup-fn1672 (fn [world tpf]1673 (.rotate thing (* tpf 0.2) 0 0)1674 ))))1677 #+end_src1680 #+results: eyes1681 : #'body.eye/test-world1683 Note the use of continuation passing style for connecting the eye to a1684 function to process the output. The example code will create two1685 videos of the same rotating cube from different angles, sutiable for1686 stereoscopic vision.1693 * COMMENT code generation1694 #+begin_src clojure :tangle ../src/cortex/import.clj1695 <<import>>1696 #+end_src1698 #+begin_src clojure :tangle ../src/hello/brick_wall.clj1699 <<brick-wall-header>>1700 <<brick-wall-body>>1701 #+end_src1703 #+begin_src clojure :tangle ../src/hello/hello_simple_app.clj1704 <<hello-simple-app>>1705 #+end_src1707 #+begin_src clojure :tangle ../src/cortex/world.clj1708 <<world-inputs>>1709 <<world>>1710 <<world-shapes>>1711 <<world-view>>1712 #+end_src1714 #+begin_src clojure :tangle ../src/cortex/other_games.clj1715 <<other-games>>1716 #+end_src1718 #+begin_src clojure :tangle ../src/hello/loop.clj1719 <<hello-loop>>1720 #+end_src1722 #+begin_src clojure :tangle ../src/hello/collision.clj1723 <<hello-collision>>1724 #+end_src1726 #+begin_src clojure :tangle ../src/hello/terrain.clj1727 <<hello-terrain>>1728 #+end_src1730 #+begin_src clojure :tangle ../src/hello/animation.clj1731 <<hello-animation>>1732 #+end_src1734 #+begin_src clojure :tangle ../src/hello/material.clj1735 <<material>>1736 #+end_src1738 #+begin_src clojure :tangle ../src/body/eye.clj1739 <<eyes>>1740 #+end_src1742 #+begin_src clojure :tangle ../src/test/vision.clj1743 <<test-vision>>1744 #+end_src