- Added/updated skill gems and bases - Fixed curse stats with wrong sign - Fixed wrong sources on quality mods
104 lines
3.7 KiB
Lua
104 lines
3.7 KiB
Lua
-- Path of Building
|
|
--
|
|
-- Class: Passive Spec List
|
|
-- Passive spec list control.
|
|
--
|
|
local t_insert = table.insert
|
|
local t_remove = table.remove
|
|
local m_max = math.max
|
|
|
|
local PassiveSpecListClass = newClass("PassiveSpecListControl", "ListControl", function(self, anchor, x, y, width, height, treeTab)
|
|
self.ListControl(anchor, x, y, width, height, 16, false, true, treeTab.specList)
|
|
self.treeTab = treeTab
|
|
self.controls.copy = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, 2, -4, 60, 18, "Copy", function()
|
|
local newSpec = new("PassiveSpec", treeTab.build)
|
|
newSpec.title = self.selValue.title
|
|
newSpec.jewels = copyTable(self.selValue.jewels)
|
|
newSpec:DecodeURL(self.selValue:EncodeURL())
|
|
self:RenameSpec(newSpec, true)
|
|
end)
|
|
self.controls.copy.enabled = function()
|
|
return self.selValue ~= nil
|
|
end
|
|
self.controls.delete = new("ButtonControl", {"LEFT",self.controls.copy,"RIGHT"}, 4, 0, 60, 18, "Delete", function()
|
|
self:OnSelDelete(self.selIndex, self.selValue)
|
|
end)
|
|
self.controls.delete.enabled = function()
|
|
return self.selValue ~= nil and #self.list > 1
|
|
end
|
|
self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, -2, -4, 60, 18, "Rename", function()
|
|
self:RenameSpec(self.selValue)
|
|
end)
|
|
self.controls.rename.enabled = function()
|
|
return self.selValue ~= nil
|
|
end
|
|
self.controls.new = new("ButtonControl", {"RIGHT",self.controls.rename,"LEFT"}, -4, 0, 60, 18, "New", function()
|
|
local newSpec = new("PassiveSpec", treeTab.build)
|
|
newSpec:SelectClass(treeTab.build.spec.curClassId)
|
|
newSpec:SelectAscendClass(treeTab.build.spec.curAscendClassId)
|
|
self:RenameSpec(newSpec, true)
|
|
end)
|
|
end)
|
|
|
|
function PassiveSpecListClass:RenameSpec(spec, addOnName)
|
|
local controls = { }
|
|
controls.label = new("LabelControl", nil, 0, 20, 0, 16, "^7Enter name for this passive tree:")
|
|
controls.edit = new("EditControl", nil, 0, 40, 350, 20, spec.title, nil, nil, 100, function(buf)
|
|
controls.save.enabled = buf:match("%S")
|
|
end)
|
|
controls.save = new("ButtonControl", nil, -45, 70, 80, 20, "Save", function()
|
|
spec.title = controls.edit.buf
|
|
self.treeTab.modFlag = true
|
|
if addOnName then
|
|
t_insert(self.list, spec)
|
|
self.selIndex = #self.list
|
|
self.selValue = spec
|
|
end
|
|
main:ClosePopup()
|
|
end)
|
|
controls.save.enabled = false
|
|
controls.cancel = new("ButtonControl", nil, 45, 70, 80, 20, "Cancel", function()
|
|
main:ClosePopup()
|
|
end)
|
|
main:OpenPopup(370, 100, spec.title and "Rename" or "Set Name", controls, "save", "edit")
|
|
end
|
|
|
|
function PassiveSpecListClass:GetRowValue(column, index, spec)
|
|
if column == 1 then
|
|
local used = spec:CountAllocNodes()
|
|
return (spec.title or "Default") .. " (" .. (spec.curAscendClassName ~= "None" and spec.curAscendClassName or spec.curClassName) .. ", " .. used .. " points)" .. (index == self.treeTab.activeSpec and " ^9(Current)" or "")
|
|
end
|
|
end
|
|
|
|
function PassiveSpecListClass:OnOrderChange()
|
|
self.treeTab.activeSpec = isValueInArray(self.list, self.treeTab.build.spec)
|
|
self.treeTab.modFlag = true
|
|
end
|
|
|
|
function PassiveSpecListClass:OnSelClick(index, spec, doubleClick)
|
|
if doubleClick and index ~= self.treeTab.activeSpec then
|
|
self.treeTab:SetActiveSpec(index)
|
|
end
|
|
end
|
|
|
|
function PassiveSpecListClass:OnSelDelete(index, spec)
|
|
if #self.list > 1 then
|
|
main:OpenConfirmPopup("Delete Spec", "Are you sure you want to delete '"..(spec.title or "Default").."'?", "Delete", function()
|
|
t_remove(self.list, index)
|
|
self.selIndex = nil
|
|
self.selValue = nil
|
|
if index == self.treeTab.activeSpec then
|
|
self.treeTab:SetActiveSpec(m_max(1, index - 1))
|
|
else
|
|
self.treeTab.activeSpec = isValueInArray(self.list, self.treeTab.build.spec)
|
|
end
|
|
self.treeTab.modFlag = true
|
|
end)
|
|
end
|
|
end
|
|
|
|
function PassiveSpecListClass:OnSelKeyDown(index, spec, key)
|
|
if key == "F2" then
|
|
self:RenameSpec(spec)
|
|
end
|
|
end |