com.threerings.tudey.client.cursor
Class PathCursor.Original

java.lang.Object
  extended by com.threerings.expr.SimpleScope
      extended by com.threerings.tudey.client.cursor.PathCursor.Implementation
          extended by com.threerings.tudey.client.cursor.PathCursor.Original
All Implemented Interfaces:
Scope, ScopeUpdateListener, Compositable, Tickable
Enclosing class:
PathCursor

public static class PathCursor.Original
extends PathCursor.Implementation

An original implementation.


Field Summary
protected  ColorState _colorState
          The shared color state.
protected  TudeyContext _ctx
          The renderer context.
protected  Model[] _edges
          The models representing the edges.
protected  ShapeSceneElement _footprint
          The footprint.
protected  Model[] _vertices
          The models representing the vertices.
 
Fields inherited from class com.threerings.expr.SimpleScope
_parentScope
 
Fields inherited from interface com.threerings.expr.Scope
EPOCH, NOW
 
Constructor Summary
PathCursor.Original(TudeyContext ctx, Scope parentScope, PathConfig.Original config)
          Creates a new implementation.
 
Method Summary
 void composite()
          Adds this object's Dependencys and Enqueueables to the compositor in preparation for rendering.
 Shape getShape()
          Returns a reference to the transformed shape.
 void setConfig(PathConfig.Original config)
          (Re)configures the implementation.
 void tick(float elapsed)
          Updates the state of this object based on the elapsed time in seconds.
 void update(TudeySceneModel.PathEntry entry)
          Updates the implementation to match the path state.
 
Methods inherited from class com.threerings.tudey.client.cursor.PathCursor.Implementation
getScopeName
 
Methods inherited from class com.threerings.expr.SimpleScope
addListener, dispose, get, getParentScope, removeListener, scopeUpdated
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_ctx

protected TudeyContext _ctx
The renderer context.


_vertices

protected Model[] _vertices
The models representing the vertices.


_edges

protected Model[] _edges
The models representing the edges.


_footprint

protected ShapeSceneElement _footprint
The footprint.


_colorState

protected ColorState _colorState
The shared color state.

Constructor Detail

PathCursor.Original

public PathCursor.Original(TudeyContext ctx,
                           Scope parentScope,
                           PathConfig.Original config)
Creates a new implementation.

Method Detail

setConfig

public void setConfig(PathConfig.Original config)
(Re)configures the implementation.


getShape

public Shape getShape()
Description copied from class: PathCursor.Implementation
Returns a reference to the transformed shape.

Overrides:
getShape in class PathCursor.Implementation

update

public void update(TudeySceneModel.PathEntry entry)
Description copied from class: PathCursor.Implementation
Updates the implementation to match the path state.

Overrides:
update in class PathCursor.Implementation

tick

public void tick(float elapsed)
Description copied from interface: Tickable
Updates the state of this object based on the elapsed time in seconds.

Specified by:
tick in interface Tickable
Overrides:
tick in class PathCursor.Implementation

composite

public void composite()
Description copied from interface: Compositable
Adds this object's Dependencys and Enqueueables to the compositor in preparation for rendering.

Specified by:
composite in interface Compositable
Overrides:
composite in class PathCursor.Implementation