Updated README.md

This commit is contained in:
Kayne Ruse 2025-03-29 09:08:12 +11:00
parent 02d63cc703
commit 087aa580a4
3 changed files with 13 additions and 4 deletions

View File

@ -38,8 +38,17 @@ https://python-tcod.readthedocs.io/en/latest/
## Setup and Notes
```bash
#make the virtual environment
python3 -m venv venv
./venv/bin/tcod
#useful pre-commit hook
lint_results=$(echo "$(grep -Pro '[\t]+$' */*.py)")
lint_errors=$(echo "$lint_results" | wc -w)
if [ $lint_errors -gt 0 ]; then
echo "pre-commit lint errors found: $lint_errors"
echo "$lint_results"
fi
exit $lint_errors
```
heapq is a thing for the speed sorting

View File

@ -62,7 +62,7 @@ class Engine:
if entity.ai:
action = entity.ai.process()
result |= action.apply()
return result
def handle_rendering(self, context: Context, console: Console) -> None:

View File

@ -32,7 +32,7 @@ class Entity:
#monster-specific stuff
if ai_class:
self.ai: Optional[BaseAI] = ai_class(self)
if stats:
self.stats = stats
self.stats.entity = self
@ -49,7 +49,7 @@ class Entity:
def set_pos(self, x: int, y: int) -> None:
self.x = x
self.y = y
#monster-specific stuff
def is_alive(self) -> bool:
return bool(self.ai)