Skip to content

Commit 27675b8

Browse files
committed
Replace new assets
1 parent 5621f64 commit 27675b8

12 files changed

+214
-154
lines changed

README.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,22 @@ cargo make run
2020
## Spritesheet
2121
bomb_party_v4.png
2222

23-
Made by [usr_share](https://opengameart.org/users/usrshare) at
23+
Made by
24+
most: [usr_share](https://opengameart.org/users/usrshare) at
2425
https://opengameart.org/content/bomb-party-the-complete-set
2526

26-
License: [CC 3.0](https://creativecommons.org/licenses/by/3.0/)
27+
door: [awesomeduck](https://opengameart.org/users/awesomeduck) at
28+
https://opengameart.org/content/wall-door-tileset
29+
30+
speed icon: [antum_deluge](https://opengameart.org/users/antumdeluge) at
31+
https://opengameart.org/content/cc0-footgear-icons
32+
33+
power icon: [victordelima](https://opengameart.org/users/victordelima) at
34+
https://opengameart.org/content/16-bit-rpg-potion-pack
35+
36+
bomb icon: [sprite_attack](https://opengameart.org/users/spriteattack) at
37+
https://opengameart.org/content/emotional-explosives
38+
39+
License:
40+
[CC 3.0](https://creativecommons.org/licenses/by/3.0/)
41+
[CC 1.0](https://creativecommons.org/publicdomain/zero/1.0/)

assets/bomb_icon.png

6.31 KB
Loading

assets/door.png

743 Bytes
Loading

assets/power_icon.png

230 Bytes
Loading

assets/speed_icon.png

401 Bytes
Loading

src/assets.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub struct BombTextureAtlas(pub Handle<TextureAtlas>);
1111
pub struct FireTextureAtlas(pub Handle<TextureAtlas>);
1212
pub struct FloorOrWallTextureAtlas(pub Handle<TextureAtlas>);
1313
pub struct CreatureTextureAtlas(pub Handle<TextureAtlas>);
14+
pub struct PortalTextureAtlas(pub Handle<TextureAtlas>);
1415
pub struct PowerBuffMaterial(pub Handle<ColorMaterial>);
1516

1617
pub struct SpeedBuffMaterial(pub Handle<ColorMaterial>);

src/bomb.rs

+16-9
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@ use bevy::prelude::*;
22

33
use crate::{
44
assets::{
5-
BombNumberBuffMaterial, BombTextureAtlas, FireTextureAtlas, PowerBuffMaterial,
6-
SpeedBuffMaterial,
5+
BombNumberBuffMaterial, BombTextureAtlas, FireTextureAtlas, PortalTextureAtlas,
6+
PowerBuffMaterial, SpeedBuffMaterial,
77
},
88
components::{
99
Animation, Bomb, BombNumber, BombPower, Buff, Destructable, Ember, Fire, InGame, Player,
10-
PlayerPosition, Wall, FIRE_ANIMATE_TIME,
10+
PlayerPosition, Portal, Stop, Wall, FIRE_ANIMATE_TIME,
1111
},
1212
constants::OBJECT_LAYER,
1313
creatures::Creature,
1414
events::{GameOverEvent, GameOverType, RecoveryBombNumberEvent},
15-
portal::Portal,
1615
state::RunState,
1716
utils::{aabb_detection, vecs_xy_intersect, SCALE, TILE_WIDTH},
1817
};
@@ -43,7 +42,10 @@ fn space_to_set_bomb(
4342
runstate: Res<RunState>,
4443
keyboard_input: Res<Input<KeyCode>>,
4544
bomb_position: Query<&Transform, With<Bomb>>,
46-
mut player_query: Query<(&PlayerPosition, &BombPower, &mut BombNumber), With<Player>>,
45+
mut player_query: Query<
46+
(&PlayerPosition, &BombPower, &mut BombNumber),
47+
(With<Player>, Without<Stop>),
48+
>,
4749
) {
4850
if keyboard_input.just_pressed(KeyCode::Space) {
4951
if let Some(entity) = runstate.player {
@@ -384,6 +386,7 @@ fn bomb_destruction(
384386
fire_query: Query<&Transform, With<Fire>>,
385387
power_buff_material: Res<PowerBuffMaterial>,
386388
speed_buff_material: Res<SpeedBuffMaterial>,
389+
portal_texture_atlas: Res<PortalTextureAtlas>,
387390
bomb_number_buff_material: Res<BombNumberBuffMaterial>,
388391
) {
389392
for (entity, transform, destructable) in destructable_wall_query.iter() {
@@ -439,11 +442,15 @@ fn bomb_destruction(
439442
}
440443
Destructable::Portal => {
441444
commands.despawn(entity);
445+
442446
commands
443-
.spawn(SpriteBundle {
444-
material: power_buff_material.0.clone(),
445-
sprite: Sprite::new(Vec2::new(TILE_WIDTH as f32, TILE_WIDTH as f32)),
446-
transform: Transform::from_translation(position),
447+
.spawn(SpriteSheetBundle {
448+
texture_atlas: portal_texture_atlas.0.clone(),
449+
transform: Transform {
450+
translation: position,
451+
scale: Vec3::splat(SCALE),
452+
..Default::default()
453+
},
447454
..Default::default()
448455
})
449456
.with(Portal)

src/components.rs

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ pub enum Destructable {
3030
}
3131
pub struct MaxAndCurrent(i32, i32);
3232
pub struct Player;
33+
pub struct Portal;
34+
pub struct Stop;
3335
pub struct Velocity {
3436
pub max: f32,
3537
pub current: f32,

src/creatures.rs

+126-99
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,126 @@
1-
use crate::{
2-
components::{Direction, Player, PlayerPosition, Velocity, Wall},
3-
constants::PLAYER_LAYER,
4-
events::*,
5-
player::move_or_turn,
6-
utils::vecs_xy_intersect,
7-
};
8-
use bevy::prelude::*;
9-
use bevy::{
10-
ecs::{Query, ResMut, SystemStage, With},
11-
sprite::ColorMaterial,
12-
};
13-
use rand::{seq::SliceRandom, thread_rng};
14-
15-
#[derive(Bundle)]
16-
pub struct CreatureBundle {
17-
creature: Creature,
18-
direction: Direction,
19-
velocity: Velocity,
20-
}
21-
22-
impl Default for CreatureBundle {
23-
fn default() -> Self {
24-
Self {
25-
creature: Creature,
26-
direction: Direction::Right,
27-
velocity: Velocity {
28-
current: 0.0,
29-
max: 1.0,
30-
},
31-
}
32-
}
33-
}
34-
35-
pub struct CreatureMaterial(pub Handle<ColorMaterial>);
36-
37-
pub struct Creature;
38-
39-
// could be done with a crate
40-
const DIRECTIONS: [Direction; 4] = [
41-
Direction::Up,
42-
Direction::Down,
43-
Direction::Left,
44-
Direction::Right,
45-
];
46-
47-
fn creature_movement(
48-
mut query: Query<(&Velocity, &mut Direction, &mut Transform), With<Creature>>,
49-
wall_pos_query: Query<&Transform, With<Wall>>,
50-
) {
51-
let turn_probability = 0.02;
52-
for (_, mut direction, mut creature_position) in query.iter_mut() {
53-
let mut rng = thread_rng();
54-
55-
match move_or_turn(
56-
&creature_position.translation.truncate(),
57-
&direction,
58-
&wall_pos_query,
59-
) {
60-
Some(new_position) => {
61-
if rand::random::<f32>() < turn_probability {
62-
// only change ocassionally
63-
*direction = *DIRECTIONS.choose(&mut rng).unwrap()
64-
}
65-
creature_position.translation = new_position.extend(PLAYER_LAYER);
66-
}
67-
None => {
68-
// always change. Yes, need to filter out current position
69-
*direction = *DIRECTIONS.choose(&mut rng).unwrap();
70-
}
71-
}
72-
}
73-
}
74-
75-
pub trait CreatureSystems {
76-
fn creature_systems(&mut self) -> &mut Self;
77-
}
78-
impl CreatureSystems for SystemStage {
79-
fn creature_systems(&mut self) -> &mut Self {
80-
self.add_system(creature_player_collision.system())
81-
.add_system(creature_movement.system())
82-
}
83-
}
84-
85-
fn creature_player_collision(
86-
mut player_query: Query<&mut PlayerPosition, With<Player>>,
87-
mut creature_query: Query<&mut Transform, With<Creature>>,
88-
mut game_over_events: ResMut<Events<GameOverEvent>>,
89-
) {
90-
for player in player_query.iter_mut() {
91-
let player_pos = &player.truncate();
92-
for creature_transform in creature_query.iter_mut() {
93-
if vecs_xy_intersect(&creature_transform.translation.truncate(), player_pos) {
94-
game_over_events.send(GameOverEvent(GameOverType::Defeat));
95-
// TODO: stop the game (stop movement system?)
96-
}
97-
}
98-
}
99-
}
1+
use crate::{
2+
components::{Direction, Player, PlayerPosition, Stop, Velocity, Wall},
3+
constants::PLAYER_LAYER,
4+
events::*,
5+
player::move_or_turn,
6+
ui::DrawBlinkTimer,
7+
utils::vecs_xy_intersect,
8+
};
9+
use bevy::prelude::*;
10+
use bevy::{
11+
ecs::{Query, ResMut, SystemStage, With},
12+
sprite::ColorMaterial,
13+
};
14+
use rand::{seq::SliceRandom, thread_rng};
15+
16+
#[derive(Bundle)]
17+
pub struct CreatureBundle {
18+
creature: Creature,
19+
direction: Direction,
20+
velocity: Velocity,
21+
}
22+
23+
impl Default for CreatureBundle {
24+
fn default() -> Self {
25+
Self {
26+
creature: Creature,
27+
direction: Direction::Right,
28+
velocity: Velocity {
29+
current: 0.0,
30+
max: 1.0,
31+
},
32+
}
33+
}
34+
}
35+
36+
pub struct CreatureMaterial(pub Handle<ColorMaterial>);
37+
38+
pub struct Creature;
39+
40+
// could be done with a crate
41+
const DIRECTIONS: [Direction; 4] = [
42+
Direction::Up,
43+
Direction::Down,
44+
Direction::Left,
45+
Direction::Right,
46+
];
47+
48+
fn creature_movement(
49+
mut query: Query<(&Velocity, &mut Direction, &mut Transform), With<Creature>>,
50+
wall_pos_query: Query<&Transform, With<Wall>>,
51+
) {
52+
let turn_probability = 0.02;
53+
for (_, mut direction, mut creature_position) in query.iter_mut() {
54+
let mut rng = thread_rng();
55+
56+
match move_or_turn(
57+
&creature_position.translation.truncate(),
58+
&direction,
59+
&wall_pos_query,
60+
) {
61+
Some(new_position) => {
62+
if rand::random::<f32>() < turn_probability {
63+
// only change ocassionally
64+
*direction = *DIRECTIONS.choose(&mut rng).unwrap()
65+
}
66+
creature_position.translation = new_position.extend(PLAYER_LAYER);
67+
}
68+
None => {
69+
// always change. Yes, need to filter out current position
70+
*direction = *DIRECTIONS.choose(&mut rng).unwrap();
71+
}
72+
}
73+
}
74+
}
75+
76+
pub trait CreatureSystems {
77+
fn creature_systems(&mut self) -> &mut Self;
78+
}
79+
impl CreatureSystems for SystemStage {
80+
fn creature_systems(&mut self) -> &mut Self {
81+
self.add_system(creature_player_collision.system())
82+
.add_system(creature_movement.system())
83+
.add_system(despawn_player.system())
84+
}
85+
}
86+
87+
fn creature_player_collision(
88+
commands: &mut Commands,
89+
mut player_query: Query<(Entity, &mut PlayerPosition), With<Player>>,
90+
mut creature_query: Query<&mut Transform, With<Creature>>,
91+
mut game_over_events: ResMut<Events<GameOverEvent>>,
92+
) {
93+
for (entity, player) in player_query.iter_mut() {
94+
let player_pos = &player.truncate();
95+
for creature_transform in creature_query.iter_mut() {
96+
if vecs_xy_intersect(&creature_transform.translation.truncate(), player_pos) {
97+
commands.insert(entity, StopAndFlashing::default());
98+
game_over_events.send(GameOverEvent(GameOverType::Defeat));
99+
// TODO: stop the game (stop movement system?)
100+
}
101+
}
102+
}
103+
}
104+
105+
#[derive(Bundle)]
106+
struct StopAndFlashing(Stop, DrawBlinkTimer, Timer);
107+
impl Default for StopAndFlashing {
108+
fn default() -> Self {
109+
Self(
110+
Stop,
111+
DrawBlinkTimer(Timer::from_seconds(0.2, true)),//TODO:Slow here
112+
Timer::from_seconds(3.0, false),
113+
)
114+
}
115+
}
116+
fn despawn_player(
117+
commands: &mut Commands,
118+
time: Res<Time>,
119+
mut query: Query<(Entity, &mut Timer), (With<Stop>, With<DrawBlinkTimer>)>,
120+
) {
121+
for (entity, mut timer) in query.iter_mut() {
122+
if timer.tick(time.delta_seconds()).just_finished() {
123+
commands.despawn_recursive(entity);
124+
}
125+
}
126+
}

src/main.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ fn setup(
7777
let creature_texture_handle = asset_server.load("creature.png");
7878
let creature_texture_atlas =
7979
TextureAtlas::from_grid(creature_texture_handle, Vec2::new(16.0, 16.0), 14, 1);
80+
let portal_texture_handle = asset_server.load("door.png");
81+
let portal_texture_atlas =
82+
TextureAtlas::from_grid(portal_texture_handle, Vec2::new(16.0, 16.0), 2, 1);
8083

8184
commands
8285
// cameras
@@ -97,20 +100,23 @@ fn setup(
97100
))
98101
.insert_resource(BombTextureAtlas(texture_atlases.add(bomb_texture_atlas)))
99102
.insert_resource(FireTextureAtlas(texture_atlases.add(fire_texture_atlas)))
103+
.insert_resource(PortalTextureAtlas(
104+
texture_atlases.add(portal_texture_atlas),
105+
))
100106
.insert_resource(FloorOrWallTextureAtlas(
101107
texture_atlases.add(floor_or_wall_texture_atlas),
102108
))
103109
.insert_resource(CreatureTextureAtlas(
104110
texture_atlases.add(creature_texture_atlas),
105111
))
106112
.insert_resource(PowerBuffMaterial(
107-
materials.add(Color::rgb(1.0, 0.0, 1.0).into()),
113+
materials.add(asset_server.load("power_icon.png").into()),
108114
))
109115
.insert_resource(SpeedBuffMaterial(
110-
materials.add(Color::rgb(0.0, 1.0, 1.0).into()),
116+
materials.add(asset_server.load("speed_icon.png").into()),
111117
))
112118
.insert_resource(BombNumberBuffMaterial(
113-
materials.add(Color::rgb(1.0, 1.0, 0.0).into()),
119+
materials.add(asset_server.load("bomb_icon.png").into()),
114120
))
115121
.insert_resource(LifeMaterial(
116122
materials.add(Color::rgb(1.0, 0.0, 0.0).into()),

0 commit comments

Comments
 (0)