123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- if not minetest.global_exists("dumpnodes") then dumpnodes = {} end
- dumpnodes.modpath = minetest.get_modpath("dumpnodes")
- local function nd_get_tiles(nd)
- if nd.dumpnodes_tile then
- if type(nd.dumpnodes_tile) == "string" then
- return {nd.dumpnodes_tile}
- else
- return nd.dumpnodes_tile
- end
- elseif nd.tiles then
- return nd.tiles
- elseif nd.tile_images then
- return nd.tile_images
- end
- return nil
- end
- local function pairs_s(dict)
- local keys = {}
- for k in pairs(dict) do
- table.insert(keys, k)
- end
- table.sort(keys)
- return ipairs(keys)
- end
- -- Name and param may be empty strings.
- dumpnodes.execute = function(plname, param)
- local n = 0
- local ntbl = {}
- for _, nn in pairs_s(minetest.registered_nodes) do
- local nd = minetest.registered_nodes[nn]
- local prefix, name = nn:match('(.*):(.*)')
- if prefix == nil or name == nil or prefix == '' or name == '' then
- print("ignored(1): " .. nn)
- else
- if ntbl[prefix] == nil then
- ntbl[prefix] = {}
- end
- ntbl[prefix][name] = nd
- end
- end
- local out = io.open(minetest.get_worldpath() .. '/dumpnodes.txt', 'wb')
- if not out then
- return false, "Could not open dumpnodes file."
- end
- for _, prefix in pairs_s(ntbl) do
- local nodes = ntbl[prefix]
- out:write('# ' .. prefix .. '\n')
- for _, name in pairs_s(nodes) do
- local nd = nodes[name]
- if nd.drawtype ~= 'airlike' and nd_get_tiles(nd) ~= nil then
- local tl = nd_get_tiles(nd)[1]
- if type(tl) == 'table' then
- tl = tl.name
- end
- tl = (tl .. '^'):match('(.-)^')
- out:write(prefix .. ':' .. name .. ' ' .. tl .. '\n')
- n = n + 1
- else
- print("ignored(2): " .. prefix .. ':' .. name)
- end
- end
- out:write('\n')
- end
- out:close()
- return true, "" .. n .. " nodes dumped."
- end
- dumpnodes.chatcommand = function(pname, param)
- minetest.chat_send_player(pname, "# Server: Preparing to dump nodes.")
- local result, msg = dumpnodes.execute(pname, param)
- if msg then
- minetest.chat_send_player(pname, "# Server: " .. msg)
- end
- if not result then
- easyvend.sound_error(pname)
- end
- end
- if not dumpnodes.run_once then
- minetest.register_chatcommand("dumpnodes", {
- params = "",
- description = "",
- privs = {server=true},
- func = function(...) return dumpnodes.chatcommand(...) end,
- })
- minetest.register_on_shutdown(function()
- dumpnodes.execute("", "")
- end)
- local name = "dumpnodes:core"
- local file = dumpnodes.modpath .. "/init.lua"
- reload.register_file(name, file, false)
- dumpnodes.run_once = true
- end
|