another Lua question: Is there a common way to get the current time in or with milliseconds?
There is os.time(), but it only provides full seconds.
|
|
In standard C lua, no. You will have to settle for seconds, unless you are willing to modify the lua interpreter yourself to have os.time use the resolution you want. That may be unacceptable, however, if you are writing code for other people to run on their own and not something like a web application where you have full control of the environment. Edit: another option is to write your own small DLL in C that extends lua with a new function that would give you the values you want, and require that dll be distributed with your code to whomever is going to be using it. |
|||
|
|
|
I use LuaSocket to get more precision.
This adds a dependency of course, but works fine for personal use (in benchmarking scripts for example). |
|||
|
|
|
If you want to benchmark, you can use os.clock as shown by the doc:
|
|||||
|
|
I made a suitable solution for lua on Windows. I basically did what Kevlar suggested, but with a shared library rather than a DLL. This has been tested using cygwin. I wrote some lua compatible C code, compiled it to a shared library (.so file via gcc in cygwin), and then loaded it up in lua using package.cpath and require" ". Wrote an adapter script for convenience. Here is all of the source: first the C code, HighResTimer.c
----Now lets get it loaded up in a lua script, HighResTimer.lua . Note: I compiled the HighResTimer.c to a shared library, Timer.so
----and Finally, utilize the timer, TimerTest.lua .
Note: Any comments were written after pasting the source code into the post editor, so technically this is untested, but hopefully the comments didn't befuddle anything. I will be sure to come back and provide a fix if it does. |
|||
|
|
|
You can use C function gettimeofday : http://www.opengroup.org/onlinepubs/000095399/functions/gettimeofday.html Here C library 'ul_time', function sec_usec resides in 'time' global table and returns seconds, useconds. Copy DLL to Lua folder, open it with require 'ul_time'. |
||||
|
|