From e2fb6a88ae6b8dd9dcd285f94c0e126ff590e7ee Mon Sep 17 00:00:00 2001 From: Louis Pearson Date: Wed, 17 Aug 2022 19:23:19 -0600 Subject: [PATCH] Add wapm files --- README.md | 25 +++++++++++++++++++++++++ wapm.toml | 17 +++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 README.md create mode 100644 wapm.toml diff --git a/README.md b/README.md new file mode 100644 index 0000000..61c3838 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Wired + +A puzzle platformer with wires. + +## Controls + +Left/Right: Move left and right +Up/Down: Look at items above and below +X: Jump +Z: Select + +## Dependencies + +- `zig` to compile the code +- `wasm-opt` to optimize the generated wasm file for release. It is a part of `binaryen` +- `wasm4` to run the generated cart + +## Building + +``` shellsession +git clone --recursive +zig build # makes a debug build +w4 run zig-out/lib/cart.wasm +zig build opt -Drelease-small # optimize cart size for release +``` diff --git a/wapm.toml b/wapm.toml new file mode 100644 index 0000000..7d5cacc --- /dev/null +++ b/wapm.toml @@ -0,0 +1,17 @@ +[package] +name = "desttinghim/wired" +version = "0.2.0" +description = "A puzzle platformer game with wire physics." +readme = "README.md" +repository = "https://github.com/desttinghim/wired" + +[[module]] +name = "wired" +source = "zig-out/lib/cart.wasm" +abi = "wasm4" +interfaces = { wasm4 = "0.0.1" } + +[[command]] +runner = "wasm4@0.0.1" +name = "play" +module = "game"