diff options
Diffstat (limited to 'src/shared/tower.rs')
-rw-r--r-- | src/shared/tower.rs | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/shared/tower.rs b/src/shared/tower.rs new file mode 100644 index 0000000..5b62b7a --- /dev/null +++ b/src/shared/tower.rs @@ -0,0 +1,65 @@ +use crate::shared::activation::*; +use crate::shared::buffs::*; +use crate::shared::immovable::*; +use crate::shared::player::*; +use crate::shared::shape::*; +use crate::shared::stats::*; +use crate::shared::*; + +#[derive(Bundle)] +pub struct TowerBundle { + id: PlayerId, + position: PlayerPosition, + color: PlayerColor, + imperative: Imperative, + cooldown: Cooldown, + health: Health, + champion: Champion, + effective_stats: EffectiveStats, + buffs: Buffs, + activation: Activation, + shape: Shape, + tower: Tower, + immovable: Immovable, + replicate: Replicate, +} + +impl TowerBundle { + pub fn new(id: ClientId, position: Vec2, color: Color) -> Self { + let mut replicate = Replicate { + replication_group: ReplicationGroup::default().set_priority(10.), + ..Default::default() + }; + replicate.enable_replicate_once::<PlayerId>(); + replicate.enable_replicate_once::<PlayerColor>(); + replicate.target::<Champion>(NetworkTarget::Single(id)); + replicate.target::<Cooldown>(NetworkTarget::Single(id)); + replicate.target::<EffectiveStats>(NetworkTarget::Single(id)); + let champion = Champion::Tower; + let effective_stats = EffectiveStats(champion.base_stats().0); + TowerBundle { + id: PlayerId(id), + position: PlayerPosition(position), + color: PlayerColor(color), + imperative: Imperative::Idle, + cooldown: Cooldown::default(), + health: Health { + health: effective_stats.0.max_health, + shield: 0., + }, + champion, + effective_stats, + buffs: Buffs::default(), + activation: Activation::default(), + shape: Shape::tower(), + tower: Tower::default(), + immovable: Immovable, + replicate, + } + } +} + +#[derive(Component, Default)] +pub struct Tower { + pub last_target_player_id: Option<PlayerId>, +} |