From 1abc80be6416c19e41f628965cb8bfbfd9ef5911 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 13:06:48 -0400 Subject: [PATCH 1/7] placeholder item rendering --- src/logic/shop/item.rs | 4 + src/logic/shop/mainui.rs | 65 ++++++++++++-- src/logic/shop/mod.rs | 177 +-------------------------------------- 3 files changed, 64 insertions(+), 182 deletions(-) diff --git a/src/logic/shop/item.rs b/src/logic/shop/item.rs index 1bddfd2..2c94f3b 100644 --- a/src/logic/shop/item.rs +++ b/src/logic/shop/item.rs @@ -62,6 +62,10 @@ impl ShopItemWrapper { return self.ui.buy_button_hovered && draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON); } + pub fn user_hovering_row(&self, draw_handle: &mut RaylibDrawHandle) -> bool { + 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)); } diff --git a/src/logic/shop/mainui.rs b/src/logic/shop/mainui.rs index 03d0b46..1b25b42 100644 --- a/src/logic/shop/mainui.rs +++ b/src/logic/shop/mainui.rs @@ -1,6 +1,10 @@ use raylib::prelude::*; -use crate::{gamecore::{GameCore, GameState}, items::{AirBag, Flashlight, Flippers, ItemBase, StunGun}, lib::{utils::button::OnScreenButton, wrappers::audio::player::AudioPlayer}}; +use crate::{ + gamecore::{GameCore, GameState}, + items::{AirBag, Flashlight, Flippers, ItemBase, StunGun}, + lib::{utils::button::OnScreenButton, wrappers::audio::player::AudioPlayer}, +}; use super::{item::ShopItemWrapper, itemui::ShopItemUi}; @@ -89,23 +93,65 @@ pub fn render_shop( flippers_buy_ui.render(draw_handle, &game_core.player); // Handle buying items - if stun_gun_buy_ui.can_player_afford(&game_core.player) && stun_gun_buy_ui.user_clicked_buy(draw_handle) { + if stun_gun_buy_ui.can_player_afford(&game_core.player) + && 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) && air_bag_buy_ui.user_clicked_buy(draw_handle) { + if air_bag_buy_ui.can_player_afford(&game_core.player) + && 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) && flashlight_buy_ui.user_clicked_buy(draw_handle) { + if flashlight_buy_ui.can_player_afford(&game_core.player) + && 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) && flippers_buy_ui.user_clicked_buy(draw_handle) { + if flippers_buy_ui.can_player_afford(&game_core.player) + && flippers_buy_ui.user_clicked_buy(draw_handle) + { let item = flippers_buy_ui.purchase(&mut game_core.player); game_core.player.inventory.flippers = Some(item); } + // Render the tooltip box + let hovering_stun_gun = stun_gun_buy_ui.user_hovering_row(draw_handle); + let hovering_air_bag = air_bag_buy_ui.user_hovering_row(draw_handle); + let hovering_flashlight = flashlight_buy_ui.user_hovering_row(draw_handle); + let hovering_flippers = flippers_buy_ui.user_hovering_row(draw_handle); + let should_show_tooltip = + hovering_stun_gun || hovering_air_bag || hovering_flashlight || hovering_flippers; + + if should_show_tooltip { + // Create bounds + let box_bounds = Rectangle { + x: bounds.x + 5.0, + y: bounds.y + 350.0, + width: bounds.width - 10.0, + height: 250.0, + }; + + // Draw background box + draw_handle.draw_rectangle_rec(box_bounds, Color::WHITE); + draw_handle.draw_rectangle_lines_ex(box_bounds, 3, Color::BLACK); + + // TODO: draw item sprite + draw_handle.draw_rectangle_v( + Vector2 { + x: box_bounds.x + (box_bounds.width / 2.0) - 40.0, + y: box_bounds.y + 10.0, + }, + Vector2 { + x: 80.0, + y: 80.0 + }, + Color::BLACK, + ); + } // Handle exit buttons let bottom_left_button_dimensions = Rectangle { @@ -115,7 +161,7 @@ pub fn render_shop( height: 40.0, }; let bottom_right_button_dimensions = Rectangle { - x: (bounds.x + bottom_left_button_dimensions.width ) + 15.0, + x: (bounds.x + bottom_left_button_dimensions.width) + 15.0, y: bottom_left_button_dimensions.y, width: bottom_left_button_dimensions.width, height: bottom_left_button_dimensions.height, @@ -146,10 +192,11 @@ pub fn render_shop( // Handle click actions on the buttons if draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON) { - // Handle saving core state - if menu_button.is_hovered(draw_handle) || play_button.is_hovered(draw_handle) { - let new_progress = game_core.player.create_statistics(game_core, draw_handle.get_time()); + if menu_button.is_hovered(draw_handle) || play_button.is_hovered(draw_handle) { + let new_progress = game_core + .player + .create_statistics(game_core, draw_handle.get_time()); game_core.progress.update(&new_progress); } diff --git a/src/logic/shop/mod.rs b/src/logic/shop/mod.rs index 0013b5a..9885e04 100644 --- a/src/logic/shop/mod.rs +++ b/src/logic/shop/mod.rs @@ -1,6 +1,6 @@ -mod mainui; -mod itemui; mod item; +mod itemui; +mod mainui; use raylib::prelude::*; @@ -26,42 +26,6 @@ impl ShopScreen { ..Default::default() } } - - // // Creates all the items - // pub fn create_items(&mut self, screen_dimension: Vector2) { - // // gets every item.. hacky - // let items = ShopItems::get_inital_items(); - - // // sets sizes any random number is just a number I think looks good - // let screen_width = screen_dimension.x as f32; - // let screen_height = screen_dimension.y as f32; - - // let box_height = screen_height * 0.15; - // let box_width = screen_width * 0.1; - - // let start_width = screen_width - (box_width * 4.0) - 40.0; - // let draw_height = screen_height - 20.0 - box_height; - - // let mut item_vec = Vec::new(); - - // for box_num in 0..4 { - // let x_pose = start_width + box_width * box_num as f32; - - // // adds an item struct to the item list - // item_vec.push(Item { - // x_pose: ((x_pose + (5 * box_num) as f32) as i32), - // y_pose: (draw_height as i32), - // width: (box_width as i32), - // height: (box_height as i32), - // // Crazy hacky but this gets the data from the enum - // cost: (ShopItems::get_cost(&items.get(box_num).unwrap())), - // level: (ShopItems::get_level(&items.get(box_num).unwrap())), - // name: (ShopItems::get_name(&items.get(box_num).unwrap())), - // }); - // } - - // self.shop_items = item_vec; - // } } impl Screen for ShopScreen { @@ -73,8 +37,7 @@ impl Screen for ShopScreen { game_core: &mut GameCore, ) -> Option { let mouse_position = draw_handle.get_mouse_position(); - - + // Render the background draw_handle.draw_texture(&game_core.resources.shop_background, 0, 0, Color::WHITE); @@ -97,8 +60,7 @@ impl Screen for ShopScreen { }; // Render the shop UI - let next_state = - render_shop(draw_handle, thread, audio_system, game_core, shop_ui_bounds); + let next_state = render_shop(draw_handle, thread, audio_system, game_core, shop_ui_bounds); // Render the stats UI render_stats(draw_handle, game_core, stats_ui_bounds); @@ -106,134 +68,3 @@ impl Screen for ShopScreen { return next_state; } } -// pub fn render_shop( -// draw_handle: &mut RaylibDrawHandle, -// game_core: &mut GameCore, -// inGameScreen: &mut InGameScreen, -// ) { -// // Pressing F exits from buying -// if draw_handle.is_key_pressed(KeyboardKey::KEY_F) { -// inGameScreen.current_state = InGameState::SWIMMING; -// } - -// let mouse_position = draw_handle.get_mouse_position(); - -// draw_handle.draw_text( -// &format!("Coins: {}", game_core.player.coins), -// 15, -// 15, -// 30, -// Color::WHITE, -// ); - -// // Draws shop boxes -// for mut item in inGameScreen.shop.shop_items.iter_mut() { -// // If hovering on square draw full -// if mouse_position.x >= item.x_pose as f32 -// && mouse_position.x <= item.x_pose as f32 + item.width as f32 -// && mouse_position.y >= item.y_pose as f32 -// && mouse_position.y <= item.y_pose as f32 + item.width as f32 -// { -// // Draw rect -// draw_handle.draw_rectangle( -// item.x_pose, -// item.y_pose, -// item.width, -// item.height, -// Color::BLACK, -// ); - -// // Preform purchasing functions -// if draw_handle.is_mouse_button_pressed(MouseButton::MOUSE_LEFT_BUTTON) -// && game_core.player.coins >= item.cost as u32 -// { -// // Remove currency -// game_core.world.spend_coins(item.cost.into()); -// game_core.player.coins -= item.cost as u32; - -// // Upgrade item in inventory -// match &(item.name)[..] { -// "Stun Gun" => { -// match item.level { -// 0 => game_core.player.inventory.stun_gun = Some(items::StunGun::lvl1()), -// 1 => game_core.player.inventory.stun_gun = Some(items::StunGun::lvl2()), -// 2 => game_core.player.inventory.stun_gun = Some(items::StunGun::lvl3()), -// _ => (return), -// }; -// item.cost += 5; -// item.level += 1; -// } -// "Air Bag" => { -// match item.level { -// 0 => { -// game_core.player.inventory.air_bag = Some(items::AirBag::lvl1()); -// } -// 1 => { -// game_core.player.inventory.air_bag = Some(items::AirBag::lvl2()); -// } -// 2 => { -// game_core.player.inventory.air_bag = Some(items::AirBag::lvl3()); -// } -// _ => (return), -// }; -// item.cost += 5; -// item.level += 1; -// } -// "Flash Light" => { -// match item.level { -// 0 => { -// game_core.player.inventory.flashlight = -// Some(items::Flashlight::lvl1()); -// } -// 1 => { -// game_core.player.inventory.flashlight = -// Some(items::Flashlight::lvl2()); -// } -// 2 => { -// game_core.player.inventory.flashlight = -// Some(items::Flashlight::lvl3()); -// } -// _ => (return), -// }; -// item.cost += 5; -// item.level += 1; -// } -// "Flippers" => { -// match item.level { -// 0 => { -// game_core.player.inventory.flippers = Some(items::Flippers::lvl1()); -// } -// 1 => { -// game_core.player.inventory.flippers = Some(items::Flippers::lvl2()); -// } -// 2 => { -// game_core.player.inventory.flippers = Some(items::Flippers::lvl3()); -// } -// _ => (return), -// }; -// item.cost += 5; -// item.level += 1; -// } -// _ => (return), -// }; -// } -// } else { -// // outlines if not hovered -// draw_handle.draw_rectangle_lines( -// item.x_pose, -// item.y_pose, -// item.width, -// item.height, -// Color::BLACK, -// ); -// } -// // Draw text about object -// draw_handle.draw_text( -// &format!("{}: ${}", item.name, item.cost), -// item.x_pose + 5, -// item.y_pose + 5, -// 12, -// Color::BLACK, -// ); -// } -// } From 53b3a33b4e43a6516da61bbda6dce3a73de3a007 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 13:15:05 -0400 Subject: [PATCH 2/7] Store tooltips --- src/items.rs | 6 +++--- src/logic/shop/mainui.rs | 26 ++++++++++++++++++++++---- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/items.rs b/src/items.rs index 66638b3..d30dabc 100644 --- a/src/items.rs +++ b/src/items.rs @@ -54,7 +54,7 @@ impl ItemBase for StunGun { } fn get_description(&self) -> String { - return "Stun your enemies! Just don't point it at yourself.".to_string(); + return "Stun your enemies!\nJust don't point it at yourself.".to_string(); } fn get_texture(&self) -> &Texture2D { @@ -106,7 +106,7 @@ impl ItemBase for AirBag { } fn get_description(&self) -> String { - return "Its.. a bag. Filled with air. Duh".to_string(); + return "Its.. a bag.\nFilled with air. Duh".to_string(); } fn get_texture(&self) -> &Texture2D { @@ -210,7 +210,7 @@ impl ItemBase for Flippers { } fn get_description(&self) -> String { - return "Swim faster, and look stupid at the same time!".to_string(); + return "Swim faster, and look stupid\nat the same time!".to_string(); } fn get_texture(&self) -> &Texture2D { diff --git a/src/logic/shop/mainui.rs b/src/logic/shop/mainui.rs index 1b25b42..759da23 100644 --- a/src/logic/shop/mainui.rs +++ b/src/logic/shop/mainui.rs @@ -135,6 +135,18 @@ pub fn render_shop( height: 250.0, }; + // Get the hovered item + let hovered_item: &dyn ItemBase; + if hovering_stun_gun { + hovered_item = stun_gun_buy_ui.get_item(); + } else if hovering_air_bag { + hovered_item = air_bag_buy_ui.get_item(); + } else if hovering_flashlight { + hovered_item = flashlight_buy_ui.get_item(); + } else { + hovered_item = flippers_buy_ui.get_item(); + } + // Draw background box draw_handle.draw_rectangle_rec(box_bounds, Color::WHITE); draw_handle.draw_rectangle_lines_ex(box_bounds, 3, Color::BLACK); @@ -145,10 +157,16 @@ pub fn render_shop( x: box_bounds.x + (box_bounds.width / 2.0) - 40.0, y: box_bounds.y + 10.0, }, - Vector2 { - x: 80.0, - y: 80.0 - }, + Vector2 { x: 80.0, y: 80.0 }, + Color::BLACK, + ); + + // Render item description + draw_handle.draw_text( + &hovered_item.get_description(), + box_bounds.x as i32 + 10, + box_bounds.y as i32 + 100, + 30, Color::BLACK, ); } From b1a1b2e1057415a6a0c77ceb117239e1451b3710 Mon Sep 17 00:00:00 2001 From: rsninja722 Date: Sun, 25 Apr 2021 13:15:06 -0400 Subject: [PATCH 3/7] fish? --- assets/img/map/fish.aseprite | Bin 0 -> 1556 bytes assets/img/map/fish.json | 26 +++++++ assets/img/map/fish.png | Bin 0 -> 2022 bytes assets/img/map/fishIdle.aseprite | Bin 0 -> 2625 bytes assets/img/map/fishIdle.json | 130 +++++++++++++++++++++++++++++++ assets/img/map/fishIdle.png | Bin 0 -> 2039 bytes src/entities/fish.rs | 82 +++++++++---------- src/logic/ingame/mod.rs | 2 +- src/resources.rs | 22 ++++++ 9 files changed, 215 insertions(+), 47 deletions(-) create mode 100644 assets/img/map/fish.aseprite create mode 100644 assets/img/map/fish.json create mode 100644 assets/img/map/fish.png create mode 100644 assets/img/map/fishIdle.aseprite create mode 100644 assets/img/map/fishIdle.json create mode 100644 assets/img/map/fishIdle.png diff --git a/assets/img/map/fish.aseprite b/assets/img/map/fish.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..18832477ccd50ad3a650b490becfd37b68ca224a GIT binary patch literal 1556 zcmcJOdq`7J9LLYR?anYaNmI+$wMkfn=}1jWW>!lwqZBNOab42Lv6h9}W1!YbD|!=T zSt&&?%Fsj$11YDt$PlrX(?Waus3@thWxIXv6dU_v6x6w#59gk9x!>>i{Lb;A3F*5u znRt@PgdqY#hz$LA3nK!4l6c|yA5H8=i1oA3t}29pFS>}aOFGC6V?3P+8=sLntk{Pf zAv2lz;Ii;VpgJxJJesi(?A& zQ5-0j=Yf$~d%*R&7hrZd2eOY|gAaQ~K@N?O@~Ye5-ojEaN238VGt$6dS^@Ajqi7N3w?*u*0x>=X$j8T-gnE}B5&@Z+(w!_NfmaKKevt* zR8J_oxu{@EuG!>1ce~MCFW%1?M#i=8drW#!{rq z$X1DqEJH=ytPw*pR8wOaxfl1I^Si%(|9n2rc|Xtlbw1B|&gVSIw$>KHP$?(?0K(Yw z=Jo&p*4d2(`1y8EzLMZ~yB8?L-r@{UJ1G4D03bzJb2G>Ad=}O0mqX6*o$3ExPhy28V%6e+mDJR0xFT{pJU&n>pzGb<6oi|HSRg;g@4d;g*6h0g3RTnR; zbomT!qE!A7*_T3!$A7u;M|A&yfzFlb$kxHt2VD0s*BRuMXPaROo134f0Uy$W3(4uY zgXj|%+0jZHG|uF!XHbL1rVFHN1cRJIBGnNei?VMlbtNYsSn!fLv|HE|ebeoqye|ZC zY%ia#Ce^lM<^<0wdBwZ9!Sy3-gui`6;MWvzJd{u#KID4HW zNt1$i(*LV{eFnF@n)d9WL_+#KnWG6Wdo7&cX{kfXCwpd`1v`8C(}Xcg^QG!S29QG4 zA2pqsX`6p}VGCYO(M^X^Ris2@aiI3;?sH=3K3%JAzuczn<-2jc=M)}PRSD28$3C^E z$;qibeq@MSA0S;4kx;qJs4$^4p9p!E<)sz&brv)B%maIlZi>DLm&z3!$clH>3ySC~ zr-5U0#de)@x$3B?brU}+RXzIra6#6C4_8StPfA@10r;COAcBD6Jf;Ce);t-ozoLKi z(~7A0>9m~%e8Kdxrw4symf;ItI_?AIAqOA5- zrQkHY(SKXx`?n#>ZvwG)HKKQpBrv~o?SVRaeID-}zn?wgPEnrET(33C9?ZaUcG#F- ze)a%Im*dRP_JLm4vYU%94oPd^Ugr*Z##A_3+2AzlX0{A7m&JKY-4Jp}p~6O88t`t4 z$=zPVPyAkZr9z9twGm3-_42k?k4y9FY$>N&XXI&A=-tCE{8t!CZ!ZHpckM3FuCUf;ln zqpu&plbLD`_t{uyixmYZb+laaCD|WHvP=-^Ts)G3)$J==R)q0ED2+PX*?Ne^kxSqH zal1MQ)<32b#EVvl=2ppo4@BVscZXzG4cPU*By4OeXt}0vM;dGq87QDGdNhbI-3_$o zG5DmnN}5lujZbJo-m91>bpIOIS4YjaBJRySb9QFvr~Rk`$&f0C!tM&m@QHc;c6I$E zr7HbA9N@0ux95{mL0=ZlF7y}AwH?p%7wNXTVNM#0@bd|7ozMp@M+XnC8<+EpaOb7- zj6;TwIT0(pmr!?Ll$|4(4tD04g^~~uP^ihdJ`M+Vr`oBSIFZ8MdE7FGpDeTZy@_F! zQ$uyn1FogvwEI4-Eh?j_ij;uB%CY}~yxxc4Xr>AT0MA|N`$O$07+^LgBPZN$vv=yr zA*jIDik_29+CVE~T_4mkzMf>45OW&2A5CSS^v_gBJ8Fl*&nNXVo-h8*Sy>F5|4iKN zYOFDfjuhdoPvfm`aP&EO_fpN5LD_2Dj^qlwp&OGl0J?5 z1FO`-87SLsR{QXY+li>m$(-U4hgWl6j$eYf^0!VP5WPhmXi0*VCV5stNcp<2bdMY> zQwOlzL`(VlIq2-}i3fkGnI=zNg?8MY1$4 zVe4vaZeaNi^YsDNvqkO_qJ(43I+#UTNmozh{CgENp})sQyAox~cNGd@{T9xT>7_~< z8XVR%J*SK?06{O9-XxpF|3{m+P9Ia3JkcTNy|G=MB!MU;r!S2kO^7NB?E7vg$;u(w zrPZ2u8A}(k*!$RV61c_?dP0?!Vo`mK#Yb5cnM`u*^Mdkk3ly|EmWh zjPaSJ$L*@D6G*6ARm1bw*bg-%(Wy0B@;r{)hzOm0e`2T-xUxo1#gQ1=qG33Y=msuR zltlkpqgBjvh@*!#B!fmqrNq_IhVBwFOiT^vb%sz;<7l=m2+Ea`lj#Ng{8I%E7u7x7 zOUSkP8fZ>XcOcp^Sb=RW7Ph8kg9^^S#Ez}W{69faB6HO~g+RgX P;s&s1t<7uC;A8&+)!WBu literal 0 HcmV?d00001 diff --git a/assets/img/map/fishIdle.aseprite b/assets/img/map/fishIdle.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..6514d45e2ada2137ca1d5330adea7fa84491c26e GIT binary patch literal 2625 zcmcJQeM}Q~7{`BDp^8A+ObXZuhoW0F=!vWZYYP>r&A_=qf+^^vzz|tek?=C0!l1Op z7gls`l;OMRC>A!}l{f|zM;AedGNB4V6ehyJA%cjdx2LUc3p0`avAf(S*SjXq_xs#8 z&%?Gx=-zodWQ!Ie3|SzAqTu@HSb;1I50O2b|Hr|YhtTwxrLn3d6rjRI#*8KZRc;FI zov;-zpSb<&jq#R1Xc^`S^nY(7Fxq<^P#(en_U>B=)Siw8j;g-}zIZ|h77Tm@jIGCk zUdM#MfIVx0K>=<+kB#0yAD;vu9-ajZ6ZQck3kl$^wtnEXyE-5N2SSCVwZQCj8E{W* zERYux1Wej=5UBF-0BW~K0z1>{fb#qgfCu*)syD4#1#C0^r;Evi`#W2=0v`qk6DeSC zzTvAFtb;}H2j;*T*aA;r2;6`b@Bt>k0mujKARJVKWY7y@4N3_DG=e}-2huJKoKINKz_=n@z^>E{IJAczJM=iI&9Gb^!f3~@CLh+ zWHQm>dNuC0X2F`|Yn{)00^L1mOS^xlo{_64Ka(F>v}3HCTot)lrc`f9R$f$3EGtam z1`PXDFtOT9oNFUx-^bH@hxpUso`KHV4+VO5C;8ky39U6fid7RwLZyZBnXjPg^q7S) zI)=cA;WCJ_fRp%Jl+7zq^KXd7MC4mm;z|xD{Bl@*J;5K!(+=K~mX2g7oE>RJ&YQ(k z7@a;bHMk}*@e)hHlT}sW9a-J;Bh)z8J;zEZ0o{1DW^_~X`qsx76HC-gMl5nsoY3f- zs4O&YcYyWvEJ<(f(__8d?_i&*U3972z1NoD#~v|A8Yv+()8V2#XM5ZG;x0|9uSl^$ zl#rilw_|NZfvoC+Zc7chpKfn;pb_W36HVbV16>YFe_4L_K%37Xw5%*ntd+O6P=#pb zcFDYBvqWXTu}{fF%Q73Q-MPPu2ZYasQZgq{ij5T~x^&_)3g>~fmtsaE67*T2pR7+UF*i_) zkA81#l;nC^L;OhjcY1Y)Yh^n-w|9)dnK+%x%&{6{3j{-B?Rw5c+>An4e!_ZlAKYu?&4`jOpQB zI{vsm%oM1Gq=&h$2~<@o&%qF=&;Yxcxdti|l@^&BsK$3s8T-T;zMeH8de$>-3RDea zuWnYLLe>svL7>i8_uHEhsIBei51HF2)yZrfOsLbfcb(SkPXCQCO{kci@%q0ew4-3r=RLHhXdYDk8AA7Ecdyik#n# z%Q6RTt9#oJab(2evTZgy0=IcvrX>YYZjsONpJFm#3q^&;(QV|*vIOD9wMMV}L2tV|%(PaC?h32aF-xx8H2vc=1-xM8BP_0CPz zmuIN`EA44gb}ZYI>mEqSkt+R@9O?@B>9CHJel-qZQw@J?o^+`B(*p6{FQ_xSQ4Xe+ zM{kCex4Pxk%FC&J?aI>@8&{qtZ0;+s&Pm~9ZlG=)db#pk4J*(4)ym^s`R~f3nO5GF NYBN^e$2aqIe*s%@r5OMK literal 0 HcmV?d00001 diff --git a/assets/img/map/fishIdle.json b/assets/img/map/fishIdle.json new file mode 100644 index 0000000..f8f5e3b --- /dev/null +++ b/assets/img/map/fishIdle.json @@ -0,0 +1,130 @@ +{ "frames": { + "fishIdle 0.aseprite": { + "frame": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 1.aseprite": { + "frame": { "x": 13, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 2.aseprite": { + "frame": { "x": 26, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 3.aseprite": { + "frame": { "x": 39, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 4.aseprite": { + "frame": { "x": 52, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 5.aseprite": { + "frame": { "x": 65, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 6.aseprite": { + "frame": { "x": 78, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 7.aseprite": { + "frame": { "x": 91, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 8.aseprite": { + "frame": { "x": 104, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 9.aseprite": { + "frame": { "x": 117, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 10.aseprite": { + "frame": { "x": 130, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 11.aseprite": { + "frame": { "x": 143, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 12.aseprite": { + "frame": { "x": 156, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + }, + "fishIdle 13.aseprite": { + "frame": { "x": 169, "y": 0, "w": 13, "h": 9 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 13, "h": 9 }, + "sourceSize": { "w": 13, "h": 9 }, + "duration": 100 + } + }, + "meta": { + "app": "http://www.aseprite.org/", + "version": "1.2.27-x64", + "image": "fishIdle.png", + "format": "RGBA8888", + "size": { "w": 182, "h": 9 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer 1", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/assets/img/map/fishIdle.png b/assets/img/map/fishIdle.png new file mode 100644 index 0000000000000000000000000000000000000000..44c696708e3a68577080128a8cbb4723f94d4562 GIT binary patch literal 2039 zcmVPx+u}MThR9J<*m|tjH=NX58M{(05f0iwGuIx$OGS{7)**M!QXtxrDrcPL4m2HwN zyJ<+uU{|>r3xh)T=b}&ugYKdiBR6j8T^dFcGg#={!JIUt5J5cbs$Lb%)RL`ZxjNG4 zFFHAv&e_E|?`Qq9YH!Bp=6o;b)p-nlelITv*ydU}ecImc*k&Yynq*}ia2 z-&@%i&Wp=u_Jy@kH+M)7v?8y61q~@ z+_l`T`v39A@5^Tk?;f>D=%Og^TJBc;_s>-Mb}?p?(EPEvYq?wXdl+LNxx>@bNj4N zx2DT_=|5>)9=~h9b?(!K-%`&`!@wAma!r^^}=&ghu`*^Y8x74%KFqC_@ z=))I8h%SXI}Jmi(~@!zUAV0j^6Rqx_fj77S4ZrHcaJvw zmU?y?2F93_JN(YHQpjnt&Mc*nI3KkaFE;Vb?b&GF;m+U1mExrTak{Tv| z5JvbN*SGVoZ`b1roqc^F@Kx70pI`O@fQP5k@c8`z0BwC;zT6iIp(_wTu)iMwFdhiN z(sk5NZ<3lZCZ!faz|wVG861?;o~QHh_z$`qt%}o)u0S_}{m;0ZW3Y4+_0yZAb~yPe zj)^OS7v;3qGDWbi0|0ZdnJ%@~tX3n3s16-7?V;9A)s$s82rr@IqgfC z4fqap007DlDgarDRo;G;FS#w{O*Tx+Gled z%E2xGKq_lWnR|PD=<5CkzI({w{Om<9Y_ov+=}l4xIxQ)+R`kF&3;4r@=j62Kt7&+A zu5Y<2-}*x6>Ioot$n|X?0E_FWpWY-jV@ygdgn-3$Tsb-@r@hA)3c=EK2*UtVRcPz$ z0D#qG65KSwO=rpifDl4X;bvi=d$Tb3Lfx=*6T%Q+DucGJxtwKiQ-GVIjx*_U8pE)~ zX$(Uk*a=anpkxSmRfe3)S$epFlF3mrc@2lAaI-Mby;&GSejoHr3&tY>wVh#o&EX_7 zt1tzJDQY=1g`0(e?#;sB4R(N6Heft5pth?hrwjl<{)-$cg-uinn`p~A|Ma#j

fe z2DLvN1{wpoBE8DL%&sjLYAc=+WSilU67C_^hcf4f%n$SK?`40LZ6247zY7S|<5 z%elU#lHiX`@W*w&xl_1V7^DYH!q7%*$gzb51#os}l6*Cp1XEQA!$2e+mt!74Ll~H< zN~tLf1dhzkDv9Vh+u>YvIa4-CzM5PHQyGNetQ@tR+AuJ6OKJ+k7U!&7BmR76LIIrJ znIvC&xB{=rP%@mAqncA62Cup$HHCpVZ{9qiL|=0z?!s%w6u{Y?N%CZ76>2+!@yJ;@ zsyX#xP}{eprZ5m^_Ebc!5epM{6u{Y?N%H&`IjHR_j7J6*kKC!@@X7|tZl94d(AKU> zsVNL3`n{7k6x*G+um1LP1#os}lJDV{YhYd#qGVwB(&sfCCk&<=23J;BY6=61e*DsH zxkeoOtLxjDQOQ|NB_$_vz0S9~FfgwwrKT`Q58j(q+GtM(oV5Z#O?`NFwgymrF;zt* z9#<#~eFFo|luxG{!a#en^WJMNXRAIud$t9KArgOGp)m9fI8yU;z99^>Cj-t}0idRS z^X8AY<#<(ww`Wc$6oy03eiJ2=L(3E!!a#d6;H(t@YU}$N6beK4b3LdOHc`rKG=zcnWWZS~082_d ze|5wj{^f)1|36+8$1golC=Abj>uD548QC0f2m|fOfU{NrsHqRX*TOfiipcf2LSg9Z zA8@ApYPx9{{-=w+iX@^@n*u@g|NZhB&Xmi!W>X-j-b)UB6}dcq*QP*Fy_X#NDiXbw zuqhB!?45wi5{Fsy^?) { @@ -163,40 +156,37 @@ impl FishEntity { } } - pub fn render(&self, context_2d: &mut RaylibMode2D) { + pub fn render(&mut self, context_2d: &mut RaylibMode2D, resources: &mut GlobalResources) { // Direction let direction = Vector2::zero().angle_to(self.direction.normalized()) + (90.0 as f32).to_radians(); - // Get the corners of the fish - let fish_front = rotate_vector( - Vector2 { - x: 0.0, - y: (self.size.y / 2.0) * -1.0, - }, - direction, - ); - let fish_bl = rotate_vector( - Vector2 { - x: (self.size.x / 2.0) * -1.0, - y: (self.size.y / 2.0), - }, - direction, - ); - let fish_br = rotate_vector( - Vector2 { - x: (self.size.x / 2.0), - y: (self.size.y / 2.0), - }, - direction, - ); + self.animation_counter += 1; - // Draw the fish as a triangle with rotation - context_2d.draw_triangle( - self.position + fish_front, - self.position + fish_bl, - self.position + fish_br, - self.color, - ); + // swimming + if self.following_player { + if self.animation_counter % 3 == 0 { + if self.current_frame == 8 { + self.current_frame = 0; + } + } + resources.fish_animation_swim.draw_frame(context_2d, + self.position, + direction, + (self.current_frame + self.color * 9) as u32); + // idle + } else { + if self.animation_counter % 10 == 0 { + if self.current_frame == 0 { + self.current_frame = 1; + } else { + self.current_frame = 0; + } + } + resources.fish_animation_idle.draw_frame(context_2d, + self.position, + direction, + (self.current_frame + self.color * 2) as u32); + } } } diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index 3f2bce6..ea95cf2 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -62,7 +62,7 @@ impl InGameScreen { let fish_clone = game_core.world.fish.clone(); for fish in game_core.world.fish.iter_mut() { fish.update_position(&mut game_core.player, dt, &fish_clone); - fish.render(context_2d); + fish.render(context_2d, &mut game_core.resources); } // Render the world texture diff --git a/src/resources.rs b/src/resources.rs index 03cd78c..3e7b27a 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -17,6 +17,10 @@ pub struct GlobalResources { pub player_animation_boost_charge: FrameAnimationWrapper, pub player_animation_boost: FrameAnimationWrapper, pub player_animation_stunned: FrameAnimationWrapper, + + // Fish + pub fish_animation_idle: FrameAnimationWrapper, + pub fish_animation_swim: FrameAnimationWrapper, // Cave pub cave_mid_layer: Texture2D, @@ -76,6 +80,24 @@ impl GlobalResources { 4, 100 / 8, ), + fish_animation_idle: FrameAnimationWrapper::new( + raylib.load_texture_from_image( + &thread, + &Image::load_image("./assets/img/map/fishIdle.png")?, + )?, + Vector2 { x: 13.0, y: 9.0 }, + 14, + 4, + ), + fish_animation_swim: FrameAnimationWrapper::new( + raylib.load_texture_from_image( + &thread, + &Image::load_image("./assets/img/map/fish.png")?, + )?, + Vector2 { x: 13.0, y: 9.0 }, + 63, + 30, + ), cave_mid_layer: raylib.load_texture_from_image( &thread, &Image::load_image("./assets/img/map/cave.png")?, From da3b52e39516060b6be576d9f4f1574c5eaa012f Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 13:25:05 -0400 Subject: [PATCH 4/7] Add flipper logic --- src/logic/ingame/playerlogic.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/logic/ingame/playerlogic.rs b/src/logic/ingame/playerlogic.rs index a506daa..9ff92ed 100644 --- a/src/logic/ingame/playerlogic.rs +++ b/src/logic/ingame/playerlogic.rs @@ -147,6 +147,13 @@ pub fn update_player_movement( // Only do this if the mouse is far enough away let player_stunned = game_core.player.stun_timer > 0.0; let mut player_real_movement = game_core.player.direction * speed_multiplier; + + // Handle the player wearing flippers + if game_core.player.inventory.flippers.is_some() { + player_real_movement *= game_core.player.inventory.flippers.as_ref().unwrap().speed_increase; + } + + // Handle movement and collisions if raw_movement_direction.distance_to(Vector2::zero()) > game_core.player.size.y / 2.0 && !game_core.player.is_stunned() { From 2d6d1f3629fcf498d1d147fb001ce6f01b528029 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 13:28:34 -0400 Subject: [PATCH 5/7] air bag impl --- src/items.rs | 8 ++++---- src/logic/ingame/playerlogic.rs | 2 +- src/player.rs | 5 +++++ 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/items.rs b/src/items.rs index d30dabc..f83afd1 100644 --- a/src/items.rs +++ b/src/items.rs @@ -67,7 +67,7 @@ impl ItemBase for StunGun { #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct AirBag { - extra_oxygen: u32, + pub extra_oxygen: f32, pub level: u8, cost: u32, } @@ -75,21 +75,21 @@ pub struct AirBag { impl AirBag { pub fn lvl1() -> Self { Self { - extra_oxygen: 15, + extra_oxygen: 0.15, level: 1, cost: 30, } } pub fn lvl2() -> Self { Self { - extra_oxygen: 30, + extra_oxygen: 0.30, level: 2, cost: 40, } } pub fn lvl3() -> Self { Self { - extra_oxygen: 45, + extra_oxygen: 0.45, level: 3, cost: 50, } diff --git a/src/logic/ingame/playerlogic.rs b/src/logic/ingame/playerlogic.rs index 9ff92ed..91e2cef 100644 --- a/src/logic/ingame/playerlogic.rs +++ b/src/logic/ingame/playerlogic.rs @@ -142,7 +142,7 @@ pub fn update_player_movement( // Update the player's breath game_core.player.breath_percent = - (game_core.player.breath_percent - BREATH_DECREASE_PER_SECOND * dt as f32).clamp(0.0, 1.0); + (game_core.player.breath_percent - BREATH_DECREASE_PER_SECOND * dt as f32).max(0.0); // Only do this if the mouse is far enough away let player_stunned = game_core.player.stun_timer > 0.0; diff --git a/src/player.rs b/src/player.rs index 48fcdbe..0a78a20 100644 --- a/src/player.rs +++ b/src/player.rs @@ -66,6 +66,11 @@ impl Player { self.position = position; self.breath_percent = 1.0; self.boost_percent = 1.0; + + // Handle an air bag being used + if self.inventory.air_bag.is_some() { + self.breath_percent += self.inventory.air_bag.as_ref().unwrap().extra_oxygen; + } } pub fn collides_with_rec(&self, rectangle: &Rectangle) -> bool { From 67d76dab08ef9d449a694009e1949ce83f51e57d Mon Sep 17 00:00:00 2001 From: rsninja722 Date: Sun, 25 Apr 2021 13:28:37 -0400 Subject: [PATCH 6/7] fish?? --- assets/img/map/{fishIdle.json => fishStill.json} | 0 assets/img/map/{fishIdle.png => fishStill.png} | Bin src/entities/fish.rs | 5 +++-- src/resources.rs | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) rename assets/img/map/{fishIdle.json => fishStill.json} (100%) rename assets/img/map/{fishIdle.png => fishStill.png} (100%) diff --git a/assets/img/map/fishIdle.json b/assets/img/map/fishStill.json similarity index 100% rename from assets/img/map/fishIdle.json rename to assets/img/map/fishStill.json diff --git a/assets/img/map/fishIdle.png b/assets/img/map/fishStill.png similarity index 100% rename from assets/img/map/fishIdle.png rename to assets/img/map/fishStill.png diff --git a/src/entities/fish.rs b/src/entities/fish.rs index 4cc266e..7c2aef4 100644 --- a/src/entities/fish.rs +++ b/src/entities/fish.rs @@ -159,13 +159,14 @@ impl FishEntity { pub fn render(&mut self, context_2d: &mut RaylibMode2D, resources: &mut GlobalResources) { // Direction let direction = - Vector2::zero().angle_to(self.direction.normalized()) + (90.0 as f32).to_radians(); + (Vector2::zero().angle_to(self.direction.normalized())).to_degrees(); self.animation_counter += 1; // swimming - if self.following_player { + if !self.following_player { if self.animation_counter % 3 == 0 { + self.current_frame += 1; if self.current_frame == 8 { self.current_frame = 0; } diff --git a/src/resources.rs b/src/resources.rs index 3e7b27a..58fb995 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -83,11 +83,11 @@ impl GlobalResources { fish_animation_idle: FrameAnimationWrapper::new( raylib.load_texture_from_image( &thread, - &Image::load_image("./assets/img/map/fishIdle.png")?, + &Image::load_image("./assets/img/map/fishStill.png")?, )?, Vector2 { x: 13.0, y: 9.0 }, 14, - 4, + 30, ), fish_animation_swim: FrameAnimationWrapper::new( raylib.load_texture_from_image( From 50baf53b9e61d073971533bdfae45dcdd04be50b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 13:33:10 -0400 Subject: [PATCH 7/7] fix fish direction --- src/entities/fish.rs | 36 ++++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/src/entities/fish.rs b/src/entities/fish.rs index 7c2aef4..6cae1ab 100644 --- a/src/entities/fish.rs +++ b/src/entities/fish.rs @@ -1,7 +1,13 @@ use rand::{prelude::ThreadRng, Rng}; use raylib::prelude::*; -use crate::{gamecore::{self, GameCore}, lib::utils::triangles::rotate_vector, player::Player, resources::GlobalResources, world::World}; +use crate::{ + gamecore::{self, GameCore}, + lib::utils::triangles::rotate_vector, + player::Player, + resources::GlobalResources, + world::World, +}; const FISH_FOLLOW_PLAYER_DISTANCE: f32 = 30.0; const FISH_FOLLOW_PLAYER_SPEED: f32 = 1.8; @@ -35,7 +41,10 @@ impl FishEntity { let mut rng = rand::thread_rng(); Self { position: position, - direction: Vector2::zero(), + direction: Vector2 { + x: rng.gen_range(0.0..1.0), + y: rng.gen_range(0.0..1.0), + }, velocity: Vector2::zero(), following_player: false, animation_counter: 0, @@ -156,25 +165,30 @@ impl FishEntity { } } - pub fn render(&mut self, context_2d: &mut RaylibMode2D, resources: &mut GlobalResources) { + pub fn render( + &mut self, + context_2d: &mut RaylibMode2D, + resources: &mut GlobalResources, + ) { // Direction - let direction = - (Vector2::zero().angle_to(self.direction.normalized())).to_degrees(); + let direction = (Vector2::zero().angle_to(self.direction.normalized())).to_degrees(); self.animation_counter += 1; // swimming - if !self.following_player { + if self.following_player { if self.animation_counter % 3 == 0 { self.current_frame += 1; if self.current_frame == 8 { self.current_frame = 0; } } - resources.fish_animation_swim.draw_frame(context_2d, + resources.fish_animation_swim.draw_frame( + context_2d, self.position, direction, - (self.current_frame + self.color * 9) as u32); + (self.current_frame + self.color * 9) as u32, + ); // idle } else { if self.animation_counter % 10 == 0 { @@ -184,10 +198,12 @@ impl FishEntity { self.current_frame = 0; } } - resources.fish_animation_idle.draw_frame(context_2d, + resources.fish_animation_idle.draw_frame( + context_2d, self.position, direction, - (self.current_frame + self.color * 2) as u32); + (self.current_frame + self.color * 2) as u32, + ); } } }