view org/world.org @ 65:4b5f00110d8c

removed pokemon.lpsolve dependency
author Robert McIntyre <rlm@mit.edu>
date Wed, 07 Dec 2011 10:29:35 -0600
parents 00d0e1639d4b
children 1381a6ebd08b
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 #+srcname: header
50 #+begin_src clojure :results silent
51 (ns cortex.world
52 "World Creation, abstracion over jme3's input system, and REPL
53 driven exception handling"
54 {:author "Robert McIntyre"}
56 (:use (clojure.contrib (def :only (defvar))))
57 (:use [clojure.contrib [str-utils :only [re-gsub]]])
59 (:import com.aurellem.capture.IsoTimer)
61 (:import com.jme3.math.Vector3f)
62 (:import com.jme3.scene.Node)
63 (:import com.jme3.system.AppSettings)
64 (:import com.jme3.system.JmeSystem)
65 (:import com.jme3.input.KeyInput)
66 (:import com.jme3.input.controls.KeyTrigger)
67 (:import com.jme3.input.controls.MouseButtonTrigger)
68 (:import com.jme3.input.InputManager)
69 (:import com.jme3.bullet.BulletAppState)
70 (:import com.jme3.shadow.BasicShadowRenderer)
71 (:import com.jme3.app.SimpleApplication)
72 (:import com.jme3.input.controls.ActionListener)
73 (:import com.jme3.renderer.queue.RenderQueue$ShadowMode)
74 (:import org.lwjgl.input.Mouse))
75 #+end_src
77 ** General Settings
78 #+srcname: settings
79 #+begin_src clojure
80 (in-ns 'cortex.world)
82 (defvar *app-settings*
83 (doto (AppSettings. true)
84 (.setFullscreen false)
85 (.setTitle "Aurellem.")
86 ;; The "Send" AudioRenderer supports sumulated hearing.
87 (.setAudioRenderer "Send"))
88 "These settings control how the game is displayed on the screen for
89 debugging purposes. Use binding forms to change this if desired.
90 Full-screen mode does not work on some computers.")
92 (defn asset-manager
93 "returns a new, configured assetManager" []
94 (JmeSystem/newAssetManager
95 (.getResource
96 (.getContextClassLoader (Thread/currentThread))
97 "com/jme3/asset/Desktop.cfg")))
98 #+end_src
100 Normally, people just use the =AssetManager= inherited from
101 =Application= whenever they extend that class. However,
102 =AssetManagers= are useful on their own to create objects/ materials,
103 independent from any particular application. =(asset-manager)= makes
104 object creation less tightly bound to a particular Application
105 Instance.
107 ** Exception Protection
108 #+srcname: exceptions
109 #+begin_src clojure
110 (in-ns 'cortex.world)
112 (defmacro no-exceptions
113 "Sweet relief like I never knew."
114 [& forms]
115 `(try ~@forms (catch Exception e# (.printStackTrace e#))))
117 (defn thread-exception-removal
118 "Exceptions thrown in the graphics rendering thread generally cause
119 the entire REPL to crash! It is good to suppress them while trying
120 things out to shorten the debug loop."
121 []
122 (.setUncaughtExceptionHandler
123 (Thread/currentThread)
124 (proxy [Thread$UncaughtExceptionHandler] []
125 (uncaughtException
126 [thread thrown]
127 (println "uncaught-exception thrown in " thread)
128 (println (.getMessage thrown))))))
130 #+end_src
132 Exceptions thrown in the LWJGL render thread, if not caught, will
133 destroy the entire JVM process including the REPL and slow development
134 to a crawl. It is better to try to continue on in the face of
135 exceptions and keep the REPL alive as long as possible. Normally it
136 is possible to just exit the faulty Application, fix the bug,
137 reevaluate the appropriate forms, and be on your way, without
138 restarting the JVM.
140 ** Input
141 #+srcname: input
142 #+begin_src clojure
143 (in-ns 'cortex.world)
145 (defn static-integer?
146 "does the field represent a static integer constant?"
147 [#^java.lang.reflect.Field field]
148 (and (java.lang.reflect.Modifier/isStatic (.getModifiers field))
149 (integer? (.get field nil))))
151 (defn integer-constants [class]
152 (filter static-integer? (.getFields class)))
154 (defn-memo constant-map
155 "Takes a class and creates a map of the static constant integer
156 fields with their names. This helps with C wrappers where they have
157 just defined a bunch of integer constants instead of enums"
158 [class]
159 (let [integer-fields (integer-constants class)]
160 (into (sorted-map)
161 (zipmap (map #(.get % nil) integer-fields)
162 (map #(.getName %) integer-fields)))))
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 (re-gsub #"_" "-" 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 These functions are for controlling the world through the keyboard and
196 mouse.
198 =constant-map= gets the numerical values for all the keys defined in
199 the =KeyInput= class.
201 #+begin_src clojure :exports both :results verbatim
202 (take 5 (vals (cortex.world/constant-map KeyInput)))
203 #+end_src
205 #+results:
206 : ("KEY_ESCAPE" "KEY_1" "KEY_2" "KEY_3" "KEY_4")
208 =(all-keys)= converts the constant names like =KEY_J= to the more
209 clojure-like =key-j=, and returns a map from these keys to
210 jMonkeyEngine =KeyTrigger= objects, which jMonkeyEngine3 uses as it's
211 abstraction over the physical keys. =all-keys= also adds the three
212 mouse button controls to the map.
214 #+begin_src clojure :exports both :results output
215 (require 'clojure.contrib.pprint)
216 (clojure.contrib.pprint/pprint
217 (take 6 (cortex.world/all-keys)))
218 #+end_src
220 #+results:
221 : (["key-n" #<KeyTrigger com.jme3.input.controls.KeyTrigger@9f9fec0>]
222 : ["key-apps" #<KeyTrigger com.jme3.input.controls.KeyTrigger@28edbe7f>]
223 : ["key-pgup" #<KeyTrigger com.jme3.input.controls.KeyTrigger@647fd33a>]
224 : ["key-f8" #<KeyTrigger com.jme3.input.controls.KeyTrigger@24f97188>]
225 : ["key-o" #<KeyTrigger com.jme3.input.controls.KeyTrigger@685c53ff>]
226 : ["key-at" #<KeyTrigger com.jme3.input.controls.KeyTrigger@4c3e2e5f>])
228 ** World Creation
229 #+srcname: world
230 #+begin_src clojure :results silent
231 (in-ns 'cortex.world)
233 (defn no-op
234 "Takes any number of arguments and does nothing."
235 [& _])
237 (defn traverse
238 "apply f to every non-node, deeply"
239 [f node]
240 (if (isa? (class node) Node)
241 (dorun (map (partial traverse f) (.getChildren node)))
242 (f node)))
244 (defn world
245 "the =world= function takes care of the details of initializing a
246 SimpleApplication.
248 ***** Arguments:
250 - root-node : a com.jme3.scene.Node object which contains all of
251 the objects that should be in the simulation.
253 - key-map : a map from strings describing keys to functions that
254 should be executed whenever that key is pressed.
255 the functions should take a SimpleApplication object and a
256 boolean value. The SimpleApplication is the current simulation
257 that is running, and the boolean is true if the key is being
258 pressed, and false if it is being released. As an example,
260 {\"key-j\" (fn [game value] (if value (println \"key j pressed\")))}
262 is a valid key-map which will cause the simulation to print a
263 message whenever the 'j' key on the keyboard is pressed.
265 - setup-fn : a function that takes a SimpleApplication object. It
266 is called once when initializing the simulation. Use it to
267 create things like lights, change the gravity, initialize debug
268 nodes, etc.
270 - update-fn : this function takes a SimpleApplication object and a
271 float and is called every frame of the simulation. The float
272 tells how many seconds is has been since the last frame was
273 rendered, according to whatever clock jme is currently
274 using. The default is to use IsoTimer which will result in this
275 value always being the same.
276 "
277 [root-node key-map setup-fn update-fn]
278 (let [physics-manager (BulletAppState.)]
279 (doto
280 (proxy [SimpleApplication ActionListener] []
281 (simpleInitApp
282 []
283 (no-exceptions
284 ;; 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 mouse
290 (org.lwjgl.input.Mouse/setGrabbed false)
291 ;; add all objects to the world
292 (.attachChild (.getRootNode this) root-node)
293 ;; enable physics
294 ;; add a physics manager
295 (.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 physics
299 ;; manager if relevant.
300 ;;(traverse (fn [geom]
301 ;; (dorun
302 ;; (for [n (range (.getNumControls geom))]
303 ;; (do
304 ;; (cortex.util/println-repl
305 ;; "adding " (.getControl geom n))
306 ;; (.add (.getPhysicsSpace physics-manager)
307 ;; (.getControl geom n))))))
308 ;; (.getRootNode this))
309 ;; call the supplied setup-fn
310 ;; simpler !
311 (.addAll (.getPhysicsSpace physics-manager) root-node)
312 (if setup-fn
313 (setup-fn this))))
314 (simpleUpdate
315 [tpf]
316 (no-exceptions
317 (update-fn this tpf)))
318 (onAction
319 [binding value tpf]
320 ;; whenever a key is pressed, call the function returned
321 ;; from key-map.
322 (no-exceptions
323 (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 lost
328 ;; focus.
329 (.setPauseOnLostFocus false)
330 (.setSettings *app-settings*))))
331 #+end_src
334 =(world)= is the most important function here. It presents a more
335 functional interface to the Application life-cycle, and all its
336 arguments except =root-node= are plain immutable clojure data
337 structures. This makes it easier to extend functionally by composing
338 multiple functions together, and to add more keyboard-driven actions
339 by combining clojure maps.
343 * COMMENT code generation
344 #+begin_src clojure :tangle ../src/cortex/world.clj :noweb yes
345 <<header>>
346 <<settings>>
347 <<exceptions>>
348 <<input>>
349 <<world>>
350 #+end_src