Added generation count to time and cell states.
[cellular-automata.git] / 001 / src / life_time.erl
index 1b639a7..dfcec8a 100644 (file)
@@ -3,7 +3,7 @@
 
 
 %% API
--export([start_link/2
+-export([start_link/3
         ,tock/2
         ]).
 
@@ -17,7 +17,7 @@
         ]).
 
 
--define(INTERVAL, 0).  % In milliseconds
+-define(INTERVAL, 100).  % In milliseconds
 
 -define(CHAR_DEAD,   32).  % Space
 -define(CHAR_ALIVE, 111).  % o
 
 
 -record(state, {x               :: integer()
+               ,y               :: integer()
                ,cells           :: list(atom())
                ,num_cells       :: integer()
                ,state_pairs     :: list(tuple(integer(), integer())) | []
                ,replies_pending :: integer()
-               ,gen_count = 0   :: integer()
+               ,generation = 0  :: integer()
                }).
 
 
@@ -37,9 +38,9 @@
 %% API
 %% ============================================================================
 
-start_link(X, Cells) ->
+start_link(X, Y, Cells) ->
     ServerName = {local, ?MODULE},
-    Args = [X, Cells],
+    Args = [X, Y, Cells],
     Opts = [],
     gen_server:start_link(ServerName, ?MODULE, Args, Opts).
 
@@ -52,8 +53,9 @@ tock(CellID, CellState) ->
 %% Callbacks
 %% ============================================================================
 
-init([X, Cells]) ->
+init([X, Y, Cells]) ->
     State = #state{x=X
+                  ,y=Y
                   ,cells=Cells
                   ,num_cells=length(Cells)
                   ,state_pairs=[]
@@ -79,16 +81,19 @@ handle_cast(next_tick,
     #state{cells=Cells
           ,num_cells=NumCells
           ,state_pairs=[]
+          ,generation=Generation
           }=State) ->
 
-    ok = cast_all(Cells, tick),
-    {noreply, State#state{replies_pending=NumCells}};
+    NewGeneration = Generation + 1,
+    ok = cast_all(Cells, {tick, NewGeneration}),
+    {noreply, State#state{replies_pending=NumCells, generation=NewGeneration}};
 
 handle_cast({tock, {ID, CellState}},
     #state{x=X
+          ,y=Y
           ,state_pairs=StatePairs
           ,replies_pending=RepliesPending
-          ,gen_count=GenCount
+          ,generation=Generation
           ,num_cells=NumCells
           }=State) ->
 
@@ -98,7 +103,6 @@ handle_cast({tock, {ID, CellState}},
 
     case NewRepliesPending of
         0 ->
-            NewGenCount = GenCount + 1,
             SortedStatePairs = lists:sort(
                 fun({A, _}, {B, _}) -> A < B end,
                 NewStatePairs
@@ -106,8 +110,8 @@ handle_cast({tock, {ID, CellState}},
             StateChars = [state_to_char(S) || {_, S} <- SortedStatePairs],
 
             ok = io:format(
-                "CELLS: ~b GENERATIONS: ~b~n",
-                [NumCells, NewGenCount]
+                "X: ~b Y: ~b CELLS: ~b GENERATION: ~b~n",
+                [X, Y, NumCells, Generation]
             ),
             ok = do_print_bar(X),
 
@@ -115,7 +119,7 @@ handle_cast({tock, {ID, CellState}},
 
             ok = timer:sleep(?INTERVAL),
             schedule_next_tick(),
-            {noreply, NewState#state{state_pairs=[], gen_count=NewGenCount}};
+            {noreply, NewState#state{state_pairs=[]}};
 
         _N ->
             {noreply, NewState#state{state_pairs=NewStatePairs}}
This page took 0.03439 seconds and 4 git commands to generate.