vote up 2 vote down star

Lets say I am running a script and the game client waits for the script to be finished before it updates. Can Lua do somthing of a 'timeout'? Like, can i set a priority on the update so it leaves the script to do the update and then after words could it go back to where it was in the script?

flag

60% accept rate
I think you are better of with multithreading. One thread for the Lua script, another one for the updates. – ammoQ Nov 1 at 9:50

2 Answers

vote up 1 vote down

You can also set a count hook with a suitable count for timeout and abort execution of the script in the hook.

link|flag
vote up 0 vote down

Lua uses collaborative multithreading, so the script must know how long it has taken before it passes control back to the caller. Its not hard to figure out how long it has run using os.time and getting the difference. In some cases this might be more difficult, but if the script is a loop it shouldn't be hard. Once you've figured out that you've run for too long, do a coroutine.yield() and when you want to resume the script, simply call lua_resume from your update loop.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.