Started P2P rework

Changed frequency to short.
Added a per grid RNG to request a new frequency, hopefully without many
collisons.
Added a helper to convert between a frequency and 4 colours
This commit is contained in:
yueh 2016-12-08 17:59:29 +01:00
parent 86908b1ae6
commit 775d17e9db
4 changed files with 68 additions and 34 deletions

View file

@ -20,8 +20,10 @@ package appeng.me.cache;
import java.util.HashMap; import java.util.HashMap;
import java.util.Random;
import com.google.common.collect.LinkedHashMultimap; import com.google.common.collect.LinkedHashMultimap;
import com.google.common.collect.Maps;
import com.google.common.collect.Multimap; import com.google.common.collect.Multimap;
import appeng.api.networking.GridFlags; import appeng.api.networking.GridFlags;
@ -34,22 +36,26 @@ import appeng.api.networking.events.MENetworkBootingStatusChange;
import appeng.api.networking.events.MENetworkEventSubscribe; import appeng.api.networking.events.MENetworkEventSubscribe;
import appeng.api.networking.events.MENetworkPowerStatusChange; import appeng.api.networking.events.MENetworkPowerStatusChange;
import appeng.api.networking.ticking.ITickManager; import appeng.api.networking.ticking.ITickManager;
import appeng.core.AELog;
import appeng.me.cache.helpers.TunnelCollection; import appeng.me.cache.helpers.TunnelCollection;
import appeng.parts.p2p.PartP2PTunnel; import appeng.parts.p2p.PartP2PTunnel;
import appeng.parts.p2p.PartP2PTunnelME; import appeng.parts.p2p.PartP2PTunnelME;
import appeng.util.Platform;
public class P2PCache implements IGridCache public class P2PCache implements IGridCache
{ {
private static final TunnelCollection NULL_COLLECTION = new TunnelCollection<PartP2PTunnel>( null, null );
private final IGrid myGrid; private final IGrid myGrid;
private final HashMap<Long, PartP2PTunnel> inputs = new HashMap<Long, PartP2PTunnel>(); private final HashMap<Short, PartP2PTunnel> inputs = Maps.newHashMap();
private final Multimap<Long, PartP2PTunnel> outputs = LinkedHashMultimap.create(); private final Multimap<Short, PartP2PTunnel> outputs = LinkedHashMultimap.create();
private final TunnelCollection NullColl = new TunnelCollection<PartP2PTunnel>( null, null ); private final Random frequencyGenerator;
public P2PCache( final IGrid g ) public P2PCache( final IGrid g )
{ {
this.myGrid = g; this.myGrid = g;
this.frequencyGenerator = new Random( g.hashCode() );
} }
@MENetworkEventSubscribe @MENetworkEventSubscribe
@ -98,8 +104,7 @@ public class P2PCache implements IGridCache
} }
final PartP2PTunnel t = (PartP2PTunnel) machine; final PartP2PTunnel t = (PartP2PTunnel) machine;
// AELog.info( "rmv-" + (t.output ? "output: " : "input: ") + t.freq // AELog.info( "rmv-" + (t.output ? "output: " : "input: ") + t.freq );
// );
if( t.isOutput() ) if( t.isOutput() )
{ {
@ -128,8 +133,7 @@ public class P2PCache implements IGridCache
} }
final PartP2PTunnel t = (PartP2PTunnel) machine; final PartP2PTunnel t = (PartP2PTunnel) machine;
// AELog.info( "add-" + (t.output ? "output: " : "input: ") + t.freq // AELog.info( "add-" + (t.output ? "output: " : "input: ") + t.freq );
// );
if( t.isOutput() ) if( t.isOutput() )
{ {
@ -162,7 +166,7 @@ public class P2PCache implements IGridCache
} }
private void updateTunnel( final long freq, final boolean updateOutputs, final boolean configChange ) private void updateTunnel( final short freq, final boolean updateOutputs, final boolean configChange )
{ {
for( final PartP2PTunnel p : this.outputs.get( freq ) ) for( final PartP2PTunnel p : this.outputs.get( freq ) )
{ {
@ -184,7 +188,7 @@ public class P2PCache implements IGridCache
} }
} }
public void updateFreq( final PartP2PTunnel t, final long newFrequency ) public void updateFreq( final PartP2PTunnel t, final short newFrequency )
{ {
if( this.outputs.containsValue( t ) ) if( this.outputs.containsValue( t ) )
{ {
@ -207,30 +211,49 @@ public class P2PCache implements IGridCache
this.inputs.put( t.getFrequency(), t ); this.inputs.put( t.getFrequency(), t );
} }
// AELog.info( "update-" + (t.output ? "output: " : "input: ") + t.freq // AELog.info( "update-" + (t.output ? "output: " : "input: ") + t.freq );
// );
this.updateTunnel( t.getFrequency(), t.isOutput(), true ); this.updateTunnel( t.getFrequency(), t.isOutput(), true );
this.updateTunnel( t.getFrequency(), !t.isOutput(), true ); this.updateTunnel( t.getFrequency(), !t.isOutput(), true );
} }
public TunnelCollection<PartP2PTunnel> getOutputs( final long freq, final Class<? extends PartP2PTunnel> c ) public short newFrequency()
{
short newFrequency;
int cycles = 0;
do
{
newFrequency = (short) this.frequencyGenerator.nextInt( 1 << 16 );
cycles++;
}
while( newFrequency == 0 || this.inputs.containsKey( newFrequency ) );
if( cycles > 10 )
{
AELog.debug( "Generating a new P2P frequency '%1$d' took %2$d cycles", newFrequency, cycles );
}
return newFrequency;
}
public TunnelCollection<PartP2PTunnel> getOutputs( final short freq, final Class<? extends PartP2PTunnel> c )
{ {
final PartP2PTunnel in = this.inputs.get( freq ); final PartP2PTunnel in = this.inputs.get( freq );
if( in == null ) if( in == null )
{ {
return this.NullColl; return NULL_COLLECTION;
} }
final TunnelCollection<PartP2PTunnel> out = this.inputs.get( freq ).getCollection( this.outputs.get( freq ), c ); final TunnelCollection<PartP2PTunnel> out = this.inputs.get( freq ).getCollection( this.outputs.get( freq ), c );
if( out == null ) if( out == null )
{ {
return this.NullColl; return NULL_COLLECTION;
} }
return out; return out;
} }
public PartP2PTunnel getInput( final long freq ) public PartP2PTunnel getInput( final short freq )
{ {
return this.inputs.get( freq ); return this.inputs.get( freq );
} }

View file

@ -55,7 +55,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
{ {
private final TunnelCollection type = new TunnelCollection<T>( null, this.getClass() ); private final TunnelCollection type = new TunnelCollection<T>( null, this.getClass() );
private boolean output; private boolean output;
private long freq; private short freq;
public PartP2PTunnel( final ItemStack is ) public PartP2PTunnel( final ItemStack is )
{ {
@ -134,7 +134,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
{ {
super.readFromNBT( data ); super.readFromNBT( data );
this.setOutput( data.getBoolean( "output" ) ); this.setOutput( data.getBoolean( "output" ) );
this.setFrequency( data.getLong( "freq" ) ); this.setFrequency( data.getShort( "freq" ) );
} }
@Override @Override
@ -142,7 +142,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
{ {
super.writeToNBT( data ); super.writeToNBT( data );
data.setBoolean( "output", this.isOutput() ); data.setBoolean( "output", this.isOutput() );
data.setLong( "freq", this.getFrequency() ); data.setShort( "freq", this.getFrequency() );
} }
@Override @Override
@ -172,7 +172,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
final NBTTagCompound data = mc.getData( is ); final NBTTagCompound data = mc.getData( is );
final ItemStack newType = ItemStack.loadItemStackFromNBT( data ); final ItemStack newType = ItemStack.loadItemStackFromNBT( data );
final long freq = data.getLong( "freq" ); final short freq = data.getShort( "freq" );
if( newType != null ) if( newType != null )
{ {
@ -268,7 +268,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
if( newType != null && !Platform.itemComparisons().isEqualItem( newType, this.getItemStack() ) ) if( newType != null && !Platform.itemComparisons().isEqualItem( newType, this.getItemStack() ) )
{ {
final boolean oldOutput = this.isOutput(); final boolean oldOutput = this.isOutput();
final long myFreq = this.getFrequency(); final short myFreq = this.getFrequency();
this.getHost().removePart( this.getSide(), false ); this.getHost().removePart( this.getSide(), false );
final AEPartLocation dir = this.getHost().addPart( newType, this.getSide(), player, hand ); final AEPartLocation dir = this.getHost().addPart( newType, this.getSide(), player, hand );
@ -308,17 +308,17 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
final IMemoryCard mc = (IMemoryCard) is.getItem(); final IMemoryCard mc = (IMemoryCard) is.getItem();
final NBTTagCompound data = new NBTTagCompound(); final NBTTagCompound data = new NBTTagCompound();
long newFreq = this.getFrequency(); short newFreq = this.getFrequency();
final boolean wasOutput = this.isOutput(); final boolean wasOutput = this.isOutput();
this.setOutput( false ); this.setOutput( false );
if( wasOutput || this.getFrequency() == 0 )
{
newFreq = System.currentTimeMillis();
}
try try
{ {
if( wasOutput || this.getFrequency() == 0 )
{
newFreq = this.getProxy().getP2P().newFrequency();
}
this.getProxy().getP2P().updateFreq( this, newFreq ); this.getProxy().getP2P().updateFreq( this, newFreq );
} }
catch( final GridAccessException e ) catch( final GridAccessException e )
@ -332,7 +332,7 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
final String type = p2pItem.getUnlocalizedName(); final String type = p2pItem.getUnlocalizedName();
p2pItem.writeToNBT( data ); p2pItem.writeToNBT( data );
data.setLong( "freq", this.getFrequency() ); data.setShort( "freq", this.getFrequency() );
mc.setMemoryCardContents( is, type + ".name", data ); mc.setMemoryCardContents( is, type + ".name", data );
mc.notifyUser( player, MemoryCardMessages.SETTINGS_SAVED ); mc.notifyUser( player, MemoryCardMessages.SETTINGS_SAVED );
@ -364,12 +364,12 @@ public abstract class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicSt
} }
} }
public long getFrequency() public short getFrequency()
{ {
return this.freq; return this.freq;
} }
public void setFrequency( final long freq ) public void setFrequency( final short freq )
{ {
this.freq = freq; this.freq = freq;
} }

View file

@ -139,6 +139,8 @@ public class StorageHelper
} }
} }
entity.worldObj.updateEntity( entity );
return entity; return entity;
} }

View file

@ -19,7 +19,6 @@
package appeng.util; package appeng.util;
import java.lang.reflect.Method;
import java.security.InvalidParameterException; import java.security.InvalidParameterException;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.util.ArrayList; import java.util.ArrayList;
@ -30,6 +29,7 @@ import java.util.LinkedList;
import java.util.List; import java.util.List;
import java.util.Random; import java.util.Random;
import java.util.WeakHashMap; import java.util.WeakHashMap;
import javax.annotation.Nonnull; import javax.annotation.Nonnull;
import javax.annotation.Nullable; import javax.annotation.Nullable;
@ -76,7 +76,6 @@ import net.minecraftforge.common.util.FakePlayerFactory;
import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.FMLCommonHandler;
import net.minecraftforge.fml.common.Loader; import net.minecraftforge.fml.common.Loader;
import net.minecraftforge.fml.common.ModContainer; import net.minecraftforge.fml.common.ModContainer;
import net.minecraftforge.fml.relauncher.ReflectionHelper;
import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly; import net.minecraftforge.fml.relauncher.SideOnly;
import net.minecraftforge.oredict.OreDictionary; import net.minecraftforge.oredict.OreDictionary;
@ -130,6 +129,7 @@ import appeng.me.GridAccessException;
import appeng.me.GridNode; import appeng.me.GridNode;
import appeng.me.helpers.AENetworkProxy; import appeng.me.helpers.AENetworkProxy;
import appeng.util.helpers.ItemComparisonHelper; import appeng.util.helpers.ItemComparisonHelper;
import appeng.util.helpers.P2PHelper;
import appeng.util.item.AEItemStack; import appeng.util.item.AEItemStack;
import appeng.util.item.AESharedNBT; import appeng.util.item.AESharedNBT;
import appeng.util.prioritylist.IPartitionList; import appeng.util.prioritylist.IPartitionList;
@ -158,12 +158,18 @@ public class Platform
// private static Method getEntry; // private static Method getEntry;
private static final ItemComparisonHelper ITEM_COMPARISON_HELPER = new ItemComparisonHelper(); private static final ItemComparisonHelper ITEM_COMPARISON_HELPER = new ItemComparisonHelper();
private static final P2PHelper P2P_HELPER = new P2PHelper();
public static ItemComparisonHelper itemComparisons() public static ItemComparisonHelper itemComparisons()
{ {
return ITEM_COMPARISON_HELPER; return ITEM_COMPARISON_HELPER;
} }
public static P2PHelper p2p()
{
return P2P_HELPER;
}
public static Random getRandom() public static Random getRandom()
{ {
return RANDOM_GENERATOR; return RANDOM_GENERATOR;
@ -543,7 +549,8 @@ public class Platform
final double offset_x = ( getRandomInt() % 32 - 16 ) / 82; final double offset_x = ( getRandomInt() % 32 - 16 ) / 82;
final double offset_y = ( getRandomInt() % 32 - 16 ) / 82; final double offset_y = ( getRandomInt() % 32 - 16 ) / 82;
final double offset_z = ( getRandomInt() % 32 - 16 ) / 82; final double offset_z = ( getRandomInt() % 32 - 16 ) / 82;
final EntityItem ei = new EntityItem( w, 0.5 + offset_x + pos.getX(), 0.5 + offset_y + pos.getY(), 0.2 + offset_z + pos.getZ(), i.copy() ); final EntityItem ei = new EntityItem( w, 0.5 + offset_x + pos.getX(), 0.5 + offset_y + pos.getY(), 0.2 + offset_z + pos.getZ(), i
.copy() );
w.spawnEntityInWorld( ei ); w.spawnEntityInWorld( ei );
} }
} }
@ -1494,7 +1501,8 @@ public class Platform
if( AEConfig.instance().isFeatureEnabled( AEFeature.LOG_SECURITY_AUDITS ) ) if( AEConfig.instance().isFeatureEnabled( AEFeature.LOG_SECURITY_AUDITS ) )
{ {
AELog.info( AELog.info(
"Audit: " + a_isSecure + " : " + b_isSecure + " @ " + a.getLastSecurityKey() + " vs " + b.getLastSecurityKey() + " & " + a.getPlayerID() + " vs " + b.getPlayerID() ); "Audit: " + a_isSecure + " : " + b_isSecure + " @ " + a.getLastSecurityKey() + " vs " + b.getLastSecurityKey() + " & " + a
.getPlayerID() + " vs " + b.getPlayerID() );
} }
// can't do that son... // can't do that son...
@ -1645,7 +1653,8 @@ public class Platform
} }
} }
final boolean checkFuzzy = ae_req.isOre() || providedTemplate.getItemDamage() == OreDictionary.WILDCARD_VALUE || providedTemplate.hasTagCompound() || providedTemplate.isItemStackDamageable(); final boolean checkFuzzy = ae_req.isOre() || providedTemplate.getItemDamage() == OreDictionary.WILDCARD_VALUE || providedTemplate
.hasTagCompound() || providedTemplate.isItemStackDamageable();
if( items != null && checkFuzzy ) if( items != null && checkFuzzy )
{ {