mGBA Game Boy Advance Emulator
Go to file
Vicki Pfau 891b7aac96 Merge branch 'feature/input-revamp' into medusa 2017-04-07 16:56:35 -07:00
doc Qt, SDL: Fix documentation for XDG basedir changes. 2016-09-11 12:50:44 +09:00
include DS GX: Blending and shadowing fixes 2017-04-07 08:07:31 -07:00
opt/libgba Opt: Add a libgba stub for interacting with debug registers 2016-09-28 14:42:31 -07:00
res Merge branch 'master' into medusa 2017-04-06 11:55:11 -07:00
src Merge branch 'feature/input-revamp' into medusa 2017-04-07 16:56:35 -07:00
tools Qt: Restore deploy-mac.py and only use when cross-compiling 2017-03-26 10:34:17 -07:00
.clang-format All: Add clang-format options and run them 2015-06-29 20:45:08 -07:00
.gitignore All: Ignore *.pyc 2016-12-25 15:22:40 -08:00
.travis-deps.sh .travis.yml: Use an explicitly defined build matrix. (#544) 2017-03-20 16:01:56 -07:00
.travis.yml .travis.yml: Use an explicitly defined build matrix. (#544) 2017-03-20 16:01:56 -07:00
CHANGES Merge branch 'master' into medusa 2017-04-06 11:55:11 -07:00
CMakeLists.txt All: Rebrand 2017-04-05 16:11:45 -07:00
CONTRIBUTING.md All: Add CONTRIBUTING.md 2015-06-05 00:44:32 -07:00
LICENSE All: Add MPL 2.0 license and associated headers 2014-12-03 00:39:06 -08:00
PORTING.md All: Update README and PORTING 2016-04-22 00:00:06 -07:00
README.md All: Update README again 2017-04-07 16:24:07 -07:00
version.cmake All: Rebrand 2017-04-05 16:11:45 -07:00

README.md

medusa

medusa is an emulator for running Nintendo DS, Game Boy Advance and Game Boy games. It aims to be faster and more accurate than many existing Nintendo DS and Game Boy Advance emulators, as well as adding features that other emulators lack. It also supports Game Boy and Game Boy Color games.

Up-to-date news and downloads can be found at mgba.io.

Build status

Features

  • Near full Game Boy Advance hardware support[1].
  • Partial DS hardware support[1].
  • Game Boy/Game Boy Color hardware support.
  • Fast emulation for Game Boy and Game Boy Advance. Known to run at full speed even on low end hardware, such as netbooks[2].
  • Qt and SDL ports for a heavy-weight and a light-weight frontend.
  • Local (same computer) link cable support.
  • Save type detection, even for flash memory size[3].
  • Support for cartridges with motion sensors and rumble (only usable with game controllers)[2].
  • Real-time clock support, even without configuration.
  • A built-in GBA BIOS implementation, and ability to load external BIOS files. DS currently requires BIOS and firmware dumps[2].
  • Turbo/fast-forward support by holding Tab.
  • Rewind by holding Backquote.
  • Frameskip, configurable up to 10.
  • Screenshot support.
  • Cheat code support[2].
  • 9 savestate slots. Savestates are also viewable as screenshots[2].
  • Video and GIF recording.
  • Remappable controls for both keyboards and gamepads.
  • Loading from ZIP and 7z files.
  • IPS, UPS and BPS patch support.
  • Game debugging via a command-line interface (not available with Qt port) and GDB remote support, compatible with IDA Pro.
  • Configurable emulation rewinding.
  • Support for loading and exporting GameShark and Action Replay snapshots.
  • Cores available for RetroArch/Libretro and OpenEmu.
  • Many, many smaller things.

Planned features

  • Networked multiplayer link cable support.
  • Dolphin/JOY bus link cable support.
  • M4A audio mixing, for higher quality sound than hardware.
  • Re-recording support for tool-assist runs.
  • Lua support for scripting.
  • A comprehensive debug suite.
  • e-Reader support.
  • Wireless adapter support.
  • Game Boy Printer support.
  • OpenGL renderer.
  • HLE support for DS BIOS and DS ARM7 processor.
  • Synthesizing a customizable DS firmware to avoid needing a dump.

Supported Platforms

  • Windows Vista or newer
  • OS X 10.7 (Lion)[4] or newer
  • Linux
  • FreeBSD

The following platforms are supported for everything except DS:

  • Nintendo 3DS
  • Wii
  • PlayStation Vita

Other Unix-like platforms, such as OpenBSD, are known to work as well, but are untested and not fully supported.

System requirements

Requirements are minimal[2]. Any computer that can run Windows Vista or newer should be able to handle emulation. Support for OpenGL 1.1 or newer is also required.

Downloads

Downloads can be found on the official website, in the Downloads section. The source code can be found on GitHub.

Controls

Controls are configurable in the settings menu. Many game controllers should be automatically mapped by default. The default keyboard controls are as follows for GB and GBA:

  • A: X
  • B: Z
  • L: A
  • R: S
  • Start: Enter
  • Select: Backspace

DS default controls are slightly different:

  • A: X
  • B: Z
  • X: S
  • Y: A
  • L: Q
  • R: W
  • Start: Enter
  • Select: Backspace

Compiling

Compiling requires using CMake 2.8.11 or newer. GCC and Clang are both known to work to compile medusa, but Visual Studio 2013 and older are known not to work. Support for Visual Studio 2015 and newer is coming soon. To use CMake to build on a Unix-based system, the recommended commands are as follows:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
make
sudo make install

This will build and install medusa into /usr/bin and /usr/lib. Dependencies that are installed will be automatically detected, and features that are disabled if the dependencies are not found will be shown after running the cmake command after warnings about being unable to find them.

Windows developer building

To build on Windows for development, using MSYS2 is recommended. Follow the installation steps found on their website. Make sure you're running the 32-bit version ("MSYS2 MinGW 32-bit") (or the 64-bit version "MSYS2 MinGW 64-bit" if you want to build for x86_64) and run this additional command (including the braces) to install the needed dependencies (please note that this involves downloading over 500MiB of packages, so it will take a long time):

For x86 (32 bit) builds:

pacman -Sy mingw-w64-i686-{cmake,ffmpeg,gcc,gdb,imagemagick,libzip,pkg-config,qt5,SDL2}

For x86_64 (64 bit) builds:

pacman -Sy mingw-w64-x86_64-{cmake,ffmpeg,gcc,gdb,imagemagick,libzip,pkg-config,qt5,SDL2}

Check out the source code by running this command:

git clone https://github.com/mgba-emu/mgba.git -b medusa medusa

Then finally build it by running these commands:

cd medusa
mkdir build
cd build
cmake .. -G "MSYS Makefiles"
make

Please note that this build of medusa for Windows is not suitable for distribution, due to the scattering of DLLs it needs to run, but is perfect for development. However, if distributing such a build is desired (e.g. for testing on machines that don't have the MSYS2 environment installed), a tool called "Dependency Walker" can be used to see which additional DLL files need to be shipped with the medusa executable.

Dependencies

medusa has no hard dependencies, however, the following optional dependencies are required for specific features. The features will be disabled if the dependencies can't be found.

  • Qt 5: for the GUI frontend. Qt Multimedia or SDL are required for audio.
  • SDL: for a more basic frontend and gamepad support in the Qt frontend. SDL 2 is recommended, but 1.2 is supported.
  • zlib and libpng: for screenshot support and savestate-in-PNG support.
  • libedit: for command-line debugger support.
  • ffmpeg or libav: for video recording.
  • libzip or zlib: for loading ROMs stored in zip files.
  • ImageMagick: for GIF recording.
  • SQLite3: for game databases.

Both libpng and zlib are included with the emulator, so they do not need to be externally compiled first.

Footnotes

[1] Currently missing features on GBA are

  • OBJ window for modes 3, 4 and 5 (Bug #5)
  • Mosaic for transformed OBJs (Bug #9)

Missing features on DS are

  • Audio:
    • PSG audio
    • Master audio settings
    • Sound output capture
    • Microphone
  • Graphics:
    • Edge marking/wireframe
    • Toon shading
    • Highlight shading
    • Fog
    • Clear depth
    • Anti-aliasing
    • Alpha test
    • Position test
    • Vector test
    • Bitmap rear plane
    • Large bitmap mode 6
    • 1-dot depth clipping
    • Vector matrix memory mapping
    • Polygon/vertex RAM entry count memory mapping
    • Rendered line count memory mapping
    • Video output capture blending
    • Horizontal scrolling on 3D background
    • Some bitmap OBJ mappings
    • DMA FIFO backgrounds
  • Other:
    • Cache emulation/estimation
    • Slot-2 access/RAM/rumble
    • BIOS protection
    • Display start DMAs
    • Most of Wi-Fi
    • RTC interrupts
    • Manual IPC sync IRQs
    • Lid switch
    • Power management
    • Touchscreen temperature/pressure support
    • Various MMIO registers
    • DSi cart protections

[2] Many feature are still missing on the DS, including savestates, cheats, rumble, HLE BIOS, and more.

[3] Flash memory size detection does not work in some cases. These can be configured at runtime, but filing a bug is recommended if such a case is encountered.

[4] 10.7 is only needed for the Qt port. The SDL port is known to work on 10.6, and may work on older.

medusa is Copyright © 2013 2017 Jeffrey Pfau. It is distributed under the Mozilla Public License version 2.0. A copy of the license is available in the distributed LICENSE file.

medusa contains the following third-party libraries:

  • inih, which is copyright © 2009 Ben Hoyt and used under a BSD 3-clause license.
  • blip-buf, which is copyright © 2003 2009 Shay Green and used under a Lesser GNU Public License.
  • LZMA SDK, which is public domain.
  • MurmurHash3 implementation by Austin Appleby, which is public domain.
  • getopt for MSVC, which is public domain.
  • SQLite3, which is public domain.

If you are a game publisher and wish to license medusa for commercial usage, please email licensing@mgba.io for more information.