What I'm trying to do is IC2 reactor control with some graphic interface:
It draws components durability status, contorls overheating and reads event from keyboard to switch power.
But what happening now is until it draw all components, that takes forever and is painfully slow, it will not react to any event, and will not check overheating
What I want to do is create thread that draws components and continue main program to listen events and check overheating
Now I have this code: https://pastebin.com/BBw1TxYd
I tried to use threads api, but it seems you can not create infinite while-true-loop thread and continue main function:
td=thread.create(function()
while true do
checkDmg()
end
end):detach()
--NEVER GETS HERE
while handleEvent(event.pull(1)) do
--nothing
end
** I cant understand nothing about what detach actually do, documentation needs to be extended
As I understand, there is absolutely no way to do what I'm trying to do in lua?
Basically I need to be able to interrupt my code that draws things at any moment by pressing key
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
What I'm trying to do is IC2 reactor control with some graphic interface:
It draws components durability status, contorls overheating and reads event from keyboard to switch power.
But what happening now is until it draw all components, that takes forever and is painfully slow, it will not react to any event, and will not check overheating
What I want to do is create thread that draws components and continue main program to listen events and check overheating
Now I have this code: https://pastebin.com/BBw1TxYd
I tried to use threads api, but it seems you can not create infinite while-true-loop thread and continue main function:
td=thread.create(function() while true do checkDmg() end end):detach() --NEVER GETS HERE while handleEvent(event.pull(1)) do --nothing end
** I cant understand nothing about what detach actually do, documentation needs to be extended
As I understand, there is absolutely no way to do what I'm trying to do in lua?
Basically I need to be able to interrupt my code that draws things at any moment by pressing key
Link to post
Share on other sites