X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=001%2Fsrc%2Flife_time.erl;fp=001%2Fsrc%2Flife_time.erl;h=b47073cfd152c201c9f89b3f42c8507abfa907af;hb=0a9b8c1755fb6126d79e3c51b84df9ff90fbbf6a;hp=dfcec8aab8e141fbe7a5856d0a2592efbcaf9d78;hpb=a88b29167618be4d288304b8d07ce62502217e74;p=cellular-automata.git diff --git a/001/src/life_time.erl b/001/src/life_time.erl index dfcec8a..b47073c 100644 --- a/001/src/life_time.erl +++ b/001/src/life_time.erl @@ -4,7 +4,7 @@ %% API -export([start_link/3 - ,tock/2 + ,report_state/2 ]). %% Callbacks @@ -30,7 +30,7 @@ ,num_cells :: integer() ,state_pairs :: list(tuple(integer(), integer())) | [] ,replies_pending :: integer() - ,generation = 0 :: integer() + ,gen_id :: integer() }). @@ -45,8 +45,8 @@ start_link(X, Y, Cells) -> 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}}). %% ============================================================================ @@ -54,14 +54,15 @@ tock(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}. @@ -77,23 +78,23 @@ handle_call(_Msg, _From, 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) -> @@ -111,14 +112,14 @@ handle_cast({tock, {ID, CellState}}, 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 -> @@ -137,8 +138,8 @@ handle_info(_Msg, State) -> %% Internal %% ============================================================================ -schedule_next_tick() -> - gen_server:cast(?MODULE, next_tick). +schedule_next_gen() -> + gen_server:cast(?MODULE, next_gen). cast_all([], _) -> ok;