https://github.com/timbo-rafa/c-allegro-game-life
https://github.com/timbo-rafa/c-allegro-game-life
allegro allegro4 c c-language demo game makefile
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/timbo-rafa/c-allegro-game-life
- Owner: timbo-rafa
- Created: 2018-11-24T20:39:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T00:22:57.000Z (over 6 years ago)
- Last Synced: 2025-01-13T01:11:34.325Z (3 months ago)
- Topics: allegro, allegro4, c, c-language, demo, game, makefile
- Language: C
- Size: 1.19 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game of Life
The universe of the Game of Life is an infinite, two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, alive or dead, (or populated and unpopulated, respectively). Every cell interacts with its eight neighbours, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur:
1. Any live cell with fewer than two live neighbors dies, as if by underpopulation.
2. Any live cell with two or three live neighbors lives on to the next generation.
3. Any live cell with more than three live neighbors dies, as if by overpopulation.
4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.The initial pattern constitutes the seed of the system. The first generation is created by applying the above rules simultaneously to every cell in the seed; births and deaths occur simultaneously, and the discrete moment at which this happens is sometimes called a tick. Each generation is a pure function of the preceding one. The rules continue to be applied repeatedly to create further generations.

### Compilation
##### Allegro
```bash
sudo apt-get install liballegro4.4 liballegro4-dev
```Allegro *4* is required. You can download it [here](https://liballeg.org/old.html).
##### Make
```
make
```### Running
```
./jogo-vida
```