Time is a very difficult to rigorously define.
The standard way that it is done is by counting the number of seconds from some particular, special moment in history.
tick()
counts the number of seconds since the beginning of 1970 in your time zone.
os.clock()
does a similar thing. However, it measures universal time meaning it references the beginning of 1970 GMT, regardless of which timezone the computer is in.
os.clock()
is also an integer, while tick()
provides a fraction of a second.
Here's a function that computes the day, year, etc, approximately, given the two functions:
03 | if year % 400 = = 0 then |
05 | elseif year % 100 = = 0 then |
07 | elseif year % 4 = = 0 then |
15 | local minutes = t / 60 ; |
16 | local hours = minutes / 60 ; |
17 | local days = hours / 24 ; |
18 | local week = (days % 7 + 4 ) % 7 ; |
28 | dayStart = dayStart + len; |
29 | if dayStart > days then |
31 | dayStart = dayStart - len; |
36 | minutes = minutes % 60 ; |
37 | days = days - dayStart; |
38 | local mos = { 31 , 28 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31 } ; |
47 | monthStart = monthStart + mos [ mo ] ; |
48 | if monthStart > days then |
49 | monthStart = monthStart - mos [ mo ] ; |
54 | local date = days - monthStart; |
55 | print ( "Today's Date:" ); |
57 | "January" , "February" , "March" , "April" , "May" , "June" , "July" , |
58 | "August" , "September" , "October" , "November" , "December" |
60 | print (math.floor(date) + 1 , monthName [ month ] , year); |
61 | print (math.floor(hours), ":" , math.floor(minutes)); |
os.time()
results in the time in GMT (English time).
tick()
results in my local time (EST)
Time is bad. If you can, avoid dealing with it. Using HTTP service to query some web service about time information might almost be a better option.
Or, finding a library that deals with it properly (I'm sure there is one, somewhere)