properly handle currency

This commit is contained in:
Evan Pratten 2021-04-24 13:19:34 -04:00
parent e739553cbc
commit 0f243e6917
3 changed files with 19 additions and 4 deletions

View File

@ -12,7 +12,7 @@ const FISH_ATTACH_RADIUS: f32 = 20.0;
pub struct FishEntity { pub struct FishEntity {
position: Vector2, position: Vector2,
direction: Vector2, direction: Vector2,
following_player: bool, pub following_player: bool,
size: Vector2, size: Vector2,
rng: ThreadRng rng: ThreadRng
} }
@ -66,7 +66,7 @@ impl FishEntity {
self.position += movement; self.position += movement;
} }
pub fn handle_free_movement(&mut self, player: &Player, dt: f64) { pub fn handle_free_movement(&mut self, player: &mut Player, dt: f64) {
// Distance and direction to player // Distance and direction to player
let dist_to_player = player.position - self.position; let dist_to_player = player.position - self.position;
let dist_to_player_lin = self.position.distance_to(player.position); let dist_to_player_lin = self.position.distance_to(player.position);
@ -76,6 +76,9 @@ impl FishEntity {
// Handle player picking up fish // Handle player picking up fish
if player.position.distance_to(self.position).abs() <= player.size.y * 2.2 { if player.position.distance_to(self.position).abs() <= player.size.y * 2.2 {
self.following_player = true; self.following_player = true;
// Add currency to the player
player.coins += 1;
} }
// Look at the player; // Look at the player;
@ -83,7 +86,7 @@ impl FishEntity {
self.direction = direction_to_player; self.direction = direction_to_player;
} }
pub fn update_position(&mut self, player: &Player, dt: f64) { pub fn update_position(&mut self, player: &mut Player, dt: f64) {
if self.following_player { if self.following_player {
self.handle_follow_player(player, dt); self.handle_follow_player(player, dt);
} else { } else {

View File

@ -76,7 +76,7 @@ impl Screen for InGameScreen {
// Render entities // Render entities
let mut fish = &mut game_core.world.fish; let mut fish = &mut game_core.world.fish;
for fish in fish.iter_mut() { for fish in fish.iter_mut() {
fish.update_position(&game_core.player, dt); fish.update_position(&mut game_core.player, dt);
fish.render(&mut context_2d); fish.render(&mut context_2d);
} }

View File

@ -32,4 +32,16 @@ impl World {
Ok(result) Ok(result)
} }
pub fn spend_coins(&mut self, count: usize) {
for _ in 0..count {
self.fish.pop();
}
}
pub fn reset(&mut self) {
for fish in self.fish.iter_mut() {
fish.following_player = false;
}
}
} }