Carp/examples/updating.carp
2018-04-10 12:34:36 +02:00

51 lines
1.1 KiB
Plaintext

;; A slightly bigger example of how to work with structs and arrays that change
(use IO)
(deftype Pos
[x Float
y Float])
(defn incf [x]
(Float.+ x 1.0f))
(defmodule Pos
(defn move [pos]
(=> pos
(Pos.update-x incf)
(Pos.update-y incf))))
(deftype Monster
[pos Pos
hp Int
name String])
(defmodule Monster
(defn init-random [name]
(Monster.init
(Pos.init (Float.random-between 0.0f 100.0f)
(Float.random-between 0.0f 100.0f))
100
@name))
(defn move [monster]
(Monster.update-pos monster Pos.move)))
(defn main []
(do
; here we always use the same seed for determinism, for simple random
; numbers that change you can for instance use (System.time)
(System.seed-random 10)
(let [monsters (Array.copy-map Monster.init-random &[@"Pegasus" @"Dragon" @"Devil"])]
(do
(println (ref (Array.str &monsters)))
(let [new-monsters (Array.endo-map Monster.move monsters)]
(println (ref (Array.str &new-monsters))))))
0 ;; <- Return value, should not be needed?!
))
(build)
(run)
(quit)