Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterhellberg/life
Conway's Game of Life written in Go using termbox-go
https://github.com/peterhellberg/life
conway-life go life termbox toy-project
Last synced: 13 days ago
JSON representation
Conway's Game of Life written in Go using termbox-go
- Host: GitHub
- URL: https://github.com/peterhellberg/life
- Owner: peterhellberg
- Created: 2014-03-15T00:23:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-12T12:08:40.000Z (about 9 years ago)
- Last Synced: 2024-08-01T16:18:20.502Z (3 months ago)
- Topics: conway-life, go, life, termbox, toy-project
- Language: Go
- Homepage: https://en.wikipedia.org/wiki/Conway's_Game_of_Life
- Size: 219 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# life
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/peterhellberg/life/life)
[![License MIT](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/peterhellberg/life#license-mit)Conway's Game of Life written in Go using [termbox-go](https://github.com/nsf/termbox-go)
![R-pentomino ](http://assets.c7.se/life/rPentomino.gif)
## Installation
Just go get it:
go get -u github.com/peterhellberg/life
## Usage
You can toggle cells (alive/dead) using the mouse and/or keyboard.
Press `ENTER` to start the simulation or `SPACE` to step forward one generation.## Keyboard shortcuts
| Key | Alternate key | Action |
| -------:|:--------------|:-------------------- |
| a | | draw acorn |
| d | | draw dieHard |
| g | | draw glider |
| G | | draw gosperGliderGun |
| o | | draw loafer |
| p | | draw rPentomino |
| h | `LEFT ARROW` | move left |
| j | `DOWN ARROW` | move down |
| k | `UP ARROW` | move up |
| l | `RIGHT ARROW` | move right |
| c | | clear grid |
| x | `LEFT CLICK` | toggle cell |
| q | `ESC` | quit |
| r | `ENTER` | toggle auto run |
| s | `SPACE` | step forward |## License (MIT)
Copyright (c) 2014-2015 [Peter Hellberg](http://c7.se/)
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
> "Software"), to deal in the Software without restriction, including
> without limitation the rights to use, copy, modify, merge, publish,
> distribute, sublicense, and/or sell copies of the Software, and to
> permit persons to whom the Software is furnished to do so, subject to
> the following conditions:> The above copyright notice and this permission notice shall be
> included in all copies or substantial portions of the Software.> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
> LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
> OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
> WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.