Merge remote-tracking branch 'origin/master' into assets
This commit is contained in:
commit
bc8d03a261
@ -2,7 +2,7 @@ use raylib::prelude::*;
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
gamecore::{GameCore, GameState},
|
gamecore::{GameCore, GameState},
|
||||||
lib::wrappers::audio::player::AudioPlayer,
|
lib::{utils::button::OnScreenButton, wrappers::audio::player::AudioPlayer},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::screen::Screen;
|
use super::screen::Screen;
|
||||||
@ -26,9 +26,11 @@ impl Screen for GameEndScreen {
|
|||||||
game_core: &mut GameCore,
|
game_core: &mut GameCore,
|
||||||
) -> Option<GameState> {
|
) -> Option<GameState> {
|
||||||
let mouse_position = draw_handle.get_mouse_position();
|
let mouse_position = draw_handle.get_mouse_position();
|
||||||
draw_handle.clear_background(Color::GRAY);
|
// draw_handle.clear_background(Color::GRAY);
|
||||||
// TODO: Maybe we can stick some art here?
|
// // TODO: Maybe we can stick some art here?
|
||||||
|
|
||||||
|
// Render the background
|
||||||
|
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
|
||||||
|
|
||||||
// Window dimensions
|
// Window dimensions
|
||||||
let win_height = draw_handle.get_screen_height();
|
let win_height = draw_handle.get_screen_height();
|
||||||
@ -53,14 +55,48 @@ impl Screen for GameEndScreen {
|
|||||||
// Render heading text
|
// Render heading text
|
||||||
draw_handle.draw_text(
|
draw_handle.draw_text(
|
||||||
"OUT OF BREATH",
|
"OUT OF BREATH",
|
||||||
(win_width / 2) - 80,
|
(win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2) + 25,
|
||||||
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 10,
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 10,
|
||||||
40,
|
30,
|
||||||
Color::BLACK,
|
Color::BLACK,
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO: Save game progress
|
// Render message
|
||||||
|
draw_handle.draw_text(
|
||||||
|
"Your clone can now buy items ",
|
||||||
|
((win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2))
|
||||||
|
+ (0.15 * SCREEN_PANEL_SIZE.x) as i32,
|
||||||
|
(win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 50,
|
||||||
|
15,
|
||||||
|
Color::BLACK,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Render button
|
||||||
|
let go_to_menu_button = OnScreenButton::new(
|
||||||
|
String::from("Return to shop"),
|
||||||
|
Rectangle {
|
||||||
|
x: (((win_width / 2) - ((SCREEN_PANEL_SIZE.x as i32 + 6) / 2) + 5)
|
||||||
|
+ (0.15 * SCREEN_PANEL_SIZE.x) as i32) as f32,
|
||||||
|
y: (((win_height / 2) - (SCREEN_PANEL_SIZE.y as i32 / 2) + 90) as f32) + 100.0,
|
||||||
|
width: 210.0,
|
||||||
|
height: 50.0,
|
||||||
|
},
|
||||||
|
Color::WHITE,
|
||||||
|
Color::BLACK,
|
||||||
|
Color::GRAY,
|
||||||
|
25,
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
|
||||||
|
go_to_menu_button.render(draw_handle);
|
||||||
|
|
||||||
|
if go_to_menu_button.is_hovered(draw_handle) && draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON){
|
||||||
|
|
||||||
|
game_core.switch_state(GameState::InShop, Some(draw_handle));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Save game progress
|
||||||
|
|
||||||
// // Close and quit buttons
|
// // Close and quit buttons
|
||||||
// let bottom_left_button_dimensions = Rectangle {
|
// let bottom_left_button_dimensions = Rectangle {
|
||||||
|
@ -216,6 +216,7 @@ impl Screen for InGameScreen {
|
|||||||
// Render the hud
|
// Render the hud
|
||||||
hud::render_hud(draw_handle, game_core, window_center);
|
hud::render_hud(draw_handle, game_core, window_center);
|
||||||
|
|
||||||
|
|
||||||
// Handle player out of breath
|
// Handle player out of breath
|
||||||
if game_core.player.breath_percent == 0.0 {
|
if game_core.player.breath_percent == 0.0 {
|
||||||
return Some(GameState::GameEnd);
|
return Some(GameState::GameEnd);
|
||||||
|
@ -89,10 +89,10 @@ impl LoadingScreen {
|
|||||||
let mask = self.get_logo_mask(playthrough_percent);
|
let mask = self.get_logo_mask(playthrough_percent);
|
||||||
|
|
||||||
// Create modified colors
|
// Create modified colors
|
||||||
let alpha_orange = Color {
|
let alpha_black = Color {
|
||||||
r: RUST_ORANGE.r,
|
r: 0,
|
||||||
g: RUST_ORANGE.g,
|
g: 0,
|
||||||
b: RUST_ORANGE.b,
|
b: 0,
|
||||||
a: mask.a,
|
a: mask.a,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -102,7 +102,7 @@ impl LoadingScreen {
|
|||||||
win_height / 2 - 128,
|
win_height / 2 - 128,
|
||||||
256,
|
256,
|
||||||
256,
|
256,
|
||||||
alpha_orange,
|
alpha_black,
|
||||||
);
|
);
|
||||||
draw_handle.draw_rectangle(
|
draw_handle.draw_rectangle(
|
||||||
win_width / 2 - 112,
|
win_width / 2 - 112,
|
||||||
@ -111,19 +111,19 @@ impl LoadingScreen {
|
|||||||
224,
|
224,
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
);
|
);
|
||||||
draw_handle.draw_text(
|
// draw_handle.draw_text(
|
||||||
"rust",
|
// "rust",
|
||||||
win_width / 2 - 69,
|
// win_width / 2 - 69,
|
||||||
win_height / 2 + 18,
|
// win_height / 2 + 18,
|
||||||
50,
|
// 50,
|
||||||
alpha_orange,
|
// alpha_orange,
|
||||||
);
|
// );
|
||||||
draw_handle.draw_text(
|
draw_handle.draw_text(
|
||||||
"raylib",
|
"raylib",
|
||||||
win_width / 2 - 44,
|
win_width / 2 - 44,
|
||||||
win_height / 2 + 48,
|
win_height / 2 + 48,
|
||||||
50,
|
50,
|
||||||
alpha_orange,
|
alpha_black,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Move on to next logo if needed
|
// Move on to next logo if needed
|
||||||
|
@ -28,8 +28,10 @@ impl Screen for MainMenuScreen {
|
|||||||
let win_height = draw_handle.get_screen_height();
|
let win_height = draw_handle.get_screen_height();
|
||||||
let win_width = draw_handle.get_screen_width();
|
let win_width = draw_handle.get_screen_width();
|
||||||
|
|
||||||
// Clear frame
|
// // Clear frame
|
||||||
draw_handle.clear_background(Color::BLUE);
|
// draw_handle.clear_background(Color::BLUE);
|
||||||
|
// Render the background
|
||||||
|
draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE);
|
||||||
|
|
||||||
// Render title
|
// Render title
|
||||||
draw_handle.draw_text(
|
draw_handle.draw_text(
|
||||||
@ -56,7 +58,7 @@ impl Screen for MainMenuScreen {
|
|||||||
(win_width / 4),
|
(win_width / 4),
|
||||||
60,
|
60,
|
||||||
match hovering_play_button {
|
match hovering_play_button {
|
||||||
true => Color::GREEN,
|
true => Color::BLUE,
|
||||||
false => Color::BLACK,
|
false => Color::BLACK,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -66,7 +68,7 @@ impl Screen for MainMenuScreen {
|
|||||||
(win_width / 4) + 100,
|
(win_width / 4) + 100,
|
||||||
60,
|
60,
|
||||||
match hovering_shop_button {
|
match hovering_shop_button {
|
||||||
true => Color::GREEN,
|
true => Color::BLUE,
|
||||||
false => Color::BLACK,
|
false => Color::BLACK,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -76,7 +78,7 @@ impl Screen for MainMenuScreen {
|
|||||||
(win_width / 4) + 200,
|
(win_width / 4) + 200,
|
||||||
60,
|
60,
|
||||||
match hovering_quit_button {
|
match hovering_quit_button {
|
||||||
true => Color::GREEN,
|
true => Color::RED,
|
||||||
false => Color::BLACK,
|
false => Color::BLACK,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -46,8 +46,8 @@ impl<T: ItemBase + Clone> ShopItemWrapper<T> {
|
|||||||
&self.item
|
&self.item
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn can_player_afford(&self, player: &Player) -> bool {
|
pub fn can_player_afford(&self, player: &Player, players_item: &Option<T>) -> bool {
|
||||||
return player.coins >= self.item.get_cost();
|
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 {
|
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());
|
return self.bounds.check_collision_point_rec(draw_handle.get_mouse_position());
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn render(&mut self, draw_handle: &mut RaylibDrawHandle, player: &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));
|
self.ui.render(draw_handle, self.bounds, self.can_player_afford(player, players_item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,31 +87,31 @@ pub fn render_shop(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Render items
|
// Render items
|
||||||
stun_gun_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);
|
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);
|
flashlight_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.flashlight);
|
||||||
flippers_buy_ui.render(draw_handle, &game_core.player);
|
flippers_buy_ui.render(draw_handle, &game_core.player, &game_core.player.inventory.flippers);
|
||||||
|
|
||||||
// Handle buying items
|
// 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)
|
&& stun_gun_buy_ui.user_clicked_buy(draw_handle)
|
||||||
{
|
{
|
||||||
let item = stun_gun_buy_ui.purchase(&mut game_core.player);
|
let item = stun_gun_buy_ui.purchase(&mut game_core.player);
|
||||||
game_core.player.inventory.stun_gun = Some(item);
|
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)
|
&& air_bag_buy_ui.user_clicked_buy(draw_handle)
|
||||||
{
|
{
|
||||||
let item = air_bag_buy_ui.purchase(&mut game_core.player);
|
let item = air_bag_buy_ui.purchase(&mut game_core.player);
|
||||||
game_core.player.inventory.air_bag = Some(item);
|
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)
|
&& flashlight_buy_ui.user_clicked_buy(draw_handle)
|
||||||
{
|
{
|
||||||
let item = flashlight_buy_ui.purchase(&mut game_core.player);
|
let item = flashlight_buy_ui.purchase(&mut game_core.player);
|
||||||
game_core.player.inventory.flashlight = Some(item);
|
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)
|
&& flippers_buy_ui.user_clicked_buy(draw_handle)
|
||||||
{
|
{
|
||||||
let item = flippers_buy_ui.purchase(&mut game_core.player);
|
let item = flippers_buy_ui.purchase(&mut game_core.player);
|
||||||
@ -243,7 +243,7 @@ pub fn render_stats(
|
|||||||
|
|
||||||
// Coins
|
// Coins
|
||||||
draw_handle.draw_text(
|
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.x as i32 + 5,
|
||||||
bounds.y as i32 + 5,
|
bounds.y as i32 + 5,
|
||||||
20,
|
20,
|
||||||
|
Reference in New Issue
Block a user