From 0a9b8c1755fb6126d79e3c51b84df9ff90fbbf6a Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 26 Jul 2012 18:42:56 -0400 Subject: [PATCH] Some terminology changes. --- 001/src/life_cell.erl | 22 ++++++++++----------- 001/src/life_time.erl | 45 ++++++++++++++++++++++--------------------- 2 files changed, 34 insertions(+), 33 deletions(-) diff --git a/001/src/life_cell.erl b/001/src/life_cell.erl index 3f4669d..2ffda4b 100644 --- a/001/src/life_cell.erl +++ b/001/src/life_cell.erl @@ -22,7 +22,7 @@ ,live_neighbors :: integer() ,num_neighbors :: integer() ,replies_pending :: integer() - ,generation :: integer() + ,gen_id :: integer() }). @@ -42,13 +42,13 @@ start_link({_ID, Name, _NeighborNames}=Datum) -> %% ============================================================================ 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}. @@ -65,13 +65,13 @@ handle_call(_Msg, _From, 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) -> @@ -96,7 +96,7 @@ handle_cast({response_state, NeighborState}, 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 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; -- 2.20.1