Organize transition mechanism into Automaton module
[cellular-automata.git] / polymorphic-life / 001 / src / polymorphic_life.ml
CommitLineData
8c93b722
SK
1open Core.Std
2
3
4d49c95e 4module type MATRIX = sig
7c363dd8
SK
5 module Point : sig
6 type t = {r : int; k : int}
7 end
8
4d49c95e
SK
9 type 'a t
10
a1665c92 11 val create : rs:int -> ks:int -> 'a -> 'a t
4d49c95e 12
7c363dd8 13 val get_neighbors : 'a t -> Point.t -> 'a list
4d49c95e 14
65dbef41
SK
15 val map : 'a t -> f:('a -> 'b) -> 'b t
16
a1665c92 17 val mapi : 'a t -> f:(Point.t -> 'a -> 'b) -> 'b t
4d49c95e 18
a1665c92 19 val iter : 'a t -> f:(Point.t -> 'a -> unit) -> unit
0ce0e798
SK
20
21 val print : 'a t -> to_string:('a -> string) -> unit
4d49c95e
SK
22end
23
24module Matrix : MATRIX = struct
7c363dd8
SK
25 module Point = struct
26 type t = {r : int; k : int}
27
28 let (+) p p' =
29 { r = p.r + p'.r
30 ; k = p.k + p'.k
31 }
32 end
33
394125ca
SK
34 module Direction = struct
35 type t = NW | N | NE
36 | W | E
37 | SW | S | SE
38
39 let all = [ NW ; N ; NE
40 ; W ; E
41 ; SW ; S ; SE
42 ]
43
7c363dd8
SK
44 let to_offset =
45 let open Point in
46 function
47 | NW -> {r = -1; k = -1}
48 | N -> {r = -1; k = 0}
49 | NE -> {r = -1; k = 1}
50 | W -> {r = 0; k = -1}
51 | E -> {r = 0; k = 1}
52 | SW -> {r = 1; k = -1}
53 | S -> {r = 1; k = 0}
54 | SE -> {r = 1; k = 1}
394125ca
SK
55 end
56
4d49c95e
SK
57 type 'a t = 'a array array
58
a1665c92
SK
59 let create ~rs ~ks x =
60 Array.make_matrix ~dimx:rs ~dimy:ks x
4d49c95e
SK
61
62 let iter t ~f =
63 Array.iteri t ~f:(
63fe855d
SK
64 fun r ks ->
65 Array.iteri ks ~f:(
a1665c92
SK
66 fun k x ->
67 f {Point.r; Point.k} x
4d49c95e
SK
68 )
69 )
70
0ce0e798
SK
71 let print t ~to_string =
72 Array.iter t ~f:(
63fe855d
SK
73 fun r ->
74 Array.iter r ~f:(fun x -> printf "%s" (to_string x));
0ce0e798
SK
75 print_newline ()
76 )
77
4d49c95e 78 let map t ~f =
65dbef41
SK
79 Array.map t ~f:(Array.map ~f:(fun x -> f x))
80
81 let mapi t ~f =
4d49c95e 82 Array.mapi t ~f:(
63fe855d
SK
83 fun r ks ->
84 Array.mapi ks ~f:(
a1665c92
SK
85 fun k x ->
86 f {Point.r; Point.k} x
4d49c95e
SK
87 )
88 )
89
7c363dd8 90 let get t {Point.r; Point.k} =
63fe855d 91 t.(r).(k)
394125ca 92
7c363dd8 93 let is_within_bounds t {Point.r; Point.k} =
394125ca
SK
94 match t with
95 | [||] -> assert false
96 | t ->
97 r >= 0 && r < Array.length t &&
98 k >= 0 && k < Array.length t.(0)
99
7c363dd8 100 let neighborhood t point =
394125ca 101 List.map Direction.all ~f:Direction.to_offset
7c363dd8
SK
102 |> List.map ~f:(fun offset_point -> Point.(point + offset_point))
103 |> List.filter ~f:(is_within_bounds t)
394125ca 104
7c363dd8
SK
105 let get_neighbors t point =
106 List.map (neighborhood t point) ~f:(get t)
4d49c95e
SK
107end
108
109
da8f1674
SK
110module type CELL = sig
111 type t
112
b6599385 113 val create : unit -> t
0ce0e798
SK
114
115 val to_string : t -> string
116
da8f1674
SK
117 val state : t -> int
118
119 val react : t -> states:int list -> t
120end
121
122
0d6f7833
SK
123module Conway : CELL = struct
124 type t = D | A
125
0ce0e798
SK
126 let of_int = function
127 | 0 -> D
128 | 1 -> A
129 | _ -> assert false
130
131 let to_int = function
0d6f7833
SK
132 | D -> 0
133 | A -> 1
134
0ce0e798
SK
135 let to_string = function
136 | D -> " "
137 | A -> "o"
138
b6599385 139 let create () =
5c37daed 140 Random.int 2 |> of_int
0ce0e798
SK
141
142 let state = to_int
143
0d6f7833
SK
144 let react t ~states =
145 let live_neighbors = List.fold_left states ~init:0 ~f:(+) in
146 match t with
147 | A when live_neighbors < 2 -> D
148 | A when live_neighbors < 4 -> A
149 | A when live_neighbors > 3 -> D
150 | D when live_neighbors = 3 -> A
b36c0aef
SK
151 | A -> A
152 | D -> D
0d6f7833
SK
153end
154
155
d9fa5d46
SK
156module Automaton : sig
157 type t
aed335e3 158
d9fa5d46 159 val create : rows:int -> columns:int -> interval:float -> t
aed335e3 160
d9fa5d46
SK
161 val loop : t -> unit
162end = struct
163 type t = { grid : Conway.t Matrix.t
164 ; interval : Time.Span.t
165 ; bar : string
166 }
aed335e3 167
d9fa5d46
SK
168 let create ~rows:rs ~columns:ks ~interval =
169 { grid = Matrix.map ~f:Conway.create (Matrix.create ~rs ~ks ())
170 ; interval = Time.Span.of_float interval
171 ; bar = String.make ks '-'
172 }
173
174 let print t =
175 print_endline t.bar;
176 Matrix.print t.grid ~to_string:Conway.to_string;
177 print_endline t.bar
178
179 let next t =
180 let grid =
181 Matrix.mapi t.grid ~f:(
182 fun point cell ->
183 let neighbors = Matrix.get_neighbors t.grid point in
184 Conway.react cell ~states:(List.map neighbors ~f:Conway.state)
185 )
186 in
187 {t with grid}
188
189 let rec loop t =
190 print t;
191 Time.pause t.interval;
192 loop (next t)
193end
7707ff62
SK
194
195
196let main () =
197 Random.self_init ();
d9fa5d46
SK
198 let rows, columns = Or_error.ok_exn Linux_ext.get_terminal_size () in
199 Automaton.create ~rows:(rows - 3) ~columns ~interval:0.1 |> Automaton.loop
8c93b722
SK
200
201
7d89c037
SK
202let spec =
203 let summary = "Polymorphic Cellular Automata" in
7707ff62 204 let spec = Command.Spec.empty in
7d89c037
SK
205 Command.basic ~summary spec main
206
207
208let () = Command.run spec
This page took 0.034748 seconds and 4 git commands to generate.