1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
//! Boss fight analyzers for Wing 6 (Mythwright Gambit)
use crate::{
analyzers::{helpers, Analyzer, Outcome},
Log,
};
pub const ADINA_CM_HEALTH: u64 = 24_800_000;
/// Analyzer for the first fight of Wing 7, Cardinal Adina.
///
/// The CM is detected by the boss's health, which is higher in the challenge mote.
#[derive(Debug, Clone, Copy)]
pub struct CardinalAdina<'log> {
log: &'log Log,
}
impl<'log> CardinalAdina<'log> {
/// Create a new [`CardinalAdina`] 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 {
CardinalAdina { log }
}
}
impl<'log> Analyzer for CardinalAdina<'log> {
fn log(&self) -> &Log {
self.log
}
fn is_cm(&self) -> bool {
helpers::boss_health(self.log)
.map(|h| h >= ADINA_CM_HEALTH)
.unwrap_or(false)
}
fn outcome(&self) -> Option<Outcome> {
check_reward!(self.log);
Outcome::from_bool(helpers::boss_is_dead(self.log))
}
}
pub const SABIR_CM_HEALTH: u64 = 32_400_000;
/// Analyzer for the second fight of Wing 7, Cardinal Sabir.
///
/// The CM is detected by the boss's health, which is higher in the challenge mote.
#[derive(Debug, Clone, Copy)]
pub struct CardinalSabir<'log> {
log: &'log Log,
}
impl<'log> CardinalSabir<'log> {
/// Create a new [`CardinalSabir`] 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 {
CardinalSabir { log }
}
}
impl<'log> Analyzer for CardinalSabir<'log> {
fn log(&self) -> &Log {
self.log
}
fn is_cm(&self) -> bool {
helpers::boss_health(self.log)
.map(|h| h >= SABIR_CM_HEALTH)
.unwrap_or(false)
}
fn outcome(&self) -> Option<Outcome> {
check_reward!(self.log);
Outcome::from_bool(helpers::boss_is_dead(self.log))
}
}
pub const QADIMP_CM_HEALTH: u64 = 51_000_000;
/// Analyzer for the final fight of Wing 7, Qadim The Peerless.
#[derive(Debug, Clone, Copy)]
pub struct QadimThePeerless<'log> {
log: &'log Log,
}
impl<'log> QadimThePeerless<'log> {
/// Create a new [`QadimThePeerless`] 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 {
QadimThePeerless { log }
}
}
impl<'log> Analyzer for QadimThePeerless<'log> {
fn log(&self) -> &Log {
self.log
}
fn is_cm(&self) -> bool {
helpers::boss_health(self.log)
.map(|h| h >= QADIMP_CM_HEALTH)
.unwrap_or(false)
}
fn outcome(&self) -> Option<Outcome> {
check_reward!(self.log);
Outcome::from_bool(helpers::boss_is_dead(self.log))
}
}
|