Reversible Cellular Automata simulator in HTML5 + Java Script.
The Simulator is a cross-platform web (html5+js) application for exploring reversible cellular automata with Margouls neighborhood. To start using, open the index.html file. The interface is fairly standard for the applicaitons of such kind.
See it here: http://dmishin.github.io/js-revca/index.html
Some explanations on Reversible Cellular Automata: http://dmishin.blogspot.ru/2013/10/reversible-cellular-automata.html
The applicaiton simulates closed thoroidal field with 2 possble cell states: ON and OFF. Field size Is only limited by the size and performance of your computer, but 1024x1024 is close to the upper reasonable limit. Some efforts were put into improving performance of the Simulator, allowing to simulate medium-sized fields for millions of generations in reasonable time.
Besides the basic field editing and simulation, the application offers some advanced features:
- Pattern analyzer: automatically detect type (oscillator / spaceship / neither), period and canonical form of the pattern.
- Rule analyzer: automatically detect many properties of the given block transition function, encoded by the table of 16 integers.
- Spaceship catcher: catch, analyze and add to the library escaping spaceships. Useful for automatic search for the spaceships.
- GIF recorder: record field in the GIF animation.
- Library: store figures collection in the local library (Requires Web Storage support in browser).
- Load from URL: load simulation parameters, including field state, from the URL arguments.
Most of the code is written in CoffeeScript.
To build minified code, following NPM tools are required:
- coffee-script: compile coffescript code
- browserify: prepare application code for using in browser
- uglify-js: minification of the JS
- mocha: required for running tests
These tools are nto included, and must be installed separately.
Code for GIF generation is based on: https://github.com/antimatter15/jsgif
Well, let's say MIT?
SVG file, animated with JavaScript program, demonstrating the "Single Rotation" reversible cellular automaton. Shows small field and transforms it slowly, step-by-step with each step animated.
File: revca-singlerot.svg View it here: http://dmishin.github.io/js-revca/revca-singlerot.svg (your browser must support SVG and JavaScript)
Following parameters can be controlled via URL arguments:
- Animation speed: argument "speed". Default is 0.1
- Animation contents: argument "quick". Possible values are 0 and 1, default is 0.
- Initial pattern, in the RLE format: "rle".
- Initial position of the pattern: arguments "x", "y"
- Color palette for coloring cells. Must be ";"-separated list of the valid SVG colors.
Example:
Simulation of the orthogonal c/14 spaceship:
.##..#.#
....##..
#....#..
Its RLE code is: b2o2bobo$4b2o$o4bo
See it in the demonstration: href="http://dmishin.github.io/js-revca/revca-singlerot.svg?rle=b2o2bobo$4b2o$o4bo&quick=1&x=2&y=6&palette=black;yellow
Or in the Simulator.