veloren/common/src/outcome.rs

208 lines
5.3 KiB
Rust
Raw Normal View History

2023-03-11 12:59:30 +00:00
use crate::{combat::DamageContributor, comp, terrain::SpriteKind, uid::Uid, DamageSource};
use comp::{beam, item::Reagent, poise::PoiseState, skillset::SkillGroupKind, UtteranceKind};
use hashbrown::HashSet;
2020-07-31 17:16:20 +00:00
use serde::{Deserialize, Serialize};
use vek::*;
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub struct HealthChangeInfo {
pub amount: f32,
2023-11-11 19:20:38 +00:00
pub precise: bool,
pub target: Uid,
pub by: Option<DamageContributor>,
2022-07-12 21:01:47 +00:00
pub cause: Option<DamageSource>,
2022-01-26 10:16:45 +00:00
pub instance: u64,
}
2020-08-06 16:41:43 +00:00
/// An outcome represents the final result of an instantaneous event. It implies
/// that said event has already occurred. It is not a request for that event to
/// occur, nor is it something that may be cancelled or otherwise altered. Its
/// primary purpose is to act as something for frontends (both server and
/// client) to listen to in order to receive feedback about events in the world.
2020-07-31 17:16:20 +00:00
#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum Outcome {
Explosion {
pos: Vec3<f32>,
power: f32,
radius: f32,
is_attack: bool,
2020-08-11 14:05:34 +00:00
reagent: Option<Reagent>, // How can we better define this?
2020-07-31 17:16:20 +00:00
},
2022-07-08 22:26:33 +00:00
Lightning {
pos: Vec3<f32>,
},
2020-07-31 17:16:20 +00:00
ProjectileShot {
pos: Vec3<f32>,
body: comp::Body,
vel: Vec3<f32>,
},
ProjectileHit {
pos: Vec3<f32>,
body: comp::Body,
vel: Vec3<f32>,
source: Option<Uid>,
target: Option<Uid>,
},
Beam {
pos: Vec3<f32>,
specifier: beam::FrontendSpecifier,
},
ExpChange {
uid: Uid,
exp: u32,
xp_pools: HashSet<SkillGroupKind>,
},
SkillPointGain {
uid: Uid,
2022-07-15 12:08:04 +00:00
skill_tree: SkillGroupKind,
total_points: u16,
},
2021-03-04 20:43:58 +00:00
ComboChange {
uid: Uid,
combo: u32,
},
BreakBlock {
pos: Vec3<i32>,
color: Option<Rgb<u8>>,
},
2021-03-27 15:47:56 +00:00
SummonedCreature {
pos: Vec3<f32>,
body: comp::Body,
},
HealthChange {
2021-04-04 03:04:02 +00:00
pos: Vec3<f32>,
info: HealthChangeInfo,
2021-04-04 03:04:02 +00:00
},
Death {
pos: Vec3<f32>,
},
Block {
pos: Vec3<f32>,
parry: bool,
uid: Uid,
},
PoiseChange {
pos: Vec3<f32>,
state: PoiseState,
},
2021-04-28 22:41:04 +00:00
GroundSlam {
pos: Vec3<f32>,
},
2023-02-15 00:10:37 +00:00
IceSpikes {
pos: Vec3<f32>,
},
IceCrack {
pos: Vec3<f32>,
},
FlashFreeze {
pos: Vec3<f32>,
},
2023-05-24 18:13:29 +00:00
Steam {
pos: Vec3<f32>,
},
2023-04-12 22:53:38 +00:00
LaserBeam {
pos: Vec3<f32>,
},
CyclopsCharge {
pos: Vec3<f32>,
},
2023-07-09 20:03:09 +00:00
FlamethrowerCharge {
pos: Vec3<f32>,
},
2024-01-20 17:45:23 +00:00
FuseCharge {
pos: Vec3<f32>,
},
2021-06-15 16:15:58 +00:00
Utterance {
pos: Vec3<f32>,
body: comp::Body,
kind: UtteranceKind,
},
Glider {
pos: Vec3<f32>,
wielded: bool,
},
2023-01-15 18:28:38 +00:00
SpriteDelete {
pos: Vec3<i32>,
2023-01-15 18:28:38 +00:00
sprite: SpriteKind,
},
2023-03-03 23:21:37 +00:00
SpriteUnlocked {
pos: Vec3<i32>,
},
FailedSpriteUnlock {
pos: Vec3<i32>,
},
2023-08-02 07:55:10 +00:00
Whoosh {
pos: Vec3<f32>,
},
Swoosh {
2023-04-19 23:56:10 +00:00
pos: Vec3<f32>,
},
2024-01-20 17:45:23 +00:00
Slash {
pos: Vec3<f32>,
},
2023-07-09 20:03:09 +00:00
FireShockwave {
pos: Vec3<f32>,
},
2023-08-03 19:52:55 +00:00
GroundDig {
pos: Vec3<f32>,
},
2023-08-17 19:53:28 +00:00
PortalActivated {
pos: Vec3<f32>,
},
2023-08-19 09:44:58 +00:00
TeleportedByPortal {
pos: Vec3<f32>,
},
2023-11-28 11:13:18 +00:00
FromTheAshes {
pos: Vec3<f32>,
},
2024-01-20 17:45:23 +00:00
ClayGolemDash {
pos: Vec3<f32>,
},
2020-07-31 17:16:20 +00:00
}
impl Outcome {
pub fn get_pos(&self) -> Option<Vec3<f32>> {
match self {
2021-03-04 20:43:58 +00:00
Outcome::Explosion { pos, .. }
2022-07-08 22:26:33 +00:00
// TODO: Include this, but allow it to be sent to clients when outside of the VD
// | Outcome::Lightning { pos }
2021-03-04 20:43:58 +00:00
| Outcome::ProjectileShot { pos, .. }
| Outcome::ProjectileHit { pos, .. }
2021-03-04 20:43:58 +00:00
| Outcome::Beam { pos, .. }
2021-04-04 03:04:02 +00:00
| Outcome::SummonedCreature { pos, .. }
| Outcome::HealthChange { pos, .. }
| Outcome::Death { pos, .. }
| Outcome::Block { pos, .. }
| Outcome::PoiseChange { pos, .. }
2021-06-15 16:15:58 +00:00
| Outcome::GroundSlam { pos }
2023-02-15 00:10:37 +00:00
| Outcome::FlashFreeze { pos }
2023-08-02 07:55:10 +00:00
| Outcome::Whoosh { pos }
| Outcome::Swoosh { pos }
2024-01-20 17:45:23 +00:00
| Outcome::Slash { pos }
2023-02-15 00:10:37 +00:00
| Outcome::IceSpikes { pos }
2023-05-24 18:13:29 +00:00
| Outcome::Steam { pos }
2023-07-09 20:03:09 +00:00
| Outcome::FireShockwave { pos }
2023-02-15 00:10:37 +00:00
| Outcome::IceCrack { pos }
| Outcome::Utterance { pos, .. }
2023-04-12 22:53:38 +00:00
| Outcome::CyclopsCharge { pos }
2023-07-09 20:03:09 +00:00
| Outcome::FlamethrowerCharge { pos }
2024-01-20 17:45:23 +00:00
| Outcome::FuseCharge { pos }
2023-04-12 22:53:38 +00:00
| Outcome::LaserBeam { pos }
2023-08-03 19:52:55 +00:00
| Outcome::GroundDig { pos }
2023-08-17 19:53:28 +00:00
| Outcome::PortalActivated { pos }
2023-08-19 09:44:58 +00:00
| Outcome::TeleportedByPortal { pos}
2023-11-28 11:13:18 +00:00
| Outcome::FromTheAshes { pos }
2024-01-20 17:45:23 +00:00
| Outcome::ClayGolemDash { pos }
2022-03-18 19:49:28 +00:00
| Outcome::Glider { pos, .. } => Some(*pos),
2023-03-03 23:21:37 +00:00
Outcome::BreakBlock { pos, .. }
| Outcome::SpriteUnlocked { pos }
| Outcome::SpriteDelete { pos, .. }
2023-03-03 23:21:37 +00:00
| Outcome::FailedSpriteUnlock { pos } => Some(pos.map(|e| e as f32 + 0.5)),
Outcome::ExpChange { .. }
| Outcome::ComboChange { .. }
2022-07-08 22:26:33 +00:00
| Outcome::Lightning { .. }
| Outcome::SkillPointGain { .. } => None,
2020-07-31 17:16:20 +00:00
}
}
}