All Projects → GoldenCrystal → CrystalBoy

GoldenCrystal / CrystalBoy

Licence: other
C# GameBoy Emulator

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to CrystalBoy

SkyEmu
Game Boy, Game Boy Color, and Game Boy Advanced Emulator
Stars: ✭ 59 (-36.56%)
Mutual labels:  gameboy, gameboy-emulator, emulation, gameboy-color
worldwide
A toy GameBoy Color emulator written in golang.
Stars: ✭ 563 (+505.38%)
Mutual labels:  gameboy, gameboy-emulator, emulation, gameboy-color
RGB
RGB (Rust Game Boy) is a simple emulator for the original game boy
Stars: ✭ 19 (-79.57%)
Mutual labels:  gameboy, gameboy-emulator, emulation, gameboy-color
demo-emulator
Nintendo Game Boy emulator written in Go to be used in workshops about emulator programming
Stars: ✭ 41 (-55.91%)
Mutual labels:  gameboy, gameboy-emulator, emulation
khedgb
Experiments in Game Boy emulation
Stars: ✭ 15 (-83.87%)
Mutual labels:  gameboy, gameboy-emulator, emulation
Awesome Gbdev
Contribute
Stars: ✭ 3,016 (+3143.01%)
Mutual labels:  gameboy, gameboy-emulator, gameboy-color
jsGBC-core
jsGBC Core Emulator
Stars: ✭ 14 (-84.95%)
Mutual labels:  gameboy, gameboy-emulator, gameboy-color
gnuboy
latest version of original laguna source, with a handful fixes for modern compilers and systems
Stars: ✭ 70 (-24.73%)
Mutual labels:  gameboy, gameboy-color
emu-gameboy
A Gameboy emulator written in C++
Stars: ✭ 55 (-40.86%)
Mutual labels:  gameboy, gameboy-emulator
tilemap-studio
A tilemap editor for Game Boy, Color, Advance, DS, and SNES projects. Written in C++ with FLTK.
Stars: ✭ 247 (+165.59%)
Mutual labels:  gameboy, gameboy-color
mealybug-tearoom-tests
🪲☕️ Game Boy emulator test ROMs
Stars: ✭ 40 (-56.99%)
Mutual labels:  gameboy, gameboy-emulator
CAMLBOY
A Game Boy emulator written in OCaml that runs in your browser 🐫 🎮
Stars: ✭ 409 (+339.78%)
Mutual labels:  gameboy, gameboy-emulator
ghidra-gb
[WIP] A simple Ghidra loader for GameBoy ROMs
Stars: ✭ 11 (-88.17%)
Mutual labels:  gameboy, gameboy-emulator
musicboy
A high-quality audio playback cartridge for Nintendo® Game Boy® and Game Boy Color®.
Stars: ✭ 25 (-73.12%)
Mutual labels:  gameboy, gameboy-color
jsGBC
👾 A GameBoy Color Emulator written in JavaScript
Stars: ✭ 44 (-52.69%)
Mutual labels:  gameboy, gameboy-color
ostrich
A Game Boy Sound System player for macOS, written in Swift
Stars: ✭ 37 (-60.22%)
Mutual labels:  gameboy, gameboy-emulator
awesome-emu-resources
A curated list of emulator development resources
Stars: ✭ 26 (-72.04%)
Mutual labels:  gameboy, gameboy-emulator
gameboi
An Original GameBoy emulator?
Stars: ✭ 20 (-78.49%)
Mutual labels:  gameboy, gameboy-emulator
Goodboy
A pure OCaml Gameboy emulator
Stars: ✭ 75 (-19.35%)
Mutual labels:  gameboy, gameboy-emulator
goboy
Playing GameBoy Emulation in GoLang (ported from https://github.com/racerxdl/GameBoyEmulator)
Stars: ✭ 37 (-60.22%)
Mutual labels:  gameboy, gameboy-emulator

CrystalBoy Game Boy Emulator

CrystalBoy is a GameBoy emulator written in C#.

This project was started in August 2008 for a lot off different reasons. One of these reasons was to challenge C# and see whether an emulator could be successfully run. And as you can see, it works fairly well. (Though not as fast as a native one. But some optimizations are still possible.)

Features:

  • Emulated Hardware
    • Game Boy B&W
    • Super Game Boy (Partial, no SGB screen coloring for now)
    • Game Boy Color
    • Game Boy Advance in Game Boy Color Mode
  • Windows Forms UI
    • Graphical debugger
    • Map Viewer
    • Emulated hardware can be changed in the menus.
    • Saves RAM and RTC data to .sav files, like other emulators.
    • fr-FR localization
  • Video renderers
    • GDI+ (Slow)
    • SharpDX / Direct2D (Not reimplemented yet)

Amongst other things, the emulator still lacks audio, but this feature is still planned. Most obvious bugs should have been corrected, but there are still some out there…

Disclaimer:

This software is provided as-is, use it at your own risk. The author shall not be held responsible for any bus or data losses caused by use of the software.

Prerequisites:

  • A recent version of Windows (ideally at least Windows 7)
  • .NET Framework 4.5.1 or better
  • Up-to date DirectX version

Changelog

Version 1.6

  • New rendering infrastructure making a better use of threads.
  • More accurate clock emulation (The target is 60 FPS for now, not 59.7FPS like on regular GB)
  • The status bar now displays the speed as a % of the target speed instead of virtual FPS.
  • The GDI+ renderer is embedded into the main binary.
  • The GDI+ renderer is now able to display the border (still a WIP, as this is subjet to frameskipping)
  • The emulator is high DPI aware.

Version 1.5

  • Super Game Boy emulation
    • Border support

Version 1.4

  • Now supports loading the DMG, SGB and GBC bootstrap ROMs
  • Better GBC hardware emulation (now supports switching to fake B&W mode)
    • Using GBC bootstrap ROM allows to play B&W games with automatic color palette
    • The GBC automatic palettes are also emulated without the bootstrap ROM
    • The OAM and VRAM are initialized more accurately
  • MBC2 support (maybe not totally accurate, but certainly good enough)
  • Instant FPS calculation… Should be instantaneously more accurate, but much more variable than the method used previously.
  • Multithreaded emulation. (Should only improve uncapped FPS for now)
    • I did not test extensively with all the rendering plugins, but things should be ok as the UI thread and and rendering thread never execute at the same time.
    • Please send a bug report if you encunter a bug related to multithreaded rendering…
  • LCD and Timer timings emulation redone 95%…
    • Compatibility increased
    • Wario Land II startup screen now shows correctly
    • Link's Awakening's bug seems to be gone
    • Brain Bender's startup screen now render correctly, like it did a [very] very long time ago.
  • Fixed the sprite priority emulation again… Pokémon Crystal intro should play fine.
  • Fixed small - but sometimes nasty - bugs
    • Now able to run Mental Respirator by Phantasy (The Gin & Tonic trick is not emulated yet)
    • Most demos are able to start or even run correctly. (Demotronic still doesn't, but it helped correct one of the nasty bugs ;)

Version 1.3

  • More accurate CPU emulation (according to the tests, all instructions now compute 100% exact… Only HALT and STOP may need reworking)
  • Direct2D render method with SlimDX (March 2011)
  • More accurate graphics emulation (dynamic color palette changes, correct sprite priority emulation)
  • "Perfect" RTC emulation
  • Bugfixes in Mapper emulation (generic mapper bugfixes and some MBCx specific ones)
  • Enhanced various areas dealing with game information
  • Added support for saving the RAM for games with battery (finally !)
  • Saving the RAM also saves the RTC information for games using the RTC
  • UI is now localizable
    • Added fr-FR localization
  • Better detection of invalid plugins, which should prevent crashes.
  • Hardware Type can now be changed using UI (Menu items previously did nothing…)
  • Various changes in emulation for hardware type switching. (Quite logically, changing hardware now requires the emulation to be reset)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].