Module:Systime: Difference between revisions

From Post-Self
m (Pretty print...)
m (More debugging...)
Line 4: Line 4:


function p.toSystime(year, month, day, hour, min, sec)
function p.toSystime(year, month, day, hour, min, sec)
output = ""
for key, value in pairs(year) do
for key, value in pairs(year) do
print(key, value)
output = output .. "\n" .. key
end
end
return output


time = os.time({year = year, month = month ~= nil and month or 1, day = day ~= nil and day or 1, hour = hour, min = min, sec = sec})
-- time = os.time({year = year, month = month ~= nil and month or 1, day = day ~= nil and day or 1, hour = hour, min = min, sec = sec})
date = os.date("*t", time)
-- date = os.date("*t", time)
yday = month ~= nil and day ~= nil and "+" .. date.yday or ""
-- yday = month ~= nil and day ~= nil and "+" .. date.yday or ""
tdec = date.hour / 24 + date.min / 60 / 24 + date.sec / 60 / 60 / 24
-- tdec = date.hour / 24 + date.min / 60 / 24 + date.sec / 60 / 60 / 24
tdec = hour ~= nil and string.sub(math.floor(tdec * 100 + 0.5) / 100, 2) or ""
-- tdec = hour ~= nil and string.sub(math.floor(tdec * 100 + 0.5) / 100, 2) or ""
year = date.year - 2124
-- year = date.year - 2124
return year .. yday .. tdec
-- return year .. yday .. tdec
end
end


return p
return p

Revision as of 04:53, 3 February 2024

Documentation for this module may be created at Module:Systime/doc

-- This module implements {{Systime}}.

local p = {}

function p.toSystime(year, month, day, hour, min, sec)
	output = ""
	for key, value in pairs(year) do
		output = output .. "\n" .. key
	end
	return output

--	time = os.time({year = year, month = month ~= nil and month or 1, day = day ~= nil and day or 1, hour = hour, min = min, sec = sec})
--	date = os.date("*t", time)
--	yday = month ~= nil and day ~= nil and "+" .. date.yday or ""
--	tdec = date.hour / 24 + date.min / 60 / 24 + date.sec / 60 / 60 / 24
--	tdec = hour ~= nil and string.sub(math.floor(tdec * 100 + 0.5) / 100, 2) or ""
--	year = date.year - 2124
--	return year .. yday .. tdec
end

return p