]> git.ameliathe1st.gay Git - cells.git/commitdiff
Ajout de deux automates exemples pour l'API
authorAmélia Coutard-Sander <git@ameliathe1st.gay>
Thu, 12 Dec 2024 15:18:42 +0000 (16:18 +0100)
committerAmélia Coutard-Sander <git@ameliathe1st.gay>
Thu, 12 Dec 2024 15:18:42 +0000 (16:18 +0100)
Le Jeu de la Vie et Wireworld.

automata/automata.ml
automata/automata/life.ml [new file with mode: 0644]
automata/automata/wireworld.ml [new file with mode: 0644]

index 63de7636f5cfd80fb41a898a93fdba5f049fc8df..847918c1cac272771721460b55b651399a9dcfc8 100644 (file)
@@ -31,4 +31,4 @@ module type Automaton = sig
   val color : t -> Graphics.color
 end
 
-let automata = []
+let automata = [(module Life : Automaton); (module Wireworld : Automaton)]
diff --git a/automata/automata/life.ml b/automata/automata/life.ml
new file mode 100644 (file)
index 0000000..0ee7472
--- /dev/null
@@ -0,0 +1,38 @@
+(* 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 = "life"
+
+type t = Dead | Alive
+
+let neighbours = [(-1, -1); (-1, 0); (-1, 1); (0, -1); (0, 1); (1, -1); (1, 0); (1, 1)]
+
+let transition l c =
+        let n = List.length (List.filter (( = ) Alive) l) in
+        if n <= 2 || n >= 4 then Dead else if n == 3 then Alive else c
+
+let default = Dead
+
+let prev = function
+        | Dead -> Alive
+        | Alive -> Dead
+
+let next = function
+        | Dead -> Alive
+        | Alive -> Dead
+
+let color = function
+        | Dead -> Graphics.rgb 0 0 31
+        | Alive -> Graphics.rgb 255 255 255
diff --git a/automata/automata/wireworld.ml b/automata/automata/wireworld.ml
new file mode 100644 (file)
index 0000000..023751c
--- /dev/null
@@ -0,0 +1,48 @@
+(* 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 = "wireworld"
+
+type t = Empty | Conductor | Head | Tail
+
+let neighbours = [(-1, -1); (-1, 0); (-1, 1); (0, -1); (0, 1); (1, -1); (1, 0); (1, 1)]
+
+let transition l = function
+        | Empty -> Empty
+        | Conductor ->
+                let n = List.length (List.filter (( = ) Head) l) in
+                if n = 1 || n = 2 then Head else Conductor
+        | Head -> Tail
+        | Tail -> Conductor
+
+let default = Empty
+
+let prev = function
+        | Empty -> Tail
+        | Conductor -> Empty
+        | Head -> Conductor
+        | Tail -> Head
+
+let next = function
+        | Empty -> Conductor
+        | Conductor -> Head
+        | Head -> Tail
+        | Tail -> Empty
+
+let color = function
+        | Empty -> Graphics.rgb 0 0 31
+        | Conductor -> Graphics.rgb 191 191 0
+        | Head -> Graphics.rgb 191 0 0
+        | Tail -> Graphics.rgb 0 0 191