1
- using JobBars . Data ;
1
+ using JobBars . Data ;
2
2
using JobBars . Helper ;
3
3
using System ;
4
4
using System . Collections . Generic ;
5
+ using System . Linq ;
5
6
using System . Numerics ;
6
7
7
8
namespace JobBars . Cooldowns . Manager {
@@ -15,33 +16,33 @@ public unsafe partial class CooldownManager : PerJobManager<CooldownConfig[]> {
15
16
private Dictionary < uint , CooldownPartyMember > ObjectIdToMember = new ( ) ;
16
17
private readonly Dictionary < JobIds , List < CooldownConfig > > CustomCooldowns = new ( ) ;
17
18
18
- public CooldownManager ( ) : base ( "##JobBars_Cooldowns" ) {
19
- JobBars . Builder . SetCooldownPosition ( JobBars . Configuration . CooldownPosition ) ;
19
+ public CooldownManager ( ) : base ( "##JobBars_Cooldowns" ) {
20
+ JobBars . Builder . SetCooldownPosition ( JobBars . Configuration . CooldownPosition ) ;
20
21
21
- // initialize custom cooldowns
22
- foreach ( var custom in JobBars . Configuration . CustomCooldown ) {
23
- if ( ! CustomCooldowns . ContainsKey ( custom . Job ) ) CustomCooldowns [ custom . Job ] = new ( ) ;
24
- CustomCooldowns [ custom . Job ] . Add ( new CooldownConfig ( custom . Name , custom . Props ) ) ;
22
+ // Initialize custom cooldowns, remove duplicates
23
+ foreach ( var custom in JobBars . Configuration . CustomCooldown . GroupBy ( x => x . GetNameId ( ) ) . Select ( x => x . First ( ) ) . ToList ( ) ) {
24
+ if ( ! CustomCooldowns . ContainsKey ( custom . Job ) ) CustomCooldowns [ custom . Job ] = new ( ) ;
25
+ CustomCooldowns [ custom . Job ] . Add ( new CooldownConfig ( custom . Name , custom . GetNameId ( ) , custom . Props ) ) ;
25
26
}
26
27
}
27
28
28
- public CooldownConfig [ ] GetCooldownConfigs ( JobIds job ) {
29
+ public CooldownConfig [ ] GetCooldownConfigs ( JobIds job ) {
29
30
List < CooldownConfig > configs = new ( ) ;
30
- if ( JobToValue . TryGetValue ( job , out var props ) ) configs . AddRange ( props ) ;
31
- if ( CustomCooldowns . TryGetValue ( job , out var customProps ) ) configs . AddRange ( customProps ) ;
31
+ if ( JobToValue . TryGetValue ( job , out var props ) ) configs . AddRange ( props ) ;
32
+ if ( CustomCooldowns . TryGetValue ( job , out var customProps ) ) configs . AddRange ( customProps ) ;
32
33
return configs . ToArray ( ) ;
33
34
}
34
35
35
- public void PerformAction ( Item action , uint objectId ) {
36
- if ( ! JobBars . Configuration . CooldownsEnabled ) return ;
36
+ public void PerformAction ( Item action , uint objectId ) {
37
+ if ( ! JobBars . Configuration . CooldownsEnabled ) return ;
37
38
38
- foreach ( var member in ObjectIdToMember . Values ) {
39
- member . ProcessAction ( action , objectId ) ;
39
+ foreach ( var member in ObjectIdToMember . Values ) {
40
+ member . ProcessAction ( action , objectId ) ;
40
41
}
41
42
}
42
43
43
44
public void Tick ( ) {
44
- if ( AtkHelper . CalcDoHide ( JobBars . Configuration . CooldownsEnabled , JobBars . Configuration . CooldownsHideOutOfCombat , JobBars . Configuration . CooldownsHideWeaponSheathed ) ) {
45
+ if ( AtkHelper . CalcDoHide ( JobBars . Configuration . CooldownsEnabled , JobBars . Configuration . CooldownsHideOutOfCombat , JobBars . Configuration . CooldownsHideWeaponSheathed ) ) {
45
46
JobBars . Builder . HideCooldowns ( ) ;
46
47
return ;
47
48
}
@@ -52,61 +53,61 @@ public void Tick() {
52
53
// ============================
53
54
54
55
var time = DateTime . Now ;
55
- int millis = time . Second * 1000 + time . Millisecond ;
56
- float percent = ( float ) ( millis % MILLIS_LOOP ) / MILLIS_LOOP ;
56
+ var millis = time . Second * 1000 + time . Millisecond ;
57
+ var percent = ( float ) ( millis % MILLIS_LOOP ) / MILLIS_LOOP ;
57
58
58
59
Dictionary < uint , CooldownPartyMember > newObjectIdToMember = new ( ) ;
59
60
60
- if ( JobBars . PartyMembers == null ) Dalamud . Error ( "PartyMembers is null" ) ;
61
+ if ( JobBars . PartyMembers == null ) Dalamud . Error ( "PartyMembers is null" ) ;
61
62
62
- for ( int idx = 0 ; idx < JobBars . PartyMembers . Count ; idx ++ ) {
63
+ for ( var idx = 0 ; idx < JobBars . PartyMembers . Count ; idx ++ ) {
63
64
var partyMember = JobBars . PartyMembers [ idx ] ;
64
65
65
- if ( partyMember == null || partyMember ? . ObjectId == 0 || partyMember ? . Job == JobIds . OTHER ) {
66
- JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
66
+ if ( partyMember == null || partyMember ? . ObjectId == 0 || partyMember ? . Job == JobIds . OTHER ) {
67
+ JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
67
68
continue ;
68
69
}
69
70
70
- if ( ! JobBars . Configuration . CooldownsShowPartyMembers && partyMember . ObjectId != Dalamud . ClientState . LocalPlayer . ObjectId ) {
71
- JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
71
+ if ( ! JobBars . Configuration . CooldownsShowPartyMembers && partyMember . ObjectId != Dalamud . ClientState . LocalPlayer . ObjectId ) {
72
+ JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
72
73
continue ;
73
74
}
74
75
75
- var member = ObjectIdToMember . TryGetValue ( partyMember . ObjectId , out var _member ) ? _member : new CooldownPartyMember ( partyMember . ObjectId ) ;
76
- member . Tick ( JobBars . Builder . Cooldowns [ idx ] , partyMember , percent ) ;
76
+ var member = ObjectIdToMember . TryGetValue ( partyMember . ObjectId , out var _member ) ? _member : new CooldownPartyMember ( partyMember . ObjectId ) ;
77
+ member . Tick ( JobBars . Builder . Cooldowns [ idx ] , partyMember , percent ) ;
77
78
newObjectIdToMember [ partyMember . ObjectId ] = member ;
78
79
79
- JobBars . Builder . SetCooldownRowVisible ( idx , true ) ;
80
+ JobBars . Builder . SetCooldownRowVisible ( idx , true ) ;
80
81
}
81
82
82
- for ( int idx = JobBars . PartyMembers . Count ; idx < 8 ; idx ++ ) { // hide remaining slots
83
- JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
83
+ for ( var idx = JobBars . PartyMembers . Count ; idx < 8 ; idx ++ ) { // hide remaining slots
84
+ JobBars . Builder . SetCooldownRowVisible ( idx , false ) ;
84
85
}
85
86
86
87
ObjectIdToMember = newObjectIdToMember ;
87
88
}
88
89
89
90
public void UpdatePositionScale ( ) {
90
- JobBars . Builder . SetCooldownPosition ( JobBars . Configuration . CooldownPosition + new Vector2 ( 0 , AtkHelper . PartyListOffset ( ) ) ) ;
91
- JobBars . Builder . SetCooldownScale ( JobBars . Configuration . CooldownScale ) ;
91
+ JobBars . Builder . SetCooldownPosition ( JobBars . Configuration . CooldownPosition + new Vector2 ( 0 , AtkHelper . PartyListOffset ( ) ) ) ;
92
+ JobBars . Builder . SetCooldownScale ( JobBars . Configuration . CooldownScale ) ;
92
93
JobBars . Builder . RefreshCooldownsLayout ( ) ;
93
94
}
94
95
95
96
public void ResetUi ( ) => ObjectIdToMember . Clear ( ) ;
96
97
97
98
public void ResetTrackers ( ) {
98
- foreach ( var item in ObjectIdToMember . Values ) item . Reset ( ) ;
99
+ foreach ( var item in ObjectIdToMember . Values ) item . Reset ( ) ;
99
100
}
100
101
101
- public void AddCustomCooldown ( JobIds job , string name , CooldownProps props ) {
102
- if ( ! CustomCooldowns . ContainsKey ( job ) ) CustomCooldowns [ job ] = new ( ) ;
103
- CustomCooldowns [ job ] . Add ( new CooldownConfig ( name , props ) ) ;
104
- JobBars . Configuration . AddCustomCooldown ( name , job , props ) ;
102
+ public void AddCustomCooldown ( JobIds job , string name , CooldownProps props ) {
103
+ if ( ! CustomCooldowns . ContainsKey ( job ) ) CustomCooldowns [ job ] = new ( ) ;
104
+ var newCustom = JobBars . Configuration . AddCustomCooldown ( name , job , props ) ;
105
+ CustomCooldowns [ job ] . Add ( new CooldownConfig ( name , newCustom . GetNameId ( ) , props ) ) ;
105
106
}
106
107
107
- public void DeleteCustomCooldown ( JobIds job , CooldownConfig custom ) {
108
- CustomCooldowns [ job ] . Remove ( custom ) ;
109
- JobBars . Configuration . RemoveCustomCooldown ( custom . Name ) ;
108
+ public void DeleteCustomCooldown ( JobIds job , CooldownConfig custom ) {
109
+ CustomCooldowns [ job ] . Remove ( custom ) ;
110
+ JobBars . Configuration . RemoveCustomCooldown ( custom . NameId ) ;
110
111
}
111
112
}
112
113
}
0 commit comments