Anton Shestakov <engored@ya.ru>, Sun, 02 Mar 2014 00:02:23 +0900
Tests.
src/rps.erl
Permissions: -rw-r--r--
lobby/0, counter/0, printer/0]). -define(BOTS, [fool, copycat, gambler]). register(lobby, spawn_link(?MODULE, lobby, [])), register(counter, spawn_link(?MODULE, counter, [])), register(printer, spawn_link(?MODULE, printer, [])), [spawn_link(rps_bots, Bot, []) || Bot <- ?BOTS]. lobby(Players) when length(Players) =:= length(?BOTS) -> Room = spawn_link(rps_room, room, [Players]), lists:foreach(fun(Player) -> Player ! {room, Room} end, Players), counter(0, 0, dict:new(), dict:new()). counter(Plays, Draws, Wins, Hands) -> counter(Plays + 1, Draws + 1, Wins, Hands); {winner, {Hand, Winner}} -> counter(Plays + 1, Draws, dict:update_counter(Winner, 1, Wins), dict:update_counter(Hand, 1, Hands)); wins, dict:to_list(Wins), hands, dict:to_list(Hands)}}, counter(Plays, Draws, Wins, Hands) io:format("Stats: ~w.~n", [Stats]) counter ! {sendstats, self()}