diff options
author | elioat <elioat@tilde.institute> | 2024-06-19 17:40:23 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-06-19 17:40:23 -0400 |
commit | bd4028356efaf51b82cc71d3ddd15db327106706 (patch) | |
tree | 706eb8b7b9b6e47ae2c64327d2879ee501f6e80b /swift | |
parent | c642bf52919317282240a7e828f8e418b59e51e6 (diff) | |
download | tour-bd4028356efaf51b82cc71d3ddd15db327106706.tar.gz |
*
Diffstat (limited to 'swift')
-rw-r--r-- | swift/life/Sources/main.swift | 50 |
1 files changed, 39 insertions, 11 deletions
diff --git a/swift/life/Sources/main.swift b/swift/life/Sources/main.swift index 4b3e7a6..e010b94 100644 --- a/swift/life/Sources/main.swift +++ b/swift/life/Sources/main.swift @@ -2,7 +2,6 @@ import Foundation let rows = 10 let cols = 10 -var board = Array(repeating: Array(repeating: 0, count: cols), count: rows) func printBoard(_ board: [[Int]]) { board.forEach { row in @@ -40,14 +39,43 @@ func nextGeneration(_ currentBoard: [[Int]]) -> [[Int]] { } } -board[1][2] = 1 -board[2][3] = 1 -board[3][1] = 1 -board[3][2] = 1 -board[3][3] = 1 - -for _ in 0..<10 { - printBoard(board) - board = nextGeneration(board) - sleep(1) // FIXME: figure out how to sleep for periods shorter than a full second +func simulate(board: [[Int]], generations: Int) { + var currentBoard = board + for _ in 0..<generations { + printBoard(currentBoard) + currentBoard = nextGeneration(currentBoard) + sleep(1) // FIXME: figure out how to sleep for periods shorter than a full second + } } + +var glider = Array(repeating: Array(repeating: 0, count: cols), count: rows) +glider[1][2] = 1 +glider[2][3] = 1 +glider[3][1] = 1 +glider[3][2] = 1 +glider[3][3] = 1 +simulate(board: glider, generations: 10) + +var flasher = Array(repeating: Array(repeating: 0, count: cols), count: rows) +flasher[4][5] = 1 +flasher[5][5] = 1 +flasher[6][5] = 1 +simulate(board: flasher, generations: 4) + +var beacon = Array(repeating: Array(repeating: 0, count: cols), count: rows) +beacon[2][2] = 1 +beacon[2][3] = 1 +beacon[3][2] = 1 +beacon[4][5] = 1 +beacon[5][4] = 1 +beacon[5][5] = 1 +simulate(board: beacon, generations: 4) + +var toad = Array(repeating: Array(repeating: 0, count: cols), count: rows) +toad[3][4] = 1 +toad[3][5] = 1 +toad[3][6] = 1 +toad[4][3] = 1 +toad[4][4] = 1 +toad[4][5] = 1 +simulate(board: toad, generations: 5) |