From d4cd8c978c87d83945a0c2d57d17a0e9b047acd9 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Mon, 22 Nov 2021 23:10:17 +0100 Subject: add Twisted Castle There's not many useful things we can do with this log, other than providing a way for downstream applications to identify those logs. --- src/analyzers/mod.rs | 1 + src/analyzers/raids/mod.rs | 2 +- src/analyzers/raids/w3.rs | 30 ++++++++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) (limited to 'src/analyzers') diff --git a/src/analyzers/mod.rs b/src/analyzers/mod.rs index fcec7cf..1d8caf7 100644 --- a/src/analyzers/mod.rs +++ b/src/analyzers/mod.rs @@ -92,6 +92,7 @@ pub fn for_log<'l>(log: &'l Log) -> Option> { } Encounter::KeepConstruct => Some(Box::new(raids::GenericRaid::new(log))), + Encounter::TwistedCastle => Some(Box::new(raids::TwistedCastle::new(log))), Encounter::Xera => Some(Box::new(raids::Xera::new(log))), Encounter::Cairn => Some(Box::new(raids::Cairn::new(log))), diff --git a/src/analyzers/raids/mod.rs b/src/analyzers/raids/mod.rs index 824b957..1e0f09e 100644 --- a/src/analyzers/raids/mod.rs +++ b/src/analyzers/raids/mod.rs @@ -10,7 +10,7 @@ use crate::{ }; mod w3; -pub use w3::Xera; +pub use w3::{TwistedCastle, Xera}; mod w4; pub use w4::{Cairn, Deimos, MursaatOverseer, Samarog}; diff --git a/src/analyzers/raids/w3.rs b/src/analyzers/raids/w3.rs index 16a3d13..e46457f 100644 --- a/src/analyzers/raids/w3.rs +++ b/src/analyzers/raids/w3.rs @@ -3,6 +3,36 @@ use crate::{ Log, }; +/// Analyzer for the final fight of Wing 3, Xera. +#[derive(Debug, Clone, Copy)] +pub struct TwistedCastle<'log> { + log: &'log Log, +} + +impl<'log> TwistedCastle<'log> { + /// Create a new [`TwistedCastle`] analyzer for the given log. + /// + /// **Do not** use this method unless you know what you are doing. Instead, rely on + /// [`Log::analyzer`]! + pub fn new(log: &'log Log) -> Self { + TwistedCastle { log } + } +} + +impl<'log> Analyzer for TwistedCastle<'log> { + fn log(&self) -> &Log { + self.log + } + + fn is_cm(&self) -> bool { + false + } + + fn outcome(&self) -> Option { + Outcome::from_bool(self.log.was_rewarded()) + } +} + /// Analyzer for the final fight of Wing 3, Xera. #[derive(Debug, Clone, Copy)] pub struct Xera<'log> { -- cgit v1.2.3