SCED/src/accessories/TokenArranger.ttslua

251 lines
7.5 KiB
Plaintext
Raw Normal View History

2023-02-28 06:35:35 -05:00
local TOKEN_PRECEDENCE = {}
local TOKEN_NAMES = {
2022-11-11 02:59:55 -05:00
"Elder Sign",
"Skull",
"Cultist",
"Tablet",
"Elder Thing",
"Auto-fail",
"Bless",
"Curse",
"Frost",
""
}
-- common parameters
2022-11-13 06:11:21 -05:00
local buttonParameters = {}
buttonParameters.function_owner = self
buttonParameters.label = ""
buttonParameters.tooltip = "Add / Remove"
buttonParameters.color = { 0, 0, 0, 0 }
buttonParameters.width = 325
buttonParameters.height = 325
local inputParameters = {}
inputParameters.function_owner = self
inputParameters.font_size = 100
inputParameters.width = 250
inputParameters.height = inputParameters.font_size + 23
inputParameters.alignment = 3
inputParameters.validation = 2
inputParameters.tab = 2
2022-11-11 02:59:55 -05:00
2022-11-13 06:11:21 -05:00
updating = false
function onSave() return JSON.encode(TOKEN_PRECEDENCE) end
2022-11-11 02:59:55 -05:00
2023-02-27 19:24:00 -05:00
function onLoad(saveState)
if saveState ~= nil then
TOKEN_PRECEDENCE = JSON.decode(saveState)
2023-02-28 06:35:35 -05:00
else
loadDefaultValues()
2022-11-11 02:59:55 -05:00
end
-- create UI
local offset = 0.725
2022-11-13 06:11:21 -05:00
local pos = { x = { -1.067, 0.377 }, z = -2.175 }
2022-11-11 02:59:55 -05:00
2023-02-28 06:35:35 -05:00
-- button and inputs index 0-9
2022-11-11 02:59:55 -05:00
for i = 1, 10 do
if i < 6 then
2022-11-13 06:11:21 -05:00
buttonParameters.position = { pos.x[1], 0, pos.z + i * offset }
inputParameters.position = { pos.x[1] + offset, 0.1, pos.z + i * offset }
2022-11-11 02:59:55 -05:00
else
2022-11-13 06:11:21 -05:00
buttonParameters.position = { pos.x[2], 0, pos.z + (i - 5) * offset }
inputParameters.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset }
2022-11-11 02:59:55 -05:00
end
2022-11-13 06:11:21 -05:00
buttonParameters.click_function = attachIndex("tokenClick", i)
inputParameters.input_function = attachIndex2("tokenInput", i)
inputParameters.value = TOKEN_PRECEDENCE[TOKEN_NAMES[i]][1]
2022-11-11 02:59:55 -05:00
2022-11-13 06:11:21 -05:00
self.createButton(buttonParameters)
self.createInput(inputParameters)
2022-11-11 02:59:55 -05:00
end
2023-02-28 06:35:35 -05:00
-- index 10: "Update / Hide" button
2022-11-13 06:11:21 -05:00
buttonParameters.label = "Update / Hide"
buttonParameters.click_function = "layout"
buttonParameters.tooltip = "Left-Click: Update!\nRight-Click: Hide Tokens!"
buttonParameters.position = { 0.725, 0.1, 2.025 }
buttonParameters.color = { 1, 1, 1 }
buttonParameters.width = 675
buttonParameters.height = 175
self.createButton(buttonParameters)
2023-02-28 06:35:35 -05:00
-- reset context menu
self.addContextMenuItem("Load default values", function()
loadDefaultValues()
updateUI()
layout()
end)
2022-11-11 02:59:55 -05:00
end
2023-02-28 06:35:35 -05:00
-- delete temporary tokens when destroyed
function onDestroy() deleteCopiedTokens() end
2023-02-27 19:24:00 -05:00
-- layout tokens when dropped (after 2 seconds)
function onDrop() Wait.time(layout, 2) end
2023-02-28 06:35:35 -05:00
-- delete temporary tokens when picked up
2023-02-27 19:24:00 -05:00
function onPickUp() deleteCopiedTokens() end
2022-12-19 08:39:32 -05:00
2022-11-11 02:59:55 -05:00
-- helper functions to carry index
function attachIndex(click_function, index)
local fn_name = click_function .. index
2023-02-28 06:35:35 -05:00
_G[fn_name] = function(_, _, isRightClick)
_G[click_function](isRightClick, index)
2022-11-11 02:59:55 -05:00
end
return fn_name
end
function attachIndex2(input_function, index)
local fn_name = input_function .. index
2023-02-28 06:35:35 -05:00
_G[fn_name] = function(_, _, input, selected)
_G[input_function](input, selected, index)
2022-11-11 02:59:55 -05:00
end
return fn_name
end
-- click_function for buttons on chaos tokens
2023-02-28 06:35:35 -05:00
function tokenClick(isRightClick, index)
local change = tonumber(isRightClick and "-1" or "1")
TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] = TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] + change
self.editInput({ index = index - 1, value = TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] })
layout()
2022-11-11 02:59:55 -05:00
end
-- input_function for input_boxes
2023-02-28 06:35:35 -05:00
function tokenInput(input, selected, index)
if selected == false then
2022-11-11 02:59:55 -05:00
local num = tonumber(input)
if num ~= nil then
TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] = num
2022-11-11 02:59:55 -05:00
end
layout()
end
end
2023-02-28 06:35:35 -05:00
-- loads the default precedence table
function loadDefaultValues()
-- token modifiers for sorting (and order for same modifier)
-- order starts at 2 because there is a "+1" token
TOKEN_PRECEDENCE = {
["Elder Sign"] = { 100, 2 },
["Skull"] = { -1, 3 },
["Cultist"] = { -2, 4 },
["Tablet"] = { -3, 5 },
["Elder Thing"] = { -4, 6 },
["Auto-fail"] = { -100, 7 },
["Bless"] = { 101, 8 },
["Curse"] = { -101, 9 },
["Frost"] = { -99, 10 },
[""] = { 0, 11 }
}
end
-- update input fields
function updateUI()
for i = 1, 10 do
self.editInput({ index = i-1, value = TOKEN_PRECEDENCE[TOKEN_NAMES[i]][1] })
end
end
2022-11-11 02:59:55 -05:00
-- order function for data sorting
function token_value_comparator(left, right)
if left.value > right.value then return true
elseif right.value > left.value then return false
elseif left.order < right.order then return true
elseif right.order < left.order then return false
else return left.token.getGUID() > right.token.getGUID()
end
end
2023-02-28 06:35:35 -05:00
-- checks scripting zone for chaos bag
function findChaosBag()
for _, item in ipairs(getObjectFromGUID("83ef06").getObjects()) do
if item.getDescription() == "Chaos Bag" then
return item
2022-11-11 02:59:55 -05:00
end
end
end
2022-12-19 08:39:32 -05:00
-- deletes previously placed tokens
function deleteCopiedTokens()
2023-02-28 06:35:35 -05:00
for _, token in ipairs(getObjectsWithTag("tempToken")) do token.destruct() end
2022-12-19 08:39:32 -05:00
end
2022-11-11 02:59:55 -05:00
-- main function (delete old tokens, clone chaos bag content, sort it and position it)
function layout(_, _, isRightClick)
2023-02-28 06:35:35 -05:00
if updating then return end
updating = true
2022-12-19 08:39:32 -05:00
deleteCopiedTokens()
2022-11-11 02:59:55 -05:00
-- stop here if right-clicked
if isRightClick then return end
2023-02-28 06:35:35 -05:00
local chaosBag = findChaosBag()
2022-11-11 02:59:55 -05:00
local data = {}
-- clone tokens from chaos bag (default position above trash can)
for i, obj in ipairs(chaosBag.getData().ContainedObjects) do
2023-02-28 06:35:35 -05:00
obj["Tags"] = { "tempToken" }
local spawnedObj = spawnObjectData({
data = obj,
position = { 0.49, 3, 0 }
})
local value = tonumber(obj["Nickname"])
local precedence = TOKEN_PRECEDENCE[obj["Nickname"]]
2022-11-11 02:59:55 -05:00
data[i] = {
token = spawnedObj,
2022-11-11 02:59:55 -05:00
value = value or precedence[1]
}
if precedence ~= nil then
data[i].order = precedence[2]
else
data[i].order = value
end
end
-- sort table by value (symbols last if same value)
table.sort(data, token_value_comparator)
-- error handling for removal of token arranger
if self == nil then
2023-02-28 06:35:35 -05:00
for _, token in ipairs(getObjectsWithTag("tempToken")) do token.destruct() end
return
end
2022-11-11 02:59:55 -05:00
-- laying out the tokens
local pos = self.getPosition() + Vector(3.55, -0.05, -3.95)
local location = { x = pos.x, y = pos.y, z = pos.z }
local current_value = data[1].value
2022-11-11 02:59:55 -05:00
for _, item in ipairs(data) do
if item.value ~= current_value then
location.x = location.x - 1.75
location.z = pos.z
current_value = item.value
end
item.token.setPosition(location)
item.token.setRotation(self.getRotation())
location.z = location.z - 1.75
end
2023-02-28 06:35:35 -05:00
Wait.time(function() updating = false end, 0.1)
2022-11-11 02:59:55 -05:00
end
2023-02-27 19:24:00 -05:00
-- called from outside to set default values for tokens
function onTokenDataChanged(tokenData)
2023-02-28 06:35:35 -05:00
-- update token precedence
for key, table in pairs(tokenData) do
local modifier = table.modifier
if modifier == -999 then modifier = 0 end
TOKEN_PRECEDENCE[key][1] = modifier
end
updateUI()
layout()
2023-02-27 19:24:00 -05:00
end