https://github.com/silversquirl/vrl
vktec's roguelike
https://github.com/silversquirl/vrl
cython libtcod python roguelike roguelike-game
Last synced: 11 months ago
JSON representation
vktec's roguelike
- Host: GitHub
- URL: https://github.com/silversquirl/vrl
- Owner: silversquirl
- Created: 2018-03-04T14:44:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T21:48:40.000Z (almost 8 years ago)
- Last Synced: 2025-03-18T02:58:27.159Z (11 months ago)
- Topics: cython, libtcod, python, roguelike, roguelike-game
- Language: Python
- Size: 36.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vrl
Because I couldn't come up with a better name.
## What?
vrl is a roguelike I'm writing for fun. It also sort of turned into me
learning how to use [Cython][cython].
[cython]: http://cython.org/
## Why?
Because I felt like it.
## How do I run it?
Don't. It's in a very early stage of development and might eat your
laundry. However, if you're feeling brave and have your clean underwear
safely stashed out of sight, you can try this on a system with `apt`:
```bash
# Install dependencies
sudo apt install cython3 python3-numpy libtcod-dev
# Build Cython
python3 setup.py build_ext -i
# Run the game
python3 .
```
Beware that this procedure is untested and may well not work at all. At
present, the only supported platform for vrl is my development box.