Back to Home

ESO Lua File v101041

ingame/skills/playerskillsdata.lua

[◄ back to folders ]
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
--[[
This file mirrors CompanionSkillsData.lua in many ways, before editing or
removing methods please ensure there is a stable interface between the two.
]]
--
ZO_PlayerSkillProgressionData = ZO_SkillProgressionData_Base:Subclass()
function ZO_PlayerSkillProgressionData:SetAbilityId(abilityId)
    ZO_SkillProgressionData_Base.SetAbilityId(self, abilityId)
    SKILLS_DATA_MANAGER:MapAbilityIdToProgression(abilityId, self)
end
function ZO_PlayerSkillProgressionData:IsAdvised()
    return ZO_SKILLS_ADVISOR_SINGLETON:IsSkillProgressionDataInSelectedBuild(self)
end
------------------------------
-- Active Skill Progression --
------------------------------
ZO_ActiveSkillProgressionData = ZO_PlayerSkillProgressionData:Subclass()
function ZO_ActiveSkillProgressionData:Initialize()
    ZO_PlayerSkillProgressionData.Initialize(self)
    self.rankXPExtents = {}
    for rank = 1, MAX_RANKS_PER_ABILITY do
        table.insert(self.rankXPExtents, { })
    end
end
function ZO_ActiveSkillProgressionData:BuildStaticData(skillData, morphSlot)
    ZO_PlayerSkillProgressionData.BuildStaticData(self, skillData, morphSlot)
    local progressionId = skillData:GetProgressionId()
    local abilityId = GetProgressionSkillMorphSlotAbilityId(progressionId, morphSlot)
    self:SetAbilityId(abilityId)
    local chainedAbilityIds = {GetProgressionSkillMorphSlotChainedAbilityIds(progressionId, morphSlot)}
    for _, chainedAbilityId in ipairs(chainedAbilityIds) do
        SKILLS_DATA_MANAGER:MapAbilityIdToProgression(chainedAbilityId, self)
    end
    self.isChainingAbility = #chainedAbilityIds > 0
    for rank = 1, MAX_RANKS_PER_ABILITY do
        local startXP, endXP = GetProgressionSkillMorphSlotRankXPExtents(progressionId, morphSlot, rank)
        local xpExtents = self.rankXPExtents[rank]
        xpExtents.startXP = startXP
        xpExtents.endXP = endXP
    end
end
function ZO_ActiveSkillProgressionData:RefreshDynamicData(...)
    ZO_PlayerSkillProgressionData.RefreshDynamicData(self, ...)
    -- Rank can be nil if we've never purchased the skill before
end
function ZO_ActiveSkillProgressionData:GetMorphSlot()
    --Alias
    return self:GetSkillProgressionKey()
end
function ZO_ActiveSkillProgressionData:IsBase()
    return self:GetMorphSlot() == MORPH_SLOT_BASE
end
function ZO_ActiveSkillProgressionData:IsMorph()
    return self:GetMorphSlot() ~= MORPH_SLOT_BASE
end
function ZO_ActiveSkillProgressionData:GetSiblingMorphData()
    assert(self:IsMorph(), "GetSiblingMorphData should not be called on a base progression data")
    local siblingMorphSlot = self:GetMorphSlot() == MORPH_SLOT_MORPH_1 and MORPH_SLOT_MORPH_2 or MORPH_SLOT_MORPH_1
    return self:GetSkillData():GetMorphData(siblingMorphSlot)
end
function ZO_ActiveSkillProgressionData:IsBadMorph()
    if self:IsMorph() then
        local morphSiblingProgressionData = self:GetSiblingMorphData()
        return not self:IsAdvised() and morphSiblingProgressionData:IsAdvised()
    end
    return false
end
function ZO_ActiveSkillProgressionData:GetFormattedNameWithRank(formatter)
    if self:HasRankData() then
        return ZO_CachedStrFormat(formatter or SI_ABILITY_NAME_AND_RANK, self:GetName(), self.currentRank)
    else
        return self:GetFormattedName()
    end
end
function ZO_ActiveSkillProgressionData:GetDetailedName()
    return self:GetFormattedNameWithRank()
end
function ZO_ActiveSkillProgressionData:GetCurrentRank()
    return self.currentRank
end
function ZO_ActiveSkillProgressionData:HasRankData()
    return self.currentRank ~= nil
end
function ZO_ActiveSkillProgressionData:GetCurrentXP()
    return self.currentXP
end
function ZO_ActiveSkillProgressionData:GetRankXPExtents(rank)
    local startXP, endXP = 0, 0
    local xpExtents = self.rankXPExtents[rank]
    if xpExtents then
        startXP, endXP = xpExtents.startXP, xpExtents.endXP
    end
    return startXP, endXP
end
function ZO_ActiveSkillProgressionData:GetProgressionId()
    return self:GetSkillData():GetProgressionId()
end
function ZO_ActiveSkillProgressionData:IsUnlocked()
    if ZO_PlayerSkillProgressionData.IsUnlocked(self) then
        if self:IsMorph() then
            return self:GetSkillData():IsAtMorph()
        end
        return true
    end
    return false
end
function ZO_ActiveSkillProgressionData:IsChainingAbility()
    return self.isChainingAbility
end
function ZO_ActiveSkillProgressionData:SetKeyboardTooltip(tooltip, showSkillPointCost, showUpgradeText, showAdvised, showBadMorph, overrideRank, overrideAbilityId)
    local skillType, skillLineIndex, skillIndex = self:GetIndices()
    local isPurchased = self:GetSkillData():GetPointAllocator():IsPurchased()
    local numAvailableSkillPoints = SKILL_POINT_ALLOCATION_MANAGER:GetAvailableSkillPoints()
    tooltip:SetActiveSkill(skillType, skillLineIndex, skillIndex, self:GetMorphSlot(), isPurchased, self:IsAdvised(), self:IsBadMorph(), numAvailableSkillPoints, showSkillPointCost, showUpgradeText, showAdvised, showBadMorph, overrideRank, overrideAbilityId)
end
function ZO_ActiveSkillProgressionData:TryPickup()
    local isPurchased = self.skillData:IsPurchased()
    if SKILLS_AND_ACTION_BAR_MANAGER:DoesSkillPointAllocationModeBatchSave() then
        local skillPointAllocator = self.skillData:GetPointAllocator()
        isPurchased = skillPointAllocator:IsPurchased()
    end
    if isPurchased then
        return true
    end
    return false
end
-------------------------------
-- Passive Skill Progression --
-------------------------------
ZO_PassiveSkillProgressionData = ZO_PlayerSkillProgressionData:Subclass()
function ZO_PassiveSkillProgressionData:BuildStaticData(skillData, rank)
    ZO_PlayerSkillProgressionData.BuildStaticData(self, skillData, rank)
    local skillType, skillLineIndex, skillIndex = skillData:GetIndices()
    local UNUSED_MORPH_CHOICE = MORPH_SLOT_BASE
    local abilityId, lineRankNeededToUnlock = GetSpecificSkillAbilityInfo(skillType, skillLineIndex, skillIndex, UNUSED_MORPH_CHOICE, rank)
    self:SetAbilityId(abilityId)
    self.lineRankNeededToUnlock = lineRankNeededToUnlock
end
function ZO_PassiveSkillProgressionData:GetFormattedNameWithRank(formatter)
    return ZO_CachedStrFormat(formatter or SI_ABILITY_NAME_AND_RANK, self:GetName(), self:GetRank())
end
function ZO_PassiveSkillProgressionData:GetFormattedNameWithUpgradeLevels(formatter)
    local skillData = self:GetSkillData()
    local currentRank = skillData:GetPointAllocator():IsPurchased() and self:GetRank() or 0
    return ZO_CachedStrFormat(formatter or SI_ABILITY_NAME_AND_UPGRADE_LEVELS, self:GetName(), currentRank, skillData:GetNumRanks())
end
function ZO_PassiveSkillProgressionData:GetDetailedName()
    if self.skillData:GetNumRanks() > 1 then
        return self:GetFormattedNameWithUpgradeLevels()
    else
        return self:GetFormattedName()
    end
end
function ZO_PassiveSkillProgressionData:GetDetailedGamepadName()
    if self.skillData:GetNumRanks() > 1 then
        return self:GetFormattedNameWithUpgradeLevels(SI_GAMEPAD_ABILITY_NAME_AND_UPGRADE_LEVELS)
    else
        return self:GetFormattedName()
    end
end
function ZO_PassiveSkillProgressionData:HasRankData()
    return false
end
function ZO_PassiveSkillProgressionData:GetRank()
    --Alias
    return self:GetSkillProgressionKey()
end
function ZO_PassiveSkillProgressionData:GetLineRankNeededToUnlock()
    return self.lineRankNeededToUnlock
end
function ZO_PassiveSkillProgressionData:MeetsLineRankUnlockRequirement()
    local skillLineData = self:GetSkillData():GetSkillLineData()
    return self:GetLineRankNeededToUnlock() <= skillLineData:GetCurrentRank()
end
function ZO_PassiveSkillProgressionData:IsUnlocked()
    if ZO_PlayerSkillProgressionData.IsUnlocked(self) then
        return self:MeetsLineRankUnlockRequirement()
    end
    return false
end
function ZO_PassiveSkillProgressionData:GetNextRankData()
    local myRank = self:GetRank()
    if myRank < self:GetSkillData():GetNumRanks() then
        return self:GetSkillData():GetRankData(myRank + 1)
    end
    return nil
end
function ZO_PassiveSkillProgressionData:SetKeyboardTooltip(tooltip, showSkillPointCost)
    local skillType, skillLineIndex, skillIndex = self:GetIndices()
    local skillPointAllocator = self:GetSkillData():GetPointAllocator()
    local currentRank = skillPointAllocator:IsPurchased() and skillPointAllocator:GetSkillProgressionKey() or 0
    local numAvailableSkillPoints = SKILL_POINT_ALLOCATION_MANAGER:GetAvailableSkillPoints()
    tooltip:SetPassiveSkill(skillType, skillLineIndex, skillIndex, self:GetRank(), currentRank, numAvailableSkillPoints, showSkillPointCost)
end
--[[
A ZO_SkillData is an entry in a ZO_SkillLineData. A skill can be upgraded to various levels, denoted by ZO_SkillProgressionData objects.
--]]
-----------
-- Skill --
-----------
ZO_SkillData = ZO_SkillData_Base:Subclass()
function ZO_SkillData:Initialize()
    self.skillProgressions = {}
    self.progressionObjectMetaPool = ZO_MetaPool:New(SKILLS_DATA_MANAGER:GetSkillProgressionObjectPool(self:IsPassive()))
end
function ZO_SkillData:Reset()
    ZO_ClearTable(self.skillProgressions)
    self.progressionObjectMetaPool:ReleaseAllObjects()
end
function ZO_SkillData:BuildStaticData(skillLineData, skillIndex)
    self.skillLineData, self.skillIndex = skillLineData, skillIndex
    local skillType, skillLineIndex = self.skillLineData:GetIndices()
    self.lineRankNeededToPurchase = GetSkillAbilityLineRankNeededToUnlock(skillType, skillLineIndex, skillIndex)
    self.isAutoGrant = IsSkillAbilityAutoGrant(skillType, skillLineIndex, skillIndex)
end
function ZO_SkillData:RefreshDynamicData(refreshChildren)
    self.isPurchased = IsSkillAbilityPurchased(self:GetIndices())
    if refreshChildren then
        for _, skillProgressionData in pairs(self.skillProgressions) do
            skillProgressionData:RefreshDynamicData(refreshChildren)
        end
    end
end
function ZO_SkillData:AddProgressionObject(skillProgressionKey)
    local progressionData = self.progressionObjectMetaPool:AcquireObject()
    progressionData:BuildData(self, skillProgressionKey)
    self.skillProgressions[skillProgressionKey] = progressionData
    return progressionData
end
function ZO_SkillData:GetSkillIndex()
    return self.skillIndex
end
function ZO_SkillData:GetIndices()
    local skillType, skillLineIndex = self.skillLineData:GetIndices()
    return skillType, skillLineIndex, self.skillIndex
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetSkillLineData()
    return self.skillLineData
end
function ZO_SkillData:IsPassive()
    assert(false) -- Must be overriden
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:IsActive()
    return not self:IsPassive()
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetLineRankNeededToPurchase()
    return self.lineRankNeededToPurchase
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:MeetsLinePurchaseRequirement()
    local skillLineData = self:GetSkillLineData()
    return skillLineData:IsAvailable() and self:GetLineRankNeededToPurchase() <= skillLineData:GetCurrentRank()
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:IsAutoGrant()
    return self.isAutoGrant
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:IsPurchased()
    return self.isPurchased
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:IsAdvised()
    return ZO_SKILLS_ADVISOR_SINGLETON:IsSkillDataInSelectedBuild(self)
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:HasPointsToClear(clearMorphsOnly)
    assert(false) -- Must be overriden
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetProgressionData(skillProgressionKey)
    return self.skillProgressions[skillProgressionKey]
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetHeaderText()
    assert(false) -- Must be overriden
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetCurrentSkillProgressionKey()
    assert(false) -- Must be overriden
end
-- implements method in ZO_SkillData_Base
function ZO_SkillData:GetNumPointsAllocated()
    assert(false) -- Must be overriden
end
function ZO_SkillData:GetCurrentProgressionData()
end
function ZO_SkillData:GetPointAllocator()
    --Utility function
    return SKILL_POINT_ALLOCATION_MANAGER:GetSkillPointAllocatorForSkillData(self)
end
function ZO_SkillData:GetPointAllocatorProgressionData()
    --Utility function
end
function ZO_SkillData:HasUpdatedStatus()
    return self.hasUpdatedStatus
end
function ZO_SkillData:SetHasUpdatedStatus(hasUpdatedStatus)
    if self.hasUpdatedStatus ~= hasUpdatedStatus then
        self.hasUpdatedStatus = hasUpdatedStatus
        self.skillLineData:OnSkillDataUpdateStatusChanged(self)
    end
end
function ZO_SkillData:ClearUpdate()
    self:SetHasUpdatedStatus(false)
end
function ZO_SkillData:CanPointAllocationsBeAltered(isFullRespec)
end
function ZO_SkillData:IsPlayerSkill()
    return true
end
------------------
-- Active Skill --
------------------
ZO_ActiveSkillData = ZO_SkillData:Subclass()
function ZO_ActiveSkillData:New(...)
    return ZO_SkillData.New(self, ...)
end
function ZO_ActiveSkillData:BuildStaticData(skillLineData, skillIndex)
    ZO_SkillData.BuildStaticData(self, skillLineData, skillIndex)
    local skillType, skillLineIndex = skillLineData:GetIndices()
    self.isUltimate = IsSkillAbilityUltimate(skillType, skillLineIndex, skillIndex)
    self.progressionId = GetProgressionSkillProgressionId(skillType, skillLineIndex, skillIndex)
    for morphSlot = MORPH_SLOT_ITERATION_BEGIN, MORPH_SLOT_ITERATION_END do
        self:AddProgressionObject(morphSlot)
    end
    -- Don't mark a skill new during init
    self.canBeMarkedAsUpdated = false
    self:SetHasUpdatedStatus(false)
end
function ZO_ActiveSkillData:RefreshDynamicData(...)
    local wasAtMorph = self:IsAtMorph()
    ZO_SkillData.RefreshDynamicData(self, ...)
    self.currentMorphSlot = GetProgressionSkillCurrentMorphSlot(self.progressionId)
    if self.canBeMarkedAsUpdated then
        local isBase = self.currentMorphSlot == MORPH_SLOT_BASE
        local isPurchased = self:IsPurchased()
        if self:HasUpdatedStatus() then
            if not (isBase and isPurchased) then
                self:SetHasUpdatedStatus(false)
            end
        elseif not wasAtMorph and self:IsAtMorph() and isPurchased and isBase then
            self:SetHasUpdatedStatus(true)
        end
    end
    self.canBeMarkedAsUpdated = true
end
function ZO_ActiveSkillData:IsPassive()
    return false
end
function ZO_ActiveSkillData:IsUltimate()
    return self.isUltimate
end
function ZO_ActiveSkillData:GetProgressionId()
    return self.progressionId
end
function ZO_ActiveSkillData:GetCurrentMorphSlot()
    return self.currentMorphSlot
end
function ZO_ActiveSkillData:GetCurrentSkillProgressionKey()
    -- Generic
    return self:GetCurrentMorphSlot()
end
function ZO_ActiveSkillData:GetNumPointsAllocated()
    local pointsAllocated = 0
    if self:IsPurchased() then
        if not self:IsAutoGrant() then
            pointsAllocated = pointsAllocated + 1
        end
        if self:GetCurrentMorphSlot() ~= MORPH_SLOT_BASE then
            pointsAllocated = pointsAllocated + 1
        end
    end
    return pointsAllocated
end
function ZO_ActiveSkillData:GetMorphData(morphSlot)
    -- Alias
    return self:GetProgressionData(morphSlot)
end
function ZO_ActiveSkillData:IsAtMorph()
    local baseMorphData = self:GetMorphData(MORPH_SLOT_BASE)
    local baseMorphCurrentXP = baseMorphData:GetCurrentXP()
    local _, baseMorphEndXP = baseMorphData:GetRankXPExtents(MAX_RANKS_PER_ABILITY)
    return baseMorphCurrentXP >= baseMorphEndXP
end
function ZO_ActiveSkillData:GetHeaderText()
    if self:IsUltimate() then
        return GetString(SI_SKILLS_ULTIMATE_ABILITIES)
    else
        return GetString(SI_SKILLS_ACTIVE_ABILITIES)
    end
end
function ZO_ActiveSkillData:HasPointsToClear(clearMorphsOnly)
    if self:GetNumPointsAllocated() > 0 then
        if clearMorphsOnly then
            -- make sure there are points allocated to a morph
            return self:GetCurrentMorphSlot() ~= MORPH_SLOT_BASE
        end
        return true
    end
    return false
end
function ZO_ActiveSkillData:CanPointAllocationsBeAltered(isFullRespec)
    if ZO_SkillData.CanPointAllocationsBeAltered(self, isFullRespec) then
        if self:IsPurchased() and not self:IsAtMorph() then
            return isFullRespec and not self:IsAutoGrant()
        end
        return true
    end
    return false
end
-------------------
-- Passive Skill --
-------------------
ZO_PassiveSkillData = ZO_SkillData:Subclass()
function ZO_PassiveSkillData:New(...)
    return ZO_SkillData.New(self, ...)
end
function ZO_PassiveSkillData:BuildStaticData(skillLineData, skillIndex)
    ZO_SkillData.BuildStaticData(self, skillLineData, skillIndex)
    local skillType, skillLineIndex = skillLineData:GetIndices()
    self.numRanks = GetNumPassiveSkillRanks(skillType, skillLineIndex, skillIndex)
    for rank = 1, self.numRanks do
        self:AddProgressionObject(rank)
    end
end
function ZO_PassiveSkillData:RefreshDynamicData(...)
    ZO_SkillData.RefreshDynamicData(self, ...)
    
    -- Can return nil, but we want to be at 1 when we're not purchased or we have a passive with only 1 rank and no upgrades
    self.currentRank = GetSkillAbilityUpgradeInfo(self:GetIndices())
    if not self.currentRank or self.currentRank == 0 then
        self.currentRank = 1
    end
end
function ZO_PassiveSkillData:IsPassive()
    return true
end
function ZO_PassiveSkillData:IsUltimate()
    return false
end
function ZO_PassiveSkillData:GetNumRanks()
    return self.numRanks
end
function ZO_PassiveSkillData:GetCurrentRank()
    return self.currentRank
end
function ZO_PassiveSkillData:GetCurrentSkillProgressionKey()
    -- Generic
    return self:GetCurrentRank()
end
function ZO_PassiveSkillData:GetNumPointsAllocated()
    if self:IsPurchased() then
        if self:IsAutoGrant() then
            return self:GetCurrentRank() - 1
        else
            return self:GetCurrentRank()
        end
    end
    return 0
end
--1 based
function ZO_PassiveSkillData:GetRankData(rank)
    -- Alias
    return self:GetProgressionData(rank)
end
function ZO_PassiveSkillData:GetHeaderText()
    return GetString(SI_SKILLS_PASSIVE_ABILITIES)
end
function ZO_PassiveSkillData:HasPointsToClear(clearMorphsOnly)
    if not clearMorphsOnly and self:IsPurchased() then
        return self:GetCurrentRank() > 1 or not self:IsAutoGrant()
    end
    return false
end
function ZO_PassiveSkillData:CanPointAllocationsBeAltered(isFullRespec)
    if ZO_SkillData.CanPointAllocationsBeAltered(self, isFullRespec) then
        if self:IsPurchased() then
            local currentRank = self:GetCurrentRank()
            local nextRankData = self:GetRankData(currentRank + 1)
            if nextRankData and nextRankData:MeetsLineRankUnlockRequirement() then
                return true
            end
            return isFullRespec and (currentRank > 1 or not self:IsAutoGrant())
        end
        return true
    end
    return false
end
--[[
A ZO_SkillLineData is an entry in ZO_SkillTypeData. A skill line has multiple skills to purchase and upgrade, denoted by ZO_SkillData objects.
--]]
----------------
-- Skill Line --
----------------
ZO_SkillLineData = ZO_SkillLineData_Base:Subclass()
function ZO_SkillLineData:Initialize()
    ZO_SkillLineData_Base.Initialize(self, SKILLS_DATA_MANAGER)
    self.orderedSkills = {}
    local IS_ACTIVE = false
    local IS_PASSIVE = true
    self.activeSkillMetaPool = ZO_MetaPool:New(SKILLS_DATA_MANAGER:GetSkillObjectPool(IS_ACTIVE))
    self.passiveSkillMetaPool = ZO_MetaPool:New(SKILLS_DATA_MANAGER:GetSkillObjectPool(IS_PASSIVE))
end
function ZO_SkillLineData:Reset()
    ZO_SkillLineData_Base.Reset(self)
    ZO_ClearNumericallyIndexedTable(self.orderedSkills)
    self.activeSkillMetaPool:ReleaseAllObjects()
    self.passiveSkillMetaPool:ReleaseAllObjects()
end
function ZO_SkillLineData:BuildStaticData(skillTypeData, skillLineIndex)
    self.skillTypeData, self.skillLineIndex = skillTypeData, skillLineIndex
    local skillType = self.skillTypeData:GetSkillType()
    self.id = GetSkillLineId(skillType, skillLineIndex)
    self.orderingIndex = GetSkillLineOrderingIndex(skillType, skillLineIndex)
    self.unlockText = GetSkillLineUnlockTextById(self.id)
    self.isWerewolf = IsWerewolfSkillLineById(self.id)
    self.craftingGrowthType = GetSkillLineCraftingGrowthTypeById(self.id)
    for skillIndex = 1, GetNumSkillAbilities(skillType, skillLineIndex) do
        local skillData
        local isPassive = IsSkillAbilityPassive(skillType, skillLineIndex, skillIndex)
        if isPassive then
            skillData = self.passiveSkillMetaPool:AcquireObject()
        else
            skillData = self.activeSkillMetaPool:AcquireObject()
        end
        skillData:BuildData(self, skillIndex)
        table.insert(self.orderedSkills, skillData)
    end
end
function ZO_SkillLineData:RefreshDynamicData(refreshChildren)
    local skillType, skillLineIndex = self:GetIndices()
    local wasAvailable = self:IsAvailable()
    self.currentRank, self.isAdvised, self.isActive, self.isDiscovered = GetSkillLineDynamicInfo(skillType, skillLineIndex)
    self.lastRankXP, self.nextRankXP, self.currentXP = GetSkillLineXPInfo(skillType, skillLineIndex)
    local isAvailable = self:IsAvailable()
    if wasAvailable ~= isAvailable then
        self:TryMarkNew(isAvailable)
    end
    if refreshChildren then
        for _, skillData in ipairs(self.orderedSkills) do
            skillData:RefreshDynamicData(refreshChildren)
        end
    end
end
function ZO_SkillLineData:GetSkillTypeData()
    return self.skillTypeData
end
function ZO_SkillLineData:GetSkillLineIndex()
    return self.skillLineIndex
end
function ZO_SkillLineData:GetIndices()
    return self.skillTypeData:GetSkillType(), self.skillLineIndex
end
function ZO_SkillLineData:GetNumSkills()
    return #self.orderedSkills
end
function ZO_SkillLineData:GetSkillDataByIndex(skillIndex)
    return self.orderedSkills[skillIndex]
end
function ZO_SkillLineData:SkillIterator(skillFilterFunctions)
    return ZO_FilteredNumericallyIndexedTableIterator(self.orderedSkills, skillFilterFunctions)
end
function ZO_SkillLineData:GetName()
    return self.name
end
function ZO_SkillLineData:GetUnlockText()
    return self.unlockText
end
function ZO_SkillLineData:GetOrderingIndex()
    return self.orderingIndex
end
function ZO_SkillLineData:IsDiscovered()
    return self.isDiscovered
end
function ZO_SkillLineData:IsActive()
    return self.isActive
end
function ZO_SkillLineData:GetCurrentRank()
    return self.currentRank
end
function ZO_SkillLineData:GetLastRankXP()
    return self.lastRankXP
end
function ZO_SkillLineData:GetNextRankXP()
    return self.nextRankXP
end
function ZO_SkillLineData:GetCurrentRankXP()
    return self.currentXP
end
function ZO_SkillLineData:IsAdvised()
    return self.isAdvised
end
-- unique to Player skill lines
function ZO_SkillLineData:IsPlayerSkillLine()
    return true
end
function ZO_SkillLineData:IsWerewolf()
    return self.isWerewolf
end
function ZO_SkillLineData:GetCraftingGrowthType()
    return self.craftingGrowthType
end
function ZO_SkillLineData:GetFormattedNameWithNumPointsAllocated()
    local numPointsAllocated = SKILL_POINT_ALLOCATION_MANAGER:GetNumPointsAllocatedInSkillLine(self)
    if numPointsAllocated > 0 then
        return zo_strformat(SI_SKILLS_ENTRY_LINE_NAME_FORMAT_WITH_ALLOCATED_POINTS, self.name, numPointsAllocated)
    else
        return self:GetFormattedName()
    end
end
function ZO_SkillLineData:SetAdvised(advised)
    local skillType, skillLineIndex = self:GetIndices()
    SetAdviseSkillLine(skillType, skillLineIndex, advised)
end