Skip to main content

A modern Python port of the ROM 2.4b6 MUD engine with full telnet server and JSON world loading

Project description

QuickMUD - A Modern ROM 2.4 Python Port

Version Python 3.10+ License: MIT Tests ROM 2.4b Parity ROM C Audit Integration Tests

QuickMUD is a modern Python port of the legendary ROM 2.4b6 MUD engine, derived from ROM 2.4b6, Merc 2.1 and DikuMUD. This is a complete rewrite that brings the classic text-based MMORPG experience to modern Python with async networking, JSON world data, and 100% ROM 2.4b behavioral parity.

🎮 What is a MUD?

A "Multi-User Dungeon" (MUD) is a text-based MMORPG that runs over telnet. ROM is renowned for its fast-paced combat system and rich player interaction. ROM was also the foundation for Carrion Fields, one of the most acclaimed MUDs ever created.

✨ Key Features

  • 🎯 100% ROM 2.4b Behavioral Parity CERTIFIED: Official certification with comprehensive audits (see certification)
  • 🚀 Modern Python Architecture: Fully async/await networking with SQLAlchemy ORM
  • 📡 Multiple Connection Options: Telnet, WebSocket, and SSH server support
  • 🗺️ JSON World Loading: Easy-to-edit world data with 352+ room resets
  • 🏪 Complete Shop System: Buy, sell, and list items with working economy
  • ⚔️ ROM Combat System: Classic ROM combat mechanics and skill system
  • 👥 Social Features: Say, tell, shout, and 100+ social interactions
  • 🛠️ Admin Commands: Teleport, spawn, ban management, and OLC building
  • 📊 Comprehensive Testing: 4,560 passing tests across unit, integration, and command-registry suites
  • 🔧 ROM C-Compatible API: Public API wrappers for external tools and scripts (27 functions)

📦 Installation

For Players & Server Operators

pip install quickmud

Quick Start

Run a QuickMUD server:

Telnet Server (port 5001):

python3 -m mud socketserver
# or
mud socketserver

⚠️ macOS Users: Port 5000 is used by macOS AirPlay Receiver (Monterey+). QuickMUD defaults to port 5001 to avoid conflicts. To use a different port: python3 -m mud socketserver --port 4000

WebSocket Server (port 8000):

python3 -m mud websocketserver
# or
mud websocketserver

WebSocket dependency note: browser WebSocket clients require Uvicorn to have a supported WebSocket implementation available. If /ws upgrade requests fail, install one of:

./venv/bin/python -m pip install websockets
# or
./venv/bin/python -m pip install 'uvicorn[standard]'

SSH Server (port 2222):

python3 -m mud sshserver
# or
mud sshserver

All servers provide:

  • ✓ Game tick running at 4 Hz
  • ✓ Time advancement
  • ✓ Mob AI active

Connect to the server:

Via Telnet:

telnet localhost 5001

Via SSH:

ssh -p 2222 player@localhost
# Note: SSH username/password are ignored; MUD authentication happens after connection

🌐 Web Interface

QuickMUD includes a WebSocket server, but the browser interface lives in a separate companion project so this engine repo can remain the canonical, ROM-faithful Python backend.

Recommended layout:

~/dev/projects/
  rom24-quickmud-python/
  quickmud-web-client/

The browser client should connect to:

ws://127.0.0.1:8000/ws

Browser Client Setup

From the companion quickmud-web-client repo:

cd ~/dev/projects/quickmud-web-client
npm install
npm run dev:all

That workflow:

  • starts this QuickMUD engine's WebSocket server
  • starts the frontend development server
  • opens the browser client against the local /ws endpoint

The browser client is intended to follow the same ANSI, account login, account creation, character selection, and in-game command flow as telnet/SSH rather than using a browser-only shortcut login path.

Companion Repo

The web interface is intended to live in a separate repository named quickmud-web-client. Keep that project focused on browser UX, terminal rendering, reconnect behavior, and login flow while leaving gameplay and ROM parity logic in this backend repo.

🏗️ For Developers

Development Installation

git clone https://github.com/Nostoi/rom24-quickmud-python.git
cd rom24-quickmud-python
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -e .[dev]

Running Tests

pytest  # Run the full suite
pytest tests/integration/ -v  # Run the integration suite

Development Server

python -m mud  # Start development server

🎯 Project Status

  • Version: 2.8.21
  • ROM 2.4b Gameplay Parity: ✅ 100% (official certification) — combat, skills, spells, movement, communication, world/db, save/load, mob programs, and all 255 ROM commands are implemented and audited.
  • ROM C Source Audit: ✅ 100% audit-bound coverage — 40 of 40 applicable ROM C files are audited, with 3 additional ROM files intentionally N/A (recycle.c, mem.c, imc.c). See docs/parity/ROM_C_SUBSYSTEM_AUDIT_TRACKER.md.
  • Cross-file Invariants: ✅ 8/8 enforced — message delivery, prompt clamping, registry membership, same-room combat, death/connection behavior, RNG determinism, and persistence coherence are locked by dedicated tests.
  • Test Suite: ✅ 4560 passed, 4 skipped. Three layers — unit (tests/test_*.py), integration (tests/integration/), and command-registry (test_all_commands.py).
  • Active focus: parity work is effectively complete; current work is maintenance, frontend coordination, and investigation only when a deterministic regression is reproduced.
  • Compatibility: Python 3.10+, cross-platform

🏛️ Architecture

  • Async Networking: Modern async/await with Telnet, WebSocket, and SSH servers
  • SQLAlchemy ORM: Robust database layer with migrations
  • JSON World Data: Human-readable area files with full ROM compatibility
  • Modular Design: Clean separation of concerns (commands, world, networking)
  • Type Safety: Comprehensive type hints throughout codebase

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.

🤝 Contributing

Contributions are welcome! Please read our Contributing Guidelines and feel free to submit pull requests.

📚 Documentation

Official Certification

User Documentation

Developer Documentation


Experience the classic MUD gameplay with modern Python reliability! 🐍✨

For a fully reproducible environment, use the pinned requirements files generated with pip-tools:

pip install -r requirements-dev.txt

To update the pinned dependencies:

pip-compile requirements.in
pip-compile requirements-dev.in

Tools like Poetry provide a similar workflow if you prefer that approach.

Run tests with:

pytest

Publishing

To release a new version to PyPI:

  1. Update the version in pyproject.toml.
  2. Commit and tag:
git commit -am "release: v1.2.3"
git tag v1.2.3
git push origin main --tags

The GitHub Actions workflow will build and publish the package when the tag is pushed.

Python Architecture

Game systems are implemented in Python modules:

  • mud/net provides asynchronous telnet and websocket servers.
  • mud/game_loop.py drives the tick-based update loop.
  • mud/commands contains the command dispatcher and handlers.
  • mud/combat and mud/skills implement combat and abilities.
  • mud/account/ and mud/db/ handle character persistence and account state.

Start the server with:

python -m mud runserver

Docker Image

Build and run the Python server with Docker:

docker build -t quickmud .
docker run -p 5001:5001 quickmud

Or use docker-compose to rebuild on changes and mount the repository:

docker-compose up

Connect via:

telnet localhost 5001

Data Models

The mud/models package defines dataclasses used by the game engine. They mirror the JSON schemas in schemas/ and supply enums and registries for loading and manipulating area, room, object, and character data.

Project Completeness

QuickMUD is a production-ready ROM 2.4b MUD with ✅ 100% behavioral parity to the original ROM 2.4b6 C codebase:

✅ Fully Implemented Systems

  • Combat Engine: Complete ROM combat mechanics with THAC0, damage calculations, and weapon special attacks
  • Skills & Spells: All ROM skills and spells with correct formulas and targeting
  • Character System: Classes, races, advancement, equipment, and encumbrance
  • World System: Area loading, room resets, mob/object spawning, and JSON world data
  • Shop Economy: Buy/sell with pricing formulas, shop restocking, and inventory management
  • Communication: Say, tell, shout, channels, and 100+ social interactions
  • Mob Programs: Complete trigger system with conditional logic and ROM API
  • OLC Building: Area/room/mob/object/help editors with save/load functionality
  • Admin Tools: Teleport, spawn, ban management, wiznet, and debug commands
  • Networking: Async telnet, WebSocket, and SSH servers with game tick integration

📈 Quality Metrics

  • Test Suite: 4,560 passing, 4 skipped on the last full recertification.
  • Behavioral Parity: 100% of ROM 2.4b6 gameplay subsystems audited (combat, skills, spells, movement, communication, world/db, save/load, mob programs, 255/255 commands).
  • ROM C Source Audit: 40 of 40 applicable ROM files audited, plus 3 intentional N/A files.
  • Cross-file Invariants: 8 of 8 enforced by dedicated regression tests.

🔧 Advanced Features

For developers interested in extending QuickMUD beyond ROM 2.4b:

  • Modern Architecture: Async/await networking, SQLAlchemy ORM, type hints
  • JSON World Data: Human-readable area files (easier editing than ROM .are format)
  • Multiple Protocols: Telnet, WebSocket, SSH connection options
  • ROM API Wrapper: 27 public API functions for external tools and scripts
  • Comprehensive Testing: Golden file tests derived from ROM C behavior
  • Documentation: User guides, admin guides, and builder migration guides

📚 For Contributors

See ROM_PARITY_FEATURE_TRACKER.md for detailed feature status and AGENTS.md for AI-assisted development workflows.

Development Guidelines:

  1. ROM Parity First: Reference original ROM 2.4 C sources in src/ for canonical behavior
  2. Test Coverage: Add tests in tests/ with golden files derived from ROM behavior
  3. Backward Compatibility: Don't break existing save files or area data
  4. Documentation: Update relevant docs and inline code documentation
  5. Performance: Consider impact on the main game loop and player experience

Experience authentic ROM 2.4 gameplay with modern Python reliability! 🐍✨

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

rom24_quickmud_python-2.8.21.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

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

rom24_quickmud_python-2.8.21-py3-none-any.whl (646.1 kB view details)

Uploaded Python 3

File details

Details for the file rom24_quickmud_python-2.8.21.tar.gz.

File metadata

  • Download URL: rom24_quickmud_python-2.8.21.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rom24_quickmud_python-2.8.21.tar.gz
Algorithm Hash digest
SHA256 2e8b2cb7fe6976f5a630d5725795ff8bf285ca544adb3558be9c6b9a025b2d78
MD5 c3b316a1aab06195bf5da4994b28c36c
BLAKE2b-256 249c0367a2b44dea2a4baf2412ac8bae53fafccd3042ab8121dd3f73fbc42c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for rom24_quickmud_python-2.8.21.tar.gz:

Publisher: release.yml on Nostoi/rom24-quickmud-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rom24_quickmud_python-2.8.21-py3-none-any.whl.

File metadata

File hashes

Hashes for rom24_quickmud_python-2.8.21-py3-none-any.whl
Algorithm Hash digest
SHA256 e79f73c4a8d51ac3a18d047f564c9e22122669972762dd2327048a72678888d8
MD5 e373e013dd50cc76f35148baa4ef57d5
BLAKE2b-256 02ecd091cbc625185ed87dbfedc483e37114e6b961f2138b53b02c1e64de4013

See more details on using hashes here.

Provenance

The following attestation bundles were made for rom24_quickmud_python-2.8.21-py3-none-any.whl:

Publisher: release.yml on Nostoi/rom24-quickmud-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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