Cleaner composition.
[cellular-automata.git] / polymorphism / 001 / src / polymorphism.ml
CommitLineData
8c93b722
SK
1open Core.Std
2
3
a0d860e4
SK
4let (|-) g f x = f (g x)
5
6
8bad36d8
SK
7module Terminal :
8sig
ce139f1f
SK
9 type color = [ `green
10 | `red
39971ff4 11 | `white
ce139f1f
SK
12 ]
13
14 val string_with_color : string -> color -> string
15
16 val clear : unit -> unit
17
18 val reset : unit -> unit
8bad36d8
SK
19end =
20struct
ce139f1f
SK
21 type color = [ `green
22 | `red
39971ff4 23 | `white
ce139f1f
SK
24 ]
25
26 let ansi_code_clear = "\027[2J" (* Clear screen *)
27 let ansi_code_reset = "\027[1;1H" (* Reset cursor position *)
28
29 let string_of_color = function
30 | `green -> "\027[0;32m"
31 | `red -> "\027[1;31m"
39971ff4 32 | `white -> "\027[1;37m"
ce139f1f
SK
33
34 let string_with_color s c =
35 sprintf "%s%s\027[0m" (string_of_color c) s
36
37 let clear () =
38 print_string ansi_code_clear
39
40 let reset () =
41 print_string ansi_code_reset
42end
43
44
8bad36d8
SK
45module Matrix :
46sig
47 module Point :
48 sig
7c363dd8
SK
49 type t = {r : int; k : int}
50 end
51
4d49c95e
SK
52 type 'a t
53
a1665c92 54 val create : rs:int -> ks:int -> 'a -> 'a t
4d49c95e 55
7c363dd8 56 val get_neighbors : 'a t -> Point.t -> 'a list
4d49c95e 57
65dbef41
SK
58 val map : 'a t -> f:('a -> 'b) -> 'b t
59
a1665c92 60 val mapi : 'a t -> f:(Point.t -> 'a -> 'b) -> 'b t
4d49c95e 61
a1665c92 62 val iter : 'a t -> f:(Point.t -> 'a -> unit) -> unit
0ce0e798
SK
63
64 val print : 'a t -> to_string:('a -> string) -> unit
8bad36d8
SK
65end =
66struct
67 module Point =
68 struct
7c363dd8
SK
69 type t = {r : int; k : int}
70
71 let (+) p p' =
72 { r = p.r + p'.r
73 ; k = p.k + p'.k
74 }
75 end
76
8bad36d8
SK
77 module Direction =
78 struct
394125ca
SK
79 type t = NW | N | NE
80 | W | E
81 | SW | S | SE
82
83 let all = [ NW ; N ; NE
84 ; W ; E
85 ; SW ; S ; SE
86 ]
87
7c363dd8
SK
88 let to_offset =
89 let open Point in
90 function
91 | NW -> {r = -1; k = -1}
92 | N -> {r = -1; k = 0}
93 | NE -> {r = -1; k = 1}
94 | W -> {r = 0; k = -1}
95 | E -> {r = 0; k = 1}
96 | SW -> {r = 1; k = -1}
97 | S -> {r = 1; k = 0}
98 | SE -> {r = 1; k = 1}
394125ca
SK
99 end
100
4d49c95e
SK
101 type 'a t = 'a array array
102
a1665c92
SK
103 let create ~rs ~ks x =
104 Array.make_matrix ~dimx:rs ~dimy:ks x
4d49c95e
SK
105
106 let iter t ~f =
107 Array.iteri t ~f:(
63fe855d
SK
108 fun r ks ->
109 Array.iteri ks ~f:(
a1665c92
SK
110 fun k x ->
111 f {Point.r; Point.k} x
4d49c95e
SK
112 )
113 )
114
0ce0e798
SK
115 let print t ~to_string =
116 Array.iter t ~f:(
63fe855d
SK
117 fun r ->
118 Array.iter r ~f:(fun x -> printf "%s" (to_string x));
0ce0e798
SK
119 print_newline ()
120 )
121
4d49c95e 122 let map t ~f =
65dbef41
SK
123 Array.map t ~f:(Array.map ~f:(fun x -> f x))
124
125 let mapi t ~f =
4d49c95e 126 Array.mapi t ~f:(
63fe855d
SK
127 fun r ks ->
128 Array.mapi ks ~f:(
a1665c92
SK
129 fun k x ->
130 f {Point.r; Point.k} x
4d49c95e
SK
131 )
132 )
133
7c363dd8 134 let get t {Point.r; Point.k} =
63fe855d 135 t.(r).(k)
394125ca 136
7c363dd8 137 let is_within_bounds t {Point.r; Point.k} =
394125ca
SK
138 match t with
139 | [||] -> assert false
140 | t ->
141 r >= 0 && r < Array.length t &&
142 k >= 0 && k < Array.length t.(0)
143
7c363dd8 144 let neighborhood t point =
394125ca 145 List.map Direction.all ~f:Direction.to_offset
7c363dd8
SK
146 |> List.map ~f:(fun offset_point -> Point.(point + offset_point))
147 |> List.filter ~f:(is_within_bounds t)
394125ca 148
7c363dd8
SK
149 let get_neighbors t point =
150 List.map (neighborhood t point) ~f:(get t)
4d49c95e
SK
151end
152
153
8bad36d8
SK
154module PhenoType :
155sig
4b18b7df
SK
156 type t
157
158 val create : char -> Terminal.color option -> t
159
160 val to_string : t -> string
8bad36d8
SK
161end =
162struct
4b18b7df
SK
163 type t = { color : Terminal.color option
164 ; character : char
165 }
166
167 let create character color =
168 {color; character}
169
170 let to_string = function
171 | {color=None; character} ->
172 String.of_char character
173 | {color=Some c; character} ->
174 Terminal.string_with_color (String.of_char character) c
a96702d3
SK
175end
176
da8f1674 177
8bad36d8
SK
178module Cell =
179struct
180 module State =
181 struct
c238c903
SK
182 type intention = Friendly
183 | Neutral
184 | Hostile
185
186 type t = Alive of intention
a0d860e4
SK
187 | Dead
188 end
189
190 type t = { state : State.t
a96702d3 191 ; pheno : PhenoType.t
a96702d3
SK
192 }
193end
0ce0e798 194
0ce0e798 195
8bad36d8
SK
196module type RULE =
197sig
a96702d3 198 val create : unit -> Cell.t
da8f1674 199
a0d860e4
SK
200 val transition : self:Cell.State.t
201 -> neighbors:Cell.State.t list
202 -> Cell.t
da8f1674
SK
203end
204
205
8bad36d8
SK
206module Life : RULE =
207struct
208 module State :
209 sig
a0d860e4
SK
210 type t = D | A
211
212 val of_int : int -> t
0d6f7833 213
a0d860e4 214 val to_int : t -> int
a96702d3 215
a0d860e4 216 val to_cell : t -> Cell.t
0ce0e798 217
a0d860e4 218 val of_cell_state : Cell.State.t -> t
77d0f9e1
SK
219
220 val next : t -> live_neighbors:int -> t
8bad36d8
SK
221 end =
222 struct
a0d860e4 223 type t = D | A
0d6f7833 224
a0d860e4
SK
225 let of_int = function
226 | 0 -> D
227 | 1 -> A
228 | _ -> assert false
a96702d3 229
a0d860e4
SK
230 let to_int = function
231 | D -> 0
232 | A -> 1
a96702d3 233
a0d860e4
SK
234 let to_pheno = function
235 | D -> PhenoType.create ' ' None
236 | A -> PhenoType.create 'o' (Some `white)
0ce0e798 237
a0d860e4 238 let of_cell_state = function
c238c903
SK
239 | Cell.State.Dead -> D
240 | Cell.State.Alive Cell.State.Friendly -> A
241 | Cell.State.Alive Cell.State.Neutral -> A
242 | Cell.State.Alive Cell.State.Hostile -> D
a0d860e4
SK
243
244 let to_cell_state = function
245 | D -> Cell.State.Dead
c238c903 246 | A -> Cell.State.Alive Cell.State.Neutral
a0d860e4
SK
247
248 let to_cell t =
249 { Cell.state = t |> to_cell_state
250 ; Cell.pheno = t |> to_pheno
251 }
0ce0e798 252
77d0f9e1
SK
253 let next t ~live_neighbors =
254 match t with
255 | A when live_neighbors < 2 -> D
256 | A when live_neighbors < 4 -> A
257 | A when live_neighbors > 3 -> D
258 | D when live_neighbors = 3 -> A
259 | A -> A
260 | D -> D
261 end
a96702d3
SK
262
263 let create () =
a0d860e4
SK
264 Random.int 2 |> State.of_int |> State.to_cell
265
47c9d696
SK
266 let count_of_live =
267 List.map ~f:State.of_cell_state
268 |- List.map ~f:State.to_int
269 |- List.fold_left ~f:(+) ~init:0
a0d860e4
SK
270
271 let transition ~self ~neighbors =
272 self |> State.of_cell_state
31d92373 273 |> State.next ~live_neighbors:(count_of_live neighbors)
a0d860e4 274 |> State.to_cell
0d6f7833
SK
275end
276
277
8bad36d8
SK
278module ForestFire : RULE =
279struct
280 module State :
281 sig
a0d860e4 282 type t = E | T | B
fd51b8fa 283
a0d860e4 284 val is_burning : t -> bool
fd51b8fa 285
a0d860e4 286 val of_int : int -> t
fd51b8fa 287
a0d860e4 288 val to_int : t -> int
fd51b8fa 289
a0d860e4
SK
290 val to_cell : t -> Cell.t
291
292 val of_cell_state : Cell.State.t -> t
77d0f9e1
SK
293
294 val next : t -> burning_neighbors:int -> t
8bad36d8
SK
295 end =
296 struct
a0d860e4
SK
297 type t = E | T | B
298
299 let is_burning = function
300 | E -> false
301 | T -> false
302 | B -> true
fd51b8fa 303
a0d860e4
SK
304 let of_int = function
305 | 0 -> E
306 | 1 -> T
307 | 2 -> B
308 | _ -> assert false
fd51b8fa 309
a0d860e4
SK
310 let to_int = function
311 | E -> 0
312 | T -> 1
313 | B -> 2
314
315 let to_pheno = function
316 | E -> PhenoType.create ' ' None
317 | T -> PhenoType.create 'T' (Some `green)
318 | B -> PhenoType.create '#' (Some `red)
319
320 let of_cell_state = function
c238c903
SK
321 | Cell.State.Dead -> E
322 | Cell.State.Alive Cell.State.Friendly -> T
323 | Cell.State.Alive Cell.State.Neutral -> E
324 | Cell.State.Alive Cell.State.Hostile -> B
a0d860e4
SK
325
326 let to_cell_state = function
327 | E -> Cell.State.Dead
c238c903
SK
328 | T -> Cell.State.Alive Cell.State.Friendly
329 | B -> Cell.State.Alive Cell.State.Hostile
a0d860e4
SK
330
331 let to_cell t =
332 { Cell.state = t |> to_cell_state
333 ; Cell.pheno = t |> to_pheno
334 }
fd51b8fa 335
77d0f9e1
SK
336 let f = 0.000001 (* Probability of spontaneous ignition *)
337 let p = 0.1 (* Probability of spontaneous growth *)
fd51b8fa 338
77d0f9e1
SK
339 let is_probable p =
340 (Random.float 1.0) <= p
fd51b8fa 341
77d0f9e1
SK
342 let next t ~burning_neighbors =
343 match t, burning_neighbors with
344 | E, _ when is_probable p -> T
345 | E, _ -> E
346 | T, 0 when is_probable f -> B
347 | T, _ when burning_neighbors > 0 -> B
348 | T, _ -> T
349 | B, _ -> E
350 end
fd51b8fa 351
77d0f9e1
SK
352 let create () =
353 Random.int 3 |> State.of_int |> State.to_cell
a0d860e4 354
47c9d696
SK
355 let count_of_burning =
356 List.map ~f:State.of_cell_state
357 |- List.filter ~f:State.is_burning
358 |- List.map ~f:State.to_int
359 |- List.fold_left ~f:(+) ~init:0
a0d860e4
SK
360
361 let transition ~self ~neighbors =
362 self |> State.of_cell_state
31d92373 363 |> State.next ~burning_neighbors:(count_of_burning neighbors)
a0d860e4 364 |> State.to_cell
fd51b8fa
SK
365end
366
367
8bad36d8
SK
368module Automaton :
369sig
d9fa5d46 370 type t
aed335e3 371
a96702d3
SK
372 val create : rows:int
373 -> columns:int
374 -> interval:float
375 -> rules: (module RULE) list
376 -> t
aed335e3 377
d9fa5d46 378 val loop : t -> unit
8bad36d8
SK
379end =
380struct
a96702d3
SK
381 type cell = { data : Cell.t
382 ; rule : (module RULE)
383 }
384
385 type t = { grid : cell Matrix.t
d9fa5d46
SK
386 ; interval : Time.Span.t
387 ; bar : string
388 }
aed335e3 389
a96702d3
SK
390 let create ~rows:rs ~columns:ks ~interval ~rules =
391 let n = List.length rules in
a96702d3 392 let init () =
fd51b8fa 393 let rule = List.nth_exn rules (Random.int n) in
a96702d3
SK
394 let module Rule = (val rule : RULE) in
395 { rule
396 ; data = Rule.create ()
397 }
398 in
21c4909c 399 Terminal.clear ();
a96702d3 400 { grid = Matrix.map ~f:init (Matrix.create ~rs ~ks ())
d9fa5d46
SK
401 ; interval = Time.Span.of_float interval
402 ; bar = String.make ks '-'
403 }
404
a96702d3 405 let cell_to_string cell =
4b18b7df 406 PhenoType.to_string cell.data.Cell.pheno
a96702d3 407
d9fa5d46 408 let print t =
21c4909c 409 Terminal.reset ();
d9fa5d46 410 print_endline t.bar;
a96702d3 411 Matrix.print t.grid ~to_string:cell_to_string;
d9fa5d46
SK
412 print_endline t.bar
413
414 let next t =
415 let grid =
416 Matrix.mapi t.grid ~f:(
a96702d3
SK
417 fun point {rule; data} ->
418 let module Rule = (val rule : RULE) in
d9fa5d46 419 let neighbors = Matrix.get_neighbors t.grid point in
a96702d3
SK
420 let data =
421 Rule.transition
a0d860e4
SK
422 ~self:data.Cell.state
423 ~neighbors:(List.map neighbors ~f:(fun c -> c.data.Cell.state))
a96702d3
SK
424 in
425 {rule; data}
d9fa5d46
SK
426 )
427 in
428 {t with grid}
429
430 let rec loop t =
431 print t;
432 Time.pause t.interval;
433 loop (next t)
434end
7707ff62
SK
435
436
5b98f452 437let main interval () =
7707ff62 438 Random.self_init ();
d9fa5d46 439 let rows, columns = Or_error.ok_exn Linux_ext.get_terminal_size () in
a96702d3 440 let rules =
029c4a1f 441 [ (module Life : RULE)
fd51b8fa 442 ; (module ForestFire : RULE)
a96702d3
SK
443 ]
444 in
8526e3e1 445 Automaton.loop (Automaton.create ~rows:(rows - 3) ~columns ~interval ~rules)
8c93b722
SK
446
447
7d89c037
SK
448let spec =
449 let summary = "Polymorphic Cellular Automata" in
5b98f452
SK
450 let spec = Command.Spec.(empty
451 +> flag "-i" (optional_with_default 0.1 float)
452 ~doc:" Induced interval between generations."
453 )
454 in
7d89c037
SK
455 Command.basic ~summary spec main
456
457
458let () = Command.run spec
This page took 0.058082 seconds and 4 git commands to generate.