|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface GLAnimatorControl
An animator control interface,
which implementation may drive a GLAutoDrawable animation.
| Field Summary |
|---|
| Fields inherited from interface javax.media.opengl.FPSCounter |
|---|
DEFAULT_FRAMES_PER_INTERVAL |
| Method Summary | |
|---|---|
void |
add(GLAutoDrawable drawable)
Adds a drawable to this animator's list of rendering drawables. |
Thread |
getThread()
|
boolean |
isAnimating()
Indicates whether this animator is started and is not paused. |
boolean |
isPaused()
Indicates whether this animator is started
and either manually paused or paused
automatically due to no added GLAutoDrawables. |
boolean |
isStarted()
Indicates whether this animator has been started. |
boolean |
pause()
Pauses this animator. |
void |
remove(GLAutoDrawable drawable)
Removes a drawable from the animator's list of rendering drawables. |
boolean |
resume()
Resumes animation if paused. |
boolean |
start()
Starts this animator, if not running. |
boolean |
stop()
Stops this animator. |
| Methods inherited from interface javax.media.opengl.FPSCounter |
|---|
getFPSStartTime, getLastFPS, getLastFPSPeriod, getLastFPSUpdateTime, getTotalFPS, getTotalFPSDuration, getTotalFPSFrames, getUpdateFPSFrames, resetFPSCounter, setUpdateFPSFrames |
| Method Detail |
|---|
boolean isStarted()
started.
start(),
stop(),
isPaused(),
pause(),
resume()boolean isAnimating()
is started and is not paused.
start(),
stop(),
pause(),
resume()boolean isPaused()
is started
and either manually paused or paused
automatically due to no added GLAutoDrawables.
start(),
stop(),
pause(),
resume()Thread getThread()
start(),
stop()boolean start()
In most situations this method blocks until completion, except when called from the animation thread itself or in some cases from an implementation-internal thread like the AWT event queue thread.
Note that an animator w/o added drawables
will be paused automatically.
If started, all counters (time, frames, ..) are reset to zero.
stop(),
isAnimating(),
isPaused(),
getThread()boolean stop()
In most situations this method blocks until completion, except when called from the animation thread itself or in some cases from an implementation-internal thread like the AWT event queue thread.
start(),
isAnimating(),
getThread()boolean pause()
In most situations this method blocks until completion, except when called from the animation thread itself or in some cases from an implementation-internal thread like the AWT event queue thread.
resume(),
isAnimating()boolean resume()
In most situations this method blocks until completion, except when called from the animation thread itself or in some cases from an implementation-internal thread like the AWT event queue thread.
If resumed, all counters (time, frames, ..) are reset to zero.
pause(),
isAnimating()void add(GLAutoDrawable drawable)
This allows the animator thread to become animating,
in case the first drawable is added and the animator is started.
drawable - the drawable to be added
IllegalArgumentException - if drawable was already added to this animatorvoid remove(GLAutoDrawable drawable)
This method should get called in case a drawable becomes invalid, and will not be recovered.
This allows the animator thread to become not animating,
in case the last drawable has been removed.
drawable - the drawable to be removed
IllegalArgumentException - if drawable was not added to this animator
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||