Extension of "golly-ticker" in Conway's "Game of Life", including useful tools for "Game of Life"
This program enables us to make and convert files for Conway's Game of Life.
The biggest feature of this program is "any-ticker", which makes a ticker message, like golly-ticker, which works under the rule of Conway's Game of Life. The output file will be saved as Life 1.06. It is recommended to open it with Golly
When I was writing "any-ticker", the file conversion from rle to Life 1.06 was necessary I have written a program to make and included it.
To show any string or image as a ticker just like golly-ticker.
You can simply use any-ticker by this command below in a terminal.
git clone https://github.com/potsbo/any-ticker.git && cd any-ticker && make
Certain programs are required.
##Usage I have implemented subcommand system.
Use the command below to use any-ticker in very basic way.
Note that you have to change "" into suitable values.
life ticker -m "<message>" -s <font size> -f <font name>
If you want just a ticker message, the command below is the easiest way.
life ticker -m "<message>"
The font file format required for this program is tfont which I have made. Basic rules of this formats are
- live cell is "*"
- dead cell is "_"
- just above the font data, the letter and the letter size must be specified
- a font data can be shared by more than one letters and sizes
- To add a function to make a ticker message from a black/white image.
- To make this compatible with font files written in Life 1.06 format.
I'm trying to convert this into a cpp program gradually, since I had written in C firstly.
Released under MIT licence.