Applied-Energistics-2-tiler.../src/main/java/appeng/me/pathfinding/PathSegment.java

172 lines
4 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:26:27 +02:00
package appeng.me.pathfinding;
2014-09-24 02:26:27 +02:00
import java.util.EnumSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import appeng.api.networking.GridFlags;
import appeng.api.networking.IGridMultiblock;
import appeng.api.networking.IGridNode;
import appeng.me.cache.PathGridCache;
2014-09-24 02:26:27 +02:00
public class PathSegment
{
private final PathGridCache pgc;
private final Set<IPathItem> semiOpen;
private final Set<IPathItem> closed;
private boolean isDead;
private List<IPathItem> open;
2014-09-24 02:26:27 +02:00
2015-09-30 14:24:40 +02:00
public PathSegment( final PathGridCache myPGC, final List<IPathItem> open, final Set<IPathItem> semiOpen, final Set<IPathItem> closed )
2014-09-24 02:26:27 +02:00
{
this.open = open;
this.semiOpen = semiOpen;
2014-09-24 02:26:27 +02:00
this.closed = closed;
2014-12-29 15:13:47 +01:00
this.pgc = myPGC;
this.setDead( false );
2014-09-24 02:26:27 +02:00
}
public boolean step()
{
2015-09-30 14:24:40 +02:00
final List<IPathItem> oldOpen = this.open;
2014-12-29 15:13:47 +01:00
this.open = new LinkedList<IPathItem>();
2014-09-24 02:26:27 +02:00
2015-09-30 14:24:40 +02:00
for( final IPathItem i : oldOpen )
2014-09-24 02:26:27 +02:00
{
2015-09-30 14:24:40 +02:00
for( final IPathItem pi : i.getPossibleOptions() )
2014-09-24 02:26:27 +02:00
{
2015-09-30 14:24:40 +02:00
final EnumSet<GridFlags> flags = pi.getFlags();
2014-09-24 02:26:27 +02:00
if( !this.closed.contains( pi ) )
2014-09-24 02:26:27 +02:00
{
pi.setControllerRoute( i, true );
if( flags.contains( GridFlags.REQUIRE_CHANNEL ) )
2014-09-24 02:26:27 +02:00
{
// close the semi open.
if( !this.semiOpen.contains( pi ) )
2014-09-24 02:26:27 +02:00
{
2015-09-30 14:24:40 +02:00
final boolean worked;
2014-09-24 02:26:27 +02:00
if( flags.contains( GridFlags.COMPRESSED_CHANNEL ) )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
worked = this.useDenseChannel( pi );
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
worked = this.useChannel( pi );
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
if( worked && flags.contains( GridFlags.MULTIBLOCK ) )
2014-09-24 02:26:27 +02:00
{
2015-09-30 14:24:40 +02:00
final Iterator<IGridNode> oni = ( (IGridMultiblock) ( (IGridNode) pi ).getGridBlock() ).getMultiblockNodes();
while( oni.hasNext() )
2014-09-24 02:26:27 +02:00
{
2015-09-30 14:24:40 +02:00
final IGridNode otherNodes = oni.next();
if( otherNodes != pi )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.semiOpen.add( (IPathItem) otherNodes );
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
}
}
}
else
{
pi.incrementChannelCount( 1 ); // give a channel.
2014-12-29 15:13:47 +01:00
this.semiOpen.remove( pi );
2014-09-24 02:26:27 +02:00
}
}
2014-12-29 15:13:47 +01:00
this.closed.add( pi );
this.open.add( pi );
2014-09-24 02:26:27 +02:00
}
}
}
2014-12-29 15:13:47 +01:00
return this.open.isEmpty();
2014-09-24 02:26:27 +02:00
}
2015-09-30 14:24:40 +02:00
private boolean useDenseChannel( final IPathItem start )
2014-09-24 02:26:27 +02:00
{
IPathItem pi = start;
while( pi != null )
2014-09-24 02:26:27 +02:00
{
if( !pi.canSupportMoreChannels() || pi.getFlags().contains( GridFlags.CANNOT_CARRY_COMPRESSED ) )
2015-04-29 02:30:53 +02:00
{
2014-09-24 02:26:27 +02:00
return false;
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
pi = pi.getControllerRoute();
}
pi = start;
while( pi != null )
2014-09-24 02:26:27 +02:00
{
this.pgc.setChannelsByBlocks( this.pgc.getChannelsByBlocks() + 1 );
2014-09-24 02:26:27 +02:00
pi.incrementChannelCount( 1 );
pi = pi.getControllerRoute();
}
this.pgc.setChannelsInUse( this.pgc.getChannelsInUse() + 1 );
2014-09-24 02:26:27 +02:00
return true;
}
2015-09-30 14:24:40 +02:00
private boolean useChannel( final IPathItem start )
2014-09-24 02:26:27 +02:00
{
IPathItem pi = start;
while( pi != null )
2014-09-24 02:26:27 +02:00
{
if( !pi.canSupportMoreChannels() )
2015-04-29 02:30:53 +02:00
{
2014-09-24 02:26:27 +02:00
return false;
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
pi = pi.getControllerRoute();
}
pi = start;
while( pi != null )
2014-09-24 02:26:27 +02:00
{
this.pgc.setChannelsByBlocks( this.pgc.getChannelsByBlocks() + 1 );
2014-09-24 02:26:27 +02:00
pi.incrementChannelCount( 1 );
pi = pi.getControllerRoute();
}
this.pgc.setChannelsInUse( this.pgc.getChannelsInUse() + 1 );
2014-09-24 02:26:27 +02:00
return true;
}
public boolean isDead()
{
return this.isDead;
}
public void setDead( final boolean isDead )
{
this.isDead = isDead;
}
2014-09-24 02:26:27 +02:00
}