[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: function with program counter
- From: Philipp Kraus <philipp.kraus@...>
- Date: Sat, 14 Sep 2013 22:26:27 +0200
Hello,
I would like to use a list structure for calling Lua function. So some explanation.
I have got a function e.g.
function test({…})
do first call
do some print
do second call
do some print again
if (a)
do A
else
do B
end
….
end
I have got also a "program counter" which is started by 1. On 1 its should run "do first call" on 2 "do some print" and so on.
I would like to use a Lua function, but I would like to run this function step-by-step. I can use a if construct to check the current
"program counter value" and run the correct command, but this is not very nice.
Did you have an idea for this problem?
Thanks
Phil