Merge pull request #27 from Ewpratten/main_menu_screen
Add the main menu
This commit is contained in:
commit
c4a4c27b4c
@ -61,7 +61,7 @@ impl Action<Scenes, ScreenError, GameContext> for FsmErrorScreen {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl ScreenSpaceRender for FsmErrorScreen {
|
impl ScreenSpaceRender for FsmErrorScreen {
|
||||||
fn render_screen_space(&self, raylib: &mut HackedRaylibHandle, config: &GameConfig) {
|
fn render_screen_space(&mut self, raylib: &mut HackedRaylibHandle, config: &GameConfig) {
|
||||||
raylib.clear_background(Color::RED);
|
raylib.clear_background(Color::RED);
|
||||||
|
|
||||||
// Render a warning message
|
// Render a warning message
|
||||||
|
170
game/src/scenes/how_to_play_screen.rs
Normal file
170
game/src/scenes/how_to_play_screen.rs
Normal file
@ -0,0 +1,170 @@
|
|||||||
|
use std::ops::{Div, Sub};
|
||||||
|
|
||||||
|
use chrono::{DateTime, Utc};
|
||||||
|
use dirty_fsm::{Action, ActionFlag};
|
||||||
|
use pkg_version::pkg_version_major;
|
||||||
|
use raylib::prelude::*;
|
||||||
|
|
||||||
|
use crate::{GameConfig, context::GameContext, utilities::{
|
||||||
|
datastore::{load_texture_from_internal_data, ResourceLoadError},
|
||||||
|
game_version::get_version_string,
|
||||||
|
math::interpolate_exp,
|
||||||
|
non_ref_raylib::HackedRaylibHandle,
|
||||||
|
render_layer::ScreenSpaceRender,
|
||||||
|
}};
|
||||||
|
|
||||||
|
use super::{Scenes, ScreenError};
|
||||||
|
use tracing::{debug, info, trace};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct HowToPlayScreen {
|
||||||
|
is_btm_pressed: bool //Is back to menu button pressed
|
||||||
|
}
|
||||||
|
|
||||||
|
impl HowToPlayScreen {
|
||||||
|
/// Construct a new `HowToPlayScreen`
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
is_btm_pressed: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
|
||||||
|
fn on_register(&mut self) -> Result<(), ScreenError> {
|
||||||
|
debug!("Registered");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> {
|
||||||
|
debug!("Running HowToPlayScreen for the first time");
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn execute(
|
||||||
|
&mut self,
|
||||||
|
_delta: &chrono::Duration,
|
||||||
|
context: &GameContext,
|
||||||
|
) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> {
|
||||||
|
trace!("execute() called on HowToPlayScreen");
|
||||||
|
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||||
|
|
||||||
|
if self.is_btm_pressed {
|
||||||
|
Ok(ActionFlag::SwitchState(Scenes::MainMenuScreen))
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
Ok(ActionFlag::Continue)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||||
|
debug!("Finished HowToPlayScreen");
|
||||||
|
self.is_btm_pressed = false;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ScreenSpaceRender for HowToPlayScreen {
|
||||||
|
fn render_screen_space(
|
||||||
|
&mut self,
|
||||||
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
|
config: &GameConfig
|
||||||
|
) {
|
||||||
|
|
||||||
|
// Render the background
|
||||||
|
raylib.clear_background(Color::BLACK);
|
||||||
|
|
||||||
|
let screen_size = raylib.get_screen_size();
|
||||||
|
|
||||||
|
//Mouse Position
|
||||||
|
let mouse_position: Vector2 = raylib.get_mouse_position();
|
||||||
|
|
||||||
|
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"How to Play",
|
||||||
|
37,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"How to Play",
|
||||||
|
43,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"How to Play",
|
||||||
|
40,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
//Back to Menu
|
||||||
|
if Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0).check_collision_point_rec(mouse_position){
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
28,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
22,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
25,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
if mouse_pressed{
|
||||||
|
self.is_btm_pressed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
26,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
24,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
25,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -4,7 +4,7 @@ use super::InGameScreen;
|
|||||||
|
|
||||||
impl ScreenSpaceRender for InGameScreen {
|
impl ScreenSpaceRender for InGameScreen {
|
||||||
fn render_screen_space(
|
fn render_screen_space(
|
||||||
&self,
|
&mut self,
|
||||||
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
config: &GameConfig
|
config: &GameConfig
|
||||||
) {
|
) {
|
||||||
|
@ -12,7 +12,7 @@ pub const WORLD_LEVEL_X_OFFSET: f32 = 200.0;
|
|||||||
|
|
||||||
impl WorldSpaceRender for InGameScreen {
|
impl WorldSpaceRender for InGameScreen {
|
||||||
fn render_world_space(
|
fn render_world_space(
|
||||||
&self,
|
&mut self,
|
||||||
raylib: &mut RaylibMode2D<'_, HackedRaylibHandle>,
|
raylib: &mut RaylibMode2D<'_, HackedRaylibHandle>,
|
||||||
config: &GameConfig,
|
config: &GameConfig,
|
||||||
) {
|
) {
|
||||||
|
@ -112,7 +112,7 @@ impl Action<Scenes, ScreenError, GameContext> for LoadingScreen {
|
|||||||
|
|
||||||
impl ScreenSpaceRender for LoadingScreen {
|
impl ScreenSpaceRender for LoadingScreen {
|
||||||
fn render_screen_space(
|
fn render_screen_space(
|
||||||
&self,
|
&mut self,
|
||||||
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
config: &GameConfig
|
config: &GameConfig
|
||||||
) {
|
) {
|
||||||
|
@ -22,12 +22,22 @@ use super::{Scenes, ScreenError};
|
|||||||
use tracing::{debug, error, info, trace};
|
use tracing::{debug, error, info, trace};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct MainMenuScreen {}
|
pub struct MainMenuScreen {
|
||||||
|
|
||||||
|
is_start_pressed: bool, //Is start button pressed
|
||||||
|
is_htp_pressed: bool, //Is how to play button pressed
|
||||||
|
is_options_pressed: bool //Is options button pressed
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
impl MainMenuScreen {
|
impl MainMenuScreen {
|
||||||
/// Construct a new `MainMenuScreen`
|
/// Construct a new `MainMenuScreen`
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {}
|
Self {
|
||||||
|
is_start_pressed: false,
|
||||||
|
is_htp_pressed: false,
|
||||||
|
is_options_pressed: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,27 +70,32 @@ impl Action<Scenes, ScreenError, GameContext> for MainMenuScreen {
|
|||||||
trace!("execute() called on MainMenuScreen");
|
trace!("execute() called on MainMenuScreen");
|
||||||
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||||
|
|
||||||
// TODO: TEMP
|
if self.is_start_pressed {
|
||||||
if context
|
|
||||||
.renderer
|
|
||||||
.borrow_mut()
|
|
||||||
.is_key_pressed(KeyboardKey::KEY_SPACE)
|
|
||||||
{
|
|
||||||
Ok(ActionFlag::SwitchState(Scenes::InGameScene))
|
Ok(ActionFlag::SwitchState(Scenes::InGameScene))
|
||||||
} else {
|
}
|
||||||
|
else if self.is_htp_pressed {
|
||||||
|
Ok(ActionFlag::SwitchState(Scenes::HowToPlayScreen))
|
||||||
|
}
|
||||||
|
else if self.is_options_pressed {
|
||||||
|
Ok(ActionFlag::SwitchState(Scenes::OptionsScreen))
|
||||||
|
}
|
||||||
|
else {
|
||||||
Ok(ActionFlag::Continue)
|
Ok(ActionFlag::Continue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||||
debug!("Finished MainMenuScreen");
|
debug!("Finished MainMenuScreen");
|
||||||
|
self.is_start_pressed = false;
|
||||||
|
self.is_htp_pressed = false;
|
||||||
|
self.is_options_pressed = false;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ScreenSpaceRender for MainMenuScreen {
|
impl ScreenSpaceRender for MainMenuScreen {
|
||||||
fn render_screen_space(
|
fn render_screen_space(
|
||||||
&self,
|
&mut self,
|
||||||
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
config: &GameConfig,
|
config: &GameConfig,
|
||||||
) {
|
) {
|
||||||
@ -90,6 +105,11 @@ impl ScreenSpaceRender for MainMenuScreen {
|
|||||||
// Calculate the logo position
|
// Calculate the logo position
|
||||||
let screen_size = raylib.get_screen_size();
|
let screen_size = raylib.get_screen_size();
|
||||||
|
|
||||||
|
//Mouse Position
|
||||||
|
let mouse_position: Vector2 = raylib.get_mouse_position();
|
||||||
|
|
||||||
|
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||||
|
|
||||||
// Only in debug mode, render a debug message
|
// Only in debug mode, render a debug message
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
{
|
{
|
||||||
@ -101,6 +121,16 @@ impl ScreenSpaceRender for MainMenuScreen {
|
|||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Displays mouse position
|
||||||
|
raylib.draw_text(
|
||||||
|
&format!("[{}, {}]", mouse_position.x, mouse_position.y),
|
||||||
|
screen_size.x as i32 - 130,
|
||||||
|
screen_size.y as i32 - 30,
|
||||||
|
25,
|
||||||
|
Color::DARKGRAY,
|
||||||
|
);
|
||||||
|
|
||||||
// Render the game version info
|
// Render the game version info
|
||||||
raylib.draw_text(
|
raylib.draw_text(
|
||||||
&format!(
|
&format!(
|
||||||
@ -113,5 +143,207 @@ impl ScreenSpaceRender for MainMenuScreen {
|
|||||||
15,
|
15,
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
&format!("[{}]", config.name),
|
||||||
|
37,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
&format!("[{}]", config.name),
|
||||||
|
43,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
&format!("[{}]", config.name),
|
||||||
|
40,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Start Game
|
||||||
|
if Rectangle::new(80.0, 300.0, 170.0, 20.0).check_collision_point_rec(mouse_position) {
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
83,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
77,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
80,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
if mouse_pressed{
|
||||||
|
self.is_start_pressed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
81,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
79,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"START GAME",
|
||||||
|
80,
|
||||||
|
300,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// How to Play
|
||||||
|
if Rectangle::new(80.0, 350.0, 170.0, 20.0).check_collision_point_rec(mouse_position) {
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
83,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
77,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
80,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
if mouse_pressed{
|
||||||
|
self.is_htp_pressed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
81,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
79,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"HOW TO PLAY",
|
||||||
|
80,
|
||||||
|
350,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// OPTIONS
|
||||||
|
if Rectangle::new(80.0, 400.0, 135.0, 20.0).check_collision_point_rec(mouse_position) {
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
83,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
77,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
80,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
if mouse_pressed{
|
||||||
|
self.is_options_pressed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
81,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
79,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"OPTIONS",
|
||||||
|
80,
|
||||||
|
400,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ use self::{
|
|||||||
fsm_error_screen::FsmErrorScreen,
|
fsm_error_screen::FsmErrorScreen,
|
||||||
ingame_scene::{level::loader::load_all_levels, InGameScreen},
|
ingame_scene::{level::loader::load_all_levels, InGameScreen},
|
||||||
loading_screen::LoadingScreen,
|
loading_screen::LoadingScreen,
|
||||||
main_menu_screen::MainMenuScreen,
|
main_menu_screen::MainMenuScreen, options_screen::OptionsScreen, how_to_play_screen::HowToPlayScreen,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
context::GameContext,
|
context::GameContext,
|
||||||
@ -19,9 +19,10 @@ pub mod fsm_error_screen;
|
|||||||
pub mod ingame_scene;
|
pub mod ingame_scene;
|
||||||
pub mod loading_screen;
|
pub mod loading_screen;
|
||||||
pub mod main_menu_screen;
|
pub mod main_menu_screen;
|
||||||
|
pub mod how_to_play_screen;
|
||||||
|
pub mod options_screen;
|
||||||
pub mod pause_screen;
|
pub mod pause_screen;
|
||||||
|
|
||||||
|
|
||||||
/// Defines all scenes
|
/// Defines all scenes
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Hash)]
|
||||||
pub enum Scenes {
|
pub enum Scenes {
|
||||||
@ -30,6 +31,8 @@ pub enum Scenes {
|
|||||||
LoadingScreen,
|
LoadingScreen,
|
||||||
MainMenuScreen,
|
MainMenuScreen,
|
||||||
InGameScene,
|
InGameScene,
|
||||||
|
HowToPlayScreen,
|
||||||
|
OptionsScreen,
|
||||||
PauseScreen,
|
PauseScreen,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,10 +67,13 @@ pub fn build_screen_state_machine(
|
|||||||
LoadingScreen::new(raylib_handle, thread)?,
|
LoadingScreen::new(raylib_handle, thread)?,
|
||||||
)?;
|
)?;
|
||||||
machine.add_action(Scenes::MainMenuScreen, MainMenuScreen::new())?;
|
machine.add_action(Scenes::MainMenuScreen, MainMenuScreen::new())?;
|
||||||
|
machine.add_action(Scenes::HowToPlayScreen, HowToPlayScreen::new())?;
|
||||||
|
machine.add_action(Scenes::OptionsScreen, OptionsScreen::new())?;
|
||||||
machine.add_action(Scenes::PauseScreen, PauseScreen::new())?;
|
machine.add_action(Scenes::PauseScreen, PauseScreen::new())?;
|
||||||
machine.add_action(
|
machine.add_action(
|
||||||
Scenes::InGameScene,
|
Scenes::InGameScene,
|
||||||
InGameScreen::new(player_sprite_sheet, world_background, levels),
|
InGameScreen::new(player_sprite_sheet, world_background, levels),
|
||||||
)?;
|
)?;
|
||||||
Ok(machine)
|
Ok(machine)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
171
game/src/scenes/options_screen.rs
Normal file
171
game/src/scenes/options_screen.rs
Normal file
@ -0,0 +1,171 @@
|
|||||||
|
use std::ops::{Div, Sub};
|
||||||
|
|
||||||
|
use chrono::{DateTime, Utc};
|
||||||
|
use dirty_fsm::{Action, ActionFlag};
|
||||||
|
use pkg_version::pkg_version_major;
|
||||||
|
use raylib::prelude::*;
|
||||||
|
|
||||||
|
use crate::{GameConfig, context::GameContext, utilities::{
|
||||||
|
datastore::{load_texture_from_internal_data, ResourceLoadError},
|
||||||
|
game_version::get_version_string,
|
||||||
|
math::interpolate_exp,
|
||||||
|
non_ref_raylib::HackedRaylibHandle,
|
||||||
|
render_layer::ScreenSpaceRender,
|
||||||
|
}};
|
||||||
|
|
||||||
|
use super::{Scenes, ScreenError};
|
||||||
|
use tracing::{debug, info, trace};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct OptionsScreen {
|
||||||
|
is_btm_pressed: bool //Is back to menu button pressed
|
||||||
|
}
|
||||||
|
|
||||||
|
impl OptionsScreen {
|
||||||
|
/// Construct a new `OptionsScreen`
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
is_btm_pressed: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Action<Scenes, ScreenError, GameContext> for OptionsScreen {
|
||||||
|
fn on_register(&mut self) -> Result<(), ScreenError> {
|
||||||
|
debug!("Registered");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> {
|
||||||
|
debug!("Running OptionsScreen for the first time");
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn execute(
|
||||||
|
&mut self,
|
||||||
|
_delta: &chrono::Duration,
|
||||||
|
context: &GameContext,
|
||||||
|
) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> {
|
||||||
|
trace!("execute() called on OptionsScreen");
|
||||||
|
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||||
|
|
||||||
|
if self.is_btm_pressed {
|
||||||
|
Ok(ActionFlag::SwitchState(Scenes::MainMenuScreen))
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
Ok(ActionFlag::Continue)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||||
|
debug!("Finished OptionsScreen");
|
||||||
|
self.is_btm_pressed = false;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ScreenSpaceRender for OptionsScreen {
|
||||||
|
fn render_screen_space(
|
||||||
|
&mut self,
|
||||||
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
|
config: &GameConfig
|
||||||
|
) {
|
||||||
|
|
||||||
|
// Render the background
|
||||||
|
raylib.clear_background(Color::BLACK);
|
||||||
|
|
||||||
|
let screen_size = raylib.get_screen_size();
|
||||||
|
|
||||||
|
//Mouse Position
|
||||||
|
let mouse_position: Vector2 = raylib.get_mouse_position();
|
||||||
|
|
||||||
|
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"Options",
|
||||||
|
37,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"Options",
|
||||||
|
43,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"Options",
|
||||||
|
40,
|
||||||
|
80,
|
||||||
|
70,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
//Back to Menu
|
||||||
|
if Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0).check_collision_point_rec(mouse_position){
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
28,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
22,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
25,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
|
||||||
|
if mouse_pressed{
|
||||||
|
self.is_btm_pressed = true;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
26,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::RED,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
24,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::BLUE,
|
||||||
|
);
|
||||||
|
raylib.draw_text(
|
||||||
|
|
||||||
|
"BACK TO MENU",
|
||||||
|
25,
|
||||||
|
screen_size.y as i32 - 50,
|
||||||
|
25,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -100,7 +100,7 @@ impl Action<Scenes, ScreenError, GameContext> for PauseScreen {
|
|||||||
|
|
||||||
impl ScreenSpaceRender for PauseScreen {
|
impl ScreenSpaceRender for PauseScreen {
|
||||||
fn render_screen_space(
|
fn render_screen_space(
|
||||||
&self,
|
&mut self,
|
||||||
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle,
|
||||||
config: &GameConfig,
|
config: &GameConfig,
|
||||||
) {
|
) {
|
||||||
|
@ -7,9 +7,9 @@ pub trait FrameUpdate {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub trait ScreenSpaceRender {
|
pub trait ScreenSpaceRender {
|
||||||
fn render_screen_space(&self, raylib: &mut HackedRaylibHandle, config: &GameConfig);
|
fn render_screen_space(&mut self, raylib: &mut HackedRaylibHandle, config: &GameConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait WorldSpaceRender {
|
pub trait WorldSpaceRender {
|
||||||
fn render_world_space(&self, raylib: &mut RaylibMode2D<'_, HackedRaylibHandle>, config: &GameConfig);
|
fn render_world_space(&mut self, raylib: &mut RaylibMode2D<'_, HackedRaylibHandle>, config: &GameConfig);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user