-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4b47a6
commit 4a396df
Showing
1 changed file
with
37 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,50 @@ | ||
Mazemaze [![Build Status](https://travis-ci.org/mirai65536/mazemaze.svg?branch=master)](https://travis-ci.org/mirai65536/mazemaze) | ||
Mazemaze | ||
======== | ||
Simple 3D OpenGL first-person maze game. | ||
[![Build Status](https://travis-ci.org/mirai65536/mazemaze.svg?branch=master)](https://travis-ci.org/mirai65536/mazemaze) | ||
|
||
Depends on JsonCpp, SFML and SFGUI packages. | ||
Simple 3D OpenGL first-person maze game. | ||
|
||
![](screenshot.png) | ||
|
||
### Downloading and Building: | ||
### Install: | ||
You can download precompiled binaries: | ||
|
||
##### Windows: | ||
* [Mazemaze_0.2_Windows_64bit.zip](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Windows_64bit.zip) | ||
* [Mazemaze_0.2_Windows_32bit.zip](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Windows_32bit.zip) | ||
|
||
##### Ubuntu, Debian, etc: | ||
* [mazemaze_0.2_amd64.deb](https://github.com/mirai65536/mazemaze/releases/download/v0.2/mazemaze_0.2_amd64.deb) | ||
|
||
##### Other GNU/Linux: | ||
* [Mazemaze_0.2_Linux_64bit.tar.gz](https://github.com/mirai65536/mazemaze/releases/download/v0.2/Mazemaze_0.2_Linux_64bit.tar.gz) | ||
* Note that in this case, you need to install the dependencies for distribution by yourself (JsonCpp and SFML 2.5 and later) | ||
|
||
You can check checksums of binary packages in [Travis CI logs](https://travis-ci.org/mirai65536/mazemaze/builds/643716280). | ||
|
||
### Build: | ||
First you need to install build dependencies | ||
* Ubuntu, Debian, etc: | ||
``` | ||
$ sudo apt install libsfml-dev libjsoncpp-dev | ||
``` | ||
|
||
* Arch Linux: | ||
``` | ||
$ sudo pacman -S sfml jsoncpp | ||
``` | ||
|
||
Then you can proceed with the build: | ||
``` | ||
$ git clone https://github.com/mirai65536/mazemaze.git | ||
$ cd mazemaze | ||
$ cmake . | ||
$ mkdir build | ||
$ cd build | ||
$ cmake .. | ||
$ make | ||
``` | ||
|
||
### Running: | ||
You can also install the game after this: | ||
``` | ||
$ ./mazemaze | ||
$ sudo make install | ||
``` |