Skip to content

timhutton/squirm3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Live demo: https://timhutton.github.io/squirm3

This is one of the systems described in a 2007 paper:

Hutton T.J. (2007) Evolvable Self-Reproducing Cells in a Two-Dimensional Artificial Chemistry. Artificial Life 13(1): 11-30. PDF

Squirm3 is a simple kind of artificial chemistry, where 'atoms' have a type (a, b, c, d, ...) and a state (0, 1, 2, 3, ...) and can react with each other, forming bonds. The atoms move around in a world, forming molecules and membranes. With the right reactions in place, molecules can replicate through template-copying.

video

Build instructions:

Build with Emscripten:

emcc src\main.cpp src\C2dVector.cpp src\SquirmCell.cpp src\SquirmCellProperties.cpp src\SquirmCellSlot.cpp src\SquirmChemistry.cpp src\SquirmGrid.cpp src\SquirmReaction.cpp src\SquirmError.cpp src\SquirmGrid_SDL.cpp -s WASM=1 -s USE_SDL=2 -std=c++11 -O3 -o index.js

Then open index.html in a web browser.