use bevy::prelude::*;
use bevy_rapier2d::prelude::*;
use game_library::{
colors,
data_loader::storage::GameData,
enums::StatEnum,
progress_bar::{BarState, ProgressBarConfig},
Health, Layer, Mana, MovementBundle, SpellChoices, StatBundle, Xp,
};
use super::{
bundle::{player_base_stats, PlayerBundle, BASE_HEALTH, BASE_MANA},
Player,
};
#[derive(Component, Debug, Reflect)]
pub struct PlayerAvatar;
pub fn spawn_player_avatar(
mut commands: Commands,
mut spell_choices: ResMut<SpellChoices>,
game_data: Res<GameData>,
existing_players: Query<&PlayerAvatar>,
) {
if existing_players.iter().count() > 0 {
return;
}
for spell_id in game_data.spells.iter_ids() {
if spell_id.contains("time_dart") {
spell_choices.set_primary_by_id(spell_id.clone());
}
if spell_id.contains("spark") {
spell_choices.set_secondary_by_id(spell_id.clone());
}
}
let Some(tileset) = game_data.tile_atlas.get("wizard") else {
error!("Failed to load wizard tileset");
return;
};
commands.spawn((
PlayerBundle {
movement: MovementBundle::default(),
sprite: SpriteSheetBundle {
texture_atlas: tileset.clone(),
sprite: TextureAtlasSprite {
index: 3,
..default()
},
transform: Transform {
translation: Vec3::new(0.0, 0.0, 150.0),
scale: Vec3::splat(0.85),
..Default::default()
},
..Default::default()
},
health: Health::new(BASE_HEALTH),
mana: Mana::new(BASE_MANA),
stats: StatBundle::new(
StatEnum::variants()
.iter()
.filter(|stat| *stat != &StatEnum::Health && *stat != &StatEnum::Mana)
.map(|stat| (stat.clone(), player_base_stats(stat)))
.collect(),
),
xp: Xp::default(),
player: Player,
kinematic_controller: KinematicCharacterController::default(),
collider: Collider::capsule_y(6.0, 4.0),
rigid_body: RigidBody::KinematicVelocityBased,
layer: Layer::Foreground(i16::MAX),
},
ProgressBarConfig::<Xp>::default()
.with_background_color(colors::BACKGROUND_COLOR_50)
.with_single_color(colors::SKILL_TRACK_BAR_COLOR)
.with_size((10.0, 2.0).into())
.with_position_translation(Vec3::new(-5.0, 26.0, 0.0)),
ProgressBarConfig::<Health>::default()
.with_background_color(colors::BACKGROUND_COLOR_50)
.with_color(&BarState::Ok, colors::HEALTH_BAR_COLOR_OK)
.with_color(&BarState::Moderate, colors::HEALTH_BAR_COLOR_MODERATE)
.with_color(&BarState::Critical, colors::HEALTH_BAR_COLOR_CRITICAL)
.with_size((10.0, 2.0).into())
.with_position_translation(Vec3::new(-5.0, 24.0, 0.0)),
ProgressBarConfig::<Mana>::default()
.with_background_color(colors::BACKGROUND_COLOR_50)
.with_single_color(colors::MANA_BAR_COLOR)
.with_size((10.0, 2.0).into())
.with_position_translation(Vec3::new(-5.0, 22.0, 0.0)),
PlayerAvatar,
));
}