forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_demon_hunter.cpp
7591 lines (6241 loc) · 240 KB
/
sc_demon_hunter.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#include "simulationcraft.hpp"
#include "class_modules/apl/apl_demon_hunter.hpp"
namespace
{ // UNNAMED NAMESPACE
// ==========================================================================
// Demon Hunter
// ==========================================================================
/* ==========================================================================
// Shadowlands To-Do
// ==========================================================================
Existing Issues
---------------
* Add option for Greater Soul spawns on add demise (% chance?) simulating adds in M+/dungeon style situations
New Issues
----------
Vengeance:
* Add Revel in Pain passive
** Ruinous Bulwark Absorb
Maybe:
** Darkness (?)
** Sigil of Silence (?)
** Sigil of Misery (?)
*/
// Forward Declarations
class demon_hunter_t;
struct soul_fragment_t;
namespace buffs
{}
namespace actions
{
struct demon_hunter_attack_t;
namespace attacks
{
struct auto_attack_damage_t;
}
}
namespace items
{
}
// Target Data
class demon_hunter_td_t : public actor_target_data_t
{
public:
struct dots_t
{
// Shared
dot_t* the_hunt;
// Havoc
dot_t* burning_wound;
dot_t* trail_of_ruin;
// Vengeance
dot_t* fiery_brand;
dot_t* sigil_of_flame;
} dots;
struct debuffs_t
{
// Havoc
buff_t* burning_wound;
buff_t* essence_break;
buff_t* initiative_tracker;
buff_t* serrated_glaive;
// Vengeance
buff_t* frailty;
buff_t* charred_flesh;
// Set Bonuses
buff_t* t29_vengeance_4pc;
} debuffs;
demon_hunter_td_t( player_t* target, demon_hunter_t& p );
demon_hunter_t& dh()
{
return *debug_cast<demon_hunter_t*>( source );
}
const demon_hunter_t& dh() const
{
return *debug_cast<demon_hunter_t*>( source );
}
void target_demise();
};
constexpr unsigned MAX_SOUL_FRAGMENTS = 5;
constexpr double VENGEFUL_RETREAT_DISTANCE = 20.0;
enum class soul_fragment : unsigned
{
GREATER = 0x01,
LESSER = 0x02,
GREATER_DEMON = 0x04,
EMPOWERED_DEMON = 0x08,
ANY_GREATER = ( GREATER | GREATER_DEMON | EMPOWERED_DEMON ),
ANY_DEMON = ( GREATER_DEMON | EMPOWERED_DEMON ),
ANY = 0xFF
};
soul_fragment operator&( soul_fragment l, soul_fragment r )
{
return static_cast<soul_fragment> ( static_cast<unsigned>( l ) & static_cast<unsigned>( r ) );
}
[[maybe_unused]] soul_fragment operator|( soul_fragment l, soul_fragment r )
{
return static_cast<soul_fragment> ( static_cast<unsigned>( l ) | static_cast<unsigned>( r ) );
}
const char* get_soul_fragment_str( soul_fragment type )
{
switch ( type )
{
case soul_fragment::ANY:
return "soul fragment";
case soul_fragment::GREATER:
return "greater soul fragment";
case soul_fragment::LESSER:
return "lesser soul fragment";
case soul_fragment::GREATER_DEMON:
return "greater demon fragment";
case soul_fragment::EMPOWERED_DEMON:
return "empowered demon fragment";
default:
return "";
}
}
struct movement_buff_t : public buff_t
{
double yards_from_melee;
double distance_moved;
demon_hunter_t* dh;
movement_buff_t( demon_hunter_t* p, util::string_view name, const spell_data_t* spell_data = spell_data_t::nil(), const item_t* item = nullptr );
bool trigger( int s = 1, double v = DEFAULT_VALUE(), double c = -1.0, timespan_t d = timespan_t::min() ) override;
};
using data_t = std::pair<std::string, simple_sample_data_with_min_max_t>;
using simple_data_t = std::pair<std::string, simple_sample_data_t>;
/* Demon Hunter class definition
*
* Derived from player_t. Contains everything that defines the Demon Hunter
* class.
*/
class demon_hunter_t : public player_t
{
public:
using base_t = player_t;
// Data collection for cooldown waste
auto_dispose<std::vector<data_t*>> cd_waste_exec, cd_waste_cumulative;
auto_dispose<std::vector<simple_data_t*>> cd_waste_iter;
// Autoattacks
actions::attacks::auto_attack_damage_t* melee_main_hand;
actions::attacks::auto_attack_damage_t* melee_off_hand;
double metamorphosis_health; // Vengeance temp health from meta;
double expected_max_health;
// Soul Fragments
unsigned next_fragment_spawn; // determines whether the next fragment spawn
// on the left or right
auto_dispose<std::vector<soul_fragment_t*>> soul_fragments;
event_t* soul_fragment_pick_up;
double spirit_bomb_accumulator; // Spirit Bomb healing accumulator
event_t* spirit_bomb_driver;
double ragefire_accumulator;
unsigned ragefire_crit_accumulator;
double shattered_destiny_accumulator;
double darkglare_boon_cdr_roll;
event_t* exit_melee_event; // Event to disable melee abilities mid-VR.
// Buffs
struct buffs_t
{
// General
damage_buff_t* demon_soul;
damage_buff_t* empowered_demon_soul;
buff_t* immolation_aura;
buff_t* metamorphosis;
// Havoc
buff_t* blind_fury;
buff_t* blur;
damage_buff_t* chaos_theory;
buff_t* death_sweep;
buff_t* furious_gaze;
buff_t* growing_inferno;
buff_t* initiative;
buff_t* inner_demon;
damage_buff_t* momentum;
buff_t* out_of_range;
damage_buff_t* restless_hunter;
buff_t* tactical_retreat;
buff_t* unbound_chaos;
movement_buff_t* fel_rush_move;
movement_buff_t* vengeful_retreat_move;
movement_buff_t* metamorphosis_move;
// Vengeance
buff_t* demon_spikes;
buff_t* painbringer;
absorb_buff_t* soul_barrier;
buff_t* soul_furnace_damage_amp;
buff_t* soul_furnace_stack;
buff_t* soul_fragments;
// Set Bonuses
damage_buff_t* t29_havoc_4pc;
} buff;
// Talents
struct talents_t
{
struct class_talents_t
{
player_talent_t vengeful_retreat;
player_talent_t blazing_path;
player_talent_t sigil_of_flame;
player_talent_t unrestrained_fury;
player_talent_t imprison; // No Implementation
player_talent_t shattered_restoration; // NYI Vengeance
player_talent_t vengeful_bonds; // No Implementation
player_talent_t improved_disrupt;
player_talent_t bouncing_glaives;
player_talent_t consume_magic;
player_talent_t flames_of_fury;
player_talent_t pursuit;
player_talent_t disrupting_fury;
player_talent_t aura_of_pain;
player_talent_t felblade;
player_talent_t swallowed_anger;
player_talent_t charred_warblades; // NYI Vengeance
player_talent_t felfire_haste; // NYI
player_talent_t master_of_the_glaive;
player_talent_t rush_of_chaos;
player_talent_t concentrated_sigils;
player_talent_t precise_sigils; // Partial NYI (debuff Sigils)
player_talent_t lost_in_darkness; // No Implementation
player_talent_t chaos_nova;
player_talent_t soul_rending;
player_talent_t infernal_armor;
player_talent_t sigil_of_misery; // NYI
player_talent_t chaos_fragments;
player_talent_t unleashed_power;
player_talent_t illidari_knowledge;
player_talent_t demonic;
player_talent_t first_of_the_illidari;
player_talent_t will_of_the_illidari; // NYI Vengeance
player_talent_t improved_sigil_of_misery;
player_talent_t misery_in_defeat; // NYI
player_talent_t internal_struggle;
player_talent_t darkness; // No Implementation
player_talent_t soul_sigils;
player_talent_t aldrachi_design;
player_talent_t erratic_felheart;
player_talent_t long_night; // No Implementation
player_talent_t pitch_black;
player_talent_t the_hunt;
player_talent_t demon_muzzle; // NYI Vengeance
player_talent_t extended_sigils;
player_talent_t collective_anguish;
player_talent_t unnatural_malice;
player_talent_t relentless_pursuit;
player_talent_t quickened_sigils;
} demon_hunter;
struct havoc_talents_t
{
player_talent_t eye_beam;
player_talent_t improved_chaos_strike;
player_talent_t insatiable_hunger;
player_talent_t demon_blades;
player_talent_t felfire_heart;
player_talent_t demonic_appetite;
player_talent_t improved_fel_rush;
player_talent_t first_blood;
player_talent_t furious_throws;
player_talent_t burning_hatred;
player_talent_t critical_chaos;
player_talent_t mortal_dance; // No Implementation
player_talent_t dancing_with_fate;
player_talent_t initiative;
player_talent_t desperate_instincts; // No Implementation
player_talent_t netherwalk; // No Implementation
player_talent_t chaotic_transformation;
player_talent_t fel_eruption;
player_talent_t trail_of_ruin;
player_talent_t unbound_chaos;
player_talent_t blind_fury;
player_talent_t looks_can_kill;
player_talent_t serrated_glaive;
player_talent_t growing_inferno;
player_talent_t tactical_retreat;
player_talent_t isolated_prey;
player_talent_t furious_gaze;
player_talent_t relentless_onslaught;
player_talent_t burning_wound;
player_talent_t momentum;
player_talent_t chaos_theory;
player_talent_t restless_hunter;
player_talent_t inner_demon;
player_talent_t accelerating_blade;
player_talent_t ragefire;
player_talent_t know_your_enemy;
player_talent_t glaive_tempest;
player_talent_t fel_barrage;
player_talent_t cycle_of_hatred;
player_talent_t fodder_to_the_flame;
player_talent_t elysian_decree;
player_talent_t soulrend;
player_talent_t essence_break;
player_talent_t shattered_destiny;
player_talent_t any_means_necessary;
} havoc;
struct vengeance_talents_t
{
player_talent_t fel_devastation;
player_talent_t frailty;
player_talent_t fiery_brand;
player_talent_t perfectly_balanced_glaive;
player_talent_t deflecting_spikes; // NYI
player_talent_t meteoric_strikes;
player_talent_t shear_fury;
player_talent_t fracture;
player_talent_t calcified_spikes; // NYI
player_talent_t roaring_fire; // NYI
player_talent_t sigil_of_silence; // NYI
player_talent_t retaliation; // NYI
player_talent_t fel_flame_fortification; // NYI
player_talent_t spirit_bomb;
player_talent_t feast_of_souls; // NYI
player_talent_t agonizing_flames;
player_talent_t extended_spikes;
player_talent_t burning_blood;
player_talent_t soul_barrier; // NYI
player_talent_t bulk_extraction; // NYI
player_talent_t sigil_of_chains; // NYI
player_talent_t void_reaver;
player_talent_t fallout;
player_talent_t ruinous_bulwark; // NYI
player_talent_t volatile_flameblood;
player_talent_t revel_in_pain; // NYI
player_talent_t soul_furnace;
player_talent_t painbringer;
player_talent_t darkglare_boon;
player_talent_t fiery_demise;
player_talent_t chains_of_anger;
player_talent_t focused_cleave;
player_talent_t soulmonger; // NYI
player_talent_t stoke_the_flames;
player_talent_t burning_alive; // NYI
player_talent_t cycle_of_binding; // NYI
player_talent_t vulnerability;
player_talent_t feed_the_demon; // NYI
player_talent_t charred_flesh; // NYI
player_talent_t soulcrush;
player_talent_t soul_carver;
player_talent_t last_resort; // NYI
player_talent_t fodder_to_the_flame; // NYI
player_talent_t elysian_decree;
player_talent_t down_in_flames;
} vengeance;
} talent;
// Spell Data
struct spells_t
{
// Core Class Spells
const spell_data_t* chaos_brand;
const spell_data_t* disrupt;
const spell_data_t* immolation_aura;
const spell_data_t* throw_glaive;
// Class Passives
const spell_data_t* all_demon_hunter;
const spell_data_t* critical_strikes;
const spell_data_t* immolation_aura_2;
const spell_data_t* leather_specialization;
// Background Spells
const spell_data_t* collective_anguish;
const spell_data_t* collective_anguish_damage;
const spell_data_t* demon_soul;
const spell_data_t* demon_soul_empowered;
const spell_data_t* felblade_damage;
const spell_data_t* felblade_reset_havoc;
const spell_data_t* felblade_reset_vengeance;
const spell_data_t* immolation_aura_damage;
const spell_data_t* infernal_armor_damage;
const spell_data_t* sigil_of_flame_damage;
const spell_data_t* sigil_of_flame_fury;
const spell_data_t* soul_fragment;
// Cross-Expansion Override Spells
const spell_data_t* elysian_decree;
const spell_data_t* elysian_decree_damage;
const spell_data_t* fodder_to_the_flame;
const spell_data_t* fodder_to_the_flame_damage;
const spell_data_t* the_hunt;
} spell;
// Specialization Spells
struct spec_t
{
// General
const spell_data_t* consume_soul_greater;
const spell_data_t* consume_soul_lesser;
const spell_data_t* demonic_wards;
const spell_data_t* metamorphosis;
const spell_data_t* metamorphosis_buff;
// Havoc
const spell_data_t* havoc_demon_hunter;
const spell_data_t* annihilation;
const spell_data_t* blade_dance;
const spell_data_t* blur;
const spell_data_t* chaos_strike;
const spell_data_t* death_sweep;
const spell_data_t* demons_bite;
const spell_data_t* fel_rush;
const spell_data_t* blade_dance_2;
const spell_data_t* burning_wound_debuff;
const spell_data_t* chaos_strike_fury;
const spell_data_t* chaos_strike_refund;
const spell_data_t* chaos_theory_buff;
const spell_data_t* demon_blades_damage;
const spell_data_t* demonic_appetite_fury;
const spell_data_t* essence_break_debuff;
const spell_data_t* eye_beam_damage;
const spell_data_t* fel_rush_damage;
const spell_data_t* first_blood_blade_dance_damage;
const spell_data_t* first_blood_blade_dance_2_damage;
const spell_data_t* first_blood_death_sweep_damage;
const spell_data_t* first_blood_death_sweep_2_damage;
const spell_data_t* furious_gaze_buff;
const spell_data_t* glaive_tempest_damage;
const spell_data_t* immolation_aura_3;
const spell_data_t* initiative_buff;
const spell_data_t* inner_demon_buff;
const spell_data_t* inner_demon_damage;
const spell_data_t* isolated_prey_fury;
const spell_data_t* momentum_buff;
const spell_data_t* ragefire_damage;
const spell_data_t* serrated_glaive_debuff;
const spell_data_t* soulrend_debuff;
const spell_data_t* restless_hunter_buff;
const spell_data_t* tactical_retreat_buff;
const spell_data_t* unbound_chaos_buff;
// Vengeance
const spell_data_t* vengeance_demon_hunter;
const spell_data_t* demon_spikes;
const spell_data_t* infernal_strike;
const spell_data_t* soul_cleave;
const spell_data_t* demonic_wards_2;
const spell_data_t* demonic_wards_3;
const spell_data_t* fiery_brand_debuff;
const spell_data_t* fiery_brand_dot_damage;
const spell_data_t* frailty_debuff;
const spell_data_t* charred_flesh_debuff;
const spell_data_t* riposte;
const spell_data_t* soul_cleave_2;
const spell_data_t* thick_skin;
const spell_data_t* painbringer_buff;
const spell_data_t* soul_furnace_damage_amp;
const spell_data_t* soul_furnace_stack;
const spell_data_t* immolation_aura_cdr;
const spell_data_t* soul_fragments_buff;
} spec;
// Set Bonus effects
struct set_bonuses_t
{
const spell_data_t* t29_havoc_2pc;
const spell_data_t* t29_havoc_4pc;
const spell_data_t* t29_vengeance_2pc;
const spell_data_t* t29_vengeance_4pc;
} set_bonuses;
// Mastery Spells
struct mastery_t
{
// Havoc
const spell_data_t* demonic_presence;
const spell_data_t* any_means_necessary;
const spell_data_t* any_means_necessary_tuning;
// Vengeance
const spell_data_t* fel_blood;
const spell_data_t* fel_blood_rank_2;
} mastery;
// Cooldowns
struct cooldowns_t
{
// General
cooldown_t* consume_magic;
cooldown_t* disrupt;
cooldown_t* elysian_decree;
cooldown_t* felblade;
cooldown_t* fel_eruption;
cooldown_t* immolation_aura;
cooldown_t* the_hunt;
// Havoc
cooldown_t* blade_dance;
cooldown_t* blur;
cooldown_t* chaos_nova;
cooldown_t* essence_break;
cooldown_t* demonic_appetite;
cooldown_t* eye_beam;
cooldown_t* fel_barrage;
cooldown_t* fel_rush;
cooldown_t* metamorphosis;
cooldown_t* netherwalk;
cooldown_t* throw_glaive;
cooldown_t* vengeful_retreat;
cooldown_t* movement_shared;
// Vengeance
cooldown_t* demon_spikes;
cooldown_t* fiery_brand;
cooldown_t* fel_devastation;
cooldown_t* sigil_of_chains;
cooldown_t* sigil_of_flame;
cooldown_t* sigil_of_misery;
cooldown_t* sigil_of_silence;
cooldown_t* volatile_flameblood_icd;
} cooldown;
// Gains
struct gains_t
{
// General
gain_t* miss_refund;
gain_t* immolation_aura;
// Havoc
gain_t* blind_fury;
gain_t* demonic_appetite;
gain_t* isolated_prey;
gain_t* tactical_retreat;
// Vengeance
gain_t* metamorphosis;
gain_t* volatile_flameblood;
gain_t* darkglare_boon;
} gain;
// Benefits
struct benefits_t
{
} benefits;
// Procs
struct procs_t
{
// General
proc_t* delayed_aa_range;
proc_t* delayed_aa_channel;
proc_t* relentless_pursuit;
proc_t* soul_fragment_greater;
proc_t* soul_fragment_greater_demon;
proc_t* soul_fragment_empowered_demon;
proc_t* soul_fragment_lesser;
// Havoc
proc_t* demonic_appetite;
proc_t* demons_bite_in_meta;
proc_t* chaos_strike_in_essence_break;
proc_t* annihilation_in_essence_break;
proc_t* blade_dance_in_essence_break;
proc_t* death_sweep_in_essence_break;
proc_t* felblade_reset;
proc_t* shattered_destiny;
// Vengeance
proc_t* soul_fragment_expire;
proc_t* soul_fragment_overflow;
proc_t* soul_fragment_from_shear;
proc_t* soul_fragment_from_fracture;
proc_t* soul_fragment_from_fallout;
proc_t* soul_fragment_from_meta;
proc_t* soul_fragment_from_hunger;
// Set Bonuses
proc_t* soul_fragment_from_t29_2pc;
} proc;
// RPPM objects
struct rppms_t
{
real_ppm_t* felblade;
// Havoc
real_ppm_t* demonic_appetite;
} rppm;
// Shuffled proc objects
struct shuffled_rngs_t
{
} shuffled_rngs;
// Special
struct actives_t
{
// General
heal_t* consume_soul_greater = nullptr;
heal_t* consume_soul_lesser = nullptr;
spell_t* immolation_aura = nullptr;
spell_t* immolation_aura_initial = nullptr;
spell_t* collective_anguish = nullptr;
// Havoc
spell_t* burning_wound = nullptr;
attack_t* demon_blades = nullptr;
spell_t* inner_demon = nullptr;
spell_t* ragefire = nullptr;
attack_t* relentless_onslaught = nullptr;
attack_t* relentless_onslaught_annihilation = nullptr;
// Vengeance
spell_t* infernal_armor = nullptr;
heal_t* spirit_bomb_heal = nullptr;
} active;
// Pets
struct pets_t
{
} pets;
// Options
struct demon_hunter_options_t
{
// Override for target's hitbox size, relevant for Fel Rush and Vengeful Retreat.
double target_reach = -1.0;
double initial_fury = 0;
int fodder_to_the_flame_kill_seconds = 4;
// Chance to proc initiative off of the fodder demon (ie. not get damaged by it first)
// TODO: Determine a more realistic value
double fodder_to_the_flame_initiative_chance = 1;
double darkglare_boon_cdr_high_roll_seconds = 18;
} options;
demon_hunter_t( sim_t* sim, util::string_view name, race_e r );
// overridden player_t init functions
stat_e convert_hybrid_stat( stat_e s ) const override;
void copy_from( player_t* source ) override;
action_t* create_action( util::string_view name, util::string_view options ) override;
void create_buffs() override;
std::unique_ptr<expr_t> create_expression( util::string_view ) override;
void create_options() override;
pet_t* create_pet( util::string_view name, util::string_view type ) override;
std::string create_profile( save_e ) override;
void init_absorb_priority() override;
void init_action_list() override;
void init_base_stats() override;
void init_procs() override;
void init_resources( bool force ) override;
void init_special_effects() override;
void init_rng() override;
void init_scaling() override;
void init_spells() override;
void invalidate_cache( cache_e ) override;
resource_e primary_resource() const override;
role_e primary_role() const override;
// custom demon_hunter_t init functions
private:
void create_cooldowns();
void create_gains();
void create_benefits();
public:
// Default consumables
std::string default_potion() const override;
std::string default_flask() const override;
std::string default_food() const override;
std::string default_rune() const override;
std::string default_temporary_enchant() const override;
// overridden player_t stat functions
double composite_armor() const override;
double composite_base_armor_multiplier() const override;
double composite_armor_multiplier() const override;
double composite_attack_power_multiplier() const override;
double composite_attribute_multiplier( attribute_e attr ) const override;
double composite_crit_avoidance() const override;
double composite_dodge() const override;
double composite_melee_haste() const override;
double composite_spell_haste() const override;
double composite_leech() const override;
double composite_melee_crit_chance() const override;
double composite_melee_expertise( const weapon_t* ) const override;
double composite_parry() const override;
double composite_parry_rating() const override;
double composite_player_multiplier( school_e ) const override;
double composite_player_critical_damage_multiplier( const action_state_t* ) const override;
double composite_spell_crit_chance() const override;
double composite_mastery() const override;
double composite_damage_versatility() const override;
double composite_heal_versatility() const override;
double composite_mitigation_versatility() const override;
double matching_gear_multiplier( attribute_e attr ) const override;
double passive_movement_modifier() const override;
double temporary_movement_modifier() const override;
// overridden player_t combat functions
void assess_damage( school_e, result_amount_type, action_state_t* s ) override;
void combat_begin() override;
const demon_hunter_td_t* find_target_data( const player_t* target ) const override;
demon_hunter_td_t* get_target_data( player_t* target ) const override;
void interrupt() override;
void regen( timespan_t periodicity ) override;
double resource_gain( resource_e, double, gain_t* source = nullptr, action_t* action = nullptr ) override;
double resource_gain( resource_e, double, double, gain_t* source = nullptr, action_t* action = nullptr );
void recalculate_resource_max( resource_e, gain_t* source = nullptr ) override;
void reset() override;
void merge( player_t& other ) override;
void datacollection_begin() override;
void datacollection_end() override;
void target_mitigation( school_e, result_amount_type, action_state_t* ) override;
void apply_affecting_auras( action_t& action ) override;
// custom demon_hunter_t functions
void set_out_of_range( timespan_t duration );
void adjust_movement();
double calculate_expected_max_health() const;
unsigned consume_soul_fragments( soul_fragment = soul_fragment::ANY, bool heal = true, unsigned max = MAX_SOUL_FRAGMENTS );
unsigned get_active_soul_fragments( soul_fragment = soul_fragment::ANY ) const;
unsigned get_total_soul_fragments( soul_fragment = soul_fragment::ANY ) const;
void activate_soul_fragment( soul_fragment_t* );
void spawn_soul_fragment( soul_fragment, unsigned = 1, bool = false );
void spawn_soul_fragment( soul_fragment, unsigned, player_t* target, bool = false );
void trigger_demonic();
double get_target_reach() const
{
return options.target_reach >= 0 ? options.target_reach : sim->target->combat_reach;
}
// Secondary Action Tracking
private:
std::vector<action_t*> background_actions;
public:
template <typename T, typename... Ts>
T* find_background_action( util::string_view n = {} )
{
T* found_action = nullptr;
for ( auto action : background_actions )
{
found_action = dynamic_cast<T*>( action );
if ( found_action )
{
if ( n.empty() || found_action->name_str == n )
break;
else
found_action = nullptr;
}
}
return found_action;
}
template <typename T, typename... Ts>
T* get_background_action( util::string_view n, Ts&&... args )
{
auto it = range::find( background_actions, n, &action_t::name_str );
if ( it != background_actions.cend() )
{
return dynamic_cast<T*>( *it );
}
auto action = new T( n, this, std::forward<Ts>( args )... );
action->background = true;
background_actions.push_back( action );
return action;
}
// Cooldown Tracking
template <typename T_CONTAINER, typename T_DATA>
T_CONTAINER* get_data_entry( util::string_view name, std::vector<T_DATA*>& entries )
{
for ( size_t i = 0; i < entries.size(); i++ )
{
if ( entries[ i ]->first == name )
{
return &( entries[ i ]->second );
}
}
entries.push_back( new T_DATA( name, T_CONTAINER() ) );
return &( entries.back()->second );
}
private:
target_specific_t<demon_hunter_td_t> _target_data;
};
// Delayed Execute Event ====================================================
struct delayed_execute_event_t : public event_t
{
action_t* action;
player_t* target;
delayed_execute_event_t( demon_hunter_t* p, action_t* a, player_t* t, timespan_t delay )
: event_t( *p->sim, delay ), action( a ), target( t )
{
assert( action->background );
}
const char* name() const override
{
return action->name();
}
void execute() override
{
if ( !target->is_sleeping() )
{
action->set_target( target );
action->execute();
}
}
};
// Movement Buff definition =================================================
struct exit_melee_event_t : public event_t
{
demon_hunter_t& dh;
movement_buff_t* trigger_buff;
exit_melee_event_t( demon_hunter_t* p, timespan_t delay, movement_buff_t* trigger_buff )
: event_t( *p, delay ), dh( *p ),
trigger_buff(trigger_buff)
{
assert(delay > timespan_t::zero());
}
const char* name() const override
{
return "exit_melee_event";
}
void execute() override
{
// Trigger an out of range buff based on the distance to return plus remaining movement aura time
if (trigger_buff && trigger_buff->yards_from_melee > 0.0)
{
const timespan_t base_duration = timespan_t::from_seconds(trigger_buff->yards_from_melee / dh.cache.run_speed());
dh.set_out_of_range(base_duration + trigger_buff->remains());
}
dh.exit_melee_event = nullptr;
}
};
bool movement_buff_t::trigger( int s, double v, double c, timespan_t d )
{
assert( distance_moved > 0 );
assert( buff_duration() > timespan_t::zero() );
// Check if we're already moving away from the target, if so we will now be moving towards it
if ( dh->current.distance_to_move || dh->buff.out_of_range->check() ||
dh->buff.vengeful_retreat_move->check() || dh->buff.metamorphosis_move->check() )
{
dh->set_out_of_range(timespan_t::zero());
yards_from_melee = 0.0;
}
// Since we're not yet moving, we should be moving away from the target
else
{
// Calculate the number of yards away from melee this will send us.
// This is equal to twice the reach + melee range, assuming we are moving "across" the target
yards_from_melee = std::max(0.0, distance_moved - (dh->get_target_reach() + 5.0) * 2.0);
}
if ( yards_from_melee > 0.0 )
{
assert(!dh->exit_melee_event);
// Calculate the amount of time it will take for the movement to carry us out of range
const timespan_t delay = buff_duration() * (1.0 - (yards_from_melee / distance_moved));
assert(delay > timespan_t::zero() );
// Schedule event to set us out of melee.
dh->exit_melee_event = make_event<exit_melee_event_t>(*sim, dh, delay, this);
}
// TODO -- Make this actually inherit from the base movement_buff_t class
if ( dh->buffs.static_empowerment )
{
dh->buffs.static_empowerment->expire();
}
return buff_t::trigger( s, v, c, d );
}
// Soul Fragment definition =================================================
struct soul_fragment_t
{
struct fragment_expiration_t : public event_t
{
soul_fragment_t* frag;
fragment_expiration_t( soul_fragment_t* s )
: event_t( *s->dh, s->dh->spell.soul_fragment->duration() ), frag( s )
{
}
const char* name() const override
{
return "Soul Fragment expiration";
}
void execute() override
{
if ( sim().debug )
{
sim().out_debug.printf( "%s %s expires. active=%u total=%u", frag->dh->name(),
get_soul_fragment_str( frag->type ),
frag->dh->get_active_soul_fragments( frag->type ),
frag->dh->get_total_soul_fragments( frag->type ) );
}
frag->expiration = nullptr;
frag->remove();
}
};
struct fragment_activate_t : public event_t
{