,live_neighbors :: integer()
,num_neighbors :: integer()
,replies_pending :: integer()
- ,generation :: integer()
+ ,gen_id :: integer()
}).
%% ============================================================================
init([{ID, Name, NeighborNames}]) ->
- State = #state{id=ID
- ,name=Name
- ,cell_state=crypto:rand_uniform(0, 2)
- ,neighbors=NeighborNames
- ,num_neighbors=length(NeighborNames)
- ,live_neighbors=0
- ,replies_pending=0
+ State = #state{id = ID
+ ,name = Name
+ ,cell_state = crypto:rand_uniform(0, 2)
+ ,neighbors = NeighborNames
+ ,num_neighbors = length(NeighborNames)
+ ,live_neighbors = 0
+ ,replies_pending = 0
},
{ok, State}.
{reply, ok, State}.
-handle_cast({tick, Generation},
+handle_cast({next_gen, GenID},
#state{name=Name
,neighbors=Neighbors
,num_neighbors=NumNeighbors
}=State) ->
ok = cast_all(Neighbors, {request_state, Name}),
- {noreply, State#state{replies_pending=NumNeighbors, generation=Generation}};
+ {noreply, State#state{replies_pending=NumNeighbors, gen_id=GenID}};
handle_cast({request_state, Requester}, State) ->
case NewPending of
0 ->
NewCellState = new_state(CellState, NewLiveNeighbors),
- ok = life_time:tock(ID, NewCellState),
+ ok = life_time:report_state(ID, NewCellState),
{noreply, NewState#state{live_neighbors=0
,cell_state=NewCellState
%% API
-export([start_link/3
- ,tock/2
+ ,report_state/2
]).
%% Callbacks
,num_cells :: integer()
,state_pairs :: list(tuple(integer(), integer())) | []
,replies_pending :: integer()
- ,generation = 0 :: integer()
+ ,gen_id :: integer()
}).
gen_server:start_link(ServerName, ?MODULE, Args, Opts).
-tock(CellID, CellState) ->
- gen_server:cast(?MODULE, {tock, {CellID, CellState}}).
+report_state(CellID, CellState) ->
+ gen_server:cast(?MODULE, {report_state, {CellID, CellState}}).
%% ============================================================================
%% ============================================================================
init([X, Y, Cells]) ->
- State = #state{x=X
- ,y=Y
- ,cells=Cells
- ,num_cells=length(Cells)
- ,state_pairs=[]
- ,replies_pending=0
+ State = #state{x = X
+ ,y = Y
+ ,cells = Cells
+ ,num_cells = length(Cells)
+ ,state_pairs = []
+ ,replies_pending = 0
+ ,gen_id = 0
},
- schedule_next_tick(),
+ schedule_next_gen(),
{ok, State}.
{reply, ok, State}.
-handle_cast(next_tick,
+handle_cast(next_gen,
#state{cells=Cells
,num_cells=NumCells
,state_pairs=[]
- ,generation=Generation
+ ,gen_id=GenID
}=State) ->
- NewGeneration = Generation + 1,
- ok = cast_all(Cells, {tick, NewGeneration}),
- {noreply, State#state{replies_pending=NumCells, generation=NewGeneration}};
+ NewGenID = GenID + 1,
+ ok = cast_all(Cells, {next_gen, NewGenID}),
+ {noreply, State#state{replies_pending=NumCells, gen_id=NewGenID}};
-handle_cast({tock, {ID, CellState}},
+handle_cast({report_state, {ID, CellState}},
#state{x=X
,y=Y
,state_pairs=StatePairs
,replies_pending=RepliesPending
- ,generation=Generation
+ ,gen_id=GenID
,num_cells=NumCells
}=State) ->
ok = io:format(
"X: ~b Y: ~b CELLS: ~b GENERATION: ~b~n",
- [X, Y, NumCells, Generation]
+ [X, Y, NumCells, GenID]
),
ok = do_print_bar(X),
ok = do_print_state_chars(X, StateChars),
ok = timer:sleep(?INTERVAL),
- schedule_next_tick(),
+ schedule_next_gen(),
{noreply, NewState#state{state_pairs=[]}};
_N ->
%% Internal
%% ============================================================================
-schedule_next_tick() ->
- gen_server:cast(?MODULE, next_tick).
+schedule_next_gen() ->
+ gen_server:cast(?MODULE, next_gen).
cast_all([], _) -> ok;