Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meta-ben/inquisition-gameboy
2018 - C Gameboy Game Project
https://github.com/meta-ben/inquisition-gameboy
c gameboy
Last synced: about 1 month ago
JSON representation
2018 - C Gameboy Game Project
- Host: GitHub
- URL: https://github.com/meta-ben/inquisition-gameboy
- Owner: Meta-Ben
- License: mit
- Created: 2024-05-04T20:46:19.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T22:59:08.000Z (5 months ago)
- Last Synced: 2024-08-04T16:50:16.888Z (5 months ago)
- Topics: c, gameboy
- Language: C
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
``Reupload project from 2018 : This project was recovered so don't take commits into accounts``
Inquisition :video_game: :space_invader:
## Overview
This project is a Gameboy game where you play a Judge that need to defend his village attacked by some bandits,
bandits come by waves 1, 2 or 3 at time and you have to smash your hammer to kill them. You can also send a shockwave to them but careful only once at time !The game was made in C using the [GBDK devkit](https://github.com/gbdk-2020/gbdk-2020) for Nintendo Gameboy and more
## Run it
The github file already provide the ``.gb``, so just drag n drop it into a Gameboy Emulator [Bgb for windows user](http://bgb.bircd.org/) or [mGBA for linux and mac user](https://mgba.io/)## Controls
Beware to set your emulator control before !A -> Smash Hammer/Skip Score Screen
B -> Send Shockwave
Start -> Start the game
Up/Down/Left/Right -> Moving the player
## Build the project
If you want to build the project you can follow the steps below :
- Ensure you have GCC installed
- Download the [GBDK devkit](https://github.com/gbdk-2020/gbdk-2020)
- Put the GBDK folder where you want but copy the path to it
- Then open the Makefile and set the ``GBDK_FOLDER`` var at the path you got (keep the / at the end of the GBDK path)
- Finally just run ``make`` command this will replace the .gb by a freshly builded one
- Then you can just drag n drop it into a GB emulator
- (Optionnal) if you got lot of compilation file you can run ``make clean``Note : Build with G++11.4.0