2021-01-19 02:47:09 +00:00
|
|
|
use anyhow::{anyhow, Result};
|
2020-12-23 09:25:16 +00:00
|
|
|
use gb::cpu::Cpu as LR35902;
|
2021-03-21 00:56:26 +00:00
|
|
|
use gb::Cycles;
|
2021-01-19 02:47:09 +00:00
|
|
|
use pixels::{Pixels, SurfaceTexture};
|
2021-01-28 04:07:31 +00:00
|
|
|
use std::env::args;
|
2021-03-21 00:56:26 +00:00
|
|
|
use std::time::{Duration, Instant};
|
|
|
|
use winit::dpi::LogicalSize;
|
|
|
|
use winit::event::{Event, VirtualKeyCode};
|
|
|
|
use winit::event_loop::{ControlFlow, EventLoop};
|
|
|
|
use winit::window::{Window, WindowBuilder};
|
2021-01-19 02:47:09 +00:00
|
|
|
use winit_input_helper::WinitInputHelper;
|
2020-12-23 09:25:16 +00:00
|
|
|
|
2021-01-19 02:47:09 +00:00
|
|
|
// 160 x 144
|
|
|
|
const GB_WIDTH: u32 = 160;
|
|
|
|
const GB_HEIGHT: u32 = 144;
|
2021-03-21 00:56:26 +00:00
|
|
|
const SCALE: f64 = 5.0;
|
|
|
|
|
|
|
|
const LR35902_CLOCK_SPEED: u32 = 4194304; // Hz | 4.194304Mhz
|
|
|
|
const LR35902_CYCLE_TIME: f64 = 1.0f64 / LR35902_CLOCK_SPEED as f64;
|
|
|
|
const CYCLES_IN_FRAME: Cycles = Cycles::new(70224);
|
2021-01-19 02:47:09 +00:00
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
|
|
|
let event_loop = EventLoop::new();
|
|
|
|
let mut input = WinitInputHelper::new();
|
|
|
|
let window = create_window(&event_loop)?;
|
|
|
|
let mut pixels = create_pixels(&window)?;
|
2021-01-28 04:07:31 +00:00
|
|
|
|
|
|
|
let mut game_boy = match args().nth(1) {
|
|
|
|
Some(boot_path) => LR35902::boot_new(&boot_path),
|
|
|
|
None => LR35902::new(),
|
|
|
|
};
|
|
|
|
|
2020-12-24 01:39:37 +00:00
|
|
|
game_boy.load_cartridge("bin/cpu_instrs.gb");
|
|
|
|
|
2021-03-21 00:56:26 +00:00
|
|
|
let mut now = Instant::now();
|
|
|
|
let mut cycles_in_frame = Cycles::default();
|
2021-01-19 02:47:09 +00:00
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
|
|
if let Event::RedrawRequested(_) = event {
|
|
|
|
if pixels
|
|
|
|
.render()
|
|
|
|
.map_err(|e| anyhow!("pixels.render() failed: {}", e))
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if input.update(&event) {
|
|
|
|
if input.key_pressed(VirtualKeyCode::Escape) || input.quit() {
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(size) = input.window_resized() {
|
|
|
|
pixels.resize(size.width, size.height);
|
|
|
|
}
|
|
|
|
|
2021-03-21 00:56:26 +00:00
|
|
|
// Emulate Game Boy
|
|
|
|
let delta = now.elapsed().subsec_nanos();
|
|
|
|
now = Instant::now();
|
|
|
|
|
|
|
|
let cycle_time = Duration::from_secs_f64(LR35902_CYCLE_TIME).subsec_nanos();
|
|
|
|
let pending_cycles = Cycles::new(delta / cycle_time);
|
|
|
|
|
|
|
|
let mut elapsed_cycles = Cycles::default();
|
|
|
|
while elapsed_cycles <= pending_cycles {
|
|
|
|
elapsed_cycles += game_boy.step();
|
|
|
|
}
|
2021-03-19 02:06:01 +00:00
|
|
|
|
2021-03-21 00:56:26 +00:00
|
|
|
cycles_in_frame += elapsed_cycles;
|
|
|
|
|
|
|
|
if cycles_in_frame >= CYCLES_IN_FRAME {
|
|
|
|
let ppu = game_boy.get_ppu();
|
|
|
|
let frame = pixels.get_frame();
|
|
|
|
ppu.copy_to_gui(frame);
|
|
|
|
window.request_redraw();
|
|
|
|
|
|
|
|
cycles_in_frame = Cycles::default()
|
|
|
|
}
|
2021-01-19 02:47:09 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn create_window(event_loop: &EventLoop<()>) -> Result<Window> {
|
2021-03-21 00:56:26 +00:00
|
|
|
let size = LogicalSize::new((GB_WIDTH as f64) * SCALE, (GB_HEIGHT as f64) * SCALE);
|
2021-01-19 02:47:09 +00:00
|
|
|
Ok(WindowBuilder::new()
|
2021-03-21 00:56:26 +00:00
|
|
|
.with_title("DMG-1 Game Boy Emulator")
|
2021-01-19 02:47:09 +00:00
|
|
|
.with_inner_size(size)
|
|
|
|
.with_min_inner_size(size)
|
|
|
|
.build(&event_loop)?)
|
|
|
|
}
|
2020-12-23 09:25:16 +00:00
|
|
|
|
2021-01-19 02:47:09 +00:00
|
|
|
pub fn create_pixels(window: &Window) -> Result<Pixels<Window>> {
|
|
|
|
let window_size = window.inner_size();
|
|
|
|
let surface_texture = SurfaceTexture::new(window_size.width, window_size.height, window);
|
|
|
|
Ok(Pixels::new(GB_WIDTH, GB_HEIGHT, surface_texture)?)
|
2020-08-29 23:38:27 +00:00
|
|
|
}
|