Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mte90/gbaatm-rebirth
From the original source code a new rebirth, to add a Trainer in your GBA roms!
https://github.com/mte90/gbaatm-rebirth
gameboyadvance gba hacktoberfest trainer
Last synced: about 2 months ago
JSON representation
From the original source code a new rebirth, to add a Trainer in your GBA roms!
- Host: GitHub
- URL: https://github.com/mte90/gbaatm-rebirth
- Owner: Mte90
- License: gpl-3.0
- Created: 2020-04-12T21:26:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T16:25:12.000Z (almost 2 years ago)
- Last Synced: 2024-11-02T03:11:48.867Z (about 2 months ago)
- Topics: gameboyadvance, gba, hacktoberfest, trainer
- Language: C
- Homepage:
- Size: 329 KB
- Stars: 62
- Watchers: 8
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# GBAATM-Rebirth
[![License](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)This project is a refactoring of the old GBAATM (last release around 2011) with the original source code as starting point (got from Cracker, the original author).
The purpose is a new UI, multiplatform support and maybe new features (with code refactoring and optimization).
The original source code is available at [this page](https://github.com/Mte90/GBAATM-Rebirth/releases/tag/original).
The tool to convert a file to the C++ binary representation is avalaible [there](https://github.com/Mte90/GBAATM-Rebirth/releases/tag/bin2array).![](https://user-images.githubusercontent.com/403283/81478548-88cc8380-921e-11ea-8a90-fc25344fecbc.png)
## Roadmap/Status
* Ported all the features
* Removed Slowmo
* Revamp the original source code
* Refactored and optimized to avoid crash and rom damaged
* Vblank code injected to ROM improved to use 32 bit addresses
* Add new features to UI
* Checksum - DONE
* UI in Tabs - DONE
* Save the path and menu title - DONE
* Auto generate builds for Linux/OSX/Windows - DONE## Installation
If you're using Linux, install following apt-packages
```
sudo apt-get install qtchooser qt5-default
```
Clone repository with [SingleApplication](https://github.com/itay-grudev/SingleApplication) submodule:
```
git clone https://github.com/Mte90/GBAATM-Rebirth.git
cd GBAATM-Rebirth
git submodule update --init --recursive
```
or
```
git clone --recurse-submodules -j8 https://github.com/Mte90/GBAATM-Rebirth.git
```## Compile
Use QT Creator or this way.
```
mkdir build
cd build
qmake -makefile -o Makefile "CONFIG+=release" ../GBAATM-Rebirth.pro
make
```## Auto build
When a new tag is generated if prefixed with `v` will be created a new release with the builds attached. If it is prefixed with `pre` it will be the same but it will be marked as pre release on GitHub.