Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi =) I made block, which should store energy, but i have problem. Energy arrives in storage, but if I want to extract energy from storage, the energy doesn't extract. Help me please =)

TileEntity:

 

public class TileEntityRainbowBatteryBox extends TileEntityRainbowElectricity implements IInventory, IEnergyHandler {

 

    protected EnergyStorage storage;

    public static int MAX_RECEIVE = 32000;

    public static int CAPACITY = 10000000;

 

    public TileEntityRainbowBatteryBox(){

        storage = new EnergyStorage(CAPACITY, MAX_RECEIVE);

    }

 

    @Override

    public void readFromNBT(NBTTagCompound nbt) {

        super.readFromNBT(nbt);

        storage.readFromNBT(nbt);

    }

 

    @Override

    public void writeToNBT(NBTTagCompound nbt) {

        super.writeToNBT(nbt);

        storage.writeToNBT(nbt);

    }

 

    @Override

    public boolean canConnectEnergy(ForgeDirection from) {

        return true;

    }

 

    @Override

    public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate) {

        return storage.receiveEnergy(maxReceive, simulate);

    }

 

    @Override

    public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate) {

        return storage.extractEnergy(maxExtract, simulate);

    }

 

    @Override

    public int getEnergyStored(ForgeDirection from){

        return storage.getEnergyStored();

    }

 

    @Override

    public int getMaxEnergyStored(ForgeDirection from){

        return storage.getMaxEnergyStored();

    }

 

P.S. I wanted to put the code in the spoiler, but for some reason the spoiler does not work, and everything else too :D

I did it like this: I created a map with TileEntities around the block, witch is updated with onNeighborBlockChange and then if the TileEntity is IEnergyReceiver I try to push energy to it.

 

shareEnergyWithNeighbors

 

pushEnergy

 

getTileEntityNeighborMap

If you used YOUR OWN THINGS to test, there's a chance of bug being in these things. Try to extract energy suing bc or vluxducts, and come back with result... :)

  • Author

How do you know that energy is not being extracted? What are you using for testing?

I use Fluxducts from Thermal Dynamics for testing.

You shouldn't have to 'push' energy to the Fluxducts. Let the Fluxducts do the work of 'pushing' and 'pulling' energy to and from your TileEntity.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

  • Author

Screenshots:

Energy Storage receive energy from Resonant Energy Cell:

bvi5JQy.png

But energy doesn't extract from Energy Storage to Resonant Energy Cell:

d4qLk1x.png

  • Author

Show your TileEntity code.

 

 

public class TileEntityRainbowBatteryBox extends TileEntityRainbowElectricity implements IInventory, IEnergyHandler{

 

    protected EnergyStorage storage;

    public static int MAX_RECEIVE = 32000;

    public static int CAPACITY = 10000000;

 

    public TileEntityRainbowBatteryBox(){

        storage = new EnergyStorage(CAPACITY, MAX_RECEIVE);

    }

 

    public int getChargeLevelPercent(){

        return (int)Math.floor((double)storage.getEnergyStored() / (double)storage.getMaxEnergyStored() * 100);

    }

 

    @SideOnly(Side.CLIENT)

    public int getChargeLevelScaled(int width){

        return storage.getEnergyStored() * width / storage.getMaxEnergyStored();

    }

 

    @Override

    public void readFromNBT(NBTTagCompound nbt){

 

        super.readFromNBT(nbt);

        storage.readFromNBT(nbt);

    }

 

    @Override

    public void writeToNBT(NBTTagCompound nbt){

 

        super.writeToNBT(nbt);

        storage.writeToNBT(nbt);

    }

 

    @Override

    public boolean isUseableByPlayer(EntityPlayer player){

        return worldObj.getTileEntity(xCoord, yCoord, zCoord) != this ? false : player.getDistanceSq(xCoord + 0.5D, yCoord + 0.5D, zCoord + 0.5D) <= 64.0D;

    }

 

    @Override

    public int getSizeInventory(){

        return 0;

    }

 

    @Override

    public ItemStack getStackInSlot(int p_70301_1_){

        return null;

    }

 

    @Override

    public ItemStack decrStackSize(int p_70298_1_, int p_70298_2_){

        return null;

    }

 

    @Override

    public ItemStack getStackInSlotOnClosing(int p_70304_1_){

        return null;

    }

 

    @Override

    public void setInventorySlotContents(int p_70299_1_, ItemStack p_70299_2_){}

 

    @Override

    public String getInventoryName(){

        return ModBlocks.rainbowBatteryBox.getUnlocalizedName() + ".name";

    }

 

    @Override

    public boolean hasCustomInventoryName(){

        return false;

    }

 

    @Override

    public int getInventoryStackLimit(){

        return 0;

    }

 

    @Override

    public void openInventory(){}

 

    @Override

    public void closeInventory(){}

 

    @Override

    public boolean isItemValidForSlot(int p_94041_1_, ItemStack p_94041_2_){

        return false;

    }

 

    @Override

    public boolean canConnectEnergy(ForgeDirection from){

 

        return true;

    }

 

    @Override

    public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate){

        return storage.receiveEnergy(maxReceive, simulate);

    }

 

    @Override

    public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate){

        return storage.extractEnergy(maxExtract, simulate);

    }

 

    @Override

    public int getEnergyStored(ForgeDirection from){

        return storage.getEnergyStored();

    }

 

    @Override

    public int getMaxEnergyStored(ForgeDirection from){

        return storage.getMaxEnergyStored();

    }

}

 

1) Why do you implement IInventory when you always return null in

getStackInSlot

?

2) If ThermalDynamics is doing things only server side, it might be because server<->client desynch. Try marking the block for update after  the extractEnergy method.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.