• Stars
    star
    3,226
  • Rank 13,197 (Top 0.3 %)
  • Language
    C++
  • License
    BSD 3-Clause "New...
  • Created over 3 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ALIEN is a CUDA-powered artificial life simulation program.

ALIEN - Explore worlds of artificial life

Artificial LIfe ENvironment (ALIEN) is an artificial life simulation tool based on a specialized 2D particle engine in CUDA for soft bodies and fluids. Each simulated body consists of a network of particles that can be upgraded with higher-level functions, ranging from pure information processing capabilities to physical equipment (such as sensors, muscles, weapons, constructors, etc.) whose executions are orchestrated by neural networks. The bodies can be thought of as agents or digital organisms operating in a common environment. Their blueprints can be stored in genomes and passed on to offspring.

The simulation code is written entirely in CUDA and optimized for large-scale real-time simulations with millions of particles. The development is driven by the desire to better understand the conditions for (pre-)biotic evolution and the growing complexity of biological systems. An important goal is to make the simulator user-friendly through a modern user interface, visually appealing rendering and a playful approach.

Please join our Discord server as a place for discussions, new developments and feedback around ALIEN and artificial life in general.

Main features

Physics and graphics engine

  • Particles for simulating soft and rigid body mechanics, fluids, heat dissipation, damage, adhesion etc.
  • Real-time user interactions with running simulations
  • Simulation runs entirely on GPU via CUDA
  • Rendering and post-processing via OpenGL using CUDA-OpenGL interoperability
physics2.mp4

Artificial Life engine extensions

  • Multi-cellular organisms are simulated as particle networks
  • Genetic system and cell by cell construction of offspring
  • Neural networks for controlling higher-level functions (e.g. sensors and muscles)
  • Various colors may be used to customize cell types according to own specifications
  • Support for spatially varying simulation parameters
alife3.mp4

Extensive editing tools

  • Graph editor for manipulating every particle and connection
  • Freehand and geometric drawing tools
  • Genetic editor for designing customized organisms
  • Mass-operations and (up/down) scaling functions

Networking

  • Built-in simulation browser
  • Download and upload simulation files
  • Rate simulations by giving stars

But for what is this useful?

  • A first attempt to answer: Feed your curiosity by watching evolution at work! As soon as self-replicating machines come into play and mutations are turned on, the simulation itself does everything.
  • Perhaps the most honest answer: Fun! It is almost like a game with a pretty fast and realistic physics engine. You can make hundreds of thousands of machines accelerate and destroy with the mouse cursor. It feels like playing god in your own universe with your own rules. Different render styles and a visual editor offer fascinating insights into the events. There are a lot of videos on the YouTube channel for illustration.
  • A more academic answer: A tool to tackle fundamental questions of how complexity or life-like structure may arise from simple components. How do entire ecosystems adapt to environmental changes and find a new equilibrium? How to find conditions that allow open-ended evolution?
  • A tool for generative art: Evolution is a creative force that leads to ever new forms and behaviors.

Documentation

A documentation for the previous major version, which introduces the reader to the simulator with tutorial-like articles, can be found at alien-project.gitbook.io/docs. Please notice that many of the information therein are no longer up to date.

A new documentation is currently under construction. However a lot of useful information is provided in the program itself via help windows and tooltips.

Further information and artwork:

Minimal system requirements

An Nvidia graphics card with compute capability 6.0 or higher is needed. Please check https://en.wikipedia.org/wiki/CUDA#GPUs_supported.

Installer

An installer for the latest beta for Windows: download link (Updated: 2023-06-19)

In the case that the program crashes for an unknown reason, please refer to the troubleshooting section in alien-project.org/downloads.html.

How to build the sources

The build process is mostly automated using the cross-platform CMake build system and the vcpkg package manager, which is included as a Git submodule.

Getting the sources

To obtain the sources, please open a command prompt in a suitable directory (which should not contain whitespace characters) and enter the following command:

git clone --recursive https://github.com/chrxh/alien.git

Note: The --recursive parameter is necessary to check out the vcpkg submodule as well. Besides that, submodules are not normally updated by the standard git pull command. Instead, you need to write git pull --recurse-submodules.

Build instructions

Prerequisites: CUDA Toolkit 11.2+ and a toolchain for CMake (e.g. GCC 9.x+ or MSVC v142+)

Build steps:

mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release -j8

If everything goes well, the ALIEN executable can be found under the build directory in ./alien or .\Release\alien.exe depending on the used toolchain and platform.

Contributing to the project

Contributions to the project are very welcome. The most convenient way is to communicate via GitHub Issues, Pull requests or the Discussion forum depending on the subject. For example, it could be

  • Providing new content (simulation or genome files)
  • Producing or sharing media files
  • Reporting of bugs, wanted features, questions or feedback via GitHub Issues or in the Discussion forum.
  • Pull requests for bug fixes, code cleanings, optimizations or minor tweaks. If you want to implement new features, refactorings or other major changes, please use the Discussion forum for consultation and coordination in advance.
  • Extensions or corrections to the alien-docs. It has its own repository.

A short architectural overview of the source code can be found in the documentation.

Dependency list

Screenshots

Different plant-like populations around a radiation source

Screenshot1

Close-up of different types of organisms so that their cell networks can be seen

Screenshot2

Different swarms attacking an ecosystem

Screenshot3

Genome editor

Screenshot3b

License

ALIEN is licensed under the GPLv3.