rle.core
Class GameThread

java.lang.Object
  extended by rle.core.vm.PlugInBase
      extended by rle.core.GameThread
All Implemented Interfaces:
PlugIn

public class GameThread
extends PlugInBase

The thread that processes all game actions. This is one of two main threads that are utilized; the other being the Swing event dispatch thread.


Field Summary
protected  java.util.ArrayList<UiAction> queue
           
protected  java.lang.Thread thread
           
 
Fields inherited from class rle.core.vm.PlugInBase
config, context, parameters
 
Constructor Summary
GameThread()
           
 
Method Summary
 void add(UiAction action)
           
 void flush()
           
 void kill()
           
 void setProcessing(boolean b)
           
 
Methods inherited from class rle.core.vm.PlugInBase
config, getContext, getParameters, paramMap, setConfig, setParameters
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

thread

protected java.lang.Thread thread

queue

protected java.util.ArrayList<UiAction> queue
Constructor Detail

GameThread

public GameThread()
Method Detail

setProcessing

public void setProcessing(boolean b)

kill

public void kill()

add

public void add(UiAction action)

flush

public void flush()