Comment explaining choice of map+to_list over fold.
[cellular-automata.git] / 003 / src / life.erl
CommitLineData
7f968603
SK
1-module(life).
2
3-export([bang/1]).
4
5
6-define(CHAR_DEAD, 32). % " "
7-define(CHAR_ALIVE, 111). % "o"
7a9e70eb
SK
8-define(CHAR_BAR, 45). % "-"
9
7f968603
SK
10-define(INTERVAL, 100).
11
12
39738e22
SK
13-record(state, {x :: non_neg_integer()
14 ,y :: non_neg_integer()
3968ca95 15 ,n :: pos_integer()
eba1d8be 16 ,bar :: nonempty_string()
39738e22 17 ,board :: array()
3968ca95 18 ,gen_count :: pos_integer()
39738e22
SK
19 ,gen_duration :: non_neg_integer()
20 ,print_time :: non_neg_integer()
b4e740f3
SK
21 }).
22
23
7f968603
SK
24%% ============================================================================
25%% API
26%% ============================================================================
27
28bang(Args) ->
29 [X, Y] = [atom_to_integer(A) || A <- Args],
7a9e70eb 30 {Time, Board} = timer:tc(fun() -> init_board(X, Y) end),
b4e740f3
SK
31 State = #state{x = X
32 ,y = Y
33 ,n = X * Y
34 ,bar = [?CHAR_BAR || _ <- lists:seq(1, X)]
35 ,board = Board
690cd0ad 36 ,gen_count = 1 % Consider inital state to be generation 1
b4e740f3 37 ,gen_duration = Time
690cd0ad 38 ,print_time = 0 % There was no print time yet
b4e740f3
SK
39 },
40 life_loop(State).
7f968603
SK
41
42
43%% ============================================================================
44%% Internal
45%% ============================================================================
46
b4e740f3
SK
47life_loop(
48 #state{x = X
49 ,y = Y
50 ,n = N
51 ,bar = Bar
52 ,board = Board
53 ,gen_count = GenCount
54 ,gen_duration = Time
6fc17e92 55 ,print_time = LastPrintTime
b4e740f3
SK
56 }=State) ->
57
6fc17e92
SK
58 {PrintTime, ok} = timer:tc(
59 fun() ->
60 do_print_screen(Board, Bar, X, Y, N, GenCount, Time, LastPrintTime)
61 end
62 ),
7a9e70eb 63
160a4566
SK
64 {NewTime, NewBoard} = timer:tc(
65 fun() ->
66 next_generation(X, Y, Board)
67 end
68 ),
69
b4e740f3
SK
70 NewState = State#state{board = NewBoard
71 ,gen_count = GenCount + 1
72 ,gen_duration = NewTime
6fc17e92 73 ,print_time = PrintTime
b4e740f3
SK
74 },
75
7f968603 76 timer:sleep(?INTERVAL),
b4e740f3 77 life_loop(NewState).
7a9e70eb
SK
78
79
6fc17e92
SK
80do_print_screen(Board, Bar, X, Y, N, GenCount, Time, PrintTime) ->
81 ok = do_print_status(Bar, X, Y, N, GenCount, Time, PrintTime),
82 ok = do_print_board(Board).
83
84
85do_print_status(Bar, X, Y, N, GenCount, TimeMic, PrintTimeMic) ->
7a9e70eb 86 TimeSec = TimeMic / 1000000,
6fc17e92 87 PrintTimeSec = PrintTimeMic / 1000000,
7a9e70eb
SK
88 ok = io:format("~s~n", [Bar]),
89 ok = io:format(
6fc17e92
SK
90 "X: ~b Y: ~b CELLS: ~b GENERATION: ~b DURATION: ~f PRINT TIME: ~f~n",
91 [X, Y, N, GenCount, TimeSec, PrintTimeSec]
7a9e70eb
SK
92 ),
93 ok = io:format("~s~n", [Bar]).
7f968603
SK
94
95
96do_print_board(Board) ->
af47aa37
SK
97 % It seems that just doing a fold should be faster than map + to_list
98 % combo, but, after measuring several times, map + to_list has been
99 % consistently (nearly twice) faster than either foldl or foldr.
1332e0c3 100 RowStrings = array:to_list(
7f968603
SK
101 array:map(
102 fun(_, Row) ->
103 array:to_list(
104 array:map(
105 fun(_, State) ->
106 state_to_char(State)
107 end,
108 Row
109 )
110 )
111 end,
112 Board
113 )
114 ),
115
116 ok = lists:foreach(
1332e0c3
SK
117 fun(RowString) ->
118 ok = io:format("~s~n", [RowString])
7f968603 119 end,
1332e0c3 120 RowStrings
7f968603
SK
121 ).
122
123
124state_to_char(0) -> ?CHAR_DEAD;
125state_to_char(1) -> ?CHAR_ALIVE.
126
127
68194920 128next_generation(W, H, Board) ->
7f968603
SK
129 array:map(
130 fun(Y, Row) ->
131 array:map(
132 fun(X, State) ->
133 Neighbors = filter_offsides(H, W, neighbors(X, Y)),
134 States = neighbor_states(Board, Neighbors),
135 LiveNeighbors = lists:sum(States),
136 new_state(State, LiveNeighbors)
137 end,
138 Row
139 )
140 end,
141 Board
142 ).
143
144
145new_state(1, LiveNeighbors) when LiveNeighbors < 2 -> 0;
146new_state(1, LiveNeighbors) when LiveNeighbors < 4 -> 1;
147new_state(1, LiveNeighbors) when LiveNeighbors > 3 -> 0;
148new_state(0, LiveNeighbors) when LiveNeighbors =:= 3 -> 1;
149new_state(State, _LiveNeighbors) -> State.
150
151
152neighbor_states(Board, Neighbors) ->
153 [array:get(X, array:get(Y, Board)) || {X, Y} <- Neighbors].
154
155
156filter_offsides(H, W, Coordinates) ->
157 [{X, Y} || {X, Y} <- Coordinates, is_onside(X, Y, H, W)].
158
159
160is_onside(X, Y, H, W) when (X >= 0) and (Y >= 0) and (X < W) and (Y < H) -> true;
161is_onside(_, _, _, _) -> false.
162
163
164neighbors(X, Y) ->
165 [{X + OffX, Y + OffY} || {OffX, OffY} <- offsets()].
166
167
168offsets() ->
169 [offset(D) || D <- directions()].
170
171
172offset('N') -> { 0, -1};
173offset('NE') -> { 1, -1};
174offset('E') -> { 1, 0};
175offset('SE') -> { 1, 1};
176offset('S') -> { 0, 1};
177offset('SW') -> {-1, 1};
178offset('W') -> {-1, 0};
179offset('NW') -> {-1, -1}.
180
181
182directions() ->
183 ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'].
184
185
186init_board(X, Y) ->
187 array:map(fun(_, _) -> init_row(X) end, array:new(Y)).
188
189
190init_row(X) ->
191 array:map(fun(_, _) -> init_cell_state() end, array:new(X)).
192
193
194init_cell_state() ->
195 crypto:rand_uniform(0, 2).
196
197
198atom_to_integer(Atom) ->
199 list_to_integer(atom_to_list(Atom)).
This page took 0.041438 seconds and 4 git commands to generate.