Jump to content

[1.7.10]RF Production


NEG2013

Recommended Posts

You use the API.

 

 

If you want more help, supply more info, and show what you've tried.

 

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/

Link to comment
Share on other sites

here is my Tile Entity that I tried

 

 

package neg2013.acsension.tile_entity;

import cofh.api.energy.IEnergyHandler;
import cofh.api.energy.IEnergyProvider;
import neg2013.acsension.Acsension;
import neg2013.acsension.infrastructure.BlockSolarGenny;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.event.entity.player.PlayerUseItemEvent.Tick;

public class TESolar extends TileEntity implements IInventory, IEnergyProvider{

ItemStack[] items;



//crusher

public TESolar(){
	this.items = new ItemStack [128];
}

//crusher







//NBT NBT NBT NBT NBT NBT NBT NBT NBT NBT

@Override
public void writeToNBT(NBTTagCompound nbt) {
	super.writeToNBT(nbt);
}

@Override
public void readFromNBT(NBTTagCompound nbt) {
	super.readFromNBT(nbt);

}

//NBT NBT NBT NBT NBT NBT NBT NBT NBT NBT 







@Override
public boolean receiveClientEvent(int id, int value) {

	return super.receiveClientEvent(id, value);
}

@Override
public void updateEntity() {

	super.updateEntity();
}








//inventory

@Override
public int getSizeInventory() {

	return items.length;
}

@Override
public ItemStack getStackInSlot(int slotIn) {

	return items[slotIn];
}

@Override
public ItemStack decrStackSize(int i, int count) {

	ItemStack itemStack =  getStackInSlot(i);
	if(itemStack != null){
		if(itemStack.stackSize >= count){
			setInventorySlotContents(i, null);
		}
		else{
			itemStack = itemStack.splitStack(count);
			this.markDirty();
		}
	}


	return itemStack;
}

@Override
public ItemStack getStackInSlotOnClosing(int i) {
	ItemStack itemStack = getStackInSlot(i);
	setInventorySlotContents(i, null);
	return itemStack;
}

@Override
public void setInventorySlotContents(int i, ItemStack itemStack) {

	items[i] = itemStack;
	if(itemStack != null && itemStack.stackSize >= getInventoryStackLimit()){
		itemStack.stackSize = getInventoryStackLimit();
	}
	this.markDirty();
}

@Override
public String getInventoryName() {

	return "Solar Genny";
}

@Override
public boolean hasCustomInventoryName() {

	return true;
}

@Override
public int getInventoryStackLimit() {

	return 64;
}

@Override
public boolean isUseableByPlayer(EntityPlayer player) {



	return true;//player.getDistanceSq(xCoord + 0.5f, yCoord + 0.5f, zCoord + 0.5f) <= 64;
}

@Override
public void openInventory() {


}

@Override
public void closeInventory() {


}

@Override
public boolean isItemValidForSlot(int i, ItemStack itemStack) {

	return itemStack.getItem() == items[i].getItem();
}


//power

@Override
public boolean canConnectEnergy(ForgeDirection from) {
	return true;
}



@Override
public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate) {
	return 16;
}

@Override
public int getMaxEnergyStored(ForgeDirection from) {
	return 16;
}

int energy;

@Override
public int getEnergyStored(ForgeDirection from) {
	if(Minecraft.getMinecraft().theWorld.isDaytime()){
		if(Minecraft.getMinecraft().theWorld.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
			return 16;
		}

	}

	return 0;

}


}

Link to comment
Share on other sites

	@Override
public int getEnergyStored(ForgeDirection from) {
	if(Minecraft.getMinecraft().theWorld.isDaytime()){
		if(Minecraft.getMinecraft().theWorld.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
			return 16;
		}

	}

	return 0;

}

 

No. Bad modder.  No cookie.

 

DO NOT USE Minecraft.getMinecraft()!

this.worldObj

! Use it!

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

that did nothing

 

Not for the problem you indicated, but it means that now you won't have a problem running a dedicated server.

i.e. I fixed a problem you didn't even know you had and averted the creation of yet another "Crash: ClassNotFoundException on Dedicated Server" thread.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Ive redone it like 20 time snow so heres the class as is currently

 

package neg2013.acsension.tile_entity;

import cofh.api.energy.EnergyStorage;
import cofh.api.energy.IEnergyHandler;
import cofh.api.energy.IEnergyProvider;
import cofh.api.energy.TileEnergyHandler;
import neg2013.acsension.Acsension;
import neg2013.acsension.infrastructure.BlockSolarGenny;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.event.entity.player.PlayerUseItemEvent.Tick;

public class TESolar extends TileEntity implements IInventory, IEnergyHandler{

ItemStack[] items;


//power

	protected EnergyStorage storage = new EnergyStorage(16);


		@Override
		public boolean canConnectEnergy(ForgeDirection from) {
			if(from == ForgeDirection.DOWN){
				return true;
			}if(from == ForgeDirection.EAST){
				return true;
			}if(from == ForgeDirection.NORTH){
				return true;
			}if(from == ForgeDirection.SOUTH){
				return true;
			}if(from == ForgeDirection.UP){
				return false;
			}if(from == ForgeDirection.WEST){
				return true;	
			}
			else{
				return true;
			}
		}



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

			return storage.extractEnergy(maxExtract, simulate);




			/*
			  if(from == ForgeDirection.DOWN){
				return 2;
			}if(from == ForgeDirection.EAST){
				return 2;
			}if(from == ForgeDirection.NORTH){
				return 2;
			}if(from == ForgeDirection.SOUTH){
				return 2;
			}if(from == ForgeDirection.UP){
				return 2;
			}if(from == ForgeDirection.WEST){
				return 2;	
			}
			else{
				return 2;
			}*/
		}




		@Override
		public int getMaxEnergyStored(ForgeDirection from) {
			return storage.getMaxEnergyStored();
		}

		int energy;



		@Override
		public int getEnergyStored(ForgeDirection from) {

			return storage.getEnergyStored();

		}


		@Override
		public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate) {
			return storage.receiveEnergy(maxReceive, simulate);
		}


@Override
public void updateEntity() {

	if(this.worldObj.isDaytime()){
		if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
			this.storage.setEnergyStored(2);



		}
	}





}

/*if(from == ForgeDirection.DOWN){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}

			if(from == ForgeDirection.EAST){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}

			if(from == ForgeDirection.NORTH){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}

			if(from == ForgeDirection.SOUTH){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}

			if(from == ForgeDirection.UP){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}

			if(from == ForgeDirection.WEST){
				if(this.worldObj.isDaytime()){
					if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
						return 2;
					}
				}
			}


			else{
				return 0;
			}*/




//solar

public TESolar(){
	this.items = new ItemStack [128];
	this.storage.setCapacity(16);
	this.storage.setMaxExtract(4);
	this.storage.setMaxReceive(2);
	this.storage.setMaxTransfer(2);
}

//solar







//NBT NBT NBT NBT NBT NBT NBT NBT NBT NBT

@Override
public void writeToNBT(NBTTagCompound nbt) {
	super.writeToNBT(nbt);
	storage.writeToNBT(nbt);
}

@Override
public void readFromNBT(NBTTagCompound nbt) {
	super.readFromNBT(nbt);
	storage.readFromNBT(nbt);
}

//NBT NBT NBT NBT NBT NBT NBT NBT NBT NBT 







@Override
public boolean receiveClientEvent(int id, int value) {

	return super.receiveClientEvent(id, value);
}










//inventory

@Override
public int getSizeInventory() {

	return items.length;
}

@Override
public ItemStack getStackInSlot(int slotIn) {

	return items[slotIn];
}

@Override
public ItemStack decrStackSize(int i, int count) {

	ItemStack itemStack =  getStackInSlot(i);
	if(itemStack != null){
		if(itemStack.stackSize >= count){
			setInventorySlotContents(i, null);
		}
		else{
			itemStack = itemStack.splitStack(count);
			this.markDirty();
		}
	}


	return itemStack;
}

@Override
public ItemStack getStackInSlotOnClosing(int i) {
	ItemStack itemStack = getStackInSlot(i);
	setInventorySlotContents(i, null);
	return itemStack;
}

@Override
public void setInventorySlotContents(int i, ItemStack itemStack) {

	items[i] = itemStack;
	if(itemStack != null && itemStack.stackSize >= getInventoryStackLimit()){
		itemStack.stackSize = getInventoryStackLimit();
	}
	this.markDirty();
}

@Override
public String getInventoryName() {

	return "Solar Genny";
}

@Override
public boolean hasCustomInventoryName() {

	return true;
}

@Override
public int getInventoryStackLimit() {

	return 64;
}

@Override
public boolean isUseableByPlayer(EntityPlayer player) {



	return true;//player.getDistanceSq(xCoord + 0.5f, yCoord + 0.5f, zCoord + 0.5f) <= 64;
}

@Override
public void openInventory() {


}

@Override
public void closeInventory() {


}

@Override
public boolean isItemValidForSlot(int i, ItemStack itemStack) {

	return itemStack.getItem() == items[i].getItem();
}








/*

	if(Minecraft.getMinecraft().theWorld.isDaytime()){
		if(Minecraft.getMinecraft().theWorld.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
			int tick = Acsension.blockSolarGenny.tickRate(Minecraft.getMinecraft().theWorld);
			int stored = tick * 2;

			this.energy = stored;

			Minecraft.getMinecraft().theWorld.getWorldTime();





	if(energy > getMaxEnergyStored(from)){
		return getMaxEnergyStored(from);
	}
	else{
		return energy;
	}
		}
		else{
			return energy;
		}
	}
	else{
		return energy;
	}*/

}

Link to comment
Share on other sites

Oh lord, /me facedesks so hard

 

@Override
public boolean canConnectEnergy(ForgeDirection from) {
if(from == ForgeDirection.DOWN){
	return true;
}if(from == ForgeDirection.EAST){
	return true;
}if(from == ForgeDirection.NORTH){
	return true;
}if(from == ForgeDirection.SOUTH){
	return true;
}if(from == ForgeDirection.UP){
	return false;
}if(from == ForgeDirection.WEST){
	return true;	
}
else{
	return true;
}
}

 

This mess can be simplified to one line:

 return from != ForgeDirection.UP;

 

Also in your

updateEntity

method, you should call

this.storage.receiveEnergy(2, false);

instead of

this.storage.setEnergyStored(2);

. The former adds 2 RF to the storage whereas the latter sets the storage to contain 2 RF.

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

Link to comment
Share on other sites

yes I realize that but even with it minimized to this it still fails

 

	protected EnergyStorage storage = new EnergyStorage(16, 2, 4);


		@Override
		public boolean canConnectEnergy(ForgeDirection from) {
			if(from == ForgeDirection.UP){
				return false;
			}
			else{
				return true;
			}
		}


@Override
public void updateEntity() {

	if(this.worldObj.isDaytime()){
		if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord, this.zCoord)){
			this.storage.receiveEnergy(2, false); 



		}
	}

Link to comment
Share on other sites

Use this:

 

public class TESolar extends TileEnergyHandler implements IInventory {

public TESolar() {
	super(16, 2, 4);
}

@Override
public boolean canConnectEnergy(ForgeDirection from) {
	return from != ForgeDirection.UP;
}

@Override
public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate) {
	return 0;
}

@Override
public void updateEntity() {
	if(this.worldObj.isDaytime())
		if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord + 1, this.zCoord)){
			this.receiveEnergy(2, false);
		}
}

}

 

You can add the inventory stuff.

Link to comment
Share on other sites

the constructor didn't like that super and this.recieveenergy had an error so I changed them to this

 

public TESolar() {
	this.storage.setCapacity(16);
		this.storage.setMaxReceive(2);
		this.storage.setMaxExtract(4); 
}

@Override
public boolean canConnectEnergy(ForgeDirection from) {
	return from != ForgeDirection.UP;
}

@Override
public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate) {
	return 0;
}

@Override
public void updateEntity() {
	if(this.worldObj.isDaytime())
		if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord + 1, this.zCoord)){
			this.storage.receiveEnergy(2, false);
		}
}

Link to comment
Share on other sites

I think it is producing RF it's just not outputting it. Try adding this to your entityUpdate() method:

 

if ((storage.getEnergyStored() > 0)) {
		for (int i = 0; i < 6; i++){
			TileEntity tile = worldObj.getTileEntity(xCoord + ForgeDirection.getOrientation(i).offsetX, yCoord + ForgeDirection.getOrientation(i).offsetY, zCoord + ForgeDirection.getOrientation(i).offsetZ);
			if (tile != null && tile instanceof IEnergyReceiver) {
				storage.extractEnergy(((IEnergyReceiver)tile).receiveEnergy(ForgeDirection.getOrientation(i).getOpposite(), storage.extractEnergy(storage.getMaxExtract(), true), false), false);
			}
		}
	}

 

And adding this to your class:

 


@Override
public Packet getDescriptionPacket() {
	NBTTagCompound tagCompound = new NBTTagCompound();
	writeToNBT(tagCompound);
	return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, 1, tagCompound);
}

@Override
public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt) {
	readFromNBT(pkt.func_148857_g());
}

Link to comment
Share on other sites

Try replacing your entityUpdate with this

 

@Override
public void updateEntity() {
	if(this.worldObj.isDaytime())
		if(this.worldObj.canBlockSeeTheSky(this.xCoord, this.yCoord + 1, this.zCoord)){
			this.storage.receiveEnergy(2, false);
			this.worldObj.markBlockForUpdate(this.xCoord, this.yCoord, this.zCoord);
		}

	if ((storage.getEnergyStored() > 0)) {
		for (int i = 0; i < 6; i++){
			TileEntity tile = worldObj.getTileEntity(xCoord + ForgeDirection.getOrientation(i).offsetX, yCoord + ForgeDirection.getOrientation(i).offsetY, zCoord + ForgeDirection.getOrientation(i).offsetZ);
			if (tile != null && tile instanceof IEnergyReceiver) {
				storage.extractEnergy(((IEnergyReceiver)tile).receiveEnergy(ForgeDirection.getOrientation(i).getOpposite(), storage.extractEnergy(storage.getMaxExtract(), true), false), false);
			}
		}
	}
}

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I was trying to create a minecraft server with mods but when I install forge in the file it don't create the forge options, only makes a "run.bat  Everytime with any forge i got this problem and idk what to do 
    • today i downloaded forge 1.20.1 version 47.2.0 installed it in my .minecraft and installed the server, with and without mod it literally gives the same error, so i went to see other versions like 1.17 and it worked normally   https://paste.ee/p/VxmfF
    • If you're seeking an unparalleled solution to recover lost or stolen cryptocurrency, let me introduce you to GearHead Engineers Solutions. Their exceptional team of cybersecurity experts doesn't just restore your funds; they restore your peace of mind. With a blend of cutting-edge technology and unparalleled expertise, GearHead Engineers swiftly navigates the intricate web of the digital underworld to reclaim what's rightfully yours. In your moment of distress, they become your steadfast allies, guiding you through the intricate process of recovery with transparency, trustworthiness, and unwavering professionalism. Their team of seasoned web developers and cyber specialists possesses the acumen to dissect the most sophisticated schemes, leaving no stone unturned in their quest for justice. They don't just stop at recovering your assets; they go the extra mile to identify and track down the perpetrators, ensuring they face the consequences of their deceitful actions. What sets  GearHead Engineers apart is not just their technical prowess, but their unwavering commitment to their clients. From the moment you reach out to them, you're met with compassion, understanding, and a resolute determination to right the wrongs inflicted upon you. It's not just about reclaiming lost funds; it's about restoring faith in the digital landscape and empowering individuals to reclaim control over their financial futures. If you find yourself ensnared in the clutches of cybercrime, don't despair. Reach out to GearHead Engineers and let them weave their magic. With their expertise by your side, you can turn the tide against adversity and emerge stronger than ever before. In the realm of cybersecurity, GearHead Engineers reigns supreme. Don't just take my word for it—experience their unparalleled excellence for yourself. Your journey to recovery starts here.
    • Ok so this specific code freezes the game on world creation. This is what gets me so confused, i get that it might not be the best thing, but is it really so generation heavy?
    • Wizard web recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me.   Wizard web recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Wizard Web Recovery today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover Wizard web recovery, they ultimately fulfilled my primary objective. Without wizard web recovery intervention, I would have remained despondent and perplexed indefinitely.
  • Topics

×
×
  • Create New...

Important Information

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