Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

os.time - How to use it?

Asked by 10 years ago

I was looking in the blog and it started talking about os.time. I wondered how it outputted so I put in the command line in the in-game console and this happened: 03EFF218 So I tried it in studio and: 0x15af5670 Is this a table or something? Obviously it's not supposed to be a string. How would I use os.time?

0
Pay close attention to the output: "function: 0D767DE0" the word before the numbers tells you that it's a function (not a table or something) BlueTaslem 18071 — 10y

2 answers

Log in to vote
1
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

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:

01-- The rule for whether or not `year` is a leap year.
02function isleap(year)
03    if year % 400 == 0 then
04        return true;
05    elseif year % 100 == 0 then
06        return false;
07    elseif year % 4 == 0 then
08        return true;
09    end
10    return false;
11end
12 
13function calendar( t )
14    -- t is seconds since beginning of 1970
15    local minutes = t / 60;
View all 72 lines...

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)

Ad
Log in to vote
1
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
10 years ago

os.time is actually a function, not a readable value.

1print(os.time()) --seconds passed since the UNIX epoch, UTC

If you call it with a table of parameters, you can get the seconds since the passed-in time.

0
Could you give me an example? lightpower26 399 — 10y
1
It's a *function*. *Methods* are on *instances* of objects and thus usually use the :method() notation. BlueTaslem 18071 — 10y

Answer this question