|
|
|
@ -568,33 +568,26 @@ public class Application implements SystemListener { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Do not call manually. |
|
|
|
|
* Callback from ContextListener. |
|
|
|
|
* Runs tasks enqueued via {@link #enqueue(Callable)} |
|
|
|
|
*/ |
|
|
|
|
public void update(){ |
|
|
|
|
// Make sure the audio renderer is available to callables
|
|
|
|
|
AudioContext.setAudioRenderer(audioRenderer); |
|
|
|
|
|
|
|
|
|
AppTask<?> task = taskQueue.poll(); |
|
|
|
|
toploop: do { |
|
|
|
|
if (task == null) break; |
|
|
|
|
while (task.isCancelled()) { |
|
|
|
|
task = taskQueue.poll(); |
|
|
|
|
if (task == null) break toploop; |
|
|
|
|
} |
|
|
|
|
task.invoke(); |
|
|
|
|
} while (((task = taskQueue.poll()) != null)); |
|
|
|
|
|
|
|
|
|
/* I think the above is really just doing this: |
|
|
|
|
protected void runQueuedTasks() { |
|
|
|
|
AppTask<?> task; |
|
|
|
|
while( (task = taskQueue.poll()) != null ) { |
|
|
|
|
if (!task.isCancelled()) { |
|
|
|
|
task.invoke(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//...but it's hard to say for sure. It's so twisted
|
|
|
|
|
//up that I don't trust my eyes. -pspeed
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Do not call manually. |
|
|
|
|
* Callback from ContextListener. |
|
|
|
|
*/ |
|
|
|
|
public void update(){ |
|
|
|
|
// Make sure the audio renderer is available to callables
|
|
|
|
|
AudioContext.setAudioRenderer(audioRenderer); |
|
|
|
|
|
|
|
|
|
runQueuedTasks(); |
|
|
|
|
|
|
|
|
|
if (speed == 0 || paused) |
|
|
|
|
return; |
|
|
|
|