-
Notifications
You must be signed in to change notification settings - Fork 721
/
Copy pathspell.cpp
231 lines (180 loc) · 5.93 KB
/
spell.cpp
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#include "spell.hpp"
#include "action/action_state.hpp"
#include "buff/buff.hpp"
#include "dbc/spell_data.hpp"
#include "heal.hpp"
#include "player/player.hpp"
#include "player/stats.hpp"
#include "sim/cooldown.hpp"
#include "sim/sim.hpp"
#include "util/rng.hpp"
#include <algorithm>
// ==========================================================================
// Spell Base
// ==========================================================================
spell_base_t::spell_base_t( action_e at, util::string_view token, player_t* p )
: spell_base_t( at, token, p, spell_data_t::nil() )
{}
spell_base_t::spell_base_t( action_e at, util::string_view token, player_t* p, const spell_data_t* s )
: action_t( at, token, p, s )
{
min_gcd = p->min_gcd;
special = true;
crit_bonus = 1.0;
}
double spell_base_t::cost() const
{
if ( current_resource() == RESOURCE_MANA && player->buffs.chilled_clarity && player->buffs.chilled_clarity->check() )
return 0;
return action_t::cost();
}
double spell_base_t::execute_time_pct_multiplier() const
{
auto mul = action_t::execute_time_pct_multiplier() * composite_haste();
if ( player->buffs.chilled_clarity )
mul *= 1.0 - player->buffs.chilled_clarity->check_value();
return mul;
}
result_e spell_base_t::calculate_result( action_state_t* s ) const
{
result_e result = RESULT_NONE;
if ( !s->target )
return RESULT_NONE;
if ( !may_hit )
return RESULT_NONE;
if ( ( result == RESULT_NONE ) && may_miss )
{
if ( rng().roll( miss_chance( composite_hit(), s->target ) ) )
{
result = RESULT_MISS;
}
}
if ( result == RESULT_NONE )
{
result = RESULT_HIT;
if ( may_crit )
{
if ( rng().roll( std::max( s->composite_crit_chance(), 0.0 ) ) )
result = RESULT_CRIT;
}
}
sim->print_debug( "{} result for {} is {}.", *player, *this, result );
return result;
}
void spell_base_t::execute()
{
action_t::execute();
if ( player->last_foreground_action == this )
player->debuffs.casting->expire();
}
void spell_base_t::schedule_execute( action_state_t* state )
{
action_t::schedule_execute( state );
if ( !background && time_to_execute > timespan_t::zero() )
player->debuffs.casting->trigger();
}
double spell_base_t::composite_crit_chance() const
{
return action_t::composite_crit_chance() + player->cache.spell_crit_chance();
}
double spell_base_t::composite_crit_chance_multiplier() const
{
return action_t::composite_crit_chance_multiplier() * player->composite_spell_crit_chance_multiplier();
}
double spell_base_t::composite_haste() const
{
return action_t::composite_haste() * player->cache.spell_cast_speed();
}
double spell_base_t::recharge_multiplier( const cooldown_t& cd ) const
{
double m = action_t::recharge_multiplier( cd );
if ( cd.hasted )
{
m *= player->cache.spell_haste();
}
return m;
}
proc_types spell_base_t::proc_type() const
{
bool is_heal = ( type == ACTION_HEAL || type == ACTION_ABSORB );
if ( s_data->ok() )
{
switch ( s_data->dmg_class() )
{
case SPELL_TYPE_NONE: return is_heal ? PROC1_NONE_HEAL : PROC1_NONE_SPELL;
case SPELL_TYPE_MAGIC: return is_heal ? PROC1_MAGIC_HEAL : PROC1_MAGIC_SPELL;
case SPELL_TYPE_MELEE: return PROC1_MELEE_ABILITY;
case SPELL_TYPE_RANGED: return PROC1_RANGED_ABILITY;
}
}
if ( type == ACTION_SPELL )
return PROC1_MAGIC_SPELL;
// Only allow non-harmful abilities with "an amount" to count as heals
else if ( is_heal && has_amount_result() )
return PROC1_MAGIC_HEAL;
return PROC1_NONE_SPELL;
}
// ==========================================================================
// Harmful Spell
// ==========================================================================
spell_t::spell_t( util::string_view token, player_t* p ) : spell_t( token, p, spell_data_t::nil() ) {}
spell_t::spell_t( util::string_view token, player_t* p, const spell_data_t* s )
: spell_base_t( ACTION_SPELL, token, p, s )
{}
double spell_t::miss_chance( double hit, player_t* t ) const
{
// base spell miss is double base melee miss
double miss = t->cache.miss();
miss *= 2;
// 11% level-dependent miss for level+4
miss += 0.03 * ( t->level() - player->level() );
miss += 0.08 * std::max( t->level() - player->level() - 3, 0 );
// subtract the player's hit and expertise
miss -= hit;
return miss;
}
result_amount_type spell_t::amount_type( const action_state_t* /* state */, bool periodic ) const
{
if ( periodic || treat_as_periodic )
return result_amount_type::DMG_OVER_TIME;
else
return result_amount_type::DMG_DIRECT;
}
result_amount_type spell_t::report_amount_type( const action_state_t* state ) const
{
result_amount_type result_type = state->result_type;
if ( result_type == result_amount_type::DMG_DIRECT )
{
// Direct ticks are direct damage, that are recorded as ticks
if ( direct_tick )
result_type = result_amount_type::DMG_OVER_TIME;
// With direct damage, we need to check if this action is a tick action of
// someone. If so, then the damage should be recorded as periodic.
else
{
if ( !stats->action_list.empty() && stats->action_list.front()->tick_action == this )
{
result_type = result_amount_type::DMG_OVER_TIME;
}
}
}
return result_type;
}
double spell_t::composite_hit() const
{
return action_t::composite_hit() + player->cache.spell_hit();
}
double spell_t::composite_versatility( const action_state_t* state ) const
{
return spell_base_t::composite_versatility( state ) + player->cache.damage_versatility();
}
double spell_t::composite_target_multiplier( player_t* t ) const
{
double mul = action_t::composite_target_multiplier( t );
mul *= composite_target_damage_vulnerability( t );
return mul;
}