zba/README.md

97 lines
4.7 KiB
Markdown
Raw Permalink Normal View History

2022-02-11 01:21:34 +00:00
# ZBA (working title)
2022-11-01 04:01:29 +00:00
2022-10-17 20:00:54 +00:00
A Game Boy Advance Emulator written in Zig ⚡!
2023-03-11 01:37:28 +00:00
![ZBA running リズム天国](assets/screenshot.png)
2022-10-17 20:00:54 +00:00
## Scope
2022-11-01 04:01:29 +00:00
I'm hardly the first to write a Game Boy Advance Emulator nor will I be the last. This project isn't going to compete with the GOATs like [mGBA](https://github.com/mgba-emu) or [NanoBoyAdvance](https://github.com/nba-emu/NanoBoyAdvance). There aren't any interesting ideas either like in [DSHBA](https://github.com/DenSinH/DSHBA).
This is a simple (read: incomplete) for-fun long-term project. I hope to get "mostly there", which to me means that I'm not missing any major hardware features and the set of possible improvements would be in memory timing or in UI/UX. With respect to that goal, here's what's outstanding:
### TODO
2022-10-17 20:00:54 +00:00
2022-12-22 19:18:59 +00:00
- [x] Affine Sprites
2022-10-17 20:00:54 +00:00
- [ ] Windowing (see [this branch](https://git.musuka.dev/paoda/zba/src/branch/window))
- [ ] Audio Resampler (Having issues with SDL2's)
- [ ] Refactoring for easy-ish perf boosts
2022-02-11 01:21:34 +00:00
2022-10-31 12:14:42 +00:00
## Usage
2022-11-01 04:01:29 +00:00
2023-06-21 23:16:01 +00:00
ZBA supports both a CLI and a GUI. If running from the terminal, try using `zba --help` to see what you can do. If you want to use the GUI, feel free to just run `zba` without any arguments.
2022-10-31 12:14:42 +00:00
2023-06-21 23:16:01 +00:00
ZBA does not feature any BIOS HLE, so providing one will be necessary if a ROM makes use of it. Need one? Why not try using the open-source [Cult-Of-GBA BIOS](https://github.com/Cult-of-GBA/BIOS) written by [fleroviux](https://github.com/fleroviux) and [DenSinH](https://github.com/DenSinH)?
2022-10-31 12:14:42 +00:00
Finally it's worth noting that ZBA uses a TOML config file it'll store in your OS's data directory. See `example.toml` to learn about the defaults and what exactly you can mess around with.
2022-02-11 01:21:34 +00:00
## Compiling
2022-11-01 04:01:29 +00:00
2023-07-21 03:52:03 +00:00
Most recently built on Zig [v0.11.0](https://github.com/ziglang/zig/tree/0.11.0)
2022-02-11 01:21:34 +00:00
### Dependencies
2022-11-01 04:01:29 +00:00
2022-11-16 14:46:41 +00:00
Dependency | Source
2022-11-24 12:22:58 +00:00
--- | ---
2022-11-16 14:46:41 +00:00
known-folders | <https://github.com/ziglibs/known-folders>
2023-02-05 01:30:55 +00:00
nfd-zig | <https://github.com/fabioarnold/nfd-zig>
SDL.zig | <https://github.com/MasterQ32/SDL.zig>
tomlz | <https://github.com/mattyhall/tomlz>
zba-gdbstub | <https://github.com/paoda/zba-gdbstub>
zba-util | <https://git.musuka.dev/paoda/zba-util>
2023-02-05 01:30:55 +00:00
zgui | <https://github.com/michal-z/zig-gamedev/tree/main/libs/zgui>
zig-clap | <https://github.com/Hejsil/zig-clap>
2022-11-16 14:46:41 +00:00
zig-datetime | <https://github.com/frmdstryr/zig-datetime>
`bitfield.zig` | [https://github.com/FlorenceOS/Florence](https://github.com/FlorenceOS/Florence/blob/aaa5a9e568/lib/util/bitfields.zig)
2022-11-16 14:46:41 +00:00
`gl.zig` | <https://github.com/MasterQ32/zig-opengl>
2022-03-01 02:10:32 +00:00
2023-02-05 01:30:05 +00:00
Use `git submodule update --init` from the project root to pull the git relevant git submodules
2022-03-01 02:10:32 +00:00
2022-11-01 04:01:29 +00:00
Be sure to provide SDL2 using:
2022-03-01 02:10:32 +00:00
2022-11-01 04:01:29 +00:00
- Linux: Your distro's package manager
- macOS: ¯\\\_(ツ)_/¯ (try [this formula](https://formulae.brew.sh/formula/sdl2)?)
2022-11-01 04:01:29 +00:00
- Windows: [`vcpkg`](https://github.com/Microsoft/vcpkg) (install `sdl2:x64-windows`)
2022-03-01 02:10:32 +00:00
2022-11-01 04:01:29 +00:00
`SDL.zig` will provide a helpful compile error if the zig compiler is unable to find SDL2.
2023-06-21 23:16:01 +00:00
Once you've got all the dependencies, execute `zig build -Doptimize=ReleaseSafe`. The executable will be under `zig-out/bin` and the shared libraries (if enabled) under `zig-out/lib`. If working with shared libraries on windows, be sure to add all artifacts to the same directory. On Unix, you'll want to make use of `LD_PRELOAD`.
2022-02-11 01:21:34 +00:00
2022-03-01 02:10:32 +00:00
## Controls
2022-11-01 04:01:29 +00:00
2023-06-21 23:16:01 +00:00
Key | Button | | Key | Button
--- | --- | --- | --- | ---
<kbd>A</kbd> | L | | <kbd>S</kbd> | R
<kbd>X</kbd> | A | | <kbd>Z</kbd> | B
<kbd>Return</kbd> | Start | | <kbd>RShift</kbd> | Select
2022-03-01 02:10:32 +00:00
Arrow Keys | D-Pad
2023-06-21 23:16:01 +00:00
## Tests
GBA Tests | [jsmolka](https://github.com/jsmolka/) | gba_tests | [destoer](https://github.com/destoer/)
--- | --- | --- | ---
`arm.gba`, `thumb.gba` | PASS | `cond_invalid.gba` | PASS
`memory.gba`, `bios.gba` | PASS | `dma_priority.gba` | PASS
`flash64.gba`, `flash128.gba` | PASS | `hello_world.gba` | PASS
`sram.gba` | PASS | `if_ack.gba` | PASS
`none.gba` | PASS | `line_timing.gba` | FAIL
`hello.gba`, `shades.gba`, `stripes.gba` | PASS | `lyc_midline.gba` | FAIL
`nes.gba` | PASS | `window_midframe.gba` | FAIL
GBARoms | [DenSinH](https://github.com/DenSinH/) | GBA Test Collection | [ladystarbreeze](https://github.com/ladystarbreeze)
--- | --- | --- | ---
`eeprom-test`, `flash-test` | PASS | `retAddr.gba` | PASS
`midikey2freq` | PASS | `helloWorld.gba` | PASS
`swi-tests-random` | FAIL | `helloAudio.gba` | PASS
FuzzARM | [DenSinH](https://github.com/DenSinH/) | arm7wrestler GBA Fixed | [destoer](https://github.com/destoer)
--- | --- | --- | ---
`main.gba` | PASS | `armwrestler-gba-fixed.gba` | PASS
## Resources
- [GBATEK](https://problemkaputt.de/gbatek.htm)
- [TONC](https://coranac.com/tonc/text/toc.htm)
- [ARM Architecture Reference Manual](https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/third-party/ddi0100e_arm_arm.pdf)
- [ARM7TDMI Data Sheet](https://www.dca.fee.unicamp.br/cursos/EA871/references/ARM/ARM7TDMIDataSheet.pdf)