buy button

This commit is contained in:
Evan Pratten 2021-04-25 11:55:35 -04:00
parent 82d5b336c6
commit a88cae2875
3 changed files with 10 additions and 1 deletions

View File

@ -58,6 +58,10 @@ impl<T: ItemBase + Clone> ShopItemWrapper<T> {
return self.item.clone();
}
pub fn user_clicked_buy(&self, draw_handle: &mut RaylibDrawHandle) -> bool {
return self.ui.buy_button_hovered && draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
}
pub fn render(&self, draw_handle: &mut RaylibDrawHandle, player: &Player) {
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player));
}

View File

@ -6,7 +6,7 @@ pub struct ShopItemUi {
current_level: u8,
max_level: u8,
pub cost: u32,
buy_button_hovered: bool,
pub buy_button_hovered: bool,
}
impl ShopItemUi {

View File

@ -88,6 +88,11 @@ pub fn render_shop(
flashlight_buy_ui.render(draw_handle, &game_core.player);
flippers_buy_ui.render(draw_handle, &game_core.player);
// Handle buying items
if stun_gun_buy_ui.can_player_afford(&game_core.player) && stun_gun_buy_ui.user_clicked_buy(draw_handle) {
stun_gun_buy_ui.purchase(&mut game_core.player);
}
// Handle exit buttons
let bottom_left_button_dimensions = Rectangle {