nodecore-cd2025/mods/nc_api/item_txp_overlay.lua
Aaron Suen 77bb713b77 Raise minimum log level to "action"
Log entries of "info" don't end up in server log
trace output by default; it's hard-coded to
LL_ACTION in main.cpp.
2020-07-05 08:14:52 -04:00

59 lines
1.7 KiB
Lua

-- LUALOCALS < ---------------------------------------------------------
local io, minetest, nodecore, pairs, table, tostring, type
= io, minetest, nodecore, pairs, table, tostring, type
local io_open, table_concat, table_sort
= io.open, table.concat, table.sort
-- LUALOCALS > ---------------------------------------------------------
local missing = {}
minetest.after(0, function()
local t = {}
for k in pairs(missing) do t[#t + 1] = k end
if #t < 1 then
return nodecore.log("action", "txp override images ok")
end
table_sort(t)
nodecore.log("warning", "missing txp override images:\n\t"
.. table_concat(t, "\n\t"))
end)
local function overlay(name, img, imgtype, force)
if type(img) == "table" then
local t = {}
for k, v in pairs(img) do
if type(k) == "number" then
t[k] = overlay(name, v, imgtype .. tostring(k), force)
elseif k == "name" then
t[k] = overlay(name, v, imgtype, force)
else
t[k] = v
end
end
return t
end
if (not img) or (img == "") or (type(img) ~= "string")
or (not (force or img:match("%^"))) or img:match("%^txp_") then return img end
local tpath = "txp_" .. name:gsub("^%W+", "")
:gsub("%W+", "_") .. "_" .. imgtype .. ".png"
local fullpath = minetest.get_modpath(minetest.get_current_modname())
.. "/textures/" .. tpath
local f = io_open(fullpath, "rb")
if not f then
missing[fullpath] = img
return img
end
f:close()
return tostring(nodecore.tmod(img):add(tpath):makealpha(255, 254, 2))
end
nodecore.register_on_register_item(function(name, def)
def.inventory_image = overlay(name, def.inventory_image, "inv")
def.wield_image = overlay(name, def.wield_image, "wield")
def.special_tiles = overlay(name, def.special_tiles, "special", true)
end)