X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=001%2Fsrc%2Flife_time.erl;h=204b67f5b17ba7122ef32c3a1dbe77de159927e7;hb=4eb3be32ce405e69f39573b5e38171764cd0d789;hp=22d3300d4d63dd5d5f645b2640860091770d0d9b;hpb=90456d0857c0e6ac3f9550cc18f27ad158fa8dd8;p=cellular-automata.git diff --git a/001/src/life_time.erl b/001/src/life_time.erl index 22d3300..204b67f 100644 --- a/001/src/life_time.erl +++ b/001/src/life_time.erl @@ -17,11 +17,11 @@ ]). --define(INTERVAL, 100). % In milliseconds +-define(GEN_INTERVAL, 100). % In milliseconds --define(CHAR_DEAD, 32). % Space --define(CHAR_ALIVE, 111). % o --define(CHAR_BAR, 45). % - +-define(CHAR_DEAD, 32). % " " +-define(CHAR_ALIVE, 111). % "o" +-define(CHAR_BAR, 45). % "-" -record(state, {x :: integer() @@ -33,6 +33,7 @@ ,state_pairs :: list(tuple(integer(), integer())) | [] ,replies_pending :: integer() ,gen_id :: integer() + ,gen_began :: erlang:timestamp() }). @@ -56,7 +57,6 @@ report_state(CellID, GenID, CellState) -> %% ============================================================================ handle_call(_Msg, _From, State) -> {reply, ok, State}. -handle_info(_Msg, State) -> {noreply, State}. code_change(_Old, State, _Other) -> {ok, State}. terminate(_Reason, State) -> {ok, State}. @@ -74,26 +74,33 @@ init([X, Y, Cells]) -> ,replies_pending = 0 ,gen_id = 0 }, - ok = schedule_next_gen(), + NextGenDelay = 0, + ok = schedule_next_gen(NextGenDelay), {ok, State}. -handle_cast(next_gen, +handle_info(next_gen, #state{cells=Cells ,num_cells=NumCells ,state_pairs=[] ,gen_id=GenID }=State) -> + GenBegan = os:timestamp(), NewGenID = GenID + 1, - ok = cast_all(Cells, {next_gen, NewGenID}), + ok = life_lib:cast_one2all(Cells, {next_gen, NewGenID}), NewState = State#state{replies_pending=NumCells ,gen_id=NewGenID + ,gen_began=GenBegan ,num_dead=0 ,num_alive=0 }, {noreply, NewState}; +handle_info(_Msg, State) -> + {noreply, State}. + + handle_cast({report_state, {CellID, GenID, CellState}}, #state{x=X ,y=Y @@ -102,6 +109,7 @@ handle_cast({report_state, {CellID, GenID, CellState}}, ,state_pairs=StatePairs ,replies_pending=RepliesPending ,gen_id=GenID + ,gen_began=GenBegan ,num_cells=NumCells }=State) -> @@ -121,14 +129,21 @@ handle_cast({report_state, {CellID, GenID, CellState}}, ), StateChars = [state_to_char(S) || {_, S} <- SortedStatePairs], + GenDurationMic = timer:now_diff(os:timestamp(), GenBegan), + GenDurationMil = GenDurationMic / 1000, + GenDurationSec = GenDurationMic / 1000000, + NextGenDelay = round(?GEN_INTERVAL - GenDurationMil), + + ok = life_observer:log_generation(GenID, GenDurationSec, NewNDead, NewNAlive), + ok = io:format( - "X: ~b Y: ~b CELLS: ~b DEAD: ~b ALIVE: ~b GENERATION: ~b~n", - [X, Y, NumCells, NewNDead, NewNAlive, GenID] + "X: ~b Y: ~b CELLS: ~b DEAD: ~b ALIVE: ~b GENERATION: ~b DURATION: ~f~n", + [X, Y, NumCells, NewNDead, NewNAlive, GenID, GenDurationSec] ), ok = do_print_bar(X), ok = do_print_state_chars(X, StateChars), - ok = timer:sleep(?INTERVAL), - ok = schedule_next_gen(), + + ok = schedule_next_gen(NextGenDelay), {noreply, NewState#state{state_pairs=[]}}; _N -> @@ -147,14 +162,13 @@ increment_dead_or_alive(0, NDead, NAlive) -> {NDead + 1, NAlive}; increment_dead_or_alive(1, NDead, NAlive) -> {NDead, NAlive + 1}. -schedule_next_gen() -> - ok = gen_server:cast(?MODULE, next_gen). - +schedule_next_gen(Delay) when Delay > 0 -> + erlang:send_after(Delay, self(), next_gen), + ok; -cast_all([], _) -> ok; -cast_all([Server | Servers], Msg) -> - ok = gen_server:cast(Server, Msg), - cast_all(Servers, Msg). +schedule_next_gen(_) -> + erlang:send(self(), next_gen), + ok. state_to_char(0) -> ?CHAR_DEAD;