Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mnito/charmine
Terminal game experiment
https://github.com/mnito/charmine
characters golang ioctl syscall terminal-game termios
Last synced: about 1 month ago
JSON representation
Terminal game experiment
- Host: GitHub
- URL: https://github.com/mnito/charmine
- Owner: mnito
- License: mit
- Created: 2017-07-19T04:24:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T03:12:28.000Z (over 6 years ago)
- Last Synced: 2024-06-20T16:47:17.018Z (5 months ago)
- Topics: characters, golang, ioctl, syscall, terminal-game, termios
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Charmine
Charmine as it currently stands is an experimental, proof-of-concept command line game. The game concept itself needs to be further developed, the level generator should be less random, and some sort of points system would be nice. This version of Charmine was developed as a sandbox to test the basic concept and also showcase the techniques for creating terminal-based games for Linux and macOS.
## Gameplay
The goal is to move a character that cycles through A to F to the other side (the right side) of the field. The character can only pass through characters of the same letter and empty spaces.
## Installation
The `go get` command can be used to install Charmine:
```command
go get github.com/mnito/charmine
```## Options
### Help
The help command will show help for other options.
```
charmine -help
```### Controls
Restricting usable controls is possible with this option.
This specific example will restrict input to right and up:
```command
charmine -controls ru
```Valid options are l,u,d,r. Default is ludr.
### Density
Setting the density will vary the amount of letters that appear in the field.
```command
charmine -density 10
```Valid densities are between 1 and 100. Increasing the density will result in the appearance of more characters in the field. The default is 45.
### Seed
A seed can be set for the random number generator providing a determinate field per seed under the same conditions.
```command
charmine -seed 123456789
```## License
Charmine is licensed under the MIT License.
## Author
Michael P. Nitowski
* Email:
* Twitter: [@mikenitowski](https://twitter.com/mikenitowski)