2019-04-05 20:16:33 +00:00
|
|
|
# Building Doodle
|
|
|
|
|
2022-09-25 00:45:54 +00:00
|
|
|
* [Automated Release Scripts](#automated-release-scripts)
|
|
|
|
* [Quickstart with bootstrap.py](#quickstart-with-bootstrap-py)
|
2020-12-29 04:46:32 +00:00
|
|
|
* [Detailed Instructions](#detailed-instructions)
|
2019-07-09 01:16:45 +00:00
|
|
|
* [Linux](#linux)
|
2020-12-29 02:28:18 +00:00
|
|
|
* [Flatpak for Linux](#flatpak-for-linux)
|
2019-07-09 01:16:45 +00:00
|
|
|
* [Windows Cross-Compile from Linux](#windows-cross-compile-from-linux)
|
2020-12-29 04:46:32 +00:00
|
|
|
* [Old Docs](#old-docs)
|
2019-07-09 01:16:45 +00:00
|
|
|
|
2022-12-08 05:34:12 +00:00
|
|
|
# Dockerfile
|
|
|
|
|
|
|
|
The Dockerfile in this git repo may be the quickest way to fully
|
|
|
|
release the game for as many platforms as possible. Run it from a
|
|
|
|
64-bit host Linux system and it will generate Linux and Windows
|
|
|
|
releases for 64-bit and 32-bit Intel CPUs.
|
|
|
|
|
|
|
|
It depends on your git clone of doodle to be fully initialized
|
|
|
|
(e.g., you have run the bootstrap.py script and a `make dist`
|
|
|
|
would build a release for your current system, with doodads and
|
|
|
|
runtime assets all in the right places).
|
|
|
|
|
|
|
|
Run `make docker` and the results will be in the
|
|
|
|
`artifacts/release` folder in your current working directory.
|
|
|
|
|
|
|
|
**Fedora notes (SELinux):** if you run this from a Fedora host
|
|
|
|
you will need to `sudo setenforce permissive` to allow the
|
|
|
|
Dockerfile to mount the artifacts/release folder to export its
|
|
|
|
results.
|
|
|
|
|
2021-07-11 20:57:58 +00:00
|
|
|
# Automated Release Scripts
|
|
|
|
|
2022-12-08 05:34:12 +00:00
|
|
|
Other Dockerfiles and scripts used to release the game:
|
2021-07-11 20:57:58 +00:00
|
|
|
|
2022-09-24 22:17:25 +00:00
|
|
|
* [SketchyMaze/docker](https://git.kirsle.net/SketchyMaze/docker) provides a Dockerfile
|
2022-12-08 05:34:12 +00:00
|
|
|
that fully end-to-end releases the latest version of the game for Linux and Windows. 64bit and 32bit versions that freshly clone the
|
|
|
|
game from git and output their respective CPU release artifacts:
|
2021-07-11 20:57:58 +00:00
|
|
|
* Windows: .zip file
|
|
|
|
* Linux: .tar.gz, .rpm, .deb
|
|
|
|
* [flatpak](https://code.sketchymaze.com/game/flatpak) is a Flatpak manifest for
|
|
|
|
Linux distributions.
|
|
|
|
|
|
|
|
The Docker container depends on all the git servers being up, but if you have
|
|
|
|
the uber blob source code you can read the Dockerfile to see what it does.
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
# Quickstart with bootstrap.py
|
2020-11-15 23:20:15 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
From any Unix-like system (Fedora, Ubuntu, macOS) the bootstrap.py script
|
|
|
|
is intended to set this app up, from scratch, _fast._ The basic steps are:
|
2020-11-15 23:20:15 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
```bash
|
|
|
|
# Example from an Ubuntu 20.04 LTS fresh install running in a
|
|
|
|
# libvirt-manager virtual machine on a Fedora host.
|
2020-11-20 04:51:02 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
# 1. Ensure your SSH keys have git clone permission for git.kirsle.net.
|
|
|
|
# For example just scp my keys from the host Fedora machine.
|
|
|
|
$ scp -r kirsle@192.168.122.1:.ssh/id_rsa* ~/.ssh/
|
|
|
|
|
|
|
|
# 2. git clone the Project Doodle repository.
|
|
|
|
$ git clone git@git.kirsle.net:apps/doodle
|
|
|
|
$ cd ./doodle
|
|
|
|
|
|
|
|
# 3. Run the bootstrap script.
|
|
|
|
$ python3 bootstrap.py
|
|
|
|
```
|
2020-11-15 23:20:15 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
The bootstrap script will take care of the rest:
|
|
|
|
|
|
|
|
* `apt install` all the dependencies (golang, SDL2, etc.)
|
|
|
|
* `git clone` various other repositories into a "deps/" folder in doodle's
|
|
|
|
directory. These are things like my Go render library `go/render` and
|
|
|
|
`go/ui` as well as the doodle-rtp runtime package (sound effects, etc.)
|
|
|
|
all of which are hosted on git.kirsle.net.
|
|
|
|
* Build and install the `doodad` tool so it can generate the builtin
|
|
|
|
doodads, and build and release a full distribution of the game.
|
|
|
|
|
|
|
|
It should work on Fedora-likes, Debian-likes and macOS all the same.
|
|
|
|
It even runs on the Pine64 Pinephone (ARM64) with Mobian!
|
|
|
|
|
2021-05-02 19:06:34 +00:00
|
|
|
MacOS is expected to have [homebrew](https://brew.sh) installed.
|
|
|
|
MP3 support issues? [See here](https://github.com/veandco/go-sdl2/issues/299#issuecomment-611681191).
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
**To do:** the most important repositories, like the game itself, are
|
|
|
|
also mirrored on GitHub. Other supporting repos need mirroring too, or
|
|
|
|
otherwise, full source tarballs (the result of bootstrap.py) will be
|
|
|
|
built and archived somewhere safe for posterity in case git.kirsle.net
|
2022-09-24 23:17:30 +00:00
|
|
|
ever goes away. The doodle mirror is at <https://github.com/SketchyMaze/doodle>
|
2020-12-29 04:46:32 +00:00
|
|
|
(private repository) and the others are there too (go/render, go/ui, etc.)
|
|
|
|
|
|
|
|
# Detailed Instructions
|
|
|
|
|
|
|
|
For building the app the hard way, and in-depth instructions, read
|
|
|
|
this section. You'll need the following git repositories:
|
|
|
|
|
2022-09-24 22:17:25 +00:00
|
|
|
* `git.kirsle.net/SketchyMaze/doodle` - the game engine.
|
2022-09-25 00:45:54 +00:00
|
|
|
* `git.kirsle.net/SketchyMaze/assets` - where built-in level files are kept (optional)
|
|
|
|
* `git.kirsle.net/SketchyMaze/vendor` - vendored libraries for Windows (SDL2.dll etc.)
|
|
|
|
* `git.kirsle.net/SketchyMaze/rtp` - runtime package (sounds and music mostly)
|
|
|
|
* `git.kirsle.net/SketchyMaze/doodads` - sources to compile the built-in doodads.
|
2020-12-29 04:46:32 +00:00
|
|
|
|
2022-09-24 22:17:25 +00:00
|
|
|
The [docker](https://git.kirsle.net/SketchyMaze/docker) repo will
|
2020-12-29 04:46:32 +00:00
|
|
|
be more up-to-date than the instructions below, as that repo actually has
|
|
|
|
runnable code in the Dockerfile!
|
2020-12-29 02:28:18 +00:00
|
|
|
|
2020-11-15 23:20:15 +00:00
|
|
|
```bash
|
2020-11-20 04:51:02 +00:00
|
|
|
# Clone all the repos down to your project folder
|
2022-09-25 00:45:54 +00:00
|
|
|
git clone https://git.kirsle.net/SketchyMaze/rtp rtp
|
|
|
|
git clone https://git.kirsle.net/SketchyMaze/vendor vendor
|
|
|
|
git clone https://git.kirsle.net/SketchyMaze/masters masters
|
|
|
|
git clone https://git.kirsle.net/SketchyMaze/doodle doodle
|
|
|
|
git clone https://git.kirsle.net/SketchyMaze/doodads doodle/deps/doodads
|
2020-11-20 04:51:02 +00:00
|
|
|
|
|
|
|
# Enter doodle/ project
|
|
|
|
cd doodle/
|
|
|
|
|
2020-11-15 23:20:15 +00:00
|
|
|
# Copy fonts and levels in
|
2022-09-25 00:45:54 +00:00
|
|
|
cp ../assets/levelpacks assets/levelpacks
|
2020-11-20 04:51:02 +00:00
|
|
|
cp ../vendor/fonts assets/fonts
|
|
|
|
mkdir rtp && cp -r ../rtp/* rtp/
|
2020-11-15 23:20:15 +00:00
|
|
|
|
2021-07-14 01:02:57 +00:00
|
|
|
# From the doodle repo:
|
|
|
|
make setup # -or-
|
2020-11-20 04:51:02 +00:00
|
|
|
go get ./... # install dependencies etc.
|
|
|
|
|
|
|
|
# The app should build now. Build and install the doodad tool.
|
2022-09-24 22:17:25 +00:00
|
|
|
go install git.kirsle.net/SketchyMaze/doodle/cmd/doodad
|
2020-11-20 04:51:02 +00:00
|
|
|
doodad --version
|
|
|
|
# "doodad version 0.3.0-alpha build ..."
|
|
|
|
|
|
|
|
# Build and release the game into the dist/ folder.
|
|
|
|
# This will: generate builtin doodads, bundle them with bindata,
|
|
|
|
# and create a tarball in the dist/ folder.
|
|
|
|
make dist
|
|
|
|
|
|
|
|
# Build a cross-compiled Windows target from Linux.
|
2021-07-14 01:02:57 +00:00
|
|
|
# (you'd run before `make dist` to make an uber release)
|
2020-11-20 04:51:02 +00:00
|
|
|
make mingw
|
2021-07-14 01:02:57 +00:00
|
|
|
|
|
|
|
# After make dist, `make release` will carve up Linux
|
|
|
|
# and Windows (mingw) builds and zip them up nicely.
|
|
|
|
make release
|
2020-11-15 23:20:15 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
`make build` produces a local binary in the bin/ folder and `make dist`
|
|
|
|
will build an app for distribution in the dist/ folder.
|
|
|
|
|
2022-09-25 00:45:54 +00:00
|
|
|
The bootstrap.py script does all of the above up to `make dist` so if you need
|
|
|
|
fully release the game by hand (e.g. on a macOS host) you can basically get away
|
|
|
|
with:
|
|
|
|
|
|
|
|
1. Clone the doodle repo and cd into it
|
|
|
|
2. Run `bootstrap.py` to fully set up your OS with dependencies and build a
|
|
|
|
release quality version of the game with all latest assets (the script finishes
|
|
|
|
with a `make dist`).
|
|
|
|
3. Run `make release` to package the dist/ artifact into platform specific
|
|
|
|
release artifacts (.rpm/.deb/.tar.gz bundles for Linux, .zip for Windows,
|
|
|
|
.dmg if running on macOS) which output into the dist/release/ folder.
|
|
|
|
|
|
|
|
Before step 3 you may want to download the latest Guidebook to bundle with
|
|
|
|
the game (optional). Grab and extract the tarball and run `make dist && make release`:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
wget -O - https://download.sketchymaze.com/guidebook.tar.gz | tar -xzvf -
|
|
|
|
```
|
2020-11-15 23:20:15 +00:00
|
|
|
|
2019-06-26 01:58:48 +00:00
|
|
|
## Fonts
|
|
|
|
|
|
|
|
The `fonts/` folder is git-ignored. The app currently uses font files here
|
|
|
|
named:
|
|
|
|
|
|
|
|
* `DejaVuSans.ttf` for sans-serif font.
|
|
|
|
* `DejaVuSans-Bold.ttf` for bold sans-serif font.
|
|
|
|
* `DejaVuSansMono.ttf` for monospace font.
|
|
|
|
|
|
|
|
These are the open source **DejaVu Sans [Mono]** fonts, so copy them in from
|
|
|
|
your `/usr/share/fonts/dejavu` folder or provide alternative fonts.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir fonts
|
|
|
|
cp /usr/share/fonts/dejavu/{DejaVuSans.ttf,DejaVuSans-Bold.ttf,DejaVuSansMono.ttf} fonts/
|
|
|
|
```
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
The doodle-vendor repo has copies of these fonts.
|
|
|
|
|
2019-06-26 01:58:48 +00:00
|
|
|
## Makefile
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
Makefile commands for Unix-likes:
|
2019-04-05 20:16:33 +00:00
|
|
|
|
|
|
|
* `make setup`: install Go dependencies and set up the build environment
|
2022-09-24 22:39:54 +00:00
|
|
|
* `make doodads`: build the default Doodads from sources in `deps/doodads/`
|
2019-04-05 20:16:33 +00:00
|
|
|
* `make build`: build the Doodle and Doodad binaries to the `bin/` folder.
|
2021-07-14 01:02:57 +00:00
|
|
|
* `make buildall`: runs all build steps: doodads, build.
|
2019-05-05 21:03:20 +00:00
|
|
|
* `make build-free`: build the shareware binaries to the `bin/` folder. See
|
|
|
|
Build Tags below.
|
|
|
|
* `make build-debug`: build a debug binary (not release-mode) to the `bin/`
|
|
|
|
folder. See Build Tags below.
|
2019-06-27 01:36:54 +00:00
|
|
|
* `make wasm`: build the WebAssembly output
|
|
|
|
* `make wasm-serve`: build the WASM output and then run the server.
|
2019-04-05 20:16:33 +00:00
|
|
|
* `make run`: run a local dev build of Doodle in debug mode
|
|
|
|
* `make guitest`: run a local dev build in the GUITest scene
|
|
|
|
* `make test`: run the test suite
|
|
|
|
* `make dist`: produce a zipped release tarball and zip file for your current
|
|
|
|
environment and output into the `dist/` folder.
|
|
|
|
* `make docker`: run all the Dockerfiles from the `docker/` folder to produce
|
|
|
|
dist builds for Debian, Fedora and Ubuntu. You may also run these builds
|
|
|
|
individually:
|
|
|
|
* `make docker.ubuntu`
|
|
|
|
* `make docker.debian`
|
|
|
|
* `make docker.fedora`
|
|
|
|
* `make clean`: clean all build artifacts
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
# Dependencies
|
2019-04-05 20:16:33 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
The bootstrap.py script lists dependencies for Fedora, Debian and macOS.
|
|
|
|
Also here for clarity, hopefully not out-of-date:
|
2019-04-05 20:16:33 +00:00
|
|
|
|
|
|
|
```bash
|
2020-12-29 04:46:32 +00:00
|
|
|
# Fedora-likes
|
|
|
|
sudo dnf install make golang SDL2-devel SDL2_ttf-devel \
|
|
|
|
SDL2_mixer-devel
|
|
|
|
|
|
|
|
# Debian and Ubuntu
|
|
|
|
sudo dnf install make golang libsdl2-dev libsdl2-ttf-dev \
|
|
|
|
libsdl2-mixer-dev
|
2019-04-05 20:16:33 +00:00
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
# macOS via Homebrew (https://brew.sh)
|
|
|
|
brew install golang sdl2 sdl2_ttf sdl2_mixer pkg-config
|
2019-04-05 20:16:33 +00:00
|
|
|
```
|
|
|
|
|
2020-12-29 02:28:18 +00:00
|
|
|
## Flatpak for Linux
|
|
|
|
|
2022-09-25 00:45:54 +00:00
|
|
|
The repo for this is at <https://git.kirsle.net/SketchyMaze/flatpak>.
|
2020-12-29 02:28:18 +00:00
|
|
|
|
2019-04-07 02:30:25 +00:00
|
|
|
## Windows Cross-Compile from Linux
|
2019-04-05 20:16:33 +00:00
|
|
|
|
2019-04-07 02:30:25 +00:00
|
|
|
Install the Mingw C compiler:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Fedora
|
|
|
|
sudo dnf -y install mingw64-gcc # for 64-bit
|
|
|
|
sudo dnf -y install mingw32-gcc # for 32-bit
|
|
|
|
|
|
|
|
# Arch Linux
|
|
|
|
pacman -S mingw-w64
|
|
|
|
```
|
|
|
|
|
|
|
|
Download the SDL2 Mingw development libraries [here](https://libsdl.org/download-2.0.php)
|
|
|
|
and SDL2_TTF from [here](https://www.libsdl.org/projects/).
|
|
|
|
|
|
|
|
Extract each and copy their library folder into the mingw path.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# e.g. /usr/x86_64-w64-mingw32 is usually the correct path, verify on e.g.
|
|
|
|
# Fedora with `rpm -ql mingw64-filesystem`
|
|
|
|
tar -xzvf SDL2_ttf-devel-2.0.15-mingw.tar.gz
|
|
|
|
cd SDL_ttf-2.0.15
|
|
|
|
sudo cp -r x86_64-w64-mingw32 /usr
|
|
|
|
```
|
|
|
|
|
|
|
|
Make and set permissions for Go to download the standard library for Windows:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir /usr/lib/golang/pkg/windows_amd64
|
|
|
|
chown your_username /usr/lib/golang/pkg/windows_amd64
|
|
|
|
```
|
|
|
|
|
|
|
|
And run `make mingw` to build the Windows binary.
|
|
|
|
|
|
|
|
### Windows DLLs
|
|
|
|
|
|
|
|
For the .exe to run it will need SDL2.dll and such.
|
|
|
|
|
|
|
|
```
|
|
|
|
# SDL2.dll and SDL2_ttf.dll
|
|
|
|
cp /usr/x86_64-w64-mingw32/bin/SDL*.dll bin/
|
|
|
|
```
|
|
|
|
|
|
|
|
SDL2_ttf requires libfreetype, you can get its DLL here:
|
|
|
|
https://github.com/ubawurinna/freetype-windows-binaries
|
2020-12-29 04:46:32 +00:00
|
|
|
|
2023-12-09 05:52:34 +00:00
|
|
|
# WebAssembly
|
|
|
|
|
|
|
|
There is some **experimental** support for a WebAssembly build of Sketchy Maze
|
|
|
|
since the very early days. Early on, the game "basically worked" but performance
|
|
|
|
could be awful: playing levels was OK but clicking and dragging in the editor
|
|
|
|
would cause your browser to freeze. Then for a time, the game wouldn't even get
|
|
|
|
that far. Recently (December 2023), WASM performance seems much better but there
|
|
|
|
are strange graphical glitches:
|
|
|
|
|
|
|
|
* On the title screen, the example levels in the background load OK and their
|
|
|
|
doodads will wander around and performance seems OK.
|
|
|
|
* But during Play Mode, only the menu bar draws but nothing else on the screen.
|
|
|
|
* In the Level Editor, the entire screen is white BUT tooltips will appear and
|
|
|
|
the menu bar can be clicked on (blindly) and the drop-down menus do appear.
|
|
|
|
Some popups like the Palette Editor can be invoked and draw to varying degrees
|
|
|
|
of success.
|
|
|
|
|
|
|
|
Some tips to get a WASM build to work:
|
|
|
|
|
|
|
|
* For fonts: symlink it so that ./wasm/fonts points to ./assets/fonts.
|
|
|
|
* You may need an updated wasm_exec.js shim from Go. On Fedora,
|
|
|
|
`dnf install golang-misc` and `cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .`
|
|
|
|
from the wasm/ folder.
|
|
|
|
* Run `make wasm` to build the WASM binary and `make wasm-serve` to run a simple
|
|
|
|
Go web server to serve it from.
|
|
|
|
|
2020-12-29 04:46:32 +00:00
|
|
|
# Old Docs
|
|
|
|
|
|
|
|
## Build Tags
|
|
|
|
|
|
|
|
These aren't really used much anymore but documented here:
|
|
|
|
|
|
|
|
### shareware
|
|
|
|
|
|
|
|
> Files ending with `_free.go` are for the shareware release as opposed to
|
|
|
|
> `_paid.go` for the full version.
|
|
|
|
|
|
|
|
Builds the game in the free shareware release mode.
|
|
|
|
|
|
|
|
Run `make build-free` to build the shareware binary.
|
|
|
|
|
|
|
|
Shareware releases of the game have the following changes compared to the default
|
|
|
|
(release) mode:
|
|
|
|
|
|
|
|
* No access to the Doodad Editor scene in-game (soft toggle)
|
|
|
|
|
|
|
|
### developer
|
|
|
|
|
|
|
|
> Files ending with `_developer.go` are for the developer build as opposed to
|
|
|
|
> `_release.go` for the public version.
|
|
|
|
|
|
|
|
Developer builds support extra features over the standard release version:
|
|
|
|
|
|
|
|
* Ability to write the JSON file format for Levels and Doodads.
|
|
|
|
|
|
|
|
Run `make build-debug` to build a developer version of the program.
|