lua / corona sdk代码中的流程问题

时间:2013-07-01 01:21:43

标签: lua corona corona-storyboard

我对corona sdk中程序的流程感到非常困惑。

我想要的是,当转换结束时,流程会继续,我知道我可以使用Oncomplete,但我不知道在这种情况下如何使用它。

我有这段代码:

while ban == 2 do  
    actual = x
    desplazar = x
    while actual >= 0  do 
        actual = actual - 4
        if inTable(t,actual) then
            while inTable(t,actual) and actual >=0 do
                actual= actual - 4
            end
        end       
    if actual >= 0 then
         banaux=1  
         if inTable(t, desplazar) then
             block[desplazar].value=0
             block[desplazar]:removeSelf()
             for z=1, tablelength(t) do
                  if t[z] == desplazar then
                  t[z]=32
             end  
         end  
    end   
    transition.to(block[actual], {time=velocity, x=block[desplazar].x, y=block[desplazar].y})
    cambiodesp(actual,desplazar)
    desplazar = desplazar - 4 
  end        
 end
 x = x -1
 if inTable(t,x) then
 else
    ban = 1    
 end    
end

由于转换,我得到了很多意想不到的结果,我认为代码仍在运行,虽然转换还没有完成,我想在转换完成时为运行上面的代码做点什么,但是我我认为我不能使用oncomplete。

我希望在完成后继续运行

transition.to(block[actual], {time=velocity, x=block[desplazar].x, y=block[desplazar].y})

我不了解代码的流程是如何工作的,所以希望你能向我解释一下

1 个答案:

答案 0 :(得分:0)

也许你可以使用这个技巧,但我不推荐这个。因为它可能阻止运行时间。我建议你写功能。所以你可以正确使用onComplete方法

无论如何,这是修复它的错误但快捷的方法:

while ban == 2 do  
    actual = x
    desplazar = x
    while actual >= 0  do 
        actual = actual - 4
        if inTable(t,actual) then
            while inTable(t,actual) and actual >=0 do
                actual= actual - 4
            end
        end       
    if actual >= 0 then
         banaux=1  
         if inTable(t, desplazar) then
             block[desplazar].value=0
             block[desplazar]:removeSelf()
             for z=1, tablelength(t) do
                  if t[z] == desplazar then
                  t[z]=32
             end  
         end  
    end   
    local isEnded = false
    transition.to(block[actual], {time=velocity, x=block[desplazar].x, y=block[desplazar].y, onComplete = function() isEnded = true end })
    while isEnded == false then end
    cambiodesp(actual,desplazar)
    desplazar = desplazar - 4 
  end        
 end
 x = x -1
 if inTable(t,x) then
 else
    ban = 1    
 end    
end