2021-01-02 20:06:33 +00:00
|
|
|
use crate::{comp, uid::Uid};
|
2021-04-29 23:36:22 +00:00
|
|
|
use comp::{beam, item::Reagent, poise::PoiseState};
|
2020-07-31 17:16:20 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use vek::*;
|
|
|
|
|
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,
|
2020-10-06 02:19:41 +00:00
|
|
|
radius: f32,
|
2020-10-08 00:32:30 +00:00
|
|
|
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
|
|
|
},
|
|
|
|
ProjectileShot {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
body: comp::Body,
|
|
|
|
vel: Vec3<f32>,
|
|
|
|
},
|
2021-03-28 23:29:48 +00:00
|
|
|
ProjectileHit {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
body: comp::Body,
|
|
|
|
vel: Vec3<f32>,
|
|
|
|
source: Option<Uid>,
|
|
|
|
target: Option<Uid>,
|
|
|
|
},
|
2020-11-15 00:14:15 +00:00
|
|
|
Beam {
|
|
|
|
pos: Vec3<f32>,
|
2021-03-03 04:56:09 +00:00
|
|
|
specifier: beam::FrontendSpecifier,
|
2020-11-15 00:14:15 +00:00
|
|
|
},
|
2021-01-02 20:06:33 +00:00
|
|
|
ExpChange {
|
|
|
|
uid: Uid,
|
|
|
|
exp: i32,
|
|
|
|
},
|
2021-01-04 19:29:15 +00:00
|
|
|
SkillPointGain {
|
|
|
|
uid: Uid,
|
2021-01-18 19:08:13 +00:00
|
|
|
skill_tree: comp::skills::SkillGroupKind,
|
2021-01-04 19:29:15 +00:00
|
|
|
total_points: u16,
|
2021-01-16 17:01:57 +00:00
|
|
|
// TODO: Access ECS to get position from Uid to conserve bandwidth
|
2021-01-09 16:56:19 +00:00
|
|
|
pos: Vec3<f32>,
|
2021-01-04 19:29:15 +00:00
|
|
|
},
|
2021-03-04 20:43:58 +00:00
|
|
|
ComboChange {
|
|
|
|
uid: Uid,
|
|
|
|
combo: u32,
|
|
|
|
},
|
2021-03-21 20:09:59 +00:00
|
|
|
BreakBlock {
|
|
|
|
pos: Vec3<i32>,
|
|
|
|
color: Option<Rgb<u8>>,
|
|
|
|
},
|
2021-03-27 15:47:56 +00:00
|
|
|
SummonedCreature {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
body: comp::Body,
|
|
|
|
},
|
2021-04-04 03:04:02 +00:00
|
|
|
Damage {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
},
|
2021-04-19 05:35:46 +00:00
|
|
|
Block {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
parry: bool,
|
2021-04-24 04:11:41 +00:00
|
|
|
uid: Uid,
|
2021-04-19 05:35:46 +00:00
|
|
|
},
|
2021-04-29 23:36:22 +00:00
|
|
|
PoiseChange {
|
|
|
|
pos: Vec3<f32>,
|
|
|
|
state: PoiseState,
|
|
|
|
},
|
2021-04-28 22:41:04 +00:00
|
|
|
GroundSlam {
|
2021-04-28 04:23:28 +00:00
|
|
|
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, .. }
|
|
|
|
| Outcome::ProjectileShot { pos, .. }
|
2021-03-28 23:29:48 +00:00
|
|
|
| Outcome::ProjectileHit { pos, .. }
|
2021-03-04 20:43:58 +00:00
|
|
|
| Outcome::Beam { pos, .. }
|
2021-03-27 15:47:56 +00:00
|
|
|
| Outcome::SkillPointGain { pos, .. }
|
2021-04-04 03:04:02 +00:00
|
|
|
| Outcome::SummonedCreature { pos, .. }
|
2021-04-19 05:35:46 +00:00
|
|
|
| Outcome::Damage { pos, .. }
|
2021-04-29 23:36:22 +00:00
|
|
|
| Outcome::Block { pos, .. }
|
2021-04-28 04:23:28 +00:00
|
|
|
| Outcome::PoiseChange { pos, .. }
|
2021-04-28 22:41:04 +00:00
|
|
|
| Outcome::GroundSlam { pos } => Some(*pos),
|
2021-03-21 20:09:59 +00:00
|
|
|
Outcome::BreakBlock { pos, .. } => Some(pos.map(|e| e as f32 + 0.5)),
|
2021-03-04 20:43:58 +00:00
|
|
|
Outcome::ExpChange { .. } | Outcome::ComboChange { .. } => None,
|
2020-07-31 17:16:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|