2023-04-22 16:56:01 -04:00
|
|
|
-- 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/ChaosBagManager", function(require, _LOADED, __bundle_register, __bundle_modules)
|
2024-01-06 21:32:07 -05:00
|
|
|
local chaosBagApi = require("chaosbag/ChaosBagApi")
|
|
|
|
|
2023-04-22 16:56:01 -04:00
|
|
|
local TOKEN_IDS = {
|
|
|
|
-- first row
|
|
|
|
"p1", "0", "m1", "m2", "m3", "m4",
|
|
|
|
-- second row
|
|
|
|
"m5", "m6", "m7", "m8", "frost",
|
|
|
|
-- third row
|
|
|
|
"blue", "skull", "cultist", "tablet", "elder", "red"
|
|
|
|
}
|
|
|
|
|
|
|
|
local BUTTON_TOOLTIP = {
|
|
|
|
-- first row
|
|
|
|
"+1", "0", "-1", "-2", "-3", "-4",
|
|
|
|
-- second row
|
|
|
|
"-5", "-6", "-7", "-8", "Frost",
|
|
|
|
-- third row
|
|
|
|
"Elder Sign", "Skull", "Cultist", "Tablet", "Elder Thing", "Auto-fail"
|
|
|
|
}
|
|
|
|
|
|
|
|
local BUTTON_POSITION = {
|
|
|
|
-- first row
|
|
|
|
-1.90, -1.14, -0.38, 0.38, 1.14, 1.90,
|
|
|
|
-- second row
|
|
|
|
-1.90, -1.14, -0.38, 0.38, 1.90,
|
|
|
|
-- third row
|
|
|
|
-1.90, -1.14, -0.38, 0.38, 1.14, 1.90
|
|
|
|
}
|
|
|
|
|
|
|
|
-- common button parameters
|
|
|
|
local buttonParameters = {}
|
|
|
|
buttonParameters.function_owner = self
|
|
|
|
buttonParameters.color = { 0, 0, 0, 0 }
|
|
|
|
buttonParameters.width = 300
|
|
|
|
buttonParameters.height = 300
|
|
|
|
|
|
|
|
local name
|
|
|
|
local tokens = {}
|
|
|
|
|
|
|
|
function onLoad()
|
|
|
|
-- create buttons for tokens
|
|
|
|
for i = 1, #BUTTON_POSITION do
|
|
|
|
local funcName = "buttonClick" .. i
|
|
|
|
self.setVar(funcName, function(_, _, isRightClick) buttonClick(i, isRightClick) end)
|
|
|
|
|
|
|
|
buttonParameters.click_function = funcName
|
|
|
|
buttonParameters.tooltip = BUTTON_TOOLTIP[i]
|
|
|
|
buttonParameters.position = { x = BUTTON_POSITION[i], y = 0, z = 0 }
|
|
|
|
|
|
|
|
if i < 7 then
|
|
|
|
buttonParameters.position.z = -0.778
|
|
|
|
elseif i > 11 then
|
|
|
|
buttonParameters.position.z = 0.755
|
|
|
|
end
|
|
|
|
|
|
|
|
self.createButton(buttonParameters)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- click function for buttons
|
|
|
|
function buttonClick(index, isRightClick)
|
|
|
|
local tokenId = TOKEN_IDS[index]
|
|
|
|
|
|
|
|
if isRightClick then
|
2024-01-06 21:32:07 -05:00
|
|
|
chaosBagApi.removeChaosToken(tokenId)
|
2023-04-22 16:56:01 -04:00
|
|
|
else
|
|
|
|
local tokens = {}
|
|
|
|
local name = BUTTON_TOOLTIP[index]
|
2024-01-06 21:32:07 -05:00
|
|
|
local chaosbag = chaosBagApi.findChaosBag()
|
2023-04-22 16:56:01 -04:00
|
|
|
|
|
|
|
for _, v in ipairs(chaosbag.getObjects()) do
|
|
|
|
if v.name == name then table.insert(tokens, v.guid) end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- spawn token (only 8 frost tokens allowed)
|
|
|
|
if tokenId == "frost" and #tokens == 8 then
|
|
|
|
printToAll("The maximum of 8 Frost tokens is already in the bag.", "Yellow")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2024-01-06 21:32:07 -05:00
|
|
|
chaosBagApi.spawnChaosToken(tokenId)
|
2023-04-22 16:56:01 -04:00
|
|
|
printToAll("Adding " .. name .. " token (in bag: " .. #tokens + 1 .. ")", "White")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
2024-01-06 21:32:07 -05:00
|
|
|
__bundle_register("chaosbag/ChaosBagApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
|
|
|
do
|
|
|
|
local ChaosBagApi = {}
|
|
|
|
|
|
|
|
-- respawns the chaos bag with a new state of tokens
|
|
|
|
---@param tokenList Table List of chaos token ids
|
|
|
|
ChaosBagApi.setChaosBagState = function(tokenList)
|
|
|
|
return Global.call("setChaosBagState", tokenList)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns a Table List of chaos token ids in the current chaos bag
|
|
|
|
-- requires copying the data into a new table because TTS is weird about handling table return values in Global
|
|
|
|
ChaosBagApi.getChaosBagState = function()
|
|
|
|
local chaosBagContentsCatcher = Global.call("getChaosBagState")
|
|
|
|
local chaosBagContents = {}
|
|
|
|
for _, v in ipairs(chaosBagContentsCatcher) do
|
|
|
|
table.insert(chaosBagContents, v)
|
|
|
|
end
|
|
|
|
return chaosBagContents
|
|
|
|
end
|
|
|
|
|
|
|
|
-- checks scripting zone for chaos bag (also called by a lot of objects!)
|
|
|
|
ChaosBagApi.findChaosBag = function()
|
|
|
|
return Global.call("findChaosBag")
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns a table of object references to the tokens in play (does not include sealed tokens!)
|
|
|
|
ChaosBagApi.getTokensInPlay = function()
|
|
|
|
return Global.getTable("chaosTokens")
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns all sealed tokens on cards to the chaos bag
|
|
|
|
ChaosBagApi.releaseAllSealedTokens = function(playerColor)
|
|
|
|
return Global.call("releaseAllSealedTokens", playerColor)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns all drawn tokens to the chaos bag
|
|
|
|
ChaosBagApi.returnChaosTokens = function(playerColor)
|
|
|
|
return Global.call("returnChaosTokens", playerColor)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- removes the specified chaos token from the chaos bag
|
|
|
|
---@param id String ID of the chaos token
|
|
|
|
ChaosBagApi.removeChaosToken = function(id)
|
|
|
|
return Global.call("removeChaosToken", id)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- spawns the specified chaos token and puts it into the chaos bag
|
|
|
|
---@param id String ID of the chaos token
|
|
|
|
ChaosBagApi.spawnChaosToken = function(id)
|
|
|
|
return Global.call("spawnChaosToken", id)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Checks to see if the chaos bag can be manipulated. If a player is searching the bag when tokens
|
|
|
|
-- are drawn or replaced a TTS bug can cause those tokens to vanish. Any functions which change the
|
|
|
|
-- contents of the bag should check this method before doing so.
|
|
|
|
-- This method will broadcast a message to all players if the bag is being searched.
|
|
|
|
---@return Boolean. True if the bag is manipulated, false if it should be blocked.
|
|
|
|
ChaosBagApi.canTouchChaosTokens = function()
|
|
|
|
return Global.call("canTouchChaosTokens")
|
|
|
|
end
|
|
|
|
|
|
|
|
-- called by playermats (by the "Draw chaos token" button)
|
|
|
|
ChaosBagApi.drawChaosToken = function(mat, tokenOffset, isRightClick)
|
|
|
|
return Global.call("drawChaosToken", {mat, tokenOffset, isRightClick})
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns a Table List of chaos token ids in the current chaos bag
|
|
|
|
-- requires copying the data into a new table because TTS is weird about handling table return values in Global
|
|
|
|
ChaosBagApi.getIdUrlMap = function()
|
|
|
|
return Global.getTable("ID_URL_MAP")
|
|
|
|
end
|
|
|
|
|
|
|
|
return ChaosBagApi
|
|
|
|
end
|
|
|
|
end)
|
2023-08-27 21:09:46 -04:00
|
|
|
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
|
|
|
require("accessories/ChaosBagManager")
|
|
|
|
end)
|
2023-04-22 16:56:01 -04:00
|
|
|
return __bundle_require("__root")
|