agb/examples/the-hat-chooses-the-wizard/src/splash_screen.rs

57 lines
1.3 KiB
Rust
Raw Normal View History

2023-02-24 08:18:29 +11:00
use super::sfx::SfxPlayer;
use agb::display::tiled::{RegularMap, TiledMap, VRamManager};
2022-01-01 23:09:21 +11:00
agb::include_background_gfx!(splash_screens,
splash => deduplicate "gfx/splash.png",
thanks_for_playing => deduplicate "gfx/thanks_for_playing.png",
);
2022-01-01 23:09:21 +11:00
pub enum SplashScreen {
Start,
End,
}
pub fn show_splash_screen(
which: SplashScreen,
2023-02-24 08:18:29 +11:00
sfx: &mut SfxPlayer,
2022-02-01 09:23:53 +11:00
map: &mut RegularMap,
vram: &mut VRamManager,
2022-01-01 23:09:21 +11:00
) {
map.set_scroll_pos((0i16, 0i16));
let tile_data = match which {
SplashScreen::Start => splash_screens::splash,
SplashScreen::End => splash_screens::thanks_for_playing,
2022-02-01 09:23:53 +11:00
};
2022-01-01 23:09:21 +11:00
let vblank = agb::interrupt::VBlank::get();
let mut input = agb::input::ButtonController::new();
2022-02-01 09:23:53 +11:00
2023-02-24 08:18:29 +11:00
sfx.frame();
2022-02-15 09:52:10 +11:00
vblank.wait_for_vblank();
map.fill_with(vram, &tile_data);
2022-02-01 09:23:53 +11:00
2022-04-24 08:03:02 +10:00
map.commit(vram);
vram.set_background_palettes(splash_screens::PALETTES);
map.set_visible(true);
2022-02-01 09:23:53 +11:00
2022-01-01 23:09:21 +11:00
loop {
input.update();
if input.is_just_pressed(
agb::input::Button::A
| agb::input::Button::B
| agb::input::Button::START
| agb::input::Button::SELECT,
) {
break;
}
2023-02-24 08:18:29 +11:00
sfx.frame();
vblank.wait_for_vblank();
2022-01-01 23:09:21 +11:00
}
2022-02-01 09:23:53 +11:00
map.set_visible(false);
map.clear(vram);
2022-01-01 23:09:21 +11:00
}