Authors: Fredrik Jansson, Matthew Hartley, Martin Hinsch, Tjelvar Olsson, Ivica Slavkov, Noemí Carranza
For an extended list of those contributing to the simulator and related paper, see here.
Contact: Fredrik Jansson: fjansson@abo.fi Matthew Hartley: Matthew.Hartley@jic.ac.uk
This repository holds the code for Kilombo, a C based Kilobot
simulator. The simulator was developed in the Swarm Organ
project, and is distributed under the MIT license
(see the file LICENSE for details). Installation instructions follow
below. For detailed usage instruction and programming documentation,
see docs/manual.md
and the example bots in examples/
.
A preprint of an article about the simultator is available on arXiv. If the Kilombo simulator is used for academic purposes, we would highly appreciate citations of this article and the GitHub repository. ArXiv 1511.04285
Any feedback on the simulator is welcome, contact the authors listed above. If the simulator turns out to be useful for you, we would like to hear it - please write us a short mail to let us know.
You'll need to have:
Additionally, to compile the code for real kilobots as well, the following are needed:
sudo apt-get install build-essential git gcc-avr gdb-avr binutils-avr avr-libc avrdude libsdl1.2-dev libjansson-dev libsubunit-dev cmake check
Standard development tools, includeing git and a c compiler, can be obtained by installing xcode. In addition, several libraries are needed, which can be obtained using the package manager brew. A tutorial: http://hackercodex.com/guide/mac-osx-mavericks-10.9-configuration/
With brew installed, install the libraries.
cmake:
brew install cmake
check library:
brew install check
SDL library:
brew install sdl
AVR toolchain, (Optional, needed for real kilobots):
brew tap osx-cross/avr
brew install avr-libc
For the brew-installed libraries to be found, the following lines can be
added to .bash_profile
:
export C_INCLUDE_PATH=/usr/local/include/:$C_INCLUDE_PATH
export LIBRARY_PATH=/usr/local/lib:$LIBRARY_PATH
Make a build directory:
mkdir build
cd build
Run cmake:
cmake ..
Install:
sudo make install
This installs the kilobot simulator in a system-wide location, by default
under /usr/local/lib
and /usr/local/include
.
cd examples cd orbit make # or make -f Makefile.osx on OSX ./orbit -b start_positions.json
The example makefiles are set up to build the code for the simulator by default. By running make hex the same source code is compiled for the real Kilobot. This requires the avr-gcc toolchain and the official Kilolib to be installed (see prerequisites above).
git clone https://github.com/acornejo/kilolib
cd kilolib
make
add export KILOHEADERS=/path/to/kilolib/
to .bash_profile
or another suitable
configureation file, or provide the path in the Makefile for the bot program.
For the setting to take effect, open a new terminal or source .bash_profile
.
To compile the example programs for real robots:
cd examples/orbit
# or another example
make hex
The simulator uses the SDL_GFX library by Andreas Schiffler (distributed under the zlib license). The source code for the sdl_gfx library is bundled with the simulator due to its unreliable availability in various Linux distributions. It is located in the directory src/gfx, and is automatically compiled with the rest of the source code.
The simulator also includes the API definitions of kilolib, the C library for the physical kilobot robot. These are located in the file src/kilolib.h, with minor, simulator-specific changes. The full kilolib source code is here: https://github.com/acornejo/kilolib .