mirror of
https://github.com/minetest-mods/i3.git
synced 2024-11-13 06:10:21 +01:00
140 lines
2.7 KiB
Lua
140 lines
2.7 KiB
Lua
local fmt, insert = string.format, table.insert
|
|
|
|
local wood_types = {
|
|
"acacia_wood", "aspen_wood", "junglewood", "pine_wood",
|
|
}
|
|
|
|
local material_tools = {
|
|
"bronze", "diamond", "mese", "stone", "wood",
|
|
}
|
|
|
|
local material_stairs = {
|
|
"acacia_wood", "aspen_wood", "brick", "bronzeblock", "cobble", "copperblock",
|
|
"desert_cobble", "desert_sandstone", "desert_sandstone_block", "desert_sandstone_brick",
|
|
"desert_stone", "desert_stone_block", "desert_stonebrick",
|
|
"glass", "goldblock", "ice", "junglewood", "mossycobble", "obsidian",
|
|
"obsidian_block", "obsidian_glass", "obsidianbrick", "pine_wood",
|
|
"sandstone", "sandstone_block", "sandstonebrick",
|
|
"silver_sandstone", "silver_sandstone_block", "silver_sandstone_brick",
|
|
"snowblock", "steelblock", "stone", "stone_block", "stonebrick",
|
|
"straw", "tinblock",
|
|
}
|
|
|
|
local colors = {
|
|
"black", "blue", "brown", "cyan", "dark_green", "dark_grey", "green",
|
|
"grey", "magenta", "orange", "pink", "red", "violet", "yellow",
|
|
}
|
|
|
|
local to_compress = {
|
|
["default:wood"] = {
|
|
replace = "wood",
|
|
by = wood_types,
|
|
},
|
|
|
|
["default:fence_wood"] = {
|
|
replace = "wood",
|
|
by = wood_types,
|
|
},
|
|
|
|
["default:fence_rail_wood"] = {
|
|
replace = "wood",
|
|
by = wood_types,
|
|
},
|
|
|
|
["default:mese_post_light"] = {
|
|
replace = "mese_post_light",
|
|
by = {
|
|
"mese_post_light_acacia",
|
|
"mese_post_light_aspen_wood",
|
|
"mese_post_light_junglewood",
|
|
"mese_post_light_pine_wood",
|
|
}
|
|
},
|
|
|
|
["doors:gate_wood_closed"] = {
|
|
replace = "wood",
|
|
by = wood_types,
|
|
},
|
|
|
|
["wool:white"] = {
|
|
replace = "white",
|
|
by = colors
|
|
},
|
|
|
|
["dye:white"] = {
|
|
replace = "white",
|
|
by = colors
|
|
},
|
|
|
|
["default:axe_steel"] = {
|
|
replace = "steel",
|
|
by = material_tools
|
|
},
|
|
|
|
["default:pick_steel"] = {
|
|
replace = "steel",
|
|
by = material_tools
|
|
},
|
|
|
|
["default:shovel_steel"] = {
|
|
replace = "steel",
|
|
by = material_tools
|
|
},
|
|
|
|
["default:sword_steel"] = {
|
|
replace = "steel",
|
|
by = material_tools
|
|
},
|
|
|
|
["farming:hoe_steel"] = {
|
|
replace = "steel",
|
|
by = {"wood", "stone"}
|
|
},
|
|
|
|
["stairs:slab_wood"] = {
|
|
replace = "wood",
|
|
by = material_stairs
|
|
},
|
|
|
|
["stairs:stair_wood"] = {
|
|
replace = "wood",
|
|
by = material_stairs
|
|
},
|
|
|
|
["stairs:stair_inner_wood"] = {
|
|
replace = "wood",
|
|
by = material_stairs
|
|
},
|
|
|
|
["stairs:stair_outer_wood"] = {
|
|
replace = "wood",
|
|
by = material_stairs
|
|
},
|
|
|
|
["walls:cobble"] = {
|
|
replace = "cobble",
|
|
by = {"desertcobble", "mossycobble"}
|
|
},
|
|
}
|
|
|
|
local compressed = {}
|
|
|
|
for k, v in pairs(to_compress) do
|
|
compressed[k] = compressed[k] or {}
|
|
|
|
for _, str in ipairs(v.by) do
|
|
local it = k:gsub(v.replace, str)
|
|
insert(compressed[k], it)
|
|
end
|
|
end
|
|
|
|
local _compressed = {}
|
|
|
|
for _, v in pairs(compressed) do
|
|
for _, v2 in ipairs(v) do
|
|
_compressed[v2] = true
|
|
end
|
|
end
|
|
|
|
return compressed, _compressed
|