Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Attempts to minimize bytes, some token golf as well #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,17 @@ what's needed, but at the moment unless this `special branch of picotool`_ is ru
Design Notes
------------

Anteform is mostly data-driven using the "Minima Engine". It uses a JSON data structure
to define the people, creatures, and objects, and another JSON data structure to define
all the maps and dungeons. Command sequencing uses coroutines in order to avoid
overly-complicated state machines.
Anteform is mostly data-driven using the "Minima Engine". It uses a JSON-like data
structure to define the people, creatures, and objects, and another JSON-like data
structure to define all the maps and dungeons. Command sequencing uses coroutines
in order to avoid overly-complicated state machines.

Other Notes
-----------

This version makes use of a stripped-down version of Tyler Neylon's `json.lua`_ routine
to parse JSON data. The additional `Lua`_ utility script `convert.lua` is used to make it
easier to lay out a dungeon map and turn it into something the game can use.
to parse JSON-like data. The additional `Lua`_ utility script `convert.lua` is used to
make it easier to lay out a dungeon map and turn it into something the game can use.

.. _Anteform at Lexaloffle page: https://www.lexaloffle.com/bbs/?tid=35093
.. _Anteform Itch.io page: https://feneric.itch.io/anteform
Expand Down
Loading