Mercurial > cortex
view org/world.org @ 506:9ab8c19143f2
cleanup main thesis code.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sun, 30 Mar 2014 00:21:50 -0400 |
parents | 939bcc5950b2 |
children |
line wrap: on
line source
1 #+title: A Virtual World for Sensate Creatures2 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+description: Creating a Virtual World for AI constructs using clojure and JME35 #+keywords: JME3, clojure, virtual world, exception handling6 #+SETUPFILE: ../../aurellem/org/setup.org7 #+INCLUDE: ../../aurellem/org/level-0.org8 #+BABEL: :mkdirp yes :noweb yes :exports both10 * The World12 There's no point in having senses if there's nothing to experience. In13 this section I make some tools with which to build virtual worlds for14 my characters to inhabit. If you look at the tutorials at [[http://www.jmonkeyengine.org/wiki/doku.php/jme3:beginner][the jme315 website]], you will see a pattern in how virtual worlds are normally16 built. I call this "the Java way" of making worlds.18 - The Java way:19 - Create a class that extends =SimpleApplication= or =Application=20 - Implement setup functions that create all the scene objects using21 the inherited =assetManager= and call them by overriding the22 =simpleInitApp= method.23 - Create =ActionListeners= and add them to the =inputManager=24 inherited from =Application= to handle key-bindings.25 - Override =simpleUpdate= to implement game logic.26 - Running/Testing an Application involves creating a new JVM,27 running the App, and then closing everything down.30 - A more Clojureish way:31 - Use a map from keys->functions to specify key-bindings.32 - Use functions to create objects separately from any particular33 application.34 - Use a REPL -- this means that there's only ever one JVM, and35 Applications come and go.37 Since most development work using jMonkeyEngine is done in Java, jme338 supports "the Java way" quite well out of the box. To work "the39 clojure way", it necessary to wrap the JME3 elements that deal with40 the Application life-cycle with a REPL driven interface.42 The most important modifications are:44 - Separation of Object life-cycles with the Application life-cycle.45 - Functional interface to the underlying =Application= and46 =SimpleApplication= classes.48 ** Header49 #+name: header50 #+begin_src clojure :results silent51 (ns cortex.world52 "World Creation, abstraction over jme3's input system, and REPL53 driven exception handling"54 {:author "Robert McIntyre"}56 (:import com.aurellem.capture.IsoTimer)58 (:import com.jme3.math.Vector3f)59 (:import com.jme3.scene.Node)60 (:import com.jme3.system.AppSettings)61 (:import com.jme3.system.JmeSystem)62 (:import com.jme3.input.KeyInput)63 (:import com.jme3.input.controls.KeyTrigger)64 (:import com.jme3.input.controls.MouseButtonTrigger)65 (:import com.jme3.input.InputManager)66 (:import com.jme3.bullet.BulletAppState)67 (:import com.jme3.shadow.BasicShadowRenderer)68 (:import com.jme3.app.SimpleApplication)69 (:import com.jme3.input.controls.ActionListener)70 (:import com.jme3.renderer.queue.RenderQueue$ShadowMode)71 (:import org.lwjgl.input.Mouse)72 (:import com.aurellem.capture.AurellemSystemDelegate))74 #+end_src76 ** General Settings77 #+name: settings78 #+begin_src clojure79 (in-ns 'cortex.world)81 (def ^:dynamic *app-settings*82 "These settings control how the game is displayed on the screen for83 debugging purposes. Use binding forms to change this if desired.84 Full-screen mode does not work on some computers."85 (doto (AppSettings. true)86 (.setFullscreen false)87 (.setTitle "Aurellem.")88 ;; The "Send" AudioRenderer supports simulated hearing.89 (.setAudioRenderer "Send")))91 (defn asset-manager92 "returns a new, configured assetManager" []93 (JmeSystem/newAssetManager94 (.getResource95 (.getContextClassLoader (Thread/currentThread))96 "com/jme3/asset/Desktop.cfg")))97 #+end_src99 Normally, people just use the =AssetManager= inherited from100 =Application= whenever they extend that class. However,101 =AssetManagers= are useful on their own to create objects/ materials,102 independent from any particular application. =(asset-manager)= makes103 object creation less tightly bound to a particular Application104 Instance.106 ** Exception Protection107 #+name: exceptions108 #+begin_src clojure109 (in-ns 'cortex.world)111 (defmacro no-exceptions112 "Sweet relief like I never knew."113 [& forms]114 `(try ~@forms (catch Exception e# (.printStackTrace e#))))116 (defn thread-exception-removal117 "Exceptions thrown in the graphics rendering thread generally cause118 the entire REPL to crash! It is good to suppress them while trying119 things out to shorten the debug loop."120 []121 (.setUncaughtExceptionHandler122 (Thread/currentThread)123 (proxy [Thread$UncaughtExceptionHandler] []124 (uncaughtException125 [thread thrown]126 (println "uncaught-exception thrown in " thread)127 (println (.getMessage thrown))))))129 #+end_src131 Exceptions thrown in the LWJGL render thread, if not caught, will132 destroy the entire JVM process including the REPL and slow development133 to a crawl. It is better to try to continue on in the face of134 exceptions and keep the REPL alive as long as possible. Normally it135 is possible to just exit the faulty Application, fix the bug,136 reevaluate the appropriate forms, and be on your way, without137 restarting the JVM.139 ** Input140 #+name: input141 #+begin_src clojure142 (in-ns 'cortex.world)144 (defn static-integer?145 "does the field represent a static integer constant?"146 [#^java.lang.reflect.Field field]147 (and (java.lang.reflect.Modifier/isStatic (.getModifiers field))148 (integer? (.get field nil))))150 (defn integer-constants [class]151 (filter static-integer? (.getFields class)))153 (defn constant-map154 "Takes a class and creates a map of the static constant integer155 fields with their names. This helps with C wrappers where they have156 just defined a bunch of integer constants instead of enums"157 [class]158 (let [integer-fields (integer-constants class)]159 (into (sorted-map)160 (zipmap (map #(.get % nil) integer-fields)161 (map #(.getName %) integer-fields)))))162 (alter-var-root #'constant-map memoize)164 (defn all-keys165 "Uses reflection to generate a map of string names to jme3 trigger166 objects, which govern input from the keyboard and mouse"167 []168 (let [inputs (constant-map KeyInput)]169 (assoc170 (zipmap (map (fn [field]171 (.toLowerCase (.replaceAll field "_" "-"))) (vals inputs))172 (map (fn [val] (KeyTrigger. val)) (keys inputs)))173 ;;explicitly add mouse controls174 "mouse-left" (MouseButtonTrigger. 0)175 "mouse-middle" (MouseButtonTrigger. 2)176 "mouse-right" (MouseButtonTrigger. 1))))178 (defn initialize-inputs179 "Establish key-bindings for a particular virtual world."180 [game input-manager key-map]181 (doall182 (map (fn [[name trigger]]183 (.addMapping184 ^InputManager input-manager185 name (into-array (class trigger)186 [trigger]))) key-map))187 (doall188 (map (fn [name]189 (.addListener190 ^InputManager input-manager game191 (into-array String [name]))) (keys key-map))))193 #+end_src195 These functions are for controlling the world through the keyboard and196 mouse.198 =constant-map= gets the numerical values for all the keys defined in199 the =KeyInput= class.201 #+begin_src clojure :exports both :results verbatim202 (take 5 (vals (cortex.world/constant-map KeyInput)))203 #+end_src205 #+results:206 : ("KEY_ESCAPE" "KEY_1" "KEY_2" "KEY_3" "KEY_4")208 =(all-keys)= converts the constant names like =KEY_J= to the more209 clojure-like =key-j=, and returns a map from these keys to210 jMonkeyEngine =KeyTrigger= objects, which jMonkeyEngine3 uses as it's211 abstraction over the physical keys. =all-keys= also adds the three212 mouse button controls to the map.214 #+begin_src clojure :exports both :results output215 (clojure.pprint/pprint216 (take 6 (cortex.world/all-keys)))217 #+end_src219 #+results:220 : (["key-n" #<KeyTrigger com.jme3.input.controls.KeyTrigger@2ad82934>]221 : ["key-apps" #<KeyTrigger com.jme3.input.controls.KeyTrigger@3c900d00>]222 : ["key-pgup" #<KeyTrigger com.jme3.input.controls.KeyTrigger@7d051157>]223 : ["key-f8" #<KeyTrigger com.jme3.input.controls.KeyTrigger@717f0d2d>]224 : ["key-o" #<KeyTrigger com.jme3.input.controls.KeyTrigger@4a555fcc>]225 : ["key-at" #<KeyTrigger com.jme3.input.controls.KeyTrigger@47d31aaa>])227 ** World Creation228 #+name: world229 #+begin_src clojure :results silent230 (in-ns 'cortex.world)232 (defn no-op233 "Takes any number of arguments and does nothing."234 [& _])236 (defn traverse237 "apply f to every non-node, deeply"238 [f node]239 (if (isa? (class node) Node)240 (dorun (map (partial traverse f) (.getChildren node)))241 (f node)))243 (defn world244 "the =world= function takes care of the details of initializing a245 SimpleApplication.247 ,***** Arguments:249 - root-node : a com.jme3.scene.Node object which contains all of250 the objects that should be in the simulation.252 - key-map : a map from strings describing keys to functions that253 should be executed whenever that key is pressed.254 the functions should take a SimpleApplication object and a255 boolean value. The SimpleApplication is the current simulation256 that is running, and the boolean is true if the key is being257 pressed, and false if it is being released. As an example,259 {\"key-j\" (fn [game value] (if value (println \"key j pressed\")))}261 is a valid key-map which will cause the simulation to print a262 message whenever the 'j' key on the keyboard is pressed.264 - setup-fn : a function that takes a SimpleApplication object. It265 is called once when initializing the simulation. Use it to266 create things like lights, change the gravity, initialize debug267 nodes, etc.269 - update-fn : this function takes a SimpleApplication object and a270 float and is called every frame of the simulation. The float271 tells how many seconds is has been since the last frame was272 rendered, according to whatever clock jme is currently273 using. The default is to use IsoTimer which will result in this274 value always being the same.275 "276 [root-node key-map setup-fn update-fn]277 (let [physics-manager (BulletAppState.)]278 (JmeSystem/setSystemDelegate (AurellemSystemDelegate.))279 (doto280 (proxy [SimpleApplication ActionListener] []281 (simpleInitApp282 []283 (no-exceptions284 ;; allow AI entities as much time as they need to think.285 (.setTimer this (IsoTimer. 60))286 (.setFrustumFar (.getCamera this) 300)287 ;; Create default key-map.288 (initialize-inputs this (.getInputManager this) (all-keys))289 ;; Don't take control of the mouse290 (org.lwjgl.input.Mouse/setGrabbed false)291 ;; add all objects to the world292 (.attachChild (.getRootNode this) root-node)293 ;; enable physics294 ;; add a physics manager295 (.attach (.getStateManager this) physics-manager)296 (.setGravity (.getPhysicsSpace physics-manager)297 (Vector3f. 0 -9.81 0))298 ;; go through every object and add it to the physics299 ;; manager if relevant.300 ;;(traverse (fn [geom]301 ;; (dorun302 ;; (for [n (range (.getNumControls geom))]303 ;; (do304 ;; (cortex.util/println-repl305 ;; "adding " (.getControl geom n))306 ;; (.add (.getPhysicsSpace physics-manager)307 ;; (.getControl geom n))))))308 ;; (.getRootNode this))309 ;; call the supplied setup-fn310 ;; simpler !311 (.addAll (.getPhysicsSpace physics-manager) root-node)312 (if setup-fn313 (setup-fn this))))314 (simpleUpdate315 [tpf]316 (no-exceptions317 (update-fn this tpf)))318 (onAction319 [binding value tpf]320 ;; whenever a key is pressed, call the function returned321 ;; from key-map.322 (no-exceptions323 (if-let [react (key-map binding)]324 (react this value)))))325 ;; don't show a menu to change options.326 (.setShowSettings false)327 ;; continue running simulation even if the window has lost328 ;; focus.329 (.setPauseOnLostFocus false)330 (.setSettings *app-settings*))))332 #+end_src335 =(world)= is the most important function here. It presents a more336 functional interface to the Application life-cycle, and all its337 arguments except =root-node= are plain immutable clojure data338 structures. This makes it easier to extend functionally by composing339 multiple functions together, and to add more keyboard-driven actions340 by combining clojure maps.344 * COMMENT code generation345 #+begin_src clojure :tangle ../src/cortex/world.clj :noweb yes346 <<header>>347 <<settings>>348 <<exceptions>>349 <<input>>350 <<world>>351 #+end_src