Retro Boy:一个用Rust编写的简单Game Boy模拟器,可以在网页上运行。
Retro Boy: simple Game Boy emulator written in Rust, can be played on the web

原始链接: https://github.com/smparsons/retroboy

Retro Boy是一款用Rust编写、编译成WebAssembly以便在浏览器中运行的Game Boy精确模拟器。它具有精确的CPU模拟功能,通过了Blargg的CPU指令和计时测试,并具有精确的音频和基于扫描线的图形渲染。支持MBC1、MBC3、MBC5和HuC1卡带类型,包括MBC3的RTC和通过浏览器本地存储实现的持久化卡带RAM。还包含GameShark/GameGenie作弊码支持。 前端使用React/TypeScript和Material UI构建,提供全屏模式、暂停/恢复、可选颜色调色板、可自定义按键映射和作弊码管理功能。 编译过程涉及使用`wasm-pack`构建Rust核心并生成JavaScript绑定。然后,通过`yarn install`安装依赖项,并使用`yarn start`启动前端应用。模拟器通过了多个Blargg和JSON CPU测试,并通过`cargo test`运行全面的测试套件。

Hacker News用户对用Rust编写并在浏览器中运行的Game Boy模拟器“Retro Boy”印象深刻。用户们称赞了这个项目,并强调了Rust和WASM的强大功能,使得模拟器的分享变得非常容易。一位用户提到在Firefox中遇到了音频故障和减速的情况,但在Chrome中运行流畅。另一位用户zeta0134分享了他自己用Rust和WASM构建的NES模拟器项目,强调了只需一个链接就能轻松分享自制项目的便利性。该主题还包括与现有的基于Web的Game Boy实现(例如GB Studio中使用的那个)的比较,一位用户表达了对研究潜在优势的兴趣。

原文


Retro Boy is a simple Game Boy emulator written in Rust that can be played on the web. Try it here.

Retro Boy is a cycle-accurate Game Boy emulator written in Rust. It uses wasm-pack to translate the Rust code into WebAssembly so it can be played on the web. The web frontend then uses Web Audio API and HTML Canvas for audio and graphics. It also leverages the browser's local storage to persist cartridge RAM data for battery-backed MBC cartridges.

  • Accurate CPU that passes all JSON CPU tests
  • Accurate audio emulation
  • Graphics emulation built using a scanline-based renderer
  • MBC1, MBC3, MBC5, and HuC1 support
  • RTC support for MBC3 cartridges
  • Cartridge RAM that persists to browser local storage for battery-backed cartridges
  • Support for GameShark or GameGenie cheats
  • A web frontend that supports:
    • Fullscreen mode
    • Pausing/resuming
    • Selectable monochrome or color modes
    • Customizable key map for game controls
    • Management and enabling/disabling of game cheat codes
    • A mobile-friendy responsive design

How to Compile to WebAssembly

To compile the implementation to WebAssembly, you will first need to install wasm-pack with the command cargo install wasm-pack if you haven't done so already. Then, run sh ./build-wasm.sh to build the core project and generate the Javascript binding code in the web frontend directory.

The web frontend for this emulator is a React/TypeScript app designed with Material UI. It is located in the frontends/web folder. The UI provides the ability to load a ROM as well as play, pause, or reset the emulator. It also provides a fullscreen mode.

To run the web frontend:

  1. Compile the Rust code to WebAssembly and generate the Javascript binding code as described in the "How to Compile to WebAssembly" section.
  2. When the binding code is generated, it will be added to the frontends/web/src/core directory.
  3. Run yarn install in the frontends/web directory to install all dependencies.
  4. Run yarn start in the same directory to run the application locally.

This emulator passes the following test suites from Blargg's test ROM collection:

  1. CPU instruction tests
  2. CPU instruction timing tests
  3. Memory timing tests
  4. Memory timing tests 2
  5. Interrupt timing tests (CGB)
  6. APU tests (DMG)
  7. APU tests (CGB)

Additionally, this emulator passes all JSON CPU tests, and only some tests from the Mooneye test ROM collection.

This project holds a fairly extensive test suite, as the bulk of the logic was designed using a TDD approach. There are a lot of tests that exercise CPU opcodes, and basic tests that exercise the GPU. Run cargo test to run the test suite.

For convenience, here is a list of the resources I used to build this emulator:

  1. Gameboy CPU Manual
  2. Pan Docs
  3. Blargg's Test ROM Collection
  4. Gameboy Doctor
  5. Imran Nazar's Gameboy Emulator Tutorial
联系我们 contact @ memedata.com