58 lines
1.7 KiB
Lua

--- Utilities
-- @module Util
local Util = {
_module_name = 'Util'
}
setmetatable(Util, {__index = require('stdlib/core')})
local Is = require('stdlib/utils/is')
function Util.extend(proto_array)
Is.Assert.Table(proto_array, 'Missing table or array to extend')
data:extend(#proto_array > 0 and proto_array or {proto_array})
end
function Util.disable_control(control)
if data.raw['custom-input'] and data.raw['custom-input'][control] then
data.raw['custom-input'][control].enabled = false
end
end
function Util.extend_style(style)
data.raw['gui-style'].default[style.name] = style
end
--- Quickly duplicate an existing prototype into a new one.
-- @tparam string data_type The type of the object to duplicate
-- @tparam string orig_name The name of the object to duplicate
-- @tparam string new_name The new name to use.
-- @tparam[opt] string|boolean mining_result If true set mining_result to new_name, if truthy set mining_result to value
function Util.duplicate(data_type, orig_name, new_name, mining_result)
mining_result = type(mining_result) == 'boolean' and new_name or mining_result
if data.raw[data_type] and data.raw[data_type][orig_name] then
local proto = table.deepcopy(data.raw[data_type][orig_name])
proto.name = new_name
if mining_result then
if proto.minable and proto.minable.result then
proto.minable.result = mining_result
end
end
if proto.place_result then
proto.place_result = new_name
end
if proto.result then
proto.result = new_name
end
return (proto)
else
error('Unknown Prototype ' .. data_type .. '/' .. orig_name)
end
end
return Util