Zelphir Kaltstahl 704770b13a set sign of karma modifier for events | 4 years ago | |
---|---|---|
config | 4 years ago | |
guix-env | 4 years ago | |
lib | 4 years ago | |
python-env | 4 years ago | |
.gitignore | 4 years ago | |
.gitmodules | 4 years ago | |
LICENSE | 4 years ago | |
config.scm | 4 years ago | |
data-abstraction.scm | 4 years ago | |
effect.scm | 4 years ago | |
main.scm | 4 years ago | |
model.scm | 4 years ago | |
notes.org | 4 years ago | |
readme.md | 4 years ago | |
readme.org | 4 years ago | |
start.bash | 4 years ago | |
validate.bash | 4 years ago |
This project contains a program for simulating an imaginary vacation trip.
The program depends on the following software:
guile-json
of GNU Guix commit (revision) 8518a3692cbb9cd96d69c03e9de9ad6fdcfebbee
– Other versions were not tested. However, the program does not use advanced features of the library, so other versions will probably work fine as well.Clone the repository using:
git clone --recurse-submodules --remote-submodules URL
Or, if you are using an older version of git
:
git clone URL
cd DIR_OF_REPO
git submodule update --init --recursive
A GNU Guix environment setup script is provided in guix-env/env.bash
. You can run it using GNU Bash from the root directory of the cloned repository:
bash guix-env/env.bash
After which you will have the required libraries to run the program. You can run the program from the root directory of this project as follows:
GUILE_LOAD_PATH="${GUILE_LOAD_PATH}:lib/fslib" \
guile -L . main.scm
Alternatively, you can mke use of the provided GNU Bash script in the root directory of the cloned repostitory:
bash start.bash
If you do not have GNU Guix installed, you need to consult the list of dependencies and make sure you got them satisfied, before running the program.
Events that can occur while travelling as well as the difficulty of the journey are specified in story-parameters.json
.
The players and their routes are specified in story.json
.
There are JSON schemas given for configuration files as ...-schema.json
. To make use of them, you may use any program you want to use for validating the configuration files against their corresponding JSON schema. A little Python 3 program is given in validate.py
, which validates using the jsonschema
library from PyPI. To use it do the following:
bash python-env/env.bash
from the root directory of this project, to create a Python venv.source python-env/venv/bin/activate
to activate the venv.python3 validate.py
.