SameBoy/README.md

59 lines
5.4 KiB
Markdown
Raw Permalink Normal View History

2016-04-01 19:15:21 +00:00
# SameBoy
SameBoy is an open source Game Boy (DMG) and Game Boy Color (CGB) emulator, written in portable C. It has a native Cocoa frontend for macOS, an SDL frontend for other operating systems, and a libretro core. It also includes a text-based debugger with an expression evaluator. Visit [the website](https://sameboy.github.io/).
2016-04-01 19:15:21 +00:00
## Features
Features common to both Cocoa and SDL versions:
* Supports Game Boy (DMG) and Game Boy Color (CGB) emulation
2016-04-01 19:15:21 +00:00
* Lets you choose the model you want to emulate regardless of ROM
2016-10-29 19:54:32 +00:00
* High quality 96KHz audio
* Battery save support
* Save states
2016-04-01 19:15:21 +00:00
* Includes open source DMG and CGB boot ROMs:
* Complete support for (and documentation of) *all* game-specific palettes in the CGB boot ROM, for accurate emulation of Game Boy games on a Game Boy Color
2016-04-01 19:15:21 +00:00
* Supports manual palette selection with key combinations, with 4 additional new palettes (A + B + direction)
* Supports palette selection in a CGB game, forcing it to run in 'paletted' DMG mode, if ROM allows doing so.
* Support for games with a non-Nintendo logo in the header
* No long animation in the DMG boot
2016-10-29 19:54:32 +00:00
* Advanced text-based debugger with an expression evaluator, disassembler, conditional breakpoints, conditional watchpoints, backtracing and other features
* Extremely high accuracy
2016-04-01 19:15:21 +00:00
* Emulates [PCM_12 and PCM_34 registers](https://github.com/LIJI32/GBVisualizer)
* T-cycle accurate emulation of LCD timing effects, supporting the Demotronic trick, Prehistorik Man, [GBVideoPlayer](https://github.com/LIJI32/GBVideoPlayer) and other tech demos
2016-04-01 19:15:21 +00:00
* Real time clock emulation
2017-12-29 11:32:12 +00:00
* Retina/High DPI display support, allowing a wider range of scaling factors without artifacts
* Optional frame blending (Requires OpenGL 3.2 or later)
* Several [scaling algorithms](https://sameboy.github.io/scaling/) (Including exclusive algorithms like OmniScale and Anti-aliased Scale2x; Requires OpenGL 3.2 or later or Metal)
2016-04-01 19:15:21 +00:00
Features currently supported only with the Cocoa version:
* Native Cocoa interface, with support for all system-wide features, such as drag-and-drop and smart titlebars
* Game Boy Camera support
[Read more](https://sameboy.github.io/features/).
2016-04-01 19:15:21 +00:00
## Compatibility
SameBoy passes all of [blargg's test ROMs](http://gbdev.gg8.se/wiki/articles/Test_ROMs#Blargg.27s_tests), all of [mooneye-gb's](https://github.com/Gekkio/mooneye-gb) tests (Some tests require the original boot ROMs), and all of [Wilbert Pol's tests](https://github.com/wilbertpol/mooneye-gb/tree/master/tests/acceptance). SameBoy should work with most games and demos, please [report](https://github.com/LIJI32/SameBoy/issues/new) any broken ROM. The latest results for SameBoy's automatic tester are available [here](https://sameboy.github.io/automation/).
2016-04-01 19:15:21 +00:00
2020-09-29 17:50:14 +00:00
## Contributing
SameBoy is an open-source project licensed under the MIT license, and you're welcome to contribute by creating issues, implementing new features, improving emulation accuracy and fixing existing open issues. You can read the [contribution guidelines](CONTRIBUTING.md) to make sure your contributions are as effective as possible.
2016-04-01 19:15:21 +00:00
## Compilation
SameBoy requires the following tools and libraries to build:
2020-10-10 11:50:11 +00:00
* clang (Recommended; required for macOS) or GCC
2016-04-01 19:15:21 +00:00
* make
2020-10-09 12:57:23 +00:00
* macOS Cocoa port: macOS SDK and Xcode (For command line tools and ibtool)
2020-04-25 11:45:52 +00:00
* SDL port: libsdl2
* [rgbds](https://github.com/gbdev/rgbds/releases/), for boot ROM compilation
2016-04-01 19:15:21 +00:00
2016-08-20 15:15:15 +00:00
On Windows, SameBoy also requires:
* Visual Studio (For headers, etc.)
* [GnuWin](http://gnuwin32.sourceforge.net/)
* Running vcvars32 before running make. Make sure all required tools and libraries are in %PATH% and %lib%, respectively. (see [Build FAQ](https://github.com/LIJI32/SameBoy/blob/master/build-faq.md) for more details on Windows compilation)
2016-08-20 15:15:15 +00:00
To compile, simply run `make`. The targets are `cocoa` (Default for macOS), `sdl` (Default for everything else), `libretro`, `bootroms` and `tester`. You may also specify `CONF=debug` (default), `CONF=release`, `CONF=native_release` or `CONF=fat_release` to control optimization, symbols and multi-architectures. `native_release` is faster than `release`, but is optimized to the host's CPU and therefore is not portable. `fat_release` is exclusive to macOS and builds x86-64 and ARM64 fat binaries; this requires using a recent enough `clang` and macOS SDK using `xcode-select`, or setting them explicitly with `CC=` and `SYSROOT=`, respectively. All other configurations will build to your host architecture. You may set `BOOTROMS_DIR=...` to a directory containing precompiled boot ROM files, otherwise the build system will compile and use SameBoy's own boot ROMs.
2021-02-27 13:37:40 +00:00
The SDL port will look for resource files with a path relative to executable and inside the directory specified by the `DATA_DIR` variable. If you are packaging SameBoy, you may wish to override this by setting the `DATA_DIR` variable during compilation to the target path of the directory containing all files (apart from the executable, that's not necessary) from the `build/bin/SDL` directory in the source tree. Make sure the variable ends with a `/` character. On FreeDesktop environments, `DATA_DIR` will default to `/usr/local/share/sameboy/`. `PREFIX` and `DESTDIR` follow their standard usage and default to an empty string an `/usr/local`, respectively
2016-08-20 15:15:15 +00:00
2021-02-27 13:37:40 +00:00
Linux, BSD, and other FreeDesktop users can run `sudo make install` to install SameBoy as both a GUI app and a command line tool.
SameBoy is compiled and tested on macOS, Ubuntu and 64-bit Windows 10.