1
0
Fork 0
mirror of https://github.com/Oreolek/gamebookformat.git synced 2024-05-05 10:38:19 +03:00
Go to file
2013-06-16 09:06:21 +02:00
examples Random link selection. Stylesheet fixes for links. Some fixes with hiding/showing. 2013-06-12 00:16:21 +02:00
expected Improved OutputFormat by removing direct printing to output file. 2013-06-14 23:25:52 +02:00
templates HTML typo. 2013-06-14 22:24:24 +02:00
.gitignore More formatting options. 2013-06-11 21:59:39 +02:00
formatgamebook.py Improved OutputFormat by removing direct printing to output file. 2013-06-14 23:24:43 +02:00
Makefile Rule to make readme.html. 2013-06-15 18:45:31 +02:00
output.py Improved OutputFormat by removing direct printing to output file. 2013-06-14 23:24:43 +02:00
quote.py Basic quoting of different output formats. 2013-06-11 00:02:29 +02:00
readme.org Windhammer Prize link. 2013-06-14 07:02:43 +02:00
sections.py Removed unused old code. 2013-06-14 22:25:16 +02:00
templates.py templates.py can be executed now to extract a template from command-line. 2013-06-16 09:06:21 +02:00
test_output.py Improved OutputFormat by removing direct printing to output file. 2013-06-14 23:24:43 +02:00
test_sections.py Removed unused old code. 2013-06-14 22:25:16 +02:00
todo.org todo 2013-06-14 23:36:59 +02:00
verifygamebook.py Examples structure. New examples. Verification stub. Tags parsing. 2013-06-04 22:36:09 +02:00

gamebookformat

A tool to format gamebooks into various formats useful for playing the gamebook on paper or a screen (or for debugging it).

Usage

formatgamebook.py [-h] [-M] [-t D] inputfile [inputfile ...] outputfile

positional arguments:
  inputfile             input gamebook file (eg test.gamebook)
  outputfile            output file (eg test.tex or test.rtf)

optional arguments:
  -h, --help            show this help message and exit
  -M, --no-default-map  ignore default map file
  -t D, --template D    add custom template dir
  -y, --verify          verify gamebook structure
  -r R, --random=R      random number seed for shuffling sections

Supported Output Formats

Name Extension Description
LaTeX .tex Useful to generate PDFs using pdflatex or whatever LaTeX tools you prefer.
Rich Text Format .rtf Supported because the Windhammer Prize requires it.
Graphviz DOT .dot Use with the Graphviz dot tool to generate a flowchart graph of all sections in the gamebook.
HTML .html Play gamebook in browser.
Plain Text .txt Raw plain text without formatting.
Debug Plain Text .debug Plain text debug output of gamebook contents.

More to be added.

Gamebook Format

The input file expected by the formatgamebook.py script must be in a format containing information about all sections in the book plus some optional metadata. The format should (when TBD) be documented here.

By design the format is similar enough to Emacs Org-Mode that some edit shortcuts works in that mode without additional configuration (eg C-c C-q to edit section tags). References to sections can be followed using C-c C-o while editing the book in org-mode.

License

Copyright (c) 2013 Pelle Nilsson All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.