stop player from wasting money

This commit is contained in:
Evan Pratten 2021-04-25 14:30:18 -04:00
parent 8e8cf7bf4c
commit e1d9100613
2 changed files with 13 additions and 13 deletions

View File

@ -46,8 +46,8 @@ impl<T: ItemBase + Clone> ShopItemWrapper<T> {
&self.item
}
pub fn can_player_afford(&self, player: &Player) -> bool {
return player.coins >= self.item.get_cost();
pub fn can_player_afford(&self, player: &Player, players_item: &Option<T>) -> bool {
return player.coins >= self.item.get_cost() && ((players_item.is_some() && players_item.as_ref().unwrap().get_level() < 3) || players_item.is_none());
}
pub fn purchase(&self, player: &mut Player) -> T {
@ -66,7 +66,7 @@ impl<T: ItemBase + Clone> ShopItemWrapper<T> {
return self.bounds.check_collision_point_rec(draw_handle.get_mouse_position());
}
pub fn render(&mut self, draw_handle: &mut RaylibDrawHandle, player: &Player) {
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player));
pub fn render(&mut self, draw_handle: &mut RaylibDrawHandle, player: &Player, players_item: &Option<T>) {
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player, players_item));
}
}

View File

@ -87,31 +87,31 @@ pub fn render_shop(
);
// Render items
stun_gun_buy_ui.render(draw_handle, &game_core.player);
air_bag_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);
stun_gun_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.stun_gun);
air_bag_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.air_bag);
flashlight_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.flashlight);
flippers_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.flippers);
// Handle buying items
if stun_gun_buy_ui.can_player_afford(&game_core.player)
if stun_gun_buy_ui.can_player_afford(&game_core.player, &game_core.player.inventory.stun_gun)
&& stun_gun_buy_ui.user_clicked_buy(draw_handle)
{
let item = stun_gun_buy_ui.purchase(&mut game_core.player);
game_core.player.inventory.stun_gun = Some(item);
}
if air_bag_buy_ui.can_player_afford(&game_core.player)
if air_bag_buy_ui.can_player_afford(&game_core.player, &game_core.player.inventory.air_bag)
&& air_bag_buy_ui.user_clicked_buy(draw_handle)
{
let item = air_bag_buy_ui.purchase(&mut game_core.player);
game_core.player.inventory.air_bag = Some(item);
}
if flashlight_buy_ui.can_player_afford(&game_core.player)
if flashlight_buy_ui.can_player_afford(&game_core.player, &game_core.player.inventory.flashlight)
&& flashlight_buy_ui.user_clicked_buy(draw_handle)
{
let item = flashlight_buy_ui.purchase(&mut game_core.player);
game_core.player.inventory.flashlight = Some(item);
}
if flippers_buy_ui.can_player_afford(&game_core.player)
if flippers_buy_ui.can_player_afford(&game_core.player, &game_core.player.inventory.flippers)
&& flippers_buy_ui.user_clicked_buy(draw_handle)
{
let item = flippers_buy_ui.purchase(&mut game_core.player);
@ -243,7 +243,7 @@ pub fn render_stats(
// Coins
draw_handle.draw_text(
&format!("Fish: {}", game_core.player.coins.min(99)),
&format!("Fish: {}", game_core.player.coins.min(999)),
bounds.x as i32 + 5,
bounds.y as i32 + 5,
20,