diff --git a/assets/img/map/tutorial1.png b/assets/img/map/tutorial1.png deleted file mode 100644 index 29f3a8b..0000000 Binary files a/assets/img/map/tutorial1.png and /dev/null differ diff --git a/assets/img/map/tutorial2.png b/assets/img/map/tutorial2.png deleted file mode 100644 index 3c55f05..0000000 Binary files a/assets/img/map/tutorial2.png and /dev/null differ diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index 786348c..998afeb 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -98,6 +98,48 @@ impl InGameScreen { } fish.render(context_2d, &mut game_core.resources); } + context_2d.draw_texture_pro( + &game_core.resources.tut1, + Rectangle { + x: 0.0, + y: 0.0, + width: 44.0, + height: 41.0, + }, + Rectangle { + x: 110.0, + y: 100.0, + width: 44.0, + height: 41.0, + }, + Vector2 { + x: 0.0, + y: 0.0, + }, + 0.0, + Color::WHITE, + ); + context_2d.draw_texture_pro( + &game_core.resources.tut2, + Rectangle { + x: 0.0, + y: 0.0, + width: 44.0, + height: 41.0, + }, + Rectangle { + x: 160.0, + y: 110.0, + width: 44.0, + height: 41.0, + }, + Vector2 { + x: 0.0, + y: 0.0, + }, + 0.0, + Color::WHITE, + ); // Render the world texture context_2d.draw_texture_rec( diff --git a/src/logic/shop/mod.rs b/src/logic/shop/mod.rs index cfd54b5..29d9030 100644 --- a/src/logic/shop/mod.rs +++ b/src/logic/shop/mod.rs @@ -37,6 +37,14 @@ impl Screen for ShopScreen { audio_system.play_sound(&game_core.resources.song_shop); } + draw_handle.draw_text( + &format!("you really need to get to the bottom huh?\n Well then buy my wares,\n they will help you get to your doo-hicky"), + 10, + 50, + 20, + Color::WHITE, + ); + // Window dimensions let win_height = draw_handle.get_screen_height(); let win_width = draw_handle.get_screen_width(); diff --git a/src/resources.rs b/src/resources.rs index ce8340f..822ce33 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -58,6 +58,10 @@ pub struct GlobalResources { pub flippers_one: Texture2D, pub flippers_two: Texture2D, pub flippers_three: Texture2D, + + // tut + pub tut1: Texture2D, + pub tut2: Texture2D, // Treasure pub transponder: FrameAnimationWrapper, @@ -253,6 +257,14 @@ impl GlobalResources { &thread, &Image::load_image("./assets/img/items/flippers3.png")?, )?), + tut1: (raylib.load_texture_from_image( + &thread, + &Image::load_image("./assets/img/map/tut1.png")?, + )?), + tut2: (raylib.load_texture_from_image( + &thread, + &Image::load_image("./assets/img/map/tut2.png")?, + )?), transponder: FrameAnimationWrapper::new( raylib.load_texture_from_image( &thread,