veloren/common/src/sys/combat.rs

163 lines
5.2 KiB
Rust
Raw Normal View History

use crate::{
comp::{
Alignment, Attacking, Body, CharacterState, HealthChange, HealthSource, Ori, Pos, Scale,
Stats,
},
event::{EventBus, LocalEvent, ServerEvent},
2019-11-24 20:12:03 +00:00
sync::Uid,
util::Dir,
};
use specs::{Entities, Join, Read, ReadStorage, System, WriteStorage};
2019-08-24 20:41:34 +00:00
use vek::*;
2020-04-01 14:07:10 +00:00
pub const BLOCK_EFFICIENCY: f32 = 0.9;
pub const BLOCK_ANGLE: f32 = 180.0;
/// This system is responsible for handling accepted inputs like moving or
/// attacking
pub struct Sys;
impl<'a> System<'a> for Sys {
#[allow(clippy::type_complexity)]
type SystemData = (
Entities<'a>,
2019-09-25 21:31:25 +00:00
Read<'a, EventBus<ServerEvent>>,
Read<'a, EventBus<LocalEvent>>,
2019-09-25 21:31:25 +00:00
ReadStorage<'a, Uid>,
ReadStorage<'a, Pos>,
ReadStorage<'a, Ori>,
ReadStorage<'a, Scale>,
2020-07-06 20:18:30 +00:00
ReadStorage<'a, Alignment>,
ReadStorage<'a, Body>,
ReadStorage<'a, Stats>,
2020-02-11 15:42:17 +00:00
WriteStorage<'a, Attacking>,
WriteStorage<'a, CharacterState>,
);
fn run(
&mut self,
(
entities,
2019-09-25 21:31:25 +00:00
server_bus,
local_bus,
2019-09-25 21:31:25 +00:00
uids,
positions,
orientations,
scales,
2020-07-06 20:18:30 +00:00
alignments,
bodies,
2019-09-26 16:48:37 +00:00
stats,
2020-02-11 15:42:17 +00:00
mut attacking_storage,
2020-03-07 21:03:10 +00:00
character_states,
): Self::SystemData,
) {
2020-03-22 04:49:32 +00:00
let mut server_emitter = server_bus.emitter();
let mut local_emitter = local_bus.emitter();
// Attacks
for (entity, uid, pos, ori, scale_maybe, attack) in (
&entities,
&uids,
&positions,
&orientations,
scales.maybe(),
2020-02-11 15:42:17 +00:00
&mut attacking_storage,
)
.join()
2019-08-24 19:12:54 +00:00
{
if attack.applied {
continue;
}
attack.applied = true;
2020-02-24 13:32:12 +00:00
// Go through all other entities
2020-03-25 21:23:03 +00:00
for (
b,
uid_b,
pos_b,
ori_b,
scale_b_maybe,
2020-07-06 20:18:30 +00:00
alignment_b_maybe,
2020-03-25 21:23:03 +00:00
character_b,
stats_b,
body_b,
) in (
2020-02-24 13:32:12 +00:00
&entities,
&uids,
&positions,
&orientations,
scales.maybe(),
2020-07-06 20:18:30 +00:00
alignments.maybe(),
2020-07-05 12:39:28 +00:00
character_states.maybe(),
2020-02-24 13:32:12 +00:00
&stats,
&bodies,
)
.join()
{
// 2D versions
let pos2 = Vec2::from(pos.0);
2020-03-22 04:49:32 +00:00
let pos_b2 = Vec2::<f32>::from(pos_b.0);
let ori2 = Vec2::from(*ori.0);
2019-08-24 19:12:54 +00:00
2020-02-24 13:32:12 +00:00
// Scales
let scale = scale_maybe.map_or(1.0, |s| s.0);
let scale_b = scale_b_maybe.map_or(1.0, |s| s.0);
let rad_b = body_b.radius() * scale_b;
2019-08-24 19:12:54 +00:00
2020-02-24 13:32:12 +00:00
// Check if it is a hit
if entity != b
&& !stats_b.is_dead
// Spherical wedge shaped attack field
&& pos.0.distance_squared(pos_b.0) < (rad_b + scale * attack.range).powi(2)
&& ori2.angle_between(pos_b2 - pos2) < attack.max_angle + (rad_b / pos2.distance(pos_b2)).atan()
2020-02-24 13:32:12 +00:00
{
// Weapon gives base damage
2020-03-26 13:46:08 +00:00
let mut healthchange = attack.base_healthchange as f32;
// TODO: remove this, either it will remain unused or be used as a temporary
// gameplay balance
//// NPCs do less damage
2020-03-26 13:46:08 +00:00
//if agent_maybe.is_some() {
// healthchange = (healthchange / 1.5).min(-1.0);
//}
2020-03-25 21:23:03 +00:00
// TODO: remove this when there is a better way to target healing
2020-03-25 21:23:03 +00:00
// Don't heal npc's hp
if alignment_b_maybe
.map(|a| !a.is_friendly_to_players())
.unwrap_or(true)
&& healthchange > 0.0
{
2020-03-26 13:46:08 +00:00
healthchange = 0.0;
}
if rand::random() {
healthchange *= 1.2;
}
2020-02-24 13:32:12 +00:00
// Block
2020-07-05 12:39:28 +00:00
if character_b.map(|c_b| c_b.is_block()).unwrap_or(false)
2020-02-24 13:32:12 +00:00
&& ori_b.0.angle_between(pos.0 - pos_b.0) < BLOCK_ANGLE.to_radians() / 2.0
2020-02-11 15:42:17 +00:00
{
healthchange *= 1.0 - BLOCK_EFFICIENCY
2020-02-11 15:42:17 +00:00
}
2020-03-22 04:49:32 +00:00
server_emitter.emit(ServerEvent::Damage {
2020-02-24 13:32:12 +00:00
uid: *uid_b,
change: HealthChange {
2020-03-26 13:46:08 +00:00
amount: healthchange as i32,
2020-02-24 13:32:12 +00:00
cause: HealthSource::Attack { by: *uid },
},
});
if attack.knockback != 0.0 {
2020-03-26 13:46:08 +00:00
local_emitter.emit(LocalEvent::ApplyForce {
entity: b,
force: attack.knockback
* *Dir::slerp(ori.0, Dir::new(Vec3::new(0.0, 0.0, 1.0)), 0.5),
});
}
attack.hit_count += 1;
2020-02-11 15:42:17 +00:00
}
}
}
}
}