zntfdr/life
Welcome to **Life**, a Swift implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life).
Usage
Life has two main entitites, World and Cell:
Worldrepresents the game space, which is a two-dimensional orthogonal grid of square cells, it also keeps track of the current alive cells generation.
Cellrepresents a specific cell in the world.
import Life
// Create a World instance.
var world = try World(rows: rows, columns: columns)
// Add alive cells.
world.add(Cell(row: .., column: ..))
world.add(Cell(row: .., column: ..))
...
// Spawn the next world generations.
world.spawnNextGeneration()
world.spawnNextGeneration()
...A World instance only remembers the current alive generation, which is accessible via the aliveCells property.
At any moment new alive cells can be added, and old alive cells can be removed, to do so use the add(:) and remove(:) World instance methods.
Lastly, World exposes an isCellAlive(_:) instance method to check whether the specified cell is part of the current generation.
You can find many more examples in the
Testsfolder.
Game modes
Life comes in two modes: Simple and Loop.
The mode is specified when creating a new World instance (the default mode is .simple):
var world = try World(rows: rows, columns: columns, mode: .loop)Simple|Loop :-----:|:-----:| Any cell outside of the world edges is considered dead. | The world left and right edges are stitched together, the world top and bottom edges are stitched together.| | |
Installation
Life is distributed using the Swift Package Manager. To install it into a project, follow this tutorial and use this repository URL: https://github.com/zntfdr/Life.git.
Command Line Tool
<p align="center"> <img src=".assets/cli-example.gif" width="650" max-width="70%" alt="life in action" />
Life also comes with a command line tool that showcases its functionality.
To install it, clone the project and run make:
$ git clone https://github.com/zntfdr/Life.git
$ cd Life
$ makeCredits
Life was built by Federico Zanetello.
Contributions and Support
All users are welcome and encouraged to become active participants in the project continued development — by fixing any bug that they encounter, or by improving the documentation wherever it’s found to be lacking.
If you'd like to make a change, please open a Pull Request, even if it just contains a draft of the changes you’re planning, or a test that reproduces an issue.
Thank you and please enjoy using Life!
Package Metadata
Repository: zntfdr/life
Default branch: main
README: README.md