buy button
This commit is contained in:
parent
82d5b336c6
commit
a88cae2875
@ -58,6 +58,10 @@ impl<T: ItemBase + Clone> ShopItemWrapper<T> {
|
|||||||
return self.item.clone();
|
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) {
|
pub fn render(&self, draw_handle: &mut RaylibDrawHandle, player: &Player) {
|
||||||
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player));
|
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player));
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ pub struct ShopItemUi {
|
|||||||
current_level: u8,
|
current_level: u8,
|
||||||
max_level: u8,
|
max_level: u8,
|
||||||
pub cost: u32,
|
pub cost: u32,
|
||||||
buy_button_hovered: bool,
|
pub buy_button_hovered: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ShopItemUi {
|
impl ShopItemUi {
|
||||||
|
@ -88,6 +88,11 @@ pub fn render_shop(
|
|||||||
flashlight_buy_ui.render(draw_handle, &game_core.player);
|
flashlight_buy_ui.render(draw_handle, &game_core.player);
|
||||||
flippers_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
|
// Handle exit buttons
|
||||||
let bottom_left_button_dimensions = Rectangle {
|
let bottom_left_button_dimensions = Rectangle {
|
||||||
|
Reference in New Issue
Block a user