https://github.com/thatonebro/wizard-4
A game to explore making games that can run on a Raspberry Pi Pico
https://github.com/thatonebro/wizard-4
Last synced: about 1 year ago
JSON representation
A game to explore making games that can run on a Raspberry Pi Pico
- Host: GitHub
- URL: https://github.com/thatonebro/wizard-4
- Owner: ThatOneBro
- Created: 2024-09-15T05:02:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T03:46:09.000Z (almost 2 years ago)
- Last Synced: 2025-06-11T14:15:28.948Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wizard-4
A game written in Go for the [WASM-4](https://wasm4.org) fantasy console.
## Goals
- [ ] Experiment with the WASM-4 fantasy console
- [ ] Run the game on a micro-controller like the Raspberry Pi Pico
- [ ] Experiment with expanding multiplayer beyond the 3 designated remote joysticks (attempt to hijack the netplay functionality and create a protocol for reading data from a server via the remote joystick inputs)
## Building
Build the cart by running:
```shell
make
```
Then run it with:
```shell
w4 run build/cart.wasm
```
For more info about setting up WASM-4, see the [quickstart guide](https://wasm4.org/docs/getting-started/setup?code-lang=go#quickstart).
## Links
- [Documentation](https://wasm4.org/docs): Learn more about WASM-4.
- [Snake Tutorial](https://wasm4.org/docs/tutorials/snake/goal): Learn how to build a complete game
with a step-by-step tutorial.
- [GitHub](https://github.com/aduros/wasm4): Submit an issue or PR. Contributions are welcome!