]> git.ameliathe1st.gay Git - cells.git/commitdiff
Ajout de l'automate cellulaire du Cerveau de Brian
authorAmélia Coutard-Sander <git@ameliathe1st.gay>
Fri, 13 Dec 2024 01:46:48 +0000 (02:46 +0100)
committerAmélia Coutard-Sander <git@ameliathe1st.gay>
Fri, 13 Dec 2024 01:47:16 +0000 (02:47 +0100)
automata/automata.ml
automata/automata/brain.ml [new file with mode: 0644]

index 7b90be532bbf31561724b57e9de7794844de4fc1..f7f044ba7978a1e2d082c528c070fb3f80ec31fb 100644 (file)
@@ -49,4 +49,4 @@ let update (type t) (m : (module Automaton with type t = t)) ((d, cells) as boar
               Array.init 64 (fun y ->
                   M.transition (List.map (fun (dx, dy) -> get (x + dx) (y + dy) board) M.neighbours) cells.(x).(y))) )
 
-let automata = [(module Life : Automaton); (module Wireworld : Automaton)]
+let automata = [(module Life : Automaton); (module Wireworld : Automaton); (module Brain : Automaton)]
diff --git a/automata/automata/brain.ml b/automata/automata/brain.ml
new file mode 100644 (file)
index 0000000..fbd5efc
--- /dev/null
@@ -0,0 +1,44 @@
+(* Copyright 2024 Amélia COUTARD <https://www.ameliathe1st.gay>.
+ *
+ * This file from the program cells is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along
+ * with this program. If not, see <https://www.gnu.org/licenses/>.
+ *)
+
+let name = "Le Cerveau de Brian"
+
+type t = Off | Dying | On
+
+let neighbours = [(-1, -1); (-1, 0); (-1, 1); (0, -1); (0, 1); (1, -1); (1, 0); (1, 1)]
+
+let transition l = function
+        | Off ->
+                let n = List.length (List.filter (( = ) On) l) in
+                if n = 2 then On else Off
+        | Dying -> Off
+        | On -> Dying
+
+let default = Off
+
+let prev = function
+        | Off -> On
+        | Dying -> Off
+        | On -> Dying
+
+let next = function
+        | Off -> Dying
+        | Dying -> On
+        | On -> Off
+
+let color = function
+        | Off -> ('\x00', '\x00', '\x1F')
+        | Dying -> ('\x00', '\x00', '\xFF')
+        | On -> ('\xFF', '\xFF', '\xFF')