Skip to content

Mte90/Game-Genie-Good-Guy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game Genie Good Guy

License

Game Genie Good Guy is based on Game Genie Guy:

This is a small Windows utility for applying Game Genie codes to roms. This saves you the trouble of having to enter them each time the game is played.

The original tool is written in BCX-BASIC and the source code is released with the Windows executable compatible with Game Boy/Game Gear/Genesis/Mega Drive/NES/SNES roms and generate rom patched ready to be shared (or generate the IPS patch).

The idea of the new project is to get that tool (or the patching engine) running on Linux (and replicate the features) with 0 experience on BASIC and C/C++ code, with a bit of knowledge with code compilation.

Notes from original version

Master System and PC Engine support added. Only use the codes from the supplied text files. Pro Action Replay codes are not supported.

Not all codes like being applied in this fashion. Ex: Contra Hard Corps 99 lives work fine while infinite lives does not. If you do not get the desired result try another code.

8 digit NES codes are preferrable to 6. 8 digit codes contain validation that ensures the game is being patched in the right spot. 6 digit codes just go for it. Applying too many 6 digit codes can make a game crash. Try fewer codes if this occurs.

Steps

Parameters

./GGGG "[Codes one per line or combine with +]" [1-4] [originalrom] [newrom]

ROM modes

Use that numbers to define the rom type

  • 1: Game Boy/Gear/Master System
  • 2: Genesis/Mega Drive (no SMD roms)
  • 3: Nintendo
  • 4: Super Nintendo

Instructions

./GGGG "AJDV-4A4L+963B-4JAC" 2 ./rom.md ./rom-new.md

Multiple cheat code can be concatenated with + or new lines.

./gui/app.py

Open the UI version.

Compile both versions

./compile.sh

This script will patch the C code for the various errors on converting it.

Convert new BASIC version to C/C++

./generate.sh

Check if the roms are different

xxd rom.md > 1.hex
xxd rom-new.md > 2.hex
diff 1.hex 2.hex