296 lines
8.9 KiB
Plaintext
296 lines
8.9 KiB
Plaintext
-- Bundled by luabundle {"version":"1.6.0"}
|
|
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
|
|
local loadingPlaceholder = {[{}] = true}
|
|
|
|
local register
|
|
local modules = {}
|
|
|
|
local require
|
|
local loaded = {}
|
|
|
|
register = function(name, body)
|
|
if not modules[name] then
|
|
modules[name] = body
|
|
end
|
|
end
|
|
|
|
require = function(name)
|
|
local loadedModule = loaded[name]
|
|
|
|
if loadedModule then
|
|
if loadedModule == loadingPlaceholder then
|
|
return nil
|
|
end
|
|
else
|
|
if not modules[name] then
|
|
if not superRequire then
|
|
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
|
|
error('Tried to require ' .. identifier .. ', but no such module has been registered')
|
|
else
|
|
return superRequire(name)
|
|
end
|
|
end
|
|
|
|
loaded[name] = loadingPlaceholder
|
|
loadedModule = modules[name](require, loaded, register, modules)
|
|
loaded[name] = loadedModule
|
|
end
|
|
|
|
return loadedModule
|
|
end
|
|
|
|
return require, loaded, register, modules
|
|
end)(nil)
|
|
__bundle_register("accessories/TokenArranger", function(require, _LOADED, __bundle_register, __bundle_modules)
|
|
-- names of tokens in order
|
|
local TOKEN_NAMES = {
|
|
"Elder Sign",
|
|
"Skull",
|
|
"Cultist",
|
|
"Tablet",
|
|
"Elder Thing",
|
|
"Auto-fail",
|
|
"Bless",
|
|
"Curse",
|
|
"Frost",
|
|
""
|
|
}
|
|
|
|
-- token modifiers for sorting (and order for same modifier)
|
|
-- order starts at 2 because there is a "+1" token
|
|
local 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 }
|
|
}
|
|
|
|
-- common parameters
|
|
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
|
|
|
|
updating = false
|
|
|
|
function onSave() return JSON.encode(TOKEN_PRECEDENCE) end
|
|
|
|
function onLoad(save_state)
|
|
if save_state ~= nil then
|
|
TOKEN_PRECEDENCE = JSON.decode(save_state)
|
|
end
|
|
|
|
-- create UI
|
|
local offset = 0.725
|
|
local pos = { x = { -1.067, 0.377 }, z = -2.175 }
|
|
|
|
-- button and inputs index 1-10
|
|
for i = 1, 10 do
|
|
if i < 6 then
|
|
buttonParameters.position = { pos.x[1], 0, pos.z + i * offset }
|
|
inputParameters.position = { pos.x[1] + offset, 0.1, pos.z + i * offset }
|
|
else
|
|
buttonParameters.position = { pos.x[2], 0, pos.z + (i - 5) * offset }
|
|
inputParameters.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset }
|
|
end
|
|
|
|
buttonParameters.click_function = attachIndex("tokenClick", i)
|
|
inputParameters.input_function = attachIndex2("tokenInput", i)
|
|
inputParameters.value = TOKEN_PRECEDENCE[TOKEN_NAMES[i]][1]
|
|
|
|
self.createButton(buttonParameters)
|
|
self.createInput(inputParameters)
|
|
end
|
|
|
|
-- index 11: "Update / Hide" button
|
|
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)
|
|
|
|
self.addContextMenuItem("More Information", function()
|
|
printToAll("------------------------------", "White")
|
|
printToAll("Token Arranger by Chr1Z", "Orange")
|
|
printToAll("original concept by Whimsical", "White")
|
|
end)
|
|
|
|
-- send object reference to bless/curse manager
|
|
Wait.time(function() getObjectFromGUID("5933fb").setVar("tokenArranger", self) end, 1)
|
|
end
|
|
|
|
function onDestroy()
|
|
deleteCopiedTokens()
|
|
-- remove object reference from bless/curse manager
|
|
getObjectFromGUID("5933fb").setVar("tokenArranger", nil)
|
|
end
|
|
|
|
function onPickUp()
|
|
deleteCopiedTokens()
|
|
end
|
|
|
|
-- helper functions to carry index
|
|
function attachIndex(click_function, index)
|
|
local fn_name = click_function .. index
|
|
_G[fn_name] = function(obj, player_color, isRightClick)
|
|
_G[click_function](obj, player_color, isRightClick, index)
|
|
end
|
|
return fn_name
|
|
end
|
|
|
|
function attachIndex2(input_function, index)
|
|
local fn_name = input_function .. index
|
|
_G[fn_name] = function(obj, player_color, input, selected)
|
|
_G[input_function](obj, player_color, input, selected, index)
|
|
end
|
|
return fn_name
|
|
end
|
|
|
|
-- click_function for buttons on chaos tokens
|
|
function tokenClick(_, _, isRightClick, index)
|
|
if not updating then
|
|
updating = true
|
|
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()
|
|
end
|
|
end
|
|
|
|
-- input_function for input_boxes
|
|
function tokenInput(_, _, input, selected, index)
|
|
if selected == false and not updating then
|
|
updating = true
|
|
local num = tonumber(input)
|
|
if num ~= nil then
|
|
TOKEN_PRECEDENCE[TOKEN_NAMES[index]][1] = num
|
|
end
|
|
layout()
|
|
end
|
|
end
|
|
|
|
-- 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
|
|
|
|
-- get chaos bag from scripting zone and description
|
|
function getChaosBag()
|
|
local chaosbag = nil
|
|
local chaosbag_zone = getObjectFromGUID("83ef06")
|
|
|
|
-- error handling: scripting zone not found
|
|
if chaosbag_zone == nil then
|
|
printToAll("Zone for chaos bag detection couldn't be found.", "Red")
|
|
return nil
|
|
end
|
|
|
|
for _, v in ipairs(chaosbag_zone.getObjects()) do
|
|
if v.getDescription() == "Chaos Bag" then
|
|
chaosbag = getObjectFromGUID(v.getGUID())
|
|
break
|
|
end
|
|
end
|
|
|
|
-- error handling: chaos bag not found
|
|
if chaosbag == nil then
|
|
printToAll("Chaos bag couldn't be found.", "Red")
|
|
end
|
|
return chaosbag
|
|
end
|
|
|
|
-- deletes previously placed tokens
|
|
function deleteCopiedTokens()
|
|
for _, token in ipairs(getObjectsWithTag("to_be_deleted")) do token.destruct() end
|
|
end
|
|
|
|
-- main function (delete old tokens, clone chaos bag content, sort it and position it)
|
|
function layout(_, _, isRightClick)
|
|
deleteCopiedTokens()
|
|
|
|
-- stop here if right-clicked
|
|
if isRightClick then return end
|
|
|
|
local chaosBag = getChaosBag()
|
|
local data = {}
|
|
|
|
-- clone tokens from chaos bag (default position above trash can)
|
|
for i, obj in ipairs(chaosBag.getData().ContainedObjects) do
|
|
obj["Tags"] = { "to_be_deleted" }
|
|
local spawnedObj = spawnObjectData({
|
|
data = obj,
|
|
position = { 0.49, 3, 0 }
|
|
})
|
|
|
|
local value = tonumber(obj["Nickname"])
|
|
local precedence = TOKEN_PRECEDENCE[obj["Nickname"]]
|
|
|
|
data[i] = {
|
|
token = spawnedObj,
|
|
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
|
|
for _, token in ipairs(getObjectsWithTag("to_be_deleted")) do token.destruct() end
|
|
return
|
|
end
|
|
|
|
-- 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
|
|
|
|
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
|
|
updating = false
|
|
end
|
|
end)
|
|
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
|
require("accessories/TokenArranger")
|
|
end)
|
|
return __bundle_require("__root") |