/* * 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 . */ package appeng.me.pathfinding; 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; public class PathSegment { final PathGridCache pgc; final Set semiOpen; final Set closed; public boolean isDead; List open; public PathSegment( PathGridCache myPGC, List open, Set semiOpen, Set closed ) { this.open = open; this.semiOpen = semiOpen; this.closed = closed; this.pgc = myPGC; this.isDead = false; } public boolean step() { List oldOpen = this.open; this.open = new LinkedList(); for( IPathItem i : oldOpen ) { for( IPathItem pi : i.getPossibleOptions() ) { EnumSet flags = pi.getFlags(); if( !this.closed.contains( pi ) ) { pi.setControllerRoute( i, true ); if( flags.contains( GridFlags.REQUIRE_CHANNEL ) ) { // close the semi open. if( !this.semiOpen.contains( pi ) ) { boolean worked; if( flags.contains( GridFlags.COMPRESSED_CHANNEL ) ) { worked = this.useDenseChannel( pi ); } else { worked = this.useChannel( pi ); } if( worked && flags.contains( GridFlags.MULTIBLOCK ) ) { Iterator oni = ( (IGridMultiblock) ( (IGridNode) pi ).getGridBlock() ).getMultiblockNodes(); while( oni.hasNext() ) { IGridNode otherNodes = oni.next(); if( otherNodes != pi ) { this.semiOpen.add( (IPathItem) otherNodes ); } } } } else { pi.incrementChannelCount( 1 ); // give a channel. this.semiOpen.remove( pi ); } } this.closed.add( pi ); this.open.add( pi ); } } } return this.open.isEmpty(); } private boolean useDenseChannel( IPathItem start ) { IPathItem pi = start; while( pi != null ) { if( !pi.canSupportMoreChannels() || pi.getFlags().contains( GridFlags.CANNOT_CARRY_COMPRESSED ) ) { return false; } pi = pi.getControllerRoute(); } pi = start; while( pi != null ) { this.pgc.channelsByBlocks++; pi.incrementChannelCount( 1 ); pi = pi.getControllerRoute(); } this.pgc.channelsInUse++; return true; } private boolean useChannel( IPathItem start ) { IPathItem pi = start; while( pi != null ) { if( !pi.canSupportMoreChannels() ) { return false; } pi = pi.getControllerRoute(); } pi = start; while( pi != null ) { this.pgc.channelsByBlocks++; pi.incrementChannelCount( 1 ); pi = pi.getControllerRoute(); } this.pgc.channelsInUse++; return true; } }