view org/world.org @ 378:8e62bf52be59

reviewing ullman's stuff.
author Robert McIntyre <rlm@mit.edu>
date Thu, 11 Apr 2013 06:46:01 +0000
parents 52de8a36edde
children 939bcc5950b2
line wrap: on
line source
1 #+title: A Virtual World for Sensate Creatures
2 #+author: Robert McIntyre
3 #+email: rlm@mit.edu
4 #+description: Creating a Virtual World for AI constructs using clojure and JME3
5 #+keywords: JME3, clojure, virtual world, exception handling
6 #+SETUPFILE: ../../aurellem/org/setup.org
7 #+INCLUDE: ../../aurellem/org/level-0.org
8 #+BABEL: :mkdirp yes :noweb yes :exports both
10 * The World
12 There's no point in having senses if there's nothing to experience. In
13 this section I make some tools with which to build virtual worlds for
14 my characters to inhabit. If you look at the tutorials at [[http://www.jmonkeyengine.org/wiki/doku.php/jme3:beginner][the jme3
15 website]], you will see a pattern in how virtual worlds are normally
16 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 using
21 the inherited =assetManager= and call them by overriding the
22 =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 particular
33 application.
34 - Use a REPL -- this means that there's only ever one JVM, and
35 Applications come and go.
37 Since most development work using jMonkeyEngine is done in Java, jme3
38 supports "the Java way" quite well out of the box. To work "the
39 clojure way", it necessary to wrap the JME3 elements that deal with
40 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= and
46 =SimpleApplication= classes.
48 ** Header
49 #+name: header
50 #+begin_src clojure :results silent
51 (ns cortex.world
52 "World Creation, abstraction over jme3's input system, and REPL
53 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_src
76 ** General Settings
77 #+name: settings
78 #+begin_src clojure
79 (in-ns 'cortex.world)
81 (def ^:dynamic *app-settings*
82 "These settings control how the game is displayed on the screen for
83 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-manager
92 "returns a new, configured assetManager" []
93 (JmeSystem/newAssetManager
94 (.getResource
95 (.getContextClassLoader (Thread/currentThread))
96 "com/jme3/asset/Desktop.cfg")))
97 #+end_src
99 Normally, people just use the =AssetManager= inherited from
100 =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)= makes
103 object creation less tightly bound to a particular Application
104 Instance.
106 ** Exception Protection
107 #+name: exceptions
108 #+begin_src clojure
109 (in-ns 'cortex.world)
111 (defmacro no-exceptions
112 "Sweet relief like I never knew."
113 [& forms]
114 `(try ~@forms (catch Exception e# (.printStackTrace e#))))
116 (defn thread-exception-removal
117 "Exceptions thrown in the graphics rendering thread generally cause
118 the entire REPL to crash! It is good to suppress them while trying
119 things out to shorten the debug loop."
120 []
121 (.setUncaughtExceptionHandler
122 (Thread/currentThread)
123 (proxy [Thread$UncaughtExceptionHandler] []
124 (uncaughtException
125 [thread thrown]
126 (println "uncaught-exception thrown in " thread)
127 (println (.getMessage thrown))))))
129 #+end_src
131 Exceptions thrown in the LWJGL render thread, if not caught, will
132 destroy the entire JVM process including the REPL and slow development
133 to a crawl. It is better to try to continue on in the face of
134 exceptions and keep the REPL alive as long as possible. Normally it
135 is possible to just exit the faulty Application, fix the bug,
136 reevaluate the appropriate forms, and be on your way, without
137 restarting the JVM.
139 ** Input
140 #+name: input
141 #+begin_src clojure
142 (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-map
154 "Takes a class and creates a map of the static constant integer
155 fields with their names. This helps with C wrappers where they have
156 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-keys
165 "Uses reflection to generate a map of string names to jme3 trigger
166 objects, which govern input from the keyboard and mouse"
167 []
168 (let [inputs (constant-map KeyInput)]
169 (assoc
170 (zipmap (map (fn [field]
171 (.toLowerCase (.replaceAll field "_" "-"))) (vals inputs))
172 (map (fn [val] (KeyTrigger. val)) (keys inputs)))
173 ;;explicitly add mouse controls
174 "mouse-left" (MouseButtonTrigger. 0)
175 "mouse-middle" (MouseButtonTrigger. 2)
176 "mouse-right" (MouseButtonTrigger. 1))))
178 (defn initialize-inputs
179 "Establish key-bindings for a particular virtual world."
180 [game input-manager key-map]
181 (doall
182 (map (fn [[name trigger]]
183 (.addMapping
184 ^InputManager input-manager
185 name (into-array (class trigger)
186 [trigger]))) key-map))
187 (doall
188 (map (fn [name]
189 (.addListener
190 ^InputManager input-manager game
191 (into-array String [name]))) (keys key-map))))
193 #+end_src
195 #+results: input
196 : #'cortex.world/initialize-inputs
198 These functions are for controlling the world through the keyboard and
199 mouse.
201 =constant-map= gets the numerical values for all the keys defined in
202 the =KeyInput= class.
204 #+begin_src clojure :exports both :results verbatim
205 (take 5 (vals (cortex.world/constant-map KeyInput)))
206 #+end_src
208 #+results:
209 : ("KEY_ESCAPE" "KEY_1" "KEY_2" "KEY_3" "KEY_4")
211 =(all-keys)= converts the constant names like =KEY_J= to the more
212 clojure-like =key-j=, and returns a map from these keys to
213 jMonkeyEngine =KeyTrigger= objects, which jMonkeyEngine3 uses as it's
214 abstraction over the physical keys. =all-keys= also adds the three
215 mouse button controls to the map.
217 #+begin_src clojure :exports both :results output
218 (clojure.pprint/pprint
219 (take 6 (cortex.world/all-keys)))
220 #+end_src
222 #+results:
223 : (["key-n" #<KeyTrigger com.jme3.input.controls.KeyTrigger@2ad82934>]
224 : ["key-apps" #<KeyTrigger com.jme3.input.controls.KeyTrigger@3c900d00>]
225 : ["key-pgup" #<KeyTrigger com.jme3.input.controls.KeyTrigger@7d051157>]
226 : ["key-f8" #<KeyTrigger com.jme3.input.controls.KeyTrigger@717f0d2d>]
227 : ["key-o" #<KeyTrigger com.jme3.input.controls.KeyTrigger@4a555fcc>]
228 : ["key-at" #<KeyTrigger com.jme3.input.controls.KeyTrigger@47d31aaa>])
230 ** World Creation
231 #+name: world
232 #+begin_src clojure :results silent
233 (in-ns 'cortex.world)
235 (defn no-op
236 "Takes any number of arguments and does nothing."
237 [& _])
239 (defn traverse
240 "apply f to every non-node, deeply"
241 [f node]
242 (if (isa? (class node) Node)
243 (dorun (map (partial traverse f) (.getChildren node)))
244 (f node)))
246 (defn world
247 "the =world= function takes care of the details of initializing a
248 SimpleApplication.
250 ***** Arguments:
252 - root-node : a com.jme3.scene.Node object which contains all of
253 the objects that should be in the simulation.
255 - key-map : a map from strings describing keys to functions that
256 should be executed whenever that key is pressed.
257 the functions should take a SimpleApplication object and a
258 boolean value. The SimpleApplication is the current simulation
259 that is running, and the boolean is true if the key is being
260 pressed, and false if it is being released. As an example,
262 {\"key-j\" (fn [game value] (if value (println \"key j pressed\")))}
264 is a valid key-map which will cause the simulation to print a
265 message whenever the 'j' key on the keyboard is pressed.
267 - setup-fn : a function that takes a SimpleApplication object. It
268 is called once when initializing the simulation. Use it to
269 create things like lights, change the gravity, initialize debug
270 nodes, etc.
272 - update-fn : this function takes a SimpleApplication object and a
273 float and is called every frame of the simulation. The float
274 tells how many seconds is has been since the last frame was
275 rendered, according to whatever clock jme is currently
276 using. The default is to use IsoTimer which will result in this
277 value always being the same.
278 "
279 [root-node key-map setup-fn update-fn]
280 (let [physics-manager (BulletAppState.)]
281 (JmeSystem/setSystemDelegate (AurellemSystemDelegate.))
282 (doto
283 (proxy [SimpleApplication ActionListener] []
284 (simpleInitApp
285 []
286 (no-exceptions
287 ;; allow AI entities as much time as they need to think.
288 (.setTimer this (IsoTimer. 60))
289 (.setFrustumFar (.getCamera this) 300)
290 ;; Create default key-map.
291 (initialize-inputs this (.getInputManager this) (all-keys))
292 ;; Don't take control of the mouse
293 (org.lwjgl.input.Mouse/setGrabbed false)
294 ;; add all objects to the world
295 (.attachChild (.getRootNode this) root-node)
296 ;; enable physics
297 ;; add a physics manager
298 (.attach (.getStateManager this) physics-manager)
299 (.setGravity (.getPhysicsSpace physics-manager)
300 (Vector3f. 0 -9.81 0))
301 ;; go through every object and add it to the physics
302 ;; manager if relevant.
303 ;;(traverse (fn [geom]
304 ;; (dorun
305 ;; (for [n (range (.getNumControls geom))]
306 ;; (do
307 ;; (cortex.util/println-repl
308 ;; "adding " (.getControl geom n))
309 ;; (.add (.getPhysicsSpace physics-manager)
310 ;; (.getControl geom n))))))
311 ;; (.getRootNode this))
312 ;; call the supplied setup-fn
313 ;; simpler !
314 (.addAll (.getPhysicsSpace physics-manager) root-node)
315 (if setup-fn
316 (setup-fn this))))
317 (simpleUpdate
318 [tpf]
319 (no-exceptions
320 (update-fn this tpf)))
321 (onAction
322 [binding value tpf]
323 ;; whenever a key is pressed, call the function returned
324 ;; from key-map.
325 (no-exceptions
326 (if-let [react (key-map binding)]
327 (react this value)))))
328 ;; don't show a menu to change options.
329 (.setShowSettings false)
330 ;; continue running simulation even if the window has lost
331 ;; focus.
332 (.setPauseOnLostFocus false)
333 (.setSettings *app-settings*))))
335 #+end_src
338 =(world)= is the most important function here. It presents a more
339 functional interface to the Application life-cycle, and all its
340 arguments except =root-node= are plain immutable clojure data
341 structures. This makes it easier to extend functionally by composing
342 multiple functions together, and to add more keyboard-driven actions
343 by combining clojure maps.
347 * COMMENT code generation
348 #+begin_src clojure :tangle ../src/cortex/world.clj :noweb yes
349 <<header>>
350 <<settings>>
351 <<exceptions>>
352 <<input>>
353 <<world>>
354 #+end_src