commit
dea7984e2e
@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace};
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct HowToPlayScreen {
|
pub struct HowToPlayScreen {
|
||||||
is_btm_pressed: bool, //Is back to menu button pressed
|
is_btm_pressed: bool, //Is back to menu button pressed
|
||||||
|
counter: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HowToPlayScreen {
|
impl HowToPlayScreen {
|
||||||
@ -27,6 +28,7 @@ impl HowToPlayScreen {
|
|||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
is_btm_pressed: false,
|
is_btm_pressed: false,
|
||||||
|
counter: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -61,6 +63,8 @@ impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
|
|||||||
trace!("execute() called on HowToPlayScreen");
|
trace!("execute() called on HowToPlayScreen");
|
||||||
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||||
|
|
||||||
|
self.counter += 1;
|
||||||
|
|
||||||
if self.is_btm_pressed {
|
if self.is_btm_pressed {
|
||||||
context
|
context
|
||||||
.flag_send
|
.flag_send
|
||||||
@ -75,6 +79,7 @@ impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
|
|||||||
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
|
||||||
debug!("Finished HowToPlayScreen");
|
debug!("Finished HowToPlayScreen");
|
||||||
self.is_btm_pressed = false;
|
self.is_btm_pressed = false;
|
||||||
|
self.counter = 0;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -105,13 +110,28 @@ impl ScreenSpaceRender for HowToPlayScreen {
|
|||||||
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||||
|
|
||||||
//Render the title
|
//Render the title
|
||||||
raylib.draw_rgb_split_text(
|
let timer: i32 = get_random_value(50, 400);
|
||||||
Vector2::new(40.0, 80.0),
|
if self.counter > timer {
|
||||||
"How to Play",
|
raylib.draw_rgb_split_text(
|
||||||
70,
|
Vector2::new(40.0, 80.0),
|
||||||
true,
|
"[How to Play]",
|
||||||
Color::WHITE,
|
70,
|
||||||
);
|
true,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
if self.counter > timer + 20 {
|
||||||
|
self.counter = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
raylib.draw_rgb_split_text(
|
||||||
|
Vector2::new(40.0, 80.0),
|
||||||
|
"[How to Play]",
|
||||||
|
70,
|
||||||
|
false,
|
||||||
|
Color::WHITE,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Render the instructions
|
// Render the instructions
|
||||||
raylib.draw_rgb_split_text(
|
raylib.draw_rgb_split_text(
|
||||||
|
@ -20,6 +20,7 @@ use tracing::{debug, error, info, trace};
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct OptionsScreen {
|
pub struct OptionsScreen {
|
||||||
is_btm_pressed: bool, //Is back to menu button pressed
|
is_btm_pressed: bool, //Is back to menu button pressed
|
||||||
|
counter: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl OptionsScreen {
|
impl OptionsScreen {
|
||||||
@ -27,6 +28,7 @@ impl OptionsScreen {
|
|||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
is_btm_pressed: false,
|
is_btm_pressed: false,
|
||||||
|
counter: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -64,6 +66,8 @@ impl Action<Scenes, ScreenError, GameContext> for OptionsScreen {
|
|||||||
trace!("execute() called on OptionsScreen");
|
trace!("execute() called on OptionsScreen");
|
||||||
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
self.render_screen_space(&mut context.renderer.borrow_mut(), &context.config);
|
||||||
|
|
||||||
|
self.counter += 1;
|
||||||
|
|
||||||
if self.is_btm_pressed {
|
if self.is_btm_pressed {
|
||||||
context
|
context
|
||||||
.flag_send
|
.flag_send
|
||||||
@ -108,7 +112,17 @@ impl ScreenSpaceRender for OptionsScreen {
|
|||||||
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
let mouse_pressed: bool = raylib.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON);
|
||||||
|
|
||||||
// Render the title
|
// Render the title
|
||||||
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "Options", 70, true, Color::WHITE);
|
let timer: i32 = get_random_value(50, 400);
|
||||||
|
if self.counter > timer {
|
||||||
|
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, true, Color::WHITE);
|
||||||
|
if self.counter > timer + 20 {
|
||||||
|
self.counter = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
raylib.draw_rgb_split_text(Vector2::new(40.0, 80.0), "[Options]", 70, false, Color::WHITE);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// Render the text
|
// Render the text
|
||||||
raylib.draw_rgb_split_text(
|
raylib.draw_rgb_split_text(
|
||||||
|
Reference in New Issue
Block a user