2020-11-09 04:04:51 +00:00
|
|
|
use crate::{
|
2021-01-29 00:04:44 +00:00
|
|
|
combat::{
|
2021-02-02 18:02:40 +00:00
|
|
|
Attack, AttackDamage, AttackEffect, CombatBuff, CombatEffect, CombatRequirement, Damage,
|
2021-05-06 18:50:16 +00:00
|
|
|
DamageKind, DamageSource, GroupTarget, Knockback, KnockbackDir,
|
2021-01-29 00:04:44 +00:00
|
|
|
},
|
2021-02-16 05:18:05 +00:00
|
|
|
comp::item::Reagent,
|
2020-12-13 17:11:55 +00:00
|
|
|
uid::Uid,
|
2021-01-29 00:04:44 +00:00
|
|
|
Explosion, RadiusEffect,
|
2020-11-09 04:04:51 +00:00
|
|
|
};
|
2020-07-06 14:23:08 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-01-07 20:25:12 +00:00
|
|
|
use specs::Component;
|
2020-07-06 05:56:02 +00:00
|
|
|
use specs_idvs::IdvStorage;
|
2019-10-06 17:30:06 +00:00
|
|
|
use std::time::Duration;
|
2019-09-17 12:43:19 +00:00
|
|
|
|
2021-01-29 00:04:44 +00:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2019-09-17 12:43:19 +00:00
|
|
|
pub enum Effect {
|
2021-01-29 00:04:44 +00:00
|
|
|
Attack(Attack),
|
2020-10-06 02:19:41 +00:00
|
|
|
Explode(Explosion),
|
2019-09-17 12:43:19 +00:00
|
|
|
Vanish,
|
2019-09-28 19:35:28 +00:00
|
|
|
Stick,
|
2019-10-11 23:30:05 +00:00
|
|
|
Possess,
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 00:04:44 +00:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2019-09-17 12:43:19 +00:00
|
|
|
pub struct Projectile {
|
2019-11-04 00:57:36 +00:00
|
|
|
// TODO: use SmallVec for these effects
|
2020-04-26 15:16:35 +00:00
|
|
|
pub hit_solid: Vec<Effect>,
|
2019-09-17 12:43:19 +00:00
|
|
|
pub hit_entity: Vec<Effect>,
|
2019-10-06 17:30:06 +00:00
|
|
|
/// Time left until the projectile will despawn
|
|
|
|
pub time_left: Duration,
|
2020-03-16 11:32:57 +00:00
|
|
|
pub owner: Option<Uid>,
|
2020-09-19 08:47:40 +00:00
|
|
|
/// Whether projectile collides with entities in the same group as its
|
|
|
|
/// owner
|
|
|
|
pub ignore_group: bool,
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Component for Projectile {
|
2021-01-07 20:25:12 +00:00
|
|
|
type Storage = IdvStorage<Self>;
|
2019-09-17 12:43:19 +00:00
|
|
|
}
|
2020-11-09 04:04:51 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub enum ProjectileConstructor {
|
|
|
|
Arrow {
|
|
|
|
damage: f32,
|
|
|
|
knockback: f32,
|
2021-02-05 01:39:12 +00:00
|
|
|
energy_regen: f32,
|
2020-11-09 04:04:51 +00:00
|
|
|
},
|
|
|
|
Fireball {
|
|
|
|
damage: f32,
|
|
|
|
radius: f32,
|
2021-02-05 01:39:12 +00:00
|
|
|
energy_regen: f32,
|
2020-11-09 04:04:51 +00:00
|
|
|
},
|
2021-02-16 05:18:05 +00:00
|
|
|
Frostball {
|
|
|
|
damage: f32,
|
|
|
|
radius: f32,
|
|
|
|
},
|
2021-05-09 18:28:01 +00:00
|
|
|
NecroticSphere {
|
|
|
|
damage: f32,
|
|
|
|
radius: f32,
|
|
|
|
},
|
2020-11-09 04:04:51 +00:00
|
|
|
Possess,
|
2021-05-04 23:02:18 +00:00
|
|
|
ClayRocket {
|
|
|
|
damage: f32,
|
|
|
|
radius: f32,
|
|
|
|
knockback: f32,
|
|
|
|
},
|
2020-11-09 04:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ProjectileConstructor {
|
2021-03-09 03:53:58 +00:00
|
|
|
pub fn create_projectile(
|
|
|
|
self,
|
|
|
|
owner: Option<Uid>,
|
|
|
|
crit_chance: f32,
|
|
|
|
crit_mult: f32,
|
|
|
|
) -> Projectile {
|
2020-11-09 04:04:51 +00:00
|
|
|
use ProjectileConstructor::*;
|
|
|
|
match self {
|
|
|
|
Arrow {
|
|
|
|
damage,
|
|
|
|
knockback,
|
|
|
|
energy_regen,
|
|
|
|
} => {
|
2021-02-02 18:02:40 +00:00
|
|
|
let knockback = AttackEffect::new(
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
CombatEffect::Knockback(Knockback {
|
|
|
|
strength: knockback,
|
|
|
|
direction: KnockbackDir::Away,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
|
|
|
let energy = AttackEffect::new(None, CombatEffect::EnergyReward(energy_regen))
|
2021-01-31 17:33:22 +00:00
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
2021-02-02 18:02:40 +00:00
|
|
|
let buff = CombatEffect::Buff(CombatBuff::default_physical());
|
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Projectile,
|
2021-05-06 18:50:16 +00:00
|
|
|
kind: DamageKind::Piercing,
|
2021-02-02 18:02:40 +00:00
|
|
|
value: damage,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
)
|
|
|
|
.with_effect(buff);
|
2021-01-29 00:04:44 +00:00
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
2021-03-09 03:53:58 +00:00
|
|
|
.with_crit(crit_chance, crit_mult)
|
2021-01-31 17:33:22 +00:00
|
|
|
.with_effect(energy)
|
2021-03-06 21:29:00 +00:00
|
|
|
.with_effect(knockback)
|
|
|
|
.with_combo_increment();
|
2021-01-29 00:04:44 +00:00
|
|
|
|
2020-11-09 04:04:51 +00:00
|
|
|
Projectile {
|
|
|
|
hit_solid: vec![Effect::Stick],
|
2021-01-29 00:04:44 +00:00
|
|
|
hit_entity: vec![Effect::Attack(attack), Effect::Vanish],
|
2020-11-09 04:04:51 +00:00
|
|
|
time_left: Duration::from_secs(15),
|
|
|
|
owner,
|
|
|
|
ignore_group: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Fireball {
|
|
|
|
damage,
|
|
|
|
radius,
|
|
|
|
energy_regen,
|
2021-01-30 22:35:00 +00:00
|
|
|
} => {
|
2021-02-02 18:02:40 +00:00
|
|
|
let energy = AttackEffect::new(None, CombatEffect::EnergyReward(energy_regen))
|
2021-01-31 17:33:22 +00:00
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
2021-02-02 18:02:40 +00:00
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Explosion,
|
2021-05-06 18:50:16 +00:00
|
|
|
kind: DamageKind::Energy,
|
2021-02-02 18:02:40 +00:00
|
|
|
value: damage,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
);
|
2021-03-09 03:53:58 +00:00
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
|
|
|
.with_crit(crit_chance, crit_mult)
|
2021-03-06 21:29:00 +00:00
|
|
|
.with_effect(energy)
|
|
|
|
.with_combo_increment();
|
2021-01-30 22:35:00 +00:00
|
|
|
let explosion = Explosion {
|
|
|
|
effects: vec![
|
|
|
|
RadiusEffect::Attack(attack),
|
|
|
|
RadiusEffect::TerrainDestruction(2.0),
|
|
|
|
],
|
|
|
|
radius,
|
2021-02-16 05:18:05 +00:00
|
|
|
reagent: Some(Reagent::Red),
|
|
|
|
};
|
|
|
|
Projectile {
|
|
|
|
hit_solid: vec![Effect::Explode(explosion.clone()), Effect::Vanish],
|
|
|
|
hit_entity: vec![Effect::Explode(explosion), Effect::Vanish],
|
|
|
|
time_left: Duration::from_secs(10),
|
|
|
|
owner,
|
|
|
|
ignore_group: true,
|
|
|
|
}
|
|
|
|
},
|
2021-02-20 20:38:27 +00:00
|
|
|
Frostball { damage, radius } => {
|
2021-02-16 05:18:05 +00:00
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Explosion,
|
2021-05-06 18:50:16 +00:00
|
|
|
kind: DamageKind::Energy,
|
2021-02-16 05:18:05 +00:00
|
|
|
value: damage,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
);
|
2021-03-09 03:53:58 +00:00
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
2021-03-06 21:29:00 +00:00
|
|
|
.with_crit(crit_chance, crit_mult)
|
|
|
|
.with_combo_increment();
|
2021-02-16 05:18:05 +00:00
|
|
|
let explosion = Explosion {
|
2021-02-20 20:38:27 +00:00
|
|
|
effects: vec![RadiusEffect::Attack(attack)],
|
2021-02-16 05:18:05 +00:00
|
|
|
radius,
|
|
|
|
reagent: Some(Reagent::Blue),
|
2021-01-30 22:35:00 +00:00
|
|
|
};
|
|
|
|
Projectile {
|
|
|
|
hit_solid: vec![Effect::Explode(explosion.clone()), Effect::Vanish],
|
|
|
|
hit_entity: vec![Effect::Explode(explosion), Effect::Vanish],
|
|
|
|
time_left: Duration::from_secs(10),
|
|
|
|
owner,
|
|
|
|
ignore_group: true,
|
|
|
|
}
|
2020-12-24 17:54:00 +00:00
|
|
|
},
|
2021-05-09 18:28:01 +00:00
|
|
|
NecroticSphere { damage, radius } => {
|
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Explosion,
|
|
|
|
kind: DamageKind::Energy,
|
|
|
|
value: damage,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
);
|
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
|
|
|
.with_crit(crit_chance, crit_mult)
|
|
|
|
.with_combo_increment();
|
|
|
|
let explosion = Explosion {
|
|
|
|
effects: vec![RadiusEffect::Attack(attack)],
|
|
|
|
radius,
|
|
|
|
reagent: Some(Reagent::Purple),
|
|
|
|
};
|
|
|
|
Projectile {
|
|
|
|
hit_solid: vec![Effect::Explode(explosion.clone()), Effect::Vanish],
|
|
|
|
hit_entity: vec![Effect::Explode(explosion), Effect::Vanish],
|
|
|
|
time_left: Duration::from_secs(10),
|
|
|
|
owner,
|
|
|
|
ignore_group: true,
|
|
|
|
}
|
|
|
|
},
|
2020-11-09 04:04:51 +00:00
|
|
|
Possess => Projectile {
|
|
|
|
hit_solid: vec![Effect::Stick],
|
|
|
|
hit_entity: vec![Effect::Stick, Effect::Possess],
|
|
|
|
time_left: Duration::from_secs(10),
|
|
|
|
owner,
|
|
|
|
ignore_group: false,
|
|
|
|
},
|
2021-05-04 23:02:18 +00:00
|
|
|
ClayRocket {
|
|
|
|
damage,
|
|
|
|
radius,
|
|
|
|
knockback,
|
|
|
|
} => {
|
|
|
|
let knockback = AttackEffect::new(
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
CombatEffect::Knockback(Knockback {
|
|
|
|
strength: knockback,
|
|
|
|
direction: KnockbackDir::Away,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.with_requirement(CombatRequirement::AnyDamage);
|
|
|
|
let damage = AttackDamage::new(
|
|
|
|
Damage {
|
|
|
|
source: DamageSource::Explosion,
|
2021-05-06 23:45:48 +00:00
|
|
|
kind: DamageKind::Energy,
|
2021-05-04 23:02:18 +00:00
|
|
|
value: damage,
|
|
|
|
},
|
|
|
|
Some(GroupTarget::OutOfGroup),
|
|
|
|
);
|
|
|
|
let attack = Attack::default()
|
|
|
|
.with_damage(damage)
|
|
|
|
.with_crit(crit_chance, crit_mult)
|
|
|
|
.with_effect(knockback);
|
|
|
|
let explosion = Explosion {
|
|
|
|
effects: vec![
|
|
|
|
RadiusEffect::Attack(attack),
|
|
|
|
RadiusEffect::TerrainDestruction(5.0),
|
|
|
|
],
|
|
|
|
radius,
|
|
|
|
reagent: Some(Reagent::Red),
|
|
|
|
};
|
|
|
|
Projectile {
|
|
|
|
hit_solid: vec![Effect::Explode(explosion.clone()), Effect::Vanish],
|
|
|
|
hit_entity: vec![Effect::Explode(explosion), Effect::Vanish],
|
|
|
|
time_left: Duration::from_secs(10),
|
|
|
|
owner,
|
|
|
|
ignore_group: true,
|
|
|
|
}
|
|
|
|
},
|
2020-11-09 04:04:51 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-13 03:24:19 +00:00
|
|
|
|
2021-03-06 21:29:00 +00:00
|
|
|
pub fn modified_projectile(mut self, power: f32, regen: f32, range: f32) -> Self {
|
2020-11-13 03:24:19 +00:00
|
|
|
use ProjectileConstructor::*;
|
|
|
|
match self {
|
2020-12-23 02:28:55 +00:00
|
|
|
Arrow {
|
|
|
|
ref mut damage,
|
|
|
|
ref mut energy_regen,
|
|
|
|
..
|
|
|
|
} => {
|
2020-11-13 03:24:19 +00:00
|
|
|
*damage *= power;
|
2021-02-05 01:39:12 +00:00
|
|
|
*energy_regen *= regen;
|
2020-11-13 03:24:19 +00:00
|
|
|
},
|
2020-12-24 17:54:00 +00:00
|
|
|
Fireball {
|
|
|
|
ref mut damage,
|
|
|
|
ref mut energy_regen,
|
|
|
|
ref mut radius,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*damage *= power;
|
2021-02-05 01:39:12 +00:00
|
|
|
*energy_regen *= regen;
|
2020-12-24 17:54:00 +00:00
|
|
|
*radius *= range;
|
|
|
|
},
|
2021-02-16 05:18:05 +00:00
|
|
|
Frostball {
|
|
|
|
ref mut damage,
|
|
|
|
ref mut radius,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*damage *= power;
|
|
|
|
*radius *= range;
|
|
|
|
},
|
2021-05-09 18:28:01 +00:00
|
|
|
NecroticSphere {
|
|
|
|
ref mut damage,
|
|
|
|
ref mut radius,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*damage *= power;
|
|
|
|
*radius *= range;
|
|
|
|
},
|
2020-11-13 03:24:19 +00:00
|
|
|
Possess => {},
|
2021-05-04 23:02:18 +00:00
|
|
|
ClayRocket {
|
|
|
|
ref mut damage,
|
|
|
|
ref mut radius,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*damage *= power;
|
|
|
|
*radius *= range;
|
|
|
|
},
|
2020-11-13 03:24:19 +00:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
2020-11-09 04:04:51 +00:00
|
|
|
}
|