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

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

public static class TileCursor.Original
extends TileCursor.Implementation

The original implementation.


Field Summary
protected  TileConfig.Original _config
          The tile configuration.
protected  RectangleElement _footprint
          The tile footprint.
protected  Model _model
          The model.
protected  Polygon _shape
          The shape of the tile.
 
Fields inherited from class com.threerings.expr.SimpleScope
_parentScope
 
Fields inherited from interface com.threerings.expr.Scope
EPOCH, NOW
 
Constructor Summary
TileCursor.Original(TudeyContext ctx, Scope parentScope, TileConfig.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(TileConfig.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.TileEntry entry)
          Updates the cursor state.
 
Methods inherited from class com.threerings.tudey.client.cursor.TileCursor.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

_config

protected TileConfig.Original _config
The tile configuration.


_model

protected Model _model
The model.


_footprint

protected RectangleElement _footprint
The tile footprint.


_shape

protected Polygon _shape
The shape of the tile.

Constructor Detail

TileCursor.Original

public TileCursor.Original(TudeyContext ctx,
                           Scope parentScope,
                           TileConfig.Original config)
Creates a new implementation.

Method Detail

setConfig

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


getShape

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

Overrides:
getShape in class TileCursor.Implementation

update

public void update(TudeySceneModel.TileEntry entry)
Description copied from class: TileCursor.Implementation
Updates the cursor state.

Overrides:
update in class TileCursor.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 TileCursor.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 TileCursor.Implementation