diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gamedata.rs | 16 | ||||
-rw-r--r-- | src/lib.rs | 4 |
2 files changed, 17 insertions, 3 deletions
diff --git a/src/gamedata.rs b/src/gamedata.rs index 64b6731..ac8d46a 100644 --- a/src/gamedata.rs +++ b/src/gamedata.rs @@ -1,5 +1,6 @@ //! This module contains some low-level game data, such as different boss IDs. use num_derive::FromPrimitive; +use num_traits::FromPrimitive; use std::{ fmt::{self, Display, Formatter}, str::FromStr, @@ -118,6 +119,21 @@ impl Encounter { Encounter::WhisperOfJormag => &[Boss::WhisperOfJormag], } } + + /// Converts a combat ID as given in the arcdps header into the correct encounter. + /// + /// This properly takes care of encounters with multiple bosses or which could be saved as + /// multiple bosses. + /// + /// ``` + /// # use evtclib::gamedata::Encounter; + /// assert_eq!(Encounter::from_header_id(0x3C4E), Some(Encounter::ValeGuardian)); + /// assert_eq!(Encounter::from_header_id(0x5261), Some(Encounter::TwinLargos)); + /// ``` + #[inline] + pub fn from_header_id(id: u16) -> Option<Encounter> { + Boss::from_u16(id).map(Boss::encounter) + } } /// Error for when converting a string to an encounter fails. @@ -88,7 +88,6 @@ //! While there are legitimate use cases for writing/modification support, they are currently not //! implemented (but might be in a future version). -use num_traits::FromPrimitive; use thiserror::Error; pub mod raw; @@ -103,7 +102,6 @@ mod processing; pub use processing::{process, process_file, process_stream, Compression}; pub mod gamedata; -use gamedata::Boss; pub use gamedata::{EliteSpec, Encounter, Profession}; pub mod analyzers; @@ -230,7 +228,7 @@ impl Log { /// if we know about it in [`Encounter`]. #[inline] pub fn encounter(&self) -> Option<Encounter> { - Boss::from_u16(self.boss_id).map(Boss::encounter) + Encounter::from_header_id(self.boss_id) } /// Return an analyzer suitable to analyze the given log. |