Advertisement
hassansyyid

Untitled

Jul 7th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.48 KB | None | 0 0
  1. package com.arisux.avp.entities.tile;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.ConcurrentModificationException;
  5. import java.util.EnumMap;
  6. import java.util.List;
  7.  
  8. import cofh.api.energy.EnergyStorage;
  9. import cofh.api.energy.IEnergyProvider;
  10. import cofh.api.energy.IEnergyReceiver;
  11. import net.minecraft.block.Block;
  12. import net.minecraft.init.Blocks;
  13. import net.minecraft.nbt.NBTTagCompound;
  14. import net.minecraft.network.NetworkManager;
  15. import net.minecraft.network.Packet;
  16. import net.minecraft.network.play.server.S35PacketUpdateTileEntity;
  17. import net.minecraft.tileentity.TileEntity;
  18. import net.minecraft.world.World;
  19. import net.minecraftforge.common.util.ForgeDirection;
  20.  
  21. public class TileEntityPowerline extends TileEntity implements IEnergyProvider, IEnergyReceiver
  22. {
  23.     public EnergyStorage storage = new EnergyStorage(10000);
  24.     public EnumMap<ForgeDirection, Boolean> directionMap = new EnumMap<ForgeDirection, Boolean>(ForgeDirection.class);
  25.  
  26.     public TileEntityPowerline()
  27.     {
  28.         for(ForgeDirection direction : ForgeDirection.VALID_DIRECTIONS)
  29.         {
  30.             directionMap.put(direction, false);
  31.         }
  32.     }
  33.     @Override
  34.     public void updateEntity()
  35.     {
  36.         if (!worldObj.isRemote)
  37.         {
  38.             if(!this.isAdjacentToPowerSource())
  39.             {
  40.                 this.storage.setEnergyStored(0);
  41.             }
  42.             pushEnergy();
  43.         }
  44.     }
  45.  
  46.     public void pushEnergy()
  47.     {
  48.         for (ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS)
  49.         {
  50.             TileEntity tile = worldObj.getTileEntity(xCoord + dir.offsetX, yCoord + dir.offsetY, zCoord + dir.offsetZ);
  51.             if (tile instanceof IEnergyReceiver)
  52.             {
  53. //              if(!directionMap.get(dir))
  54. //              {
  55. //                  if(!worldObj.isRemote)
  56. //                  {
  57.                         IEnergyReceiver ier = (IEnergyReceiver) tile;
  58.                         ier.receiveEnergy(dir, 120, false);
  59.                         //storage.extractEnergy(ier.receiveEnergy(dir, storage.extractEnergy(120, true), false), false);
  60. //                  }
  61. //              }
  62.             }
  63.         }
  64.     }
  65.  
  66.     public boolean isAdjacentToPowerSource() {
  67.         if(this.getWorldObj().getTileEntity(this.xCoord + 1, this.yCoord, this.zCoord) instanceof TileEntityPowerline)
  68.         {
  69.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord + 1, this.yCoord, this.zCoord);
  70.             if(te.storage.getEnergyStored() > 0)
  71.             {
  72.                 return true;
  73.             }
  74.             return false;
  75.         }
  76.         if(this.getWorldObj().getTileEntity(this.xCoord - 1, this.yCoord, this.zCoord) instanceof TileEntityPowerline)
  77.         {
  78.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord - 1, this.yCoord, this.zCoord);
  79.             if(te.storage.getEnergyStored() > 0)
  80.             {
  81.                 return true;
  82.             }
  83.             return false;
  84.         }
  85.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord + 1, this.zCoord) instanceof TileEntityPowerline)
  86.         {
  87.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord, this.yCoord + 1, this.zCoord);
  88.             if(te.storage.getEnergyStored() > 0)
  89.             {
  90.                 return true;
  91.             }
  92.             return false;
  93.         }
  94.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord - 1, this.zCoord) instanceof TileEntityPowerline)
  95.         {
  96.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord, this.yCoord - 1, this.zCoord);
  97.             if(te.storage.getEnergyStored() > 0)
  98.             {
  99.                 return true;
  100.             }
  101.             return false;
  102.         }
  103.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord + 1) instanceof TileEntityPowerline)
  104.         {
  105.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord + 1);
  106.             if(te.storage.getEnergyStored() > 0)
  107.             {
  108.                 return true;
  109.             }
  110.             return false;
  111.         }
  112.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord - 1) instanceof TileEntityPowerline)
  113.         {
  114.             TileEntityPowerline te = (TileEntityPowerline) this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord - 1);
  115.             if(te.storage.getEnergyStored() > 0)
  116.             {
  117.                 return true;
  118.             }
  119.             return false;
  120.         }
  121.         if(this.getWorldObj().getTileEntity(this.xCoord + 1, this.yCoord, this.zCoord) instanceof TileEntityRepulsionGenerator)
  122.         {
  123.             return true;
  124.         }
  125.         if(this.getWorldObj().getTileEntity(this.xCoord - 1, this.yCoord, this.zCoord) instanceof TileEntityRepulsionGenerator)
  126.         {
  127.             return true;
  128.         }
  129.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord + 1, this.zCoord) instanceof TileEntityRepulsionGenerator)
  130.         {
  131.             return true;
  132.         }
  133.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord - 1, this.zCoord) instanceof TileEntityRepulsionGenerator)
  134.         {
  135.             return true;
  136.         }
  137.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord + 1) instanceof TileEntityRepulsionGenerator)
  138.         {
  139.             return true;
  140.         }
  141.         if(this.getWorldObj().getTileEntity(this.xCoord, this.yCoord, this.zCoord - 1) instanceof TileEntityRepulsionGenerator)
  142.         {
  143.             return true;
  144.         }
  145.         return false;
  146.     }
  147.  
  148.     @Override
  149.     public boolean canConnectEnergy(ForgeDirection from)
  150.     {
  151.         return true;
  152.     }
  153.  
  154.     @Override
  155.     public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate)
  156.     {
  157.         this.directionMap.put(from.getOpposite(), true);
  158.  
  159.         return storage.receiveEnergy(maxReceive, simulate);
  160.     }
  161.  
  162.     @Override
  163.     public int extractEnergy(ForgeDirection from, int maxExtract,
  164.             boolean simulate) {
  165.         return storage.extractEnergy(maxExtract, simulate);
  166.     }
  167.  
  168.     @Override
  169.     public int getEnergyStored(ForgeDirection from) {
  170.         return storage.getEnergyStored();
  171.     }
  172.  
  173.     @Override
  174.     public int getMaxEnergyStored(ForgeDirection from) {
  175.         return storage.getMaxEnergyStored();
  176.     }
  177.  
  178. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement