Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danaugrs/gokoban
3D Puzzle Game written in Go
https://github.com/danaugrs/gokoban
3d 3d-game 3d-puzzle-game game go golang gopher puzzle-game singleplayer-game
Last synced: 1 day ago
JSON representation
3D Puzzle Game written in Go
- Host: GitHub
- URL: https://github.com/danaugrs/gokoban
- Owner: danaugrs
- License: bsd-2-clause
- Created: 2017-07-17T00:50:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-22T11:23:46.000Z (over 1 year ago)
- Last Synced: 2025-01-15T14:32:40.189Z (9 days ago)
- Topics: 3d, 3d-game, 3d-puzzle-game, game, go, golang, gopher, puzzle-game, singleplayer-game
- Language: Go
- Homepage:
- Size: 43.3 MB
- Stars: 266
- Watchers: 11
- Forks: 30
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gokoban - 3D Puzzle Game
_Awarded 1st place in the [2017 Gopher Game Jam](https://itch.io/jam/gopher-jam)_Gokoban is a 3D puzzle game written in Go. You control the Go gopher, and your objective in each level is to push the boxes until they are all on top of the yellow pads. There are elevators that help you reach high places and move boxes up and down. Levels are read from text files in [`/levels`](levels) so you can easily modify them and even create new ones.
It was created using [G3N](https://github.com/g3n/engine) for the [2017 Gopher Game Jam](https://itch.io/jam/gopher-jam) on [itch.io](https://itch.io).
### [✅ Download Windows 64-bit Precompiled Binary (v1.0)](https://github.com/danaugrs/gokoban/archive/win64-bin.zip)
![Gokoban Screenshots](img/screenshots.gif)
## Building from source
Make sure you have the [G3N external dependencies](https://github.com/g3n/engine#dependencies) in place. Then execute the following commands:
```
git clone https://github.com/danaugrs/gokoban.git
cd gokoban/
go build
./gokoban
```If you are on Windows, you'll need the audio DLLs mentioned in the [G3N readme](https://github.com/g3n/engine#dependencies).
You may also need `vcruntime140.dll`. All the necessary DLLs are provided here under [`dist/win`](dist/win) - you just need to "add" them to your PATH, or copy them to the same folder that your Gokoban executable is in. Alternatively you can build them yourself by following [these instructions](https://github.com/g3n/windows_audio_dlls). You can obtain `vcruntime140.dll` by downloading a [Microsoft Visual C++ Redistributable](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads).## Support
I hope you enjoy playing and learning from Gokoban as much as I enjoyed writing it.
If you come across any issues, please [report them](https://github.com/danaugrs/gokoban/issues).