A Python framework for parser-based web adventures.
Project description
Catchphrase provides software components to build parser-based interactive fiction for the web.
Catchphrase is a Python library, and part of the Turberfield namespace.
For a demonstration of such a project, see the repository tea_and_sympathy. You are free to download and experiment with that example.
This framework makes heavy use of the turberfield-dialogue library. The documentation is at an early stage.
Framework
A drama class to encapsulate game logic.
A parser system which maps text phrases to drama methods and parameters.
A presenter class which combines static dialogue with drama output.
Renderer functions to animate the output in HTML or plain text.
Drama
Drama objects are responsible for the game logic of your story. Any calculations, computations and state transitions get done there.
I recommend the following techniques for organising your Drama code:
Write unit tests for the dramas in your story, to drive out the bugs in your story logic.
Partition your code into loosely-coupled modules, allowing you to share and re-use that logic.
Use Python multiple inheritance to layer story-specific behaviour on top of mundane mechanics.
Dramas work by implementing a generator method for a group of semantically similar free-text commands. Each method declares the syntax of those commands in its docstring.
The responsibility of a Drama method is also to yield strings of dialogue. You splice these into the main narrative dialogue of your story.
Drama methods can add or discard themselves or other methods from active duty. In this way complex scenarios can be achieved while minimising the potential for unplanned behaviour in game logic.
Parser
The parser module provides functions to help drama objects respond to text input.
The CommandParser class interrogates drama methods to determine what parameters they require. Based on this information, and the declaration made in method docstrings, the parser generates all commands understood in the current context of the drama.
Presenter
The Presenter combines static dialogue with the generated output from a Drama object.
Prepare a turberfield-dialogue Folder object.
Create a Presenter from the Folder and the drama output.
Call the animate method to generate web frames ready for rendering.
Renderer
The Renderer is a namespace for functions which generate HTML5 elements from Presenter frames. There is also support for plain text output.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file turberfield-catchphrase-0.25.0.tar.gz
.
File metadata
- Download URL: turberfield-catchphrase-0.25.0.tar.gz
- Upload date:
- Size: 30.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc947f228df771f095701fda696ca13c7610b06f7bd92b532025123446bada2f |
|
MD5 | aec4642746b244b93d2a4d81a7b6be42 |
|
BLAKE2b-256 | fa166ec048eebe7a045dfa9c5c5858c12b65ba6d5e97076b029332185158f2fb |
File details
Details for the file turberfield_catchphrase-0.25.0-py3-none-any.whl
.
File metadata
- Download URL: turberfield_catchphrase-0.25.0-py3-none-any.whl
- Upload date:
- Size: 36.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c1f358fe60f7da4e34993c9a84360b5f8aa7e801c3b617cbc73b978f3f06075 |
|
MD5 | 7d5f8d46b775a32eb6508b95f4d9fbf6 |
|
BLAKE2b-256 | 5aee61731ed891c6447d91af225fa720aef2a8c5e748d73069af2d7a4066cf36 |