forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_rogue.cpp
10282 lines (8499 loc) · 359 KB
/
sc_rogue.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 DPS-DPM Simulator.
// Send questions to [email protected]
// ==========================================================================
#include "simulationcraft.hpp"
#include "util/util.hpp"
#include "class_modules/apl/apl_rogue.hpp"
namespace { // UNNAMED NAMESPACE
// Forward Declarations
class rogue_t;
constexpr double COMBO_POINT_MAX = 5;
enum class secondary_trigger
{
NONE = 0U,
SINISTER_STRIKE,
WEAPONMASTER,
SECRET_TECHNIQUE,
SHURIKEN_TORNADO,
INTERNAL_BLEEDING,
TRIPLE_THREAT,
FLAGELLATION,
MAIN_GAUCHE,
DEATHMARK,
VICIOUS_VENOMS,
HIDDEN_OPPORTUNITY,
FAN_THE_HAMMER,
};
enum stealth_type_e
{
STEALTH_NORMAL = 0x01,
STEALTH_VANISH = 0x02,
STEALTH_SHADOWMELD = 0x04,
STEALTH_SUBTERFUGE = 0x08,
STEALTH_SHADOW_DANCE = 0x10,
STEALTH_SEPSIS = 0x20,
STEALTH_IMPROVED_GARROTE = 0x40,
STEALTH_BASIC = ( STEALTH_NORMAL | STEALTH_VANISH ), // Normal + Vanish
STEALTH_ROGUE = ( STEALTH_SUBTERFUGE | STEALTH_SHADOW_DANCE ), // Subterfuge + Shadowdance
// All Stealth states that enable Stealth ability stance masks
STEALTH_STANCE = ( STEALTH_BASIC | STEALTH_ROGUE | STEALTH_SHADOWMELD | STEALTH_SEPSIS ),
STEALTH_ALL = 0xFF
};
namespace actions
{
struct rogue_attack_t;
struct rogue_heal_t;
struct rogue_spell_t;
struct rogue_poison_t;
struct melee_t;
struct shadow_blades_attack_t;
struct flagellation_damage_t;
}
enum current_weapon_e
{
WEAPON_PRIMARY = 0U,
WEAPON_SECONDARY
};
enum weapon_slot_e
{
WEAPON_MAIN_HAND = 0U,
WEAPON_OFF_HAND
};
struct weapon_info_t
{
// State of the hand, i.e., primary or secondary weapon currently equipped
current_weapon_e current_weapon;
// Pointers to item data
const item_t* item_data[ 2 ];
// Computed weapon data
weapon_t weapon_data[ 2 ];
// Computed stats data
gear_stats_t stats_data[ 2 ];
// Callbacks, associated with special effects on each weapons
std::vector<dbc_proc_callback_t*> cb_data[ 2 ];
// Item data storage for secondary weapons
item_t secondary_weapon_data;
// Protect against multiple initialization since the init is done in an action_t object.
bool initialized;
// Track secondary weapon uptime through a buff
buff_t* secondary_weapon_uptime;
weapon_info_t() :
current_weapon( WEAPON_PRIMARY ), initialized( false ), secondary_weapon_uptime( nullptr )
{
range::fill( item_data, nullptr );
}
weapon_slot_e slot() const;
void initialize();
void reset();
// Enable/disable callbacks on the primary/secondary weapons.
void callback_state( current_weapon_e weapon, bool state );
};
// ==========================================================================
// Rogue Target Data
// ==========================================================================
class rogue_td_t : public actor_target_data_t
{
std::vector<dot_t*> bleeds;
std::vector<dot_t*> poison_dots;
std::vector<buff_t*> poison_debuffs;
public:
struct dots_t
{
dot_t* crimson_tempest;
dot_t* deadly_poison;
dot_t* deadly_poison_deathmark;
dot_t* deathmark;
dot_t* garrote;
dot_t* garrote_deathmark;
dot_t* internal_bleeding;
dot_t* killing_spree; // Strictly speaking, this should probably be on player
dot_t* kingsbane;
dot_t* mutilated_flesh;
dot_t* rupture;
dot_t* rupture_deathmark;
dot_t* sepsis;
dot_t* serrated_bone_spike;
} dots;
struct debuffs_t
{
buff_t* amplifying_poison;
buff_t* amplifying_poison_deathmark;
buff_t* atrophic_poison;
buff_t* between_the_eyes;
buff_t* crippling_poison;
damage_buff_t* deathmark;
buff_t* find_weakness;
buff_t* flagellation;
buff_t* ghostly_strike;
buff_t* marked_for_death;
buff_t* numbing_poison;
buff_t* prey_on_the_weak;
damage_buff_t* shiv;
buff_t* wound_poison;
} debuffs;
rogue_td_t( player_t* target, rogue_t* source );
timespan_t lethal_poison_remains() const
{
if ( dots.deadly_poison->is_ticking() )
return dots.deadly_poison->remains();
if ( dots.deadly_poison_deathmark->is_ticking() )
return dots.deadly_poison_deathmark->remains();
if ( debuffs.wound_poison->check() )
return debuffs.wound_poison->remains();
if ( debuffs.amplifying_poison->check() )
return debuffs.amplifying_poison->remains();
if ( debuffs.amplifying_poison_deathmark->check() )
return debuffs.amplifying_poison_deathmark->remains();
return 0_s;
}
timespan_t non_lethal_poison_remains() const
{
if ( debuffs.atrophic_poison->check() )
return debuffs.atrophic_poison->remains();
if ( debuffs.crippling_poison->check() )
return debuffs.crippling_poison->remains();
if ( debuffs.numbing_poison->check() )
return debuffs.numbing_poison->remains();
return 0_s;
}
bool is_lethal_poisoned() const
{
return dots.deadly_poison->is_ticking() || dots.deadly_poison_deathmark->is_ticking() ||
debuffs.amplifying_poison->check() || debuffs.amplifying_poison_deathmark->check() ||
debuffs.wound_poison->check();
}
bool is_non_lethal_poisoned() const
{
return debuffs.atrophic_poison->check() || debuffs.crippling_poison->check() || debuffs.numbing_poison->check();
}
bool is_poisoned() const
{
return is_lethal_poisoned() || is_non_lethal_poisoned();
}
bool is_bleeding() const
{
for ( auto b : bleeds )
{
if ( b->is_ticking() )
return true;
}
return false;
}
int total_bleeds() const
{
// TOCHECK -- Confirm all these things count as intended
return as<int>( range::count_if( bleeds, []( dot_t* dot ) { return dot->is_ticking(); } ) );
}
int total_poisons() const
{
// TOCHECK -- Confirm all these things count as intended
return as<int>( range::count_if( poison_dots, []( dot_t* d ) { return d->is_ticking(); } ) +
range::count_if( poison_debuffs, []( buff_t* b ) { return b->check(); } ) );
}
};
// ==========================================================================
// Rogue
// ==========================================================================
class rogue_t : public player_t
{
public:
// Shadow Techniques swing counter;
unsigned shadow_techniques_counter;
// Danse Macabre Ability ID Tracker
std::vector<unsigned> danse_macabre_tracker;
// Active
struct
{
actions::rogue_poison_t* lethal_poison = nullptr;
actions::rogue_poison_t* lethal_poison_dtb = nullptr;
actions::rogue_poison_t* nonlethal_poison = nullptr;
actions::rogue_poison_t* nonlethal_poison_dtb = nullptr;
actions::rogue_attack_t* blade_flurry = nullptr;
actions::rogue_attack_t* fan_the_hammer = nullptr;
actions::flagellation_damage_t* flagellation = nullptr;
actions::rogue_attack_t* lingering_shadow = nullptr;
actions::rogue_attack_t* main_gauche = nullptr;
actions::rogue_attack_t* poison_bomb = nullptr;
actions::shadow_blades_attack_t* shadow_blades_attack = nullptr;
actions::rogue_attack_t* triple_threat_mh = nullptr;
actions::rogue_attack_t* triple_threat_oh = nullptr;
struct
{
actions::rogue_attack_t* backstab = nullptr;
actions::rogue_attack_t* gloomblade = nullptr;
actions::rogue_attack_t* shadowstrike = nullptr;
} weaponmaster;
struct
{
actions::rogue_attack_t* amplifying_poison = nullptr;
actions::rogue_attack_t* deadly_poison_dot = nullptr;
actions::rogue_attack_t* deadly_poison_instant = nullptr;
actions::rogue_attack_t* garrote = nullptr;
actions::rogue_attack_t* instant_poison = nullptr;
actions::rogue_attack_t* rupture = nullptr;
actions::rogue_attack_t* wound_poison = nullptr;
} deathmark;
struct
{
actions::rogue_attack_t* mutilate_mh = nullptr;
actions::rogue_attack_t* mutilate_oh = nullptr;
actions::rogue_attack_t* ambush = nullptr;
} vicious_venoms;
} active;
// Autoattacks
action_t* auto_attack;
actions::melee_t* melee_main_hand;
actions::melee_t* melee_off_hand;
// Is using stealth during combat allowed? Relevant for Dungeon sims.
bool restealth_allowed;
// Experimental weapon swapping
std::array<weapon_info_t, 2> weapon_data;
// Buffs
struct buffs_t
{
// Baseline
// Shared
buff_t* feint;
buff_t* shadowstep;
buff_t* sprint;
buff_t* stealth;
buff_t* vanish;
// Assassination
buff_t* envenom;
// Outlaw
buff_t* adrenaline_rush;
buff_t* blade_flurry;
buff_t* blade_rush;
buff_t* opportunity;
buff_t* roll_the_bones;
// Roll the bones buffs
damage_buff_t* broadside;
buff_t* buried_treasure;
buff_t* grand_melee;
buff_t* skull_and_crossbones;
damage_buff_t* ruthless_precision;
buff_t* true_bearing;
// Subtlety
buff_t* shadow_blades;
damage_buff_t* shadow_dance;
damage_buff_t* symbols_of_death;
// Talents
// Shared
std::vector<buff_t*> echoing_reprimand;
buff_t* alacrity;
damage_buff_t* cold_blood;
damage_buff_t* nightstalker;
buff_t* sepsis;
buff_t* subterfuge;
buff_t* thistle_tea;
// Assassination
buff_t* blindside;
damage_buff_t* elaborate_planning;
buff_t* improved_garrote;
buff_t* improved_garrote_aura;
buff_t* indiscriminate_carnage_garrote;
buff_t* indiscriminate_carnage_rupture;
damage_buff_t* kingsbane;
damage_buff_t* master_assassin;
damage_buff_t* master_assassin_aura;
buff_t* scent_of_blood;
// Outlaw
buff_t* audacity;
buff_t* dreadblades;
buff_t* greenskins_wickers;
buff_t* killing_spree;
buff_t* loaded_dice;
buff_t* slice_and_dice;
buff_t* take_em_by_surprise;
buff_t* take_em_by_surprise_aura;
damage_buff_t* summarily_dispatched;
// Subtlety
damage_buff_t* danse_macabre;
damage_buff_t* deeper_daggers;
damage_buff_t* finality_eviscerate;
buff_t* finality_rupture;
damage_buff_t* finality_black_powder;
buff_t* flagellation;
buff_t* flagellation_persist;
buff_t* lingering_shadow;
buff_t* master_of_shadows;
damage_buff_t* perforated_veins;
buff_t* premeditation;
buff_t* secret_technique; // Only to simplify APL tracking
buff_t* shadow_techniques; // Internal tracking buff
buff_t* shot_in_the_dark;
buff_t* shuriken_tornado;
buff_t* silent_storm;
damage_buff_t* the_rotten;
// Set Bonuses
damage_buff_t* t29_assassination_4pc;
damage_buff_t* t29_outlaw_2pc;
damage_buff_t* t29_outlaw_4pc;
damage_buff_t* t29_subtlety_2pc;
damage_buff_t* t29_subtlety_4pc;
damage_buff_t* t29_subtlety_4pc_black_powder;
} buffs;
// Cooldowns
struct cooldowns_t
{
cooldown_t* adrenaline_rush;
cooldown_t* between_the_eyes;
cooldown_t* blade_flurry;
cooldown_t* blade_rush;
cooldown_t* blind;
cooldown_t* cloak_of_shadows;
cooldown_t* cold_blood;
cooldown_t* deathmark;
cooldown_t* dreadblades;
cooldown_t* echoing_reprimand;
cooldown_t* evasion;
cooldown_t* feint;
cooldown_t* flagellation;
cooldown_t* garrote;
cooldown_t* ghostly_strike;
cooldown_t* gouge;
cooldown_t* grappling_hook;
cooldown_t* indiscriminate_carnage;
cooldown_t* keep_it_rolling;
cooldown_t* killing_spree;
cooldown_t* kingsbane;
cooldown_t* marked_for_death;
cooldown_t* roll_the_bones;
cooldown_t* secret_technique;
cooldown_t* sepsis;
cooldown_t* serrated_bone_spike;
cooldown_t* shadow_blades;
cooldown_t* shadow_dance;
cooldown_t* shadowstep;
cooldown_t* shiv;
cooldown_t* sprint;
cooldown_t* symbols_of_death;
cooldown_t* thistle_tea;
cooldown_t* vanish;
target_specific_cooldown_t* perforated_veins;
target_specific_cooldown_t* weaponmaster;
} cooldowns;
// Gains
struct gains_t
{
gain_t* adrenaline_rush;
gain_t* adrenaline_rush_expiry;
gain_t* blade_rush;
gain_t* buried_treasure;
gain_t* dashing_scoundrel;
gain_t* fatal_flourish;
gain_t* energy_refund;
gain_t* master_of_shadows;
gain_t* venom_rush;
gain_t* venomous_wounds;
gain_t* venomous_wounds_death;
gain_t* relentless_strikes;
gain_t* symbols_of_death;
gain_t* slice_and_dice;
// CP Gains
gain_t* ace_up_your_sleeve;
gain_t* broadside;
gain_t* dreadblades;
gain_t* improved_adrenaline_rush;
gain_t* improved_adrenaline_rush_expiry;
gain_t* improved_ambush;
gain_t* premeditation;
gain_t* quick_draw;
gain_t* ruthlessness;
gain_t* seal_fate;
gain_t* serrated_bone_spike;
gain_t* shadow_techniques;
gain_t* shadow_blades;
gain_t* shrouded_suffocation;
gain_t* the_first_dance;
gain_t* the_rotten;
} gains;
// Spell Data
struct spells_t
{
// Core Class Spells
const spell_data_t* ambush;
const spell_data_t* cheap_shot;
const spell_data_t* crimson_vial; // No implementation
const spell_data_t* crippling_poison;
const spell_data_t* detection;
const spell_data_t* echoing_reprimand;
const spell_data_t* instant_poison;
const spell_data_t* kick;
const spell_data_t* kidney_shot;
const spell_data_t* shadow_dance;
const spell_data_t* shadowstep;
const spell_data_t* slice_and_dice;
const spell_data_t* sprint;
const spell_data_t* stealth;
const spell_data_t* vanish;
const spell_data_t* wound_poison;
// Class Passives
const spell_data_t* all_rogue;
const spell_data_t* critical_strikes;
const spell_data_t* fleet_footed; // DFALPHA: Duplicate passive?
const spell_data_t* leather_specialization;
// Background Spells
const spell_data_t* alacrity_buff;
const spell_data_t* find_weakness_debuff;
const spell_data_t* leeching_poison_buff;
const spell_data_t* nightstalker_buff;
const spell_data_t* prey_on_the_weak_debuff;
const spell_data_t* sepsis_buff;
const spell_data_t* sepsis_expire_damage;
const spell_data_t* subterfuge_buff;
const spell_data_t* vanish_buff;
} spell;
// Spec Spell Data
struct spec_t
{
// Assassination Spells
const spell_data_t* assassination_rogue;
const spell_data_t* envenom;
const spell_data_t* fan_of_knives;
const spell_data_t* garrote;
const spell_data_t* mutilate;
const spell_data_t* poisoned_knife;
const spell_data_t* amplifying_poison_debuff;
const spell_data_t* blindside_buff;
const spell_data_t* dashing_scoundrel;
double dashing_scoundrel_gain = 0.0;
const spell_data_t* deadly_poison_instant;
const spell_data_t* elaborate_planning_buff;
const spell_data_t* improved_garrote_buff;
const spell_data_t* improved_shiv_debuff;
const spell_data_t* internal_bleeding_debuff;
const spell_data_t* kingsbane_buff;
const spell_data_t* master_assassin_buff;
const spell_data_t* poison_bomb_driver;
const spell_data_t* poison_bomb_damage;
const spell_data_t* serrated_bone_spike_energize;
const spell_data_t* scent_of_blood_buff;
const spell_data_t* vicious_venoms_ambush;
const spell_data_t* vicious_venoms_mutilate_mh;
const spell_data_t* vicious_venoms_mutilate_oh;
const spell_data_t* zoldyck_insignia;
const spell_data_t* deathmark_debuff;
const spell_data_t* deathmark_amplifying_poison;
const spell_data_t* deathmark_deadly_poison_dot;
const spell_data_t* deathmark_deadly_poison_instant;
const spell_data_t* deathmark_garrote;
const spell_data_t* deathmark_instant_poison;
const spell_data_t* deathmark_rupture;
const spell_data_t* deathmark_wound_poison;
// Outlaw Spells
const spell_data_t* outlaw_rogue;
const spell_data_t* between_the_eyes;
const spell_data_t* dispatch;
const spell_data_t* pistol_shot;
const spell_data_t* sinister_strike;
const spell_data_t* audacity_buff;
const spell_data_t* blade_flurry_attack;
const spell_data_t* blade_flurry_instant_attack;
const spell_data_t* blade_rush_attack;
const spell_data_t* blade_rush_energize;
const spell_data_t* doomblade_debuff;
const spell_data_t* greenskins_wickers;
const spell_data_t* greenskins_wickers_buff;
const spell_data_t* hidden_opportunity_extra_attack;
const spell_data_t* improved_adrenaline_rush_energize;
const spell_data_t* killing_spree_mh_attack;
const spell_data_t* killing_spree_oh_attack;
const spell_data_t* opportunity_buff;
const spell_data_t* sinister_strike_extra_attack;
const spell_data_t* summarily_dispatched_buff;
const spell_data_t* take_em_by_surprise_buff;
const spell_data_t* triple_threat_attack;
const spell_data_t* broadside;
const spell_data_t* buried_treasure;
const spell_data_t* grand_melee;
const spell_data_t* skull_and_crossbones;
const spell_data_t* ruthless_precision;
const spell_data_t* true_bearing;
// Subtlety Spells
const spell_data_t* subtlety_rogue;
const spell_data_t* backstab;
const spell_data_t* eviscerate;
const spell_data_t* shadow_dance; // Baseline charge increase passive
const spell_data_t* shadow_techniques;
const spell_data_t* shadowstrike;
const spell_data_t* shuriken_storm;
const spell_data_t* shuriken_toss;
const spell_data_t* symbols_of_death;
const spell_data_t* black_powder_shadow_attack;
const spell_data_t* danse_macabre_buff;
const spell_data_t* deeper_daggers_buff;
const spell_data_t* eviscerate_shadow_attack;
const spell_data_t* finality_black_powder_buff;
const spell_data_t* finality_eviscerate_buff;
const spell_data_t* finality_rupture_buff;
const spell_data_t* flagellation_buff;
const spell_data_t* flagellation_persist_buff;
const spell_data_t* flagellation_damage;
const spell_data_t* master_of_shadows_buff;
const spell_data_t* perforated_veins_buff;
const spell_data_t* premeditation_buff;
const spell_data_t* relentless_strikes_energize;
const spell_data_t* replicating_shadows_tick;
const spell_data_t* invigorating_shadowdust_cdr;
const spell_data_t* lingering_shadow_attack;
const spell_data_t* lingering_shadow_buff;
const spell_data_t* secret_technique_attack;
const spell_data_t* secret_technique_clone_attack;
const spell_data_t* shadow_blades_attack;
const spell_data_t* shadow_focus_buff;
const spell_data_t* shadow_techniques_energize;
const spell_data_t* shadowstrike_stealth_buff;
const spell_data_t* shot_in_the_dark_buff;
const spell_data_t* silent_storm_buff;
// Multi-Spec
const spell_data_t* rupture; // Assassination + Subtlety
} spec;
// Talents
struct talents_t
{
struct class_talents_t
{
player_talent_t shiv;
player_talent_t blind; // No implementation
player_talent_t sap; // No implementation
player_talent_t evasion; // No implementation
player_talent_t feint;
player_talent_t cloak_of_shadows; // No implementation
player_talent_t master_poisoner; // No implementation
player_talent_t numbing_poison;
player_talent_t atrophic_poison;
player_talent_t nimble_fingers;
player_talent_t gouge;
player_talent_t rushed_setup;
player_talent_t tricks_of_the_trade; // No implementation
player_talent_t shadowrunner;
player_talent_t improved_wound_poison;
player_talent_t fleet_footed;
player_talent_t iron_stomach; // No implementation
player_talent_t improved_sprint;
player_talent_t prey_on_the_weak;
player_talent_t shadowstep;
player_talent_t subterfuge;
player_talent_t deadened_nerves; // No implementation
player_talent_t elusiveness; // No implementation
player_talent_t cheat_death; // No implementation
player_talent_t blackjack; // No implementation
player_talent_t deadly_precision;
player_talent_t virulent_poisons;
player_talent_t thiefs_versatility;
player_talent_t tight_spender;
player_talent_t nightstalker;
player_talent_t vigor;
player_talent_t acrobatic_strikes;
player_talent_t improved_ambush;
player_talent_t leeching_poison;
player_talent_t lethality;
player_talent_t recuperator;
player_talent_t alacrity;
player_talent_t soothing_darkness; // No implementation
player_talent_t seal_fate;
player_talent_t cold_blood;
player_talent_t echoing_reprimand;
player_talent_t marked_for_death;
player_talent_t deeper_stratagem;
player_talent_t find_weakness;
player_talent_t thistle_tea;
player_talent_t resounding_clarity;
player_talent_t reverberation;
player_talent_t shadow_dance;
} rogue;
struct assassination_talents_t
{
player_talent_t deadly_poison;
player_talent_t improved_shiv;
player_talent_t venomous_wounds;
player_talent_t shadowstep;
player_talent_t cut_to_the_chase;
player_talent_t elaborate_planning;
player_talent_t improved_poisons;
player_talent_t bloody_mess;
player_talent_t internal_bleeding;
player_talent_t thrown_precision;
player_talent_t lightweight_shiv;
player_talent_t fatal_concoction;
player_talent_t improved_garrote;
player_talent_t intent_to_kill;
player_talent_t crimson_tempest;
player_talent_t venom_rush;
player_talent_t deathmark;
player_talent_t master_assassin;
player_talent_t exsanguinate;
player_talent_t flying_daggers;
player_talent_t vicious_venoms;
player_talent_t lethal_dose;
player_talent_t iron_wire; // No implementation
player_talent_t systemic_failure;
player_talent_t amplifying_poison;
player_talent_t twist_the_knife;
player_talent_t doomblade;
player_talent_t blindside;
player_talent_t tiny_toxic_blade;
player_talent_t poison_bomb;
player_talent_t shrouded_suffocation;
player_talent_t sepsis;
player_talent_t serrated_bone_spike;
player_talent_t zoldyck_recipe;
player_talent_t dashing_scoundrel;
player_talent_t scent_of_blood;
player_talent_t arterial_precision;
player_talent_t kingsbane;
player_talent_t dragon_tempered_blades;
player_talent_t indiscriminate_carnage;
} assassination;
struct outlaw_talents_t
{
player_talent_t opportunity;
player_talent_t blade_flurry;
player_talent_t grappling_hook; // No implementation
player_talent_t weaponmaster;
player_talent_t combat_potency;
player_talent_t ambidexterity;
player_talent_t hit_and_run;
player_talent_t retractable_hook; // No implementation
player_talent_t combat_stamina;
player_talent_t adrenaline_rush;
player_talent_t riposte; // No implementation
player_talent_t deft_maneuvers; // No implementation (no dynamic range functionality)
player_talent_t blinding_powder; // No implementation
player_talent_t ruthlessness;
player_talent_t swift_slasher;
player_talent_t restless_blades;
player_talent_t fatal_flourish;
player_talent_t improved_between_the_eyes;
player_talent_t dirty_tricks;
player_talent_t heavy_hitter;
player_talent_t devious_stratagem;
player_talent_t roll_the_bones;
player_talent_t quick_draw;
player_talent_t ace_up_your_sleeve;
player_talent_t audacity;
player_talent_t loaded_dice;
player_talent_t float_like_a_butterfly;
player_talent_t sleight_of_hand;
player_talent_t dancing_steel;
player_talent_t triple_threat;
player_talent_t count_the_odds;
player_talent_t improved_main_gauche;
player_talent_t sepsis;
player_talent_t ghostly_strike;
player_talent_t blade_rush;
player_talent_t improved_adrenaline_rush;
player_talent_t killing_spree;
player_talent_t dreadblades;
player_talent_t precise_cuts;
player_talent_t take_em_by_surprise;
player_talent_t summarily_dispatched;
player_talent_t fan_the_hammer;
player_talent_t hidden_opportunity;
player_talent_t keep_it_rolling;
player_talent_t greenskins_wickers;
} outlaw;
struct subtlety_talents_t
{
player_talent_t improved_backstab;
player_talent_t shadowstep;
player_talent_t improved_shuriken_storm;
player_talent_t weaponmaster;
player_talent_t shadow_focus;
player_talent_t quick_decisions;
player_talent_t relentless_strikes;
player_talent_t black_powder;
player_talent_t shot_in_the_dark;
player_talent_t premeditation;
player_talent_t shadow_blades;
player_talent_t silent_storm;
player_talent_t night_terrors; // No implementation
player_talent_t gloomblade;
player_talent_t improved_shadow_techniques;
player_talent_t stiletto_staccato;
player_talent_t veiltouched;
player_talent_t secret_technique;
player_talent_t swift_death;
player_talent_t the_first_dance;
player_talent_t master_of_shadows;
player_talent_t deepening_shadows;
player_talent_t replicating_shadows;
player_talent_t shrouded_in_darkness; // No implementation
player_talent_t planned_execution;
player_talent_t improved_shadow_dance;
player_talent_t shadowed_finishers;
player_talent_t shuriken_tornado;
player_talent_t inevitability;
player_talent_t without_a_trace;
player_talent_t fade_to_nothing; // No implementation
player_talent_t cloaked_in_shadow; // No implementation
player_talent_t secret_stratagem;
player_talent_t sepsis;
player_talent_t perforated_veins;
player_talent_t dark_shadow;
player_talent_t deeper_daggers;
player_talent_t flagellation;
player_talent_t invigorating_shadowdust;
player_talent_t lingering_shadow;
player_talent_t finality;
player_talent_t the_rotten;
player_talent_t danse_macabre;
player_talent_t dark_brew;
} subtlety;
struct shared_talents_t
{
player_talent_t sepsis;
player_talent_t shadowstep;
} shared;
} talent;
// Masteries
struct masteries_t
{
// Assassination
const spell_data_t* potent_assassin;
// Outlaw
const spell_data_t* main_gauche;
const spell_data_t* main_gauche_attack;
// Subtlety
const spell_data_t* executioner;
} mastery;
// Legendary effects
struct legendary_t
{
} legendary;
// Procs
struct procs_t
{
// Shared
std::vector<proc_t*> echoing_reprimand;
// Assassination
proc_t* amplifying_poison_consumed;
proc_t* amplifying_poison_deathmark_consumed;
proc_t* serrated_bone_spike_refund;
proc_t* serrated_bone_spike_waste;
proc_t* serrated_bone_spike_waste_partial;
// Outlaw
proc_t* count_the_odds;
proc_t* count_the_odds_capped;
proc_t* roll_the_bones_1;
proc_t* roll_the_bones_2;
proc_t* roll_the_bones_3;
proc_t* roll_the_bones_4;
proc_t* roll_the_bones_5;
proc_t* roll_the_bones_6;
proc_t* roll_the_bones_wasted;
// Subtlety
proc_t* deepening_shadows;
proc_t* flagellation_cp_spend;
proc_t* weaponmaster;
// Set Bonus
} procs;
// Set Bonus effects
struct set_bonuses_t
{
const spell_data_t* t29_assassination_2pc;
const spell_data_t* t29_assassination_4pc;
const spell_data_t* t29_outlaw_2pc;
const spell_data_t* t29_outlaw_4pc;
const spell_data_t* t29_subtlety_2pc;
const spell_data_t* t29_subtlety_4pc;
} set_bonuses;
// Options
struct rogue_options_t
{
std::vector<size_t> fixed_rtb;
std::vector<double> fixed_rtb_odds;
int initial_combo_points = 0;
int initial_shadow_techniques = -1;
bool rogue_ready_trigger = true;
bool prepull_shadowdust = false;
bool priority_rotation = false;
} options;
rogue_t( sim_t* sim, util::string_view name, race_e r = RACE_NIGHT_ELF ) :
player_t( sim, ROGUE, name, r ),
shadow_techniques_counter( 0 ),
auto_attack( nullptr ), melee_main_hand( nullptr ), melee_off_hand( nullptr ),
restealth_allowed( false ),
buffs( buffs_t() ),
cooldowns( cooldowns_t() ),
gains( gains_t() ),
spell( spells_t() ),
spec( spec_t() ),
talent( talents_t() ),
mastery( masteries_t() ),
legendary( legendary_t() ),
procs( procs_t() ),
set_bonuses( set_bonuses_t() ),
options( rogue_options_t() )
{
// Cooldowns
cooldowns.adrenaline_rush = get_cooldown( "adrenaline_rush" );
cooldowns.between_the_eyes = get_cooldown( "between_the_eyes" );
cooldowns.blade_flurry = get_cooldown( "blade_flurry" );
cooldowns.blade_rush = get_cooldown( "blade_rush" );
cooldowns.blind = get_cooldown( "blind" );
cooldowns.cloak_of_shadows = get_cooldown( "cloak_of_shadows" );
cooldowns.cold_blood = get_cooldown( "cold_blood" );
cooldowns.deathmark = get_cooldown( "deathmark" );
cooldowns.dreadblades = get_cooldown( "dreadblades" );
cooldowns.echoing_reprimand = get_cooldown( "echoing_reprimand" );
cooldowns.evasion = get_cooldown( "evasion" );
cooldowns.feint = get_cooldown( "feint" );
cooldowns.flagellation = get_cooldown( "flagellation" );
cooldowns.garrote = get_cooldown( "garrote" );
cooldowns.ghostly_strike = get_cooldown( "ghostly_strike" );
cooldowns.gouge = get_cooldown( "gouge" );
cooldowns.grappling_hook = get_cooldown( "grappling_hook" );
cooldowns.indiscriminate_carnage = get_cooldown( "indiscriminate_carnage" );
cooldowns.keep_it_rolling = get_cooldown( "keep_it_rolling" );
cooldowns.killing_spree = get_cooldown( "killing_spree" );
cooldowns.kingsbane = get_cooldown( "kingsbane" );
cooldowns.marked_for_death = get_cooldown( "marked_for_death" );
cooldowns.roll_the_bones = get_cooldown( "roll_the_bones" );
cooldowns.secret_technique = get_cooldown( "secret_technique" );
cooldowns.sepsis = get_cooldown( "sepsis" );
cooldowns.serrated_bone_spike = get_cooldown( "serrated_bone_spike" );
cooldowns.shadow_blades = get_cooldown( "shadow_blades" );
cooldowns.shadow_dance = get_cooldown( "shadow_dance" );
cooldowns.shadowstep = get_cooldown( "shadowstep" );
cooldowns.shiv = get_cooldown( "shiv" );
cooldowns.sprint = get_cooldown( "sprint" );
cooldowns.symbols_of_death = get_cooldown( "symbols_of_death" );
cooldowns.thistle_tea = get_cooldown( "thistle_tea" );
cooldowns.vanish = get_cooldown( "vanish" );