Add more accurate caching information

This commit is contained in:
Jean-Patrick Guerrero 2019-10-25 13:38:26 +02:00
parent 8b4ef8a4b7
commit 62d2b302ed

View File

@ -66,7 +66,7 @@ local fmt, find, gmatch, match, sub, split, upper, lower =
string.sub, string.split, string.upper, string.lower string.sub, string.split, string.upper, string.lower
local min, max, floor, ceil = math.min, math.max, math.floor, math.ceil local min, max, floor, ceil = math.min, math.max, math.floor, math.ceil
local pairs, next, type, tostring = pairs, next, type, tostring local pairs, next, type, tostring, io = pairs, next, type, tostring, io
local vec_add, vec_mul = vector.add, vector.multiply local vec_add, vec_mul = vector.add, vector.multiply
local ROWS = 9 local ROWS = 9
@ -1331,7 +1331,9 @@ end
local function handle_aliases(hash) local function handle_aliases(hash)
for oldname, newname in pairs(reg_aliases) do for oldname, newname in pairs(reg_aliases) do
local recipes = recipes_cache[oldname] or get_all_recipes(oldname) cache_recipes(oldname)
local recipes = recipes_cache[oldname]
if recipes then if recipes then
if not recipes_cache[newname] then if not recipes_cache[newname] then
recipes_cache[newname] = {} recipes_cache[newname] = {}
@ -1371,11 +1373,34 @@ local function show_item(def)
def.description and def.description ~= "" def.description and def.description ~= ""
end end
local function get_init_items() local function tablelen(t)
print("[craftguide] Caching data. This may take a while...") local c = 0
for _ in pairs(t) do
c = c + 1
end
return c
end
local function get_init_items()
local ic, it, last_str = 0, tablelen(reg_items), ""
local hash = {} local hash = {}
local function iop(str)
io.write(("\b \b"):rep(#last_str))
io.write(str)
io.flush()
last_str = str
end
for name, def in pairs(reg_items) do for name, def in pairs(reg_items) do
ic = ic + 1
if ic < it then
iop(fmt("[craftguide] Caching data: %u/%u items", ic, it))
else
iop("[craftguide] Caching data: done\r\n")
end
if show_item(def) then if show_item(def) then
if not fuel_cache[name] then if not fuel_cache[name] then
cache_fuel(name) cache_fuel(name)