আমি সম্প্রতি জাভাস্ক্রিপ্টে মজার কনওয়ের গেম অফ লাইফের জন্য বাস্তবায়িত করেছি (আসলে কফিসিপিটি কিন্তু একই জিনিস)। যেহেতু জাভাস্ক্রিপ্টটি কার্যকরী ভাষা হিসাবে ব্যবহার করা যেতে পারে আমি বর্ণালীটির শেষ প্রান্তে থাকার চেষ্টা করছিলাম। আমি আমার ফলাফল নিয়ে খুশি ছিলাম না। আমি মোটামুটি ভাল ওও প্রোগ্রামার এবং আমার সমাধান একই-পুরাতন-একই-পুরাতনকে ভেঙে ফেলে। এত দীর্ঘ প্রশ্ন সংক্ষিপ্ত: এটি করার (সিউডোকোড) কার্যকরী শৈলীটি কী?
আমার প্রচেষ্টার জন্য এখানে সিউডোকোড:
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)