Go to file
2024-05-25 22:03:07 -04:00
assets Add basic game manager 2024-05-25 02:53:46 -04:00
js-runtime
modules Fix entity maps being wrong 2024-05-25 22:03:07 -04:00
.dir-locals.el Update game to just have a player 2024-05-18 02:07:16 -04:00
.gitignore
COPYING Add COPYING file. 2024-05-06 20:04:09 -04:00
game.css
game.js Fix formatting for game.js 2024-05-25 01:42:11 -04:00
game.scm Fix game images alist 2024-05-25 22:03:07 -04:00
index.html Add meta tag for utf-8 encoding to index.html. 2024-05-01 07:42:44 -04:00
Makefile Move entity-map to a dedicated module 2024-05-25 00:30:08 -04:00
manifest.scm Add helper script to autobuild 2024-05-25 04:00:46 -04:00
notes.md Testing arrow key controls 2024-05-18 00:31:31 -04:00
README.md
watch-build Add helper script to autobuild 2024-05-25 04:00:46 -04:00

Guile Hoot Game Jam Template

This repository is the quickest way to get started building games in Scheme that run in web browsers with Guile Hoot!

It has everything you need:

  • A simple Breakout clone to use as a starting point.

  • HTML and JavaScript boilerplate for running the game in a web page.

  • DOM bindings for events, images, audio, and more.

  • HTML5 canvas bindings for rendering.

  • Some simple but useful game math modules.

  • A Makefile for compiling the game to WebAssembly, running a development web server, and generating zip bundles for publishing to itch.io.

  • A Guix manifest.scm file for creating a development environment with guix shell.

Tutorial

The fastest way to get everything you need is to use GNU Guix, a wonderful package manager written in Scheme.

Once you have Guix, the development environment with all necessary dependencies can be created:

guix shell

To build the game, run:

make

To launch a development web server, run:

make serve

To check if the program works, visit https://localhost:8088 in your web browser. We recommend using Mozilla Firefox or Google Chrome. Hoot is not supported on Safari at this time.

When it's time to publish the game to itch.io, run:

make bundle

Upload the resulting zip file to your itch.io game page and share your game with others! Have fun!

Getting help

If you have questions or need some help, visit the Spritely Institute's forum or connect to the #spritely channel on the Libera.Chat IRC network.