Typo beginVisition

This commit is contained in:
thatsIch 2014-09-20 22:37:36 +02:00
parent 83299fcf44
commit 8a3739d9bd
3 changed files with 13 additions and 13 deletions

View file

@ -66,22 +66,22 @@ public class GridConnection implements IGridConnection, IPathItem
if ( a.myGrid == null ) if ( a.myGrid == null )
{ {
GridPropagator gp = new GridPropagator( b.getInternalGrid() ); GridPropagator gp = new GridPropagator( b.getInternalGrid() );
a.beginVisition( gp ); a.beginVisit( gp );
} }
else if ( b.myGrid == null ) else if ( b.myGrid == null )
{ {
GridPropagator gp = new GridPropagator( a.getInternalGrid() ); GridPropagator gp = new GridPropagator( a.getInternalGrid() );
b.beginVisition( gp ); b.beginVisit( gp );
} }
else if ( isNetworkABetter( a, b ) ) else if ( isNetworkABetter( a, b ) )
{ {
GridPropagator gp = new GridPropagator( a.getInternalGrid() ); GridPropagator gp = new GridPropagator( a.getInternalGrid() );
b.beginVisition( gp ); b.beginVisit( gp );
} }
else else
{ {
GridPropagator gp = new GridPropagator( b.getInternalGrid() ); GridPropagator gp = new GridPropagator( b.getInternalGrid() );
a.beginVisition( gp ); a.beginVisit( gp );
} }
} }

View file

@ -163,7 +163,7 @@ public class GridNode implements IGridNode, IPathItem
} }
@Override @Override
public void beginVisition(IGridVisitor g) public void beginVisit(IGridVisitor g)
{ {
Object tracker = new Object(); Object tracker = new Object();
@ -461,11 +461,11 @@ public class GridNode implements IGridNode, IPathItem
public void validateGrid() public void validateGrid()
{ {
GridSplitDetector gsd = new GridSplitDetector( getInternalGrid().getPivot() ); GridSplitDetector gsd = new GridSplitDetector( getInternalGrid().getPivot() );
beginVisition( gsd ); beginVisit( gsd );
if ( !gsd.pivotFound ) if ( !gsd.pivotFound )
{ {
GridPropagator gp = new GridPropagator( new Grid( this ) ); GridPropagator gp = new GridPropagator( new Grid( this ) );
beginVisition( gp ); beginVisit( gp );
} }
} }

View file

@ -96,7 +96,7 @@ public class PathGridCache implements IPathingGrid
channelsByBlocks = nodes * used; channelsByBlocks = nodes * used;
channelPowerUsage = (double) channelsByBlocks / 128.0; channelPowerUsage = (double) channelsByBlocks / 128.0;
myGrid.getPivot().beginVisition( new AdHocChannelUpdater( used ) ); myGrid.getPivot().beginVisit( new AdHocChannelUpdater( used ) );
} }
else if ( controllerState == ControllerState.NO_CONTROLLER ) else if ( controllerState == ControllerState.NO_CONTROLLER )
{ {
@ -112,12 +112,12 @@ public class PathGridCache implements IPathingGrid
channelsByBlocks = nodes * used; channelsByBlocks = nodes * used;
channelPowerUsage = (double) channelsByBlocks / 128.0; channelPowerUsage = (double) channelsByBlocks / 128.0;
myGrid.getPivot().beginVisition( new AdHocChannelUpdater( used ) ); myGrid.getPivot().beginVisit( new AdHocChannelUpdater( used ) );
} }
else if ( controllerState == ControllerState.CONTROLLER_CONFLICT ) else if ( controllerState == ControllerState.CONTROLLER_CONFLICT )
{ {
ticksUntilReady = 20; ticksUntilReady = 20;
myGrid.getPivot().beginVisition( new AdHocChannelUpdater( 0 ) ); myGrid.getPivot().beginVisit( new AdHocChannelUpdater( 0 ) );
} }
else else
{ {
@ -126,7 +126,7 @@ public class PathGridCache implements IPathingGrid
closedList = new HashSet(); closedList = new HashSet();
semiOpen = new HashSet(); semiOpen = new HashSet();
// myGrid.getPivot().beginVisition( new AdHocChannelUpdater( 0 ) // myGrid.getPivot().beginVisit( new AdHocChannelUpdater( 0 )
// ); // );
for (IGridNode node : myGrid.getMachines( TileController.class )) for (IGridNode node : myGrid.getMachines( TileController.class ))
{ {
@ -168,7 +168,7 @@ public class PathGridCache implements IPathingGrid
{ {
for (TileController tc : controllers) for (TileController tc : controllers)
{ {
tc.getGridNode( ForgeDirection.UNKNOWN ).beginVisition( new ControllerChannelUpdater() ); tc.getGridNode( ForgeDirection.UNKNOWN ).beginVisit( new ControllerChannelUpdater() );
break; break;
} }
} }
@ -332,7 +332,7 @@ public class PathGridCache implements IPathingGrid
DimensionalCoord dc = startingNode.getGridBlock().getLocation(); DimensionalCoord dc = startingNode.getGridBlock().getLocation();
ControllerValidator cv = new ControllerValidator( dc.x, dc.y, dc.z ); ControllerValidator cv = new ControllerValidator( dc.x, dc.y, dc.z );
startingNode.beginVisition( cv ); startingNode.beginVisit( cv );
if ( cv.isValid && cv.found == controllers.size() ) if ( cv.isValid && cv.found == controllers.size() )
controllerState = ControllerState.CONTROLLER_ONLINE; controllerState = ControllerState.CONTROLLER_ONLINE;