From 4af097b2ae6efa324d29bf97a5ea1ac15613fd27 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 20 Mar 2025 20:23:31 +1100 Subject: [PATCH] Config tweaks --- README.md | 16 ++++++++++++++++ pyvenv.cfg | 5 ----- source/main.py | 2 +- source/procgen.py | 6 +++--- 4 files changed, 20 insertions(+), 9 deletions(-) delete mode 100644 pyvenv.cfg diff --git a/README.md b/README.md index f7b9ef6..3ee48b2 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,25 @@ "Fun value", inspired by Undertale, activates different secrets in different runs. +Stepwise needs a genre/setting. Some options are: + +* Fantasy +* SciFi +* Nuclear Bunker +* Indiana Jones +* Post-Apocalypse +* Curses and Blessings (setting) + ## Links https://python-tcod.readthedocs.io/en/latest/ https://rogueliketutorials.com/ +## Setup + +```bash +python3 -m venv venv +./venv/bin/tcod +``` + diff --git a/pyvenv.cfg b/pyvenv.cfg deleted file mode 100644 index 88bdc97..0000000 --- a/pyvenv.cfg +++ /dev/null @@ -1,5 +0,0 @@ -home = /usr/bin -include-system-site-packages = false -version = 3.11.2 -executable = /usr/bin/python3.11 -command = /usr/bin/python -m venv /home/kruse/Repo/Stepwise diff --git a/source/main.py b/source/main.py index cb21022..ba97090 100755 --- a/source/main.py +++ b/source/main.py @@ -1,4 +1,4 @@ -#!./bin/python +#!venv/bin/python import tcod from engine import Engine diff --git a/source/procgen.py b/source/procgen.py index dea6e65..9323cab 100644 --- a/source/procgen.py +++ b/source/procgen.py @@ -18,7 +18,7 @@ def make_corridor(start: Tuple[int, int], end: Tuple[int, int]) -> Iterator[Tupl corner_x, corner_y = x2, y1 else: corner_x, corner_y = x1, y2 - + for x, y in tcod.los.bresenham((x1, y1), (corner_x, corner_y)).tolist(): yield x, y for x, y in tcod.los.bresenham((corner_x, corner_y), (x2, y2)).tolist(): @@ -68,7 +68,7 @@ def generate_floor_map(map_width: int, map_height: int, room_width_max: int, roo if any(new_room.intersects(other_room) for other_room in rooms): continue - + floor_map.tiles[new_room.inner] = tile_types.floor if len(rooms) == 0: @@ -79,5 +79,5 @@ def generate_floor_map(map_width: int, map_height: int, room_width_max: int, roo floor_map.tiles[x, y] = tile_types.floor rooms.append(new_room) - + return floor_map \ No newline at end of file