Resource encoder now print module name

Former-commit-id: 14e782da2b803f3c4847e19c9f46872f641c0c7a
This commit is contained in:
Lynix 2013-09-20 21:46:30 +02:00
parent db2b33eda1
commit 14f513f656
1 changed files with 5 additions and 4 deletions

View File

@ -2,10 +2,11 @@ function encodeResources()
print("Encoding resources ...")
local modules = os.matchdirs("../src/Nazara/*")
for k, modulePath in pairs(modules) do
local files = os.matchfiles(modulePath .. "/Resources/**")
local resourceContent
local headerContent
local file
local headerContent
local moduleName = modulePath:sub(15, -1)
local resourceContent
local files = os.matchfiles(modulePath .. "/Resources/**")
for k, filePath in pairs(files) do
if (filePath:sub(-2) ~= ".h") then
file = filePath:sub(modulePath:len() + 12, -1)
@ -36,7 +37,7 @@ function encodeResources()
header:write(headerContent)
header:close()
print(string.format("%s (raw: %.3g kB, header: %.3g kB)", file, contentLength/1024, string.format("%.3g", headerContent:len()/1024)))
print(string.format("%s: %s (raw: %.3g kB, header: %.3g kB)", moduleName, file, contentLength/1024, string.format("%.3g", headerContent:len()/1024)))
end
end
end