Applied-Energistics-2-tiler.../src/main/java/appeng/crafting/CraftingJob.java

378 lines
9.1 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>.
*/
package appeng.crafting;
import java.util.HashMap;
import java.util.HashSet;
2015-05-09 00:04:44 +02:00
import java.util.Set;
import java.util.concurrent.TimeUnit;
2015-05-09 13:06:09 +02:00
import com.google.common.base.Stopwatch;
import net.minecraft.nbt.NBTTagCompound;
2014-06-22 09:00:38 +02:00
import net.minecraft.world.World;
2014-12-29 21:59:05 +01:00
2014-06-05 05:54:01 +02:00
import appeng.api.AEApi;
2014-06-05 02:47:13 +02:00
import appeng.api.config.Actionable;
import appeng.api.networking.IGrid;
import appeng.api.networking.crafting.ICraftingCallback;
import appeng.api.networking.crafting.ICraftingGrid;
import appeng.api.networking.crafting.ICraftingJob;
2014-06-06 06:26:01 +02:00
import appeng.api.networking.crafting.ICraftingPatternDetails;
import appeng.api.networking.security.BaseActionSource;
2014-06-05 05:54:01 +02:00
import appeng.api.networking.storage.IStorageGrid;
import appeng.api.storage.data.IAEItemStack;
import appeng.api.storage.data.IItemList;
import appeng.core.AELog;
import appeng.hooks.TickHandler;
public class CraftingJob implements Runnable, ICraftingJob
{
final IItemList<IAEItemStack> storage;
2015-05-09 00:04:44 +02:00
final Set<IAEItemStack> prophecies;
final MECraftingInventory original;
final World world;
final IItemList<IAEItemStack> crafting = AEApi.instance().storage().createItemList();
final IItemList<IAEItemStack> missing = AEApi.instance().storage().createItemList();
final HashMap<String, TwoIntegers> opsAndMultiplier = new HashMap<String, TwoIntegers>();
private final Object monitor = new Object();
private final Stopwatch watch = Stopwatch.createUnstarted();
public CraftingTreeNode tree;
IAEItemStack output;
boolean simulate = false;
MECraftingInventory availableCheck;
long bytes = 0;
private BaseActionSource actionSrc;
private ICraftingCallback callback;
private boolean running = false;
private boolean done = false;
private int time = 5;
private int incTime = Integer.MAX_VALUE;
public CraftingJob( final World w, final NBTTagCompound data )
{
2014-12-29 15:13:47 +01:00
this.world = this.wrapWorld( w );
this.storage = AEApi.instance().storage().createItemList();
this.prophecies = new HashSet<IAEItemStack>();
this.original = null;
this.availableCheck = null;
}
private World wrapWorld( final World w )
{
return w;
2014-06-05 02:47:13 +02:00
}
public CraftingJob( final World w, final IGrid grid, final BaseActionSource actionSrc, final IAEItemStack what, final ICraftingCallback callback )
{
2014-12-29 15:13:47 +01:00
this.world = this.wrapWorld( w );
this.output = what.copy();
this.storage = AEApi.instance().storage().createItemList();
this.prophecies = new HashSet<IAEItemStack>();
this.actionSrc = actionSrc;
2014-06-05 05:54:01 +02:00
this.callback = callback;
final ICraftingGrid cc = grid.getCache( ICraftingGrid.class );
final IStorageGrid sg = grid.getCache( IStorageGrid.class );
2014-12-29 15:13:47 +01:00
this.original = new MECraftingInventory( sg.getItemInventory(), actionSrc, false, false, false );
2014-12-29 15:13:47 +01:00
this.tree = this.getCraftingTree( cc, what );
this.availableCheck = null;
2014-06-06 06:26:01 +02:00
}
private CraftingTreeNode getCraftingTree( final ICraftingGrid cc, final IAEItemStack what )
2014-06-22 09:00:38 +02:00
{
return new CraftingTreeNode( cc, this, what, null, -1, 0 );
2014-06-22 09:00:38 +02:00
}
public void refund( final IAEItemStack o )
2014-06-06 06:26:01 +02:00
{
this.availableCheck.injectItems( o, Actionable.MODULATE, this.actionSrc );
2014-06-06 06:26:01 +02:00
}
public IAEItemStack checkUse( final IAEItemStack available )
{
return this.availableCheck.extractItems( available, Actionable.MODULATE, this.actionSrc );
}
public void writeToNBT( final NBTTagCompound out )
2014-06-06 06:26:01 +02:00
{
}
public void addTask( IAEItemStack what, final long crafts, final ICraftingPatternDetails details, final int depth )
{
if( crafts > 0 )
{
what = what.copy();
what.setStackSize( what.getStackSize() * crafts );
2014-12-29 15:13:47 +01:00
this.crafting.add( what );
}
}
public void addMissing( IAEItemStack what )
{
what = what.copy();
2014-12-29 15:13:47 +01:00
this.missing.add( what );
}
@Override
public void run()
{
try
{
try
{
2015-01-01 22:13:10 +01:00
TickHandler.INSTANCE.registerCraftingSimulation( this.world, this );
2014-12-29 15:13:47 +01:00
this.handlePausing();
final Stopwatch timer = Stopwatch.createStarted();
final MECraftingInventory craftingInventory = new MECraftingInventory( this.original, true, false, true );
2014-12-29 15:13:47 +01:00
craftingInventory.ignore( this.output );
2014-12-29 15:13:47 +01:00
this.availableCheck = new MECraftingInventory( this.original, false, false, false );
this.tree.request( craftingInventory, this.output.getStackSize(), this.actionSrc );
this.tree.dive( this );
for( final String s : this.opsAndMultiplier.keySet() )
{
final TwoIntegers ti = this.opsAndMultiplier.get( s );
AELog.crafting( s + " * " + ti.times + " = " + ( ti.perOp * ti.times ) );
}
AELog.crafting( "------------- " + this.bytes + "b real" + timer.elapsed( TimeUnit.MILLISECONDS ) + "ms" );
// if ( mode == Actionable.MODULATE )
// craftingInventory.moveItemsToStorage( storage );
}
catch( final CraftBranchFailure e )
{
2014-12-29 15:13:47 +01:00
this.simulate = true;
try
{
final Stopwatch timer = Stopwatch.createStarted();
final MECraftingInventory craftingInventory = new MECraftingInventory( this.original, true, false, true );
2014-12-29 15:13:47 +01:00
craftingInventory.ignore( this.output );
2014-12-29 15:13:47 +01:00
this.availableCheck = new MECraftingInventory( this.original, false, false, false );
2014-12-29 15:13:47 +01:00
this.tree.setSimulate();
this.tree.request( craftingInventory, this.output.getStackSize(), this.actionSrc );
this.tree.dive( this );
for( final String s : this.opsAndMultiplier.keySet() )
{
final TwoIntegers ti = this.opsAndMultiplier.get( s );
AELog.crafting( s + " * " + ti.times + " = " + ( ti.perOp * ti.times ) );
}
AELog.crafting( "------------- " + this.bytes + "b simulate" + timer.elapsed( TimeUnit.MILLISECONDS ) + "ms" );
}
catch( final CraftBranchFailure e1 )
{
AELog.error( e1 );
}
catch( final CraftingCalculationFailure f )
{
AELog.error( f );
}
catch( final InterruptedException e1 )
{
AELog.crafting( "Crafting calculation canceled." );
2014-12-29 15:13:47 +01:00
this.finish();
return;
}
}
catch( final CraftingCalculationFailure f )
{
AELog.error( f );
}
catch( final InterruptedException e1 )
{
AELog.crafting( "Crafting calculation canceled." );
2014-12-29 15:13:47 +01:00
this.finish();
return;
}
2014-12-29 15:13:47 +01:00
this.log( "crafting job now done" );
}
catch( final Throwable t )
{
2014-12-29 15:13:47 +01:00
this.finish();
throw new IllegalStateException( t );
}
2014-12-29 15:13:47 +01:00
this.finish();
}
public void handlePausing() throws InterruptedException
{
if( this.incTime > 100 )
{
this.incTime = 0;
synchronized( this.monitor )
{
if( this.watch.elapsed( TimeUnit.MICROSECONDS ) > this.time )
{
this.running = false;
this.watch.stop();
this.monitor.notify();
}
if( !this.running )
{
this.log( "crafting job will now sleep" );
while( !this.running )
{
this.monitor.wait();
}
this.log( "crafting job now active" );
}
}
if( Thread.interrupted() )
2015-04-29 02:30:53 +02:00
{
throw new InterruptedException();
2015-04-29 02:30:53 +02:00
}
}
this.incTime++;
}
public void finish()
{
if( this.callback != null )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.callback.calculationComplete( this );
2015-04-29 02:30:53 +02:00
}
2014-12-29 15:13:47 +01:00
this.availableCheck = null;
synchronized( this.monitor )
{
2014-12-29 15:13:47 +01:00
this.running = false;
this.done = true;
this.monitor.notify();
}
}
private void log( final String string )
{
// AELog.crafting( string );
}
@Override
2014-06-22 09:00:38 +02:00
public boolean isSimulation()
{
2014-12-29 15:13:47 +01:00
return this.simulate;
2014-06-22 09:00:38 +02:00
}
@Override
public long getByteTotal()
{
return this.bytes;
}
@Override
public void populatePlan( final IItemList<IAEItemStack> plan )
{
if( this.tree != null )
2015-04-29 02:30:53 +02:00
{
this.tree.getPlan( plan );
2015-04-29 02:30:53 +02:00
}
}
@Override
public IAEItemStack getOutput()
{
return this.output;
}
public boolean isDone()
{
2014-12-29 15:13:47 +01:00
return this.done;
}
2014-06-22 09:00:38 +02:00
public World getWorld()
{
2014-12-29 15:13:47 +01:00
return this.world;
2014-06-22 09:00:38 +02:00
}
/**
* returns true if this needs more simulation.
2015-02-03 12:04:13 +01:00
*
2014-09-27 23:17:47 +02:00
* @param milli milliseconds of simulation
*
2014-09-27 23:17:47 +02:00
* @return true if this needs more simulation
*/
public boolean simulateFor( final int milli )
{
2014-12-29 15:13:47 +01:00
this.time = milli;
synchronized( this.monitor )
{
if( this.done )
2015-04-29 02:30:53 +02:00
{
return false;
2015-04-29 02:30:53 +02:00
}
2014-12-29 15:13:47 +01:00
this.watch.reset();
this.watch.start();
this.running = true;
2014-12-29 15:13:47 +01:00
this.log( "main thread is now going to sleep" );
2014-12-29 15:13:47 +01:00
this.monitor.notify();
while( this.running )
{
try
{
2014-12-29 15:13:47 +01:00
this.monitor.wait();
}
catch( final InterruptedException ignored )
{
}
}
2014-12-29 15:13:47 +01:00
this.log( "main thread is now active" );
}
return true;
}
public void addBytes( final long crafts )
{
2014-12-29 15:13:47 +01:00
this.bytes += crafts;
}
static class TwoIntegers
{
public final long perOp = 0;
public final long times = 0;
}
}