Add docstrings to ui and utils

This commit is contained in:
oakes
2014-01-21 19:11:12 -05:00
parent db4f05d4ac
commit 4bc1ce6856
2 changed files with 216 additions and 21 deletions

View File

@@ -7,10 +7,12 @@
; misc
(defn throw-key-not-found
"Internal use only"
[k]
(throw (Exception. (str "The keyword " k " is not found."))))
(defn get-obj
"Internal use only"
[obj k]
(if (map? obj)
(or (get obj k)
@@ -22,26 +24,31 @@
(def ^:const main-package "com.badlogic.gdx")
(defn ^:private split-key
"Internal use only"
[k]
(-> k name (s/split #"-")))
(defn ^:private join-keys
"Internal use only"
[k-list]
(->> k-list (map name) (s/join ".") (str main-package ".")))
(defn key->upper
"Returns a string based on keyword `k` with upper case and underscores"
[k]
(->> (split-key k)
(map s/upper-case)
(s/join "_")))
(defn key->pascal
"Returns a string based on keyword `k` with pascal case and no delimiters"
[k]
(->> (split-key k)
(map s/capitalize)
(s/join "")))
(defn key->camel
"Returns a string based on keyword `k` with camel case and no delimiters"
[k]
(let [parts (split-key k)]
(->> (rest parts)
@@ -50,36 +57,48 @@
(s/join ""))))
(defn key->method
"Returns a symbol based on keyword `k` formatted as a method call"
[k]
(symbol (str "." (key->camel k))))
; static methods/fields
(defn static-symbol
"Returns a fully-qualified static method or field based on `args` whose last
item is formatted with `transform-fn`"
[args transform-fn]
(->> (transform-fn (last args))
(str (join-keys (butlast args)) "/")
symbol))
(defmacro static-field-lower
"Returns a fully-qualified static method or field whose last item is formatted
in camel case"
[& args]
`~(static-symbol args key->camel))
(defmacro static-field-upper
"Returns a fully-qualified static method or field whose last item is formatted
in upper case"
[& args]
`~(static-symbol args key->upper))
(defmacro scaling
"Internal use only"
[k]
`(static-field-lower :utils :Scaling ~k))
; java interop
(defmacro call!
"Calls method `k` of `obj` with `args`
(call! \"I'm a string\" :index-of \"s\")"
[obj k & args]
`(~(key->method k) ~obj ~@args))
(defn create-method-calls
"Internal use only"
[calls args]
(let [method-name (first args)
[my-args rest-args] (split-with #(not (keyword? %)) (rest args))]
@@ -89,16 +108,29 @@
calls)))
(defmacro calls!
"Calls methods on `obj`
(calls! (java.util.ArrayList.) :add \"I'm a string\" :add \"So am I\")"
[obj & args]
`(doto ~obj ~@(create-method-calls [] args)))
(defn create-field-setters
"Internal use only"
[obj {:keys [] :as args}]
(map (fn [[k v]]
`(set! (. ~obj ~(symbol (key->camel k))) ~v))
args))
(defmacro fields!
"Sets fields on `obj` (it is important that `obj` is a symbol, because when
the macro expands it will use it several times, and you probably don't want a
new object to be created each time a field is set)
(fields! obj
:active true
:angle 2
:awake true
:fixed-rotation false)"
[obj & args]
`(do ~@(create-field-setters obj args)
~obj))
@@ -106,18 +138,24 @@
; data structures
(defn gdx-array*
"The function version of `gdx-array`"
[clj-arr]
(Array. true (into-array clj-arr) 1 (count clj-arr)))
(defmacro gdx-array
"Returns an [Array](http://libgdx.badlogicgames.com/nightlies/docs/api/com/badlogic/gdx/utils/Array.html)
(gdx-array [1 2 3 4])"
[clj-arr & options]
`(calls! ^Array (gdx-array* ~clj-arr) ~@options))
(defmacro gdx-array!
"Calls a single method on `gdx-array`"
[object k & options]
`(call! ^Array ~object ~k ~@options))
(defn gdx-array-map*
"The function version of `gdx-array-map`"
[clj-map]
(let [gdx-map (ArrayMap.)]
(doseq [[k v] clj-map]
@@ -125,16 +163,22 @@
gdx-map))
(defmacro gdx-array-map
"Returns an [ArrayMap](http://libgdx.badlogicgames.com/nightlies/docs/api/com/badlogic/gdx/utils/ArrayMap.html)
(gdx-array-map {:key-1 1 :key-2 2})"
[clj-map & options]
`(calls! ^ArrayMap (gdx-array-map* ~clj-map) ~@options))
(defmacro gdx-array-map!
"Calls a single method on `gdx-array-map`"
[object k & options]
`(call! ^ArrayMap ~object ~k ~@options))
; entities
(defmulti create-entity class)
(defmulti create-entity
"Internal use only"
class)
(defmethod create-entity TextureRegion
[obj]