game in wisp script writing
implement textfiles-to-game.w, a simpler structure to create interactive stories more easily.
improve readability of input text and reduce sizes of numbers a bit to ensure enough room for choose

heads

tip
browse log

clone

read-only
https://hg.sr.ht/~arnebab/dryads-wake
read/write
ssh://hg@hg.sr.ht/~arnebab/dryads-wake
Dryads Wake --- a world is reborn
=================================

Enter : Old One
        Juli Finn :profile juli

Old One
    Welcome to Dryads Wake,
    a game of uncertain choices and dialogue.

Juli Finn
    We hope you enjoy your stay!

Play
----

    ./dryads-wake.w

Requires [Guile 3.0.1 or later](http://gnu.org/s/guile) and guile-websocket (for the webserver).


Write
-----

Just edit dryads-wake.w, then run it. Adapt the test-function and then
run `./dryads-wake.w --test` to start with specific scenes.

To check your plot, use `./analyze-plot.w dryads-wake.w` to list the
known, used, and unused outcomes.

For useful patterns see <HOWTO.org>.


Install from release
--------------------

    ./configure && make && make install

Install and develop from clone
------------------------------

    ./setup.sh # just autoreconf -i
    ./configure
    make && make install && make distcheck

Also see

    make help

Publish on a server
-------------------

see [doc/setup.org](doc/setup.org).

An example is <https://dryads-wake.1w6.org>


Install with Guix
-----------------

(preliminary, still with hacks)

    autoreconf -i; ./configure --prefix=/tmp/; make check
    rm -rf autom4te.cache/ config.* configure
    guix build -f guix.scm
    guix package -f guix.scm

Create Release for non-guix systems
-----------------------------------

    rm -rf autom4te.cache/ config.* configure
    guix pack -L . -RR -S /gnu/dryads-wake= -e '(load "guix.scm")'

Others can then run this with

    tar xf <tarball>
    GUILE_LOAD_PATH=gnu/dryads-wake/share/guile/site/3.0/ gnu/dryads-wake/bin/dryads-wake [--server]


Copyright and License
---------------------

Dryads Wake is built by Arne Babenhauserheide.

It is licensed under the AGPLv3 or later, so you can use it anyway you
see fit as long as you stick to the license and provide all who play
it with a way to access the source. See COPYING.AGPLv3

The source is located at https://hg.sr.ht/~arnebab/dryads-wake

enter.w and other library files are licensed under the LGPLv3 or
later. Those have explicit license headers declaring the LGPL as
license. Any file without license header is AGPLv3 or later.

Game engine
-----------

Dryads Wake is built with Enter Three Witches, a game engine that
gives dialogue the center stage, similar to interactive fiction
systems. Different from typical interactive fiction, it is embedded in
Wisp, a Scheme dialect, so authors can seamlessly add their own tools when
they hit the limits of predefined options.

It is realized in Guile Scheme, the official GNU language for
extensions.