JohnEarnest / Decker

A multimedia sketchpad
MIT License
1.09k stars 56 forks source link
ditherpunk fantasy-console hypercard

Decker

Decker is a multimedia platform for creating and sharing interactive documents, with sound, images, hypertext, and scripted behavior.

Decker, complete with toolbars

You can learn more about Decker on my website, on the community forum, or you can just dive in and try it online. Periodic binary releases of Decker for MacOS and Windows are available on Itch.io.

If you're interested in Lil, Decker's scripting language, you can access documentation and play with it in your browser at trylil.

Web-Decker

Decker is available as a web application (written in vanilla JavaScript) which is distributed as a single freestanding HTML file. Web-Decker can be built with a make script. The test suite uses Node.js:

make testjs
make web-decker
make runweb      # (optional) open in your default browser

Native-Decker

Decker is also available as a native application, written in C. Building Native-Decker from source requires:

On MacOS, BSD, or Linux, fetch the appropriate SDL2 packages and then build with make. This has also been reported to build and run successfully under WSL:

brew install sdl2 sdl2_image                                   # MacOS/Homebrew
sudo apt install libsdl2-2.0-0 libsdl2-dev libsdl2-image-dev   # Debian
nix-shell                                                      # Nix

make lilt            # (optional) command-line tools
make docs            # (optional) build documentation (requires Lilt)
make decker          # build decker itself
make test            # (optional) regression test suite
sudo make install    # (optional) install lilt, decker, and lil syntax profiles

If SDL2 is not available, Native-Decker can also be built with reduced functionality against SDL1.2 and a corresponding version of SDL_image. This compatibility shim is presently designed with the OLPC XO-4 and its default Fedora 18 OS image in mind; expect to do some tinkering with the makefile for other platforms:

sudo yum install SDL-devel SDL_image-devel

make decker

Lilt

Decker's scripting language, Lil, is available as a standalone interpreter, with extended IO functionality to make it suitable for general-purpose programming and scripting: this package is called Lilt. Lilt only requires libc and xxd to build from source:

make lilt

Lilt can be used to programmatically create, inspect, and manipulate decks, as well as package them as Web-Decker self-executing documents:

$ lilt
 d:readdeck["examples/decks/color.deck"]
<deck>
 d.card:d.cards.colhex
<card>
 d.card.widgets.hex.text:"FFAA00"
"FFAA00"
 d.card.widgets.hex.event["change"]
0
 d.card.widgets.rgb.text
"16755200"
 writedeck["color.html" d]
1

You can build Lilt against Cosmopolitan Libc, producing a single binary that will run on most popular operating systems:

$ ./apelilt.sh
successfully compiled lilt.com
running tests against ./lilt.com...
all interpreter tests passed.
all dom tests passed.
all roundtrip tests passed.

$ sh ./lilt.com
  range 10
(0,1,2,3,4,5,6,7,8,9)

There is also an alternative Lil interpreter, Lila, which only requires a compliant implementation of the AWK language:

$ awk -f tools/awk/lila.awk
 sys.platform
"awk"
 2*range 10
(0,2,4,6,8,10,12,14,16,18)

The Danger Zone

Decker normally sandboxes the execution of scripts within decks to prevent low-level access to the host computer and ensure parity between the capabilities of Web-Decker and Native-Decker. Both implementations offer opt-in APIs for performing more "dangerous" or non-portable operations called The Danger Zone.

When building Native-Decker from source, you can enable The Danger Zone by defining the DANGER_ZONE preprocessor flag:

FLAGS:=$(FLAGS) -DDANGER_ZONE

A "dangerous" build of Native-Decker can export "dangerous" Web-Decker builds. You can also temporarily enable The Danger Zone for Web-Decker by calling the endanger() function from your browser's JavaScript console or modifying the DANGEROUS=0 constant in the .html file to DANGEROUS=1. The Forbidden Library offers a suite of bindings for useful JavaScript APIs based on this interface.

Contributing

The Decker project is released under the MIT license. Any contributions to this repository are understood to fall under the same license.

Please refrain from submitting Pull Requests to this repository containing new features without first discussing their inclusion in an Issue. Decker is intended to be small, simple, and cozy. There are an infinite number of features that could potentially be added, but creative constraints are also valuable. If you have a differing vision, feel empowered to explore it in your own fork of the project- that's what permissive licenses are for.