Skip to main content

A modern MUD engine - headless game engine for real-time, text-based multiplayer worlds

Project description

Daemons Engine

A Python framework for building text-based multiplayer RPGs with real-time WebSocket communication.

Pre-Release Beta API subject to change. Not recommended for production use. Latest Roadmap Release: Phase 16 - Cybersecurity upgrades, including input validation and production mode


Quickstart

Prerequisites

  • Python 3.11 or higher
  • pip (Python package manager)

Step 1: Create Project Directory

mkdir my-game
cd my-game

Step 2: Create Virtual Environment

# Windows
python -m venv .venv
.\.venv\Scripts\Activate
# macOS/Linux
python3 -m venv .venv
source .venv/bin/activate

Step 3: Install Daemons Engine

pip install daemons-engine

Step 4: Initialize Your Game

daemons init <new_game>

This creates:

  • world_data/ YAML content (rooms, NPCs, items)
  • config.py Server configuration
  • main.py Application entry point
  • alembic.ini Database migration config
  • alembic/ Migration scripts

Step 5: Set Up Database

cd <new_game>
daemons db upgrade

Step 6: Run the Server

From /<new_game>...

# Development (auto-reload on code changes)
daemons run --reload

# Production (requires JWT secret key)
daemons run --production

The --production flag enables security hardening:

  • Requires JWT_SECRET_KEY environment variable
  • Enforces JWT issuer/audience validation
  • Runs without auto-reload

If JWT_SECRET_KEY is not set, you'll be prompted to generate one.

You should see:

INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Application startup complete.

Step 7: Connect a Client

Option A: Reference Client

pip install flet
daemons client

Option B: Build Your Own

Connect via WebSocket to ws://127.0.0.1:8000/ws/game/auth.

Test Credentials:

  • Username: testplayer1 / Password: testpass1
  • Username: testplayer2 / Password: testpass2

Create Game Content

All content is defined in YAML files under world_data/.

Example Room (world_data/rooms/tavern.yaml)

id: tavern_main
name: "The Rusty Tankard"
description: |
  A cozy tavern with a crackling fireplace.
room_type: indoor
area_id: starter_town
exits:
  north: town_square

Example NPC (world_data/npcs/barkeeper.yaml)

id: npc_barkeeper
name: "Greta the Barkeeper"
description: "A stout woman with a warm smile."
level: 5
behaviors:
  - merchant
spawn_room: tavern_main

Project Structure

my-game/
 world_data/              # Your game content
    rooms/               # Room definitions
    items/               # Items and equipment
    npcs/                # NPC templates
    quests/              # Quest definitions
    dialogues/           # NPC dialogue trees
 alembic/                 # Database migrations
 config.py                # Server configuration
 main.py                  # Application entry point
 dungeon.db               # SQLite database

Quick Reference

Task Command
Initialize project daemons init
Run migrations daemons db upgrade
Start server (dev) daemons run --reload
Start server (prod) daemons run --production
Run client daemons client
URL Description
http://127.0.0.1:8000/docs Swagger API docs
http://127.0.0.1:8000/redoc ReDoc API docs

Documentation

Coming soon


License

MIT License see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

daemons_engine-0.1.18.tar.gz (624.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

daemons_engine-0.1.18-py3-none-any.whl (705.9 kB view details)

Uploaded Python 3

File details

Details for the file daemons_engine-0.1.18.tar.gz.

File metadata

  • Download URL: daemons_engine-0.1.18.tar.gz
  • Upload date:
  • Size: 624.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for daemons_engine-0.1.18.tar.gz
Algorithm Hash digest
SHA256 6b8034c1c294d8af08453c4668bdfee95fec1603c65e2587c31a74e219e6f339
MD5 394878c88cc13fbc79acf20fdc5ac644
BLAKE2b-256 6c6556fe9e13ddd801641a55b7659f8ded38724a0a5689950c814b94d7e7370e

See more details on using hashes here.

File details

Details for the file daemons_engine-0.1.18-py3-none-any.whl.

File metadata

File hashes

Hashes for daemons_engine-0.1.18-py3-none-any.whl
Algorithm Hash digest
SHA256 e178751e7942498c4d4e9d8b1cd293a0b2fe501412d56921a3ddce5df3cd53c5
MD5 64a7d27fe294c07a0e16cba928417153
BLAKE2b-256 1a3987b0aeec8163277417e1bacccc3427a00343eb9294a7dc53d847c3264953

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page