sardaukar / Decker

A multimedia sketchpad

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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, or just dive in and try it online.

There is also a community forum on itch.io.

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

Building

The web version of Decker (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

Periodic binary releases of the native version of Decker (c-decker) for OSX and Windows are available on itch.io. Building from source requires:

  • a c compiler and libc
  • the xxd utility (standard with OSX and most *nix distros)
  • SDL2
  • SDL_image

On OSX, 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                                   # OSX/Homebrew
sudo apt install libsdl2-2.0-0 libsdl2-dev libsdl2-image-dev   # Debian
nix-shell                                                      # Nix

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

Building the documentation requires Lilt:

make lilt
make docs

Decker offers a set of non-portable scripting APIs which are disabled by default. When building from source, you can enable them by defining DANGER_ZONE. See the Decker Reference Manual for details:

FLAGS:=$(FLAGS) -DDANGER_ZONE

As a fun bonus, you can also 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)

Contributing

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

  • Bug fixes and typo corrections are always welcome.
  • Bug reports must include simple steps for reproduction and clearly indicate the OS and/or web browser where the bug arises.
  • PRs should match the style of existing code.
  • PRs should be as small as possible, and must not contain bundled unrelated changes.
  • PRs must include updates for both the C and JavaScript versions of Decker (or its associated tools) whenever relevant.
  • PRs must include updates for documentation (see: the docs directory) wherever relevant.
  • PRs must pass the entire test suite (see: make test/make testjs).
  • When modifying the JavaScript version of Decker, please test your changes in multiple web browsers and avoid using bleeding-edge features. As a rule of thumb, if it didn't exist 5 years ago, don't use it now. If it only works in Chrome, it's better not to do it at all.
  • When modifying the C version of Decker, avoid generating warnings and do not use compiler-specific features such as GCC extensions.

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.

About

A multimedia sketchpad

License:MIT License


Languages

Language:C 61.5%Language:JavaScript 37.3%Language:Shell 0.6%Language:Makefile 0.4%Language:HTML 0.1%Language:Vim Script 0.1%Language:Nix 0.0%