私は最近、ConwayのGame of LifeをJavascript(実際はcoffeescriptですが同じこと)で実装しました。javascriptは関数型言語として使用できるので、私はその範囲の終わりにとどまろうとしていました。結果に満足できませんでした。私はかなり優れたオブジェクト指向プログラマーであり、私の解決策は同じ古いものを叩きました。長い質問は短い:それを行う(擬似コード)機能スタイルは何ですか?
これが私の試みの擬似コードです。
class Node
update: (board) ->
get number_of_alive_neighbors from board
get this_is_alive from board
if this_is_alive and number_of_alive_neighbors < 2 then die
if this_is_alive and number_of_alive_neighbors > 3 then die
if not this_is_alive and number_of_alive_neighbors == 3 then alive
class NodeLocations
at: (x, y) -> return node value at x,y
of: (node) -> return x,y of node
class Board
getNeighbors: (node) ->
use node_locations to check 8 neighbors
around node and return count
nodes = for 1..100 new Node
state = new NodeState(nodes)
locations = new NodeLocations(nodes)
board = new Board(locations, state)
executeRound:
state = clone state
accumulated_changes = for n in nodes n.update(board)
apply accumulated_changes to state
board = new Board(locations, state)