mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
68 lines
2.2 KiB
Lua
68 lines
2.2 KiB
Lua
--[[-- Commands Module - Quickbar
|
|
- Adds a command that allows players to load Quickbar presets
|
|
@data Quickbar
|
|
]]
|
|
|
|
local Commands = require("modules/exp_commands")
|
|
local config = require("modules.exp_legacy.config.preset_player_quickbar") --- @dep config.preset_player_quickbar
|
|
|
|
--- Stores the quickbar filters for a player
|
|
local PlayerData = require("modules.exp_legacy.expcore.player_data") --- @dep expcore.player_data
|
|
local PlayerFilters = PlayerData.Settings:combine("QuickbarFilters")
|
|
PlayerFilters:set_metadata{
|
|
permission = "command/save-quickbar",
|
|
stringify = function(value)
|
|
if not value then return "No filters set" end
|
|
local count = 0
|
|
for _ in pairs(value) do count = count + 1 end
|
|
|
|
return count .. " filters set"
|
|
end,
|
|
}
|
|
|
|
--- Loads your quickbar preset
|
|
PlayerFilters:on_load(function(player_name, filters)
|
|
if not filters then filters = config[player_name] end
|
|
if not filters then return end
|
|
local player = game.players[player_name]
|
|
for i, item_name in pairs(filters) do
|
|
if item_name ~= nil and item_name ~= "" then
|
|
player.set_quick_bar_slot(i, item_name)
|
|
end
|
|
end
|
|
end)
|
|
|
|
local ignored_items = {
|
|
["blueprint"] = true,
|
|
["blueprint-book"] = true,
|
|
["deconstruction-planner"] = true,
|
|
["spidertron-remote"] = true,
|
|
["upgrade-planner"] = true,
|
|
}
|
|
|
|
--- Saves your quickbar preset to the script-output folder
|
|
Commands.new("save-quickbar", "Saves your Quickbar preset items to file")
|
|
:add_aliases{ "save-toolbar" }
|
|
:register(function(player)
|
|
local filters = {}
|
|
|
|
for i = 1, 100 do
|
|
local slot = player.get_quick_bar_slot(i)
|
|
-- Need to filter out blueprint and blueprint books because the slot is a LuaItemPrototype and does not contain a way to export blueprint data
|
|
if slot ~= nil then
|
|
local ignored = ignored_items[slot.name]
|
|
if ignored ~= true then
|
|
filters[i] = slot.name
|
|
end
|
|
end
|
|
end
|
|
|
|
if next(filters) then
|
|
PlayerFilters:set(player, filters)
|
|
else
|
|
PlayerFilters:remove(player)
|
|
end
|
|
|
|
return Commands.status.success{ "quickbar.saved" }
|
|
end)
|