Jump to content

Recommended Posts

Posted

Hey guys,

 

I want to render some things from a tile entities container physically into the model. However, I'm having a bit of trouble with it.

 

I believe all I need to do is "sync" the container from the server to the client; but I'm not exactly sure how. My code is failing when doing a null check for the itemstack though, so I think that's a good guess.

 

Here is my renderer, tile entity, and container. Anyone able to point me in the right direction?

 

package co.uk.silvania.cities.core.client.models;

import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.OpenGlHelper;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.entity.RenderItem;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;

import org.lwjgl.opengl.GL11;

import co.uk.silvania.cities.econ.store.entity.TileEntityAdminShop;


public class TileEntityFloatingShelvesRenderer extends TileEntitySpecialRenderer {

private final FloatingShelvesModel model;
private final RenderItem renderer;

private TileEntityAdminShop shelvesEntity;

public TileEntityFloatingShelvesRenderer() {
	this.model = new FloatingShelvesModel();
	this.renderer = new RenderItem();

	renderer.setRenderManager(RenderManager.instance);
}

@Override
public void renderTileEntityAt(TileEntity te, double x, double y, double z, float scale) {
	this.shelvesEntity = (TileEntityAdminShop) te;
	int i = te.getBlockMetadata();
	int meta = 180;

	if (i == 0) {
		meta = 0;
	}

	if (i == 3) {
		meta = 90;
	}

	if (i == 2) {
		meta = 180;
	}

	if (i == 1) {
		meta = 270;
	}

	Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("flenixcities", "textures/entities/floatingshelves.png"));
	GL11.glPushMatrix();
	GL11.glTranslatef((float) x + 0.5F, (float) y + 1.5F, (float) z + 0.5F);
	GL11.glRotatef(meta, 0.0F, 1.0F, 0.0F);
	//GL11.glRotatef(((TileEntityBarrierEntity)tile).getRotationPivot()), 0.0F, 1.0F, 0.0F);
	GL11.glScalef(1.0F, -1F, -1F);
	this.model.render((Entity)null, 0.0F, 0.0F, -0.1F, 0.0F, 0.0F, 0.0625F);
	GL11.glPopMatrix();

	GL11.glPushMatrix();
	System.out.println("Begin item renderer");
	if (shelvesEntity.getStackInSlot(0) != null) {
		System.out.println("Slot 0 contains an item!");
		EntityItem entity = new EntityItem(te.worldObj);
		entity.hoverStart = 0.0F;
		GL11.glTranslated((float) x + 0.5F, (float) y + 1.5F, (float) z + 0.5F);
		GL11.glRotatef(0, 0.0F, 1.0F, 0.0F);
		entity.setEntityItemStack(shelvesEntity.getStackInSlot(0));
		System.out.println("Render it now");
		renderer.doRenderItem(entity, 0.0D, 0.0D, 0.0D, 0.0F, 0.0F);
	}
	System.out.println("End item renderer");
	GL11.glPopMatrix();
}

private void adjustLightFixture(World world, int i, int j, int k, Block block) {
	Tessellator tess = Tessellator.instance;
	float brightness = block.getBlockBrightness(world, i, j, k);
	int skyLight = world.getLightBrightnessForSkyBlocks(i, j, k, 0);
	int modulousModifier = skyLight % 65536;
	int divModifier = skyLight / 65536;
	tess.setColorOpaque_F(brightness, brightness, brightness);
	OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit,  (float) modulousModifier,  divModifier);
}
}

 

 

package co.uk.silvania.cities.econ.store.entity;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.packet.Packet;
import net.minecraft.tileentity.TileEntity;
import co.uk.silvania.cities.econ.EconUtils;
import co.uk.silvania.cities.econ.money.ItemCoin;
import co.uk.silvania.cities.econ.money.ItemNote;

public class TileEntityAdminShop extends TileEntity implements IInventory {

public String ownerName;
public String userName;
private ItemStack[] items;
public double buyPrice1;
public double sellPrice1;
public double buyPrice2;
public double sellPrice2;
public double buyPrice3;
public double sellPrice3;
public double buyPrice4;
public double sellPrice4;
public int tabButton;

@Override
public void writeToNBT(NBTTagCompound nbt) {
	super.writeToNBT(nbt);
	NBTTagList nbtTagList = new NBTTagList();
	//Credit to Lumien
	for (int i = 0; i < this.items.length; ++i) {
		if (this.items[i] != null) {
			System.out.println("Writing Item in Slot " + i);
			NBTTagCompound compound = new NBTTagCompound();
			nbt.setByte("Slot", (byte)i);
			this.items[i].writeToNBT(compound);
			nbtTagList.appendTag(compound);
		}
	}
	nbt.setTag("Items",  nbtTagList);
	nbt.setString("ownerName", ownerName);
	nbt.setDouble("buyPrice1", buyPrice1);
	nbt.setDouble("sellPrice1", sellPrice1);
	nbt.setDouble("buyPrice2", buyPrice2);
	nbt.setDouble("sellPrice2", sellPrice2);
	nbt.setDouble("buyPrice3", buyPrice3);
	nbt.setDouble("sellPrice3", sellPrice3);
	nbt.setDouble("buyPrice4", buyPrice4);
	nbt.setDouble("sellPrice4", sellPrice4);

}

@Override
public void readFromNBT(NBTTagCompound nbt) {
	super.readFromNBT(nbt);
	NBTTagList nbtTagList = nbt.getTagList("Items");
	for (int i = 0; i < nbtTagList.tagCount(); i++) {
		NBTTagCompound nbt1 = (NBTTagCompound)nbtTagList.tagAt(i);
		int j = nbt1.getByte("Slot") & 255;
		System.out.println("Reading Item in Slot " + i + "/" + j);
		this.items[i] = ItemStack.loadItemStackFromNBT(nbt1);
	}
	this.ownerName = nbt.getString("ownerName");
	this.buyPrice1 = nbt.getDouble("buyPrice1");
	this.sellPrice1 = nbt.getDouble("sellPrice1");
	this.buyPrice2 = nbt.getDouble("buyPrice2");
	this.sellPrice2 = nbt.getDouble("sellPrice2");
	this.buyPrice3 = nbt.getDouble("buyPrice3");
	this.sellPrice3 = nbt.getDouble("sellPrice3");
	this.buyPrice4 = nbt.getDouble("buyPrice4");
	this.sellPrice4 = nbt.getDouble("sellPrice4");

}

public int getQuantity(int i) {
	int qty;
	int startSlot;
	int endSlot;
	if (i == 0) {

	} else if (i == 1) {

	} else if (i == 2) {

	} else if (i == 3) {

	}
	//For loop.
	return 0;
}

public boolean isShopOpen() {
	return true;
}

public void sellItem(int i, int qty, EntityPlayer entityPlayer) {
	System.out.println("Beginning Sale Process");
	double itemCost = 0;
	if (i == 1) {
		itemCost = buyPrice1;
	}
	if (i == 2) {
		itemCost = buyPrice2;
	}
	if (i == 3) {
		itemCost = buyPrice3;
	}
	if (i == 4) {
		itemCost = buyPrice4;
	}
	double totalItemCost = itemCost * qty;
	double invCash = EconUtils.getInventoryCash(entityPlayer);
	System.out.println("Item Cost: " + totalItemCost + ", Inventory Cash: " + EconUtils.getInventoryCash(entityPlayer));

	if (invCash >= totalItemCost) {
		//Two birds, one stone. Charges the player for us, then tells us how much they paid so we can calculate change.
		double paidAmount = EconUtils.findCashInInventoryWithChange(entityPlayer, totalItemCost); //Complex code to charge the player's inventory
		if (paidAmount == 0) {
			//They didn't pay enough. Don't take the money, and tell 'em to piss off.
			return;
		} else {
			ItemStack item = getStackInSlot(i - 1);
			System.out.println("Item: " + item);
			System.out.println("Qty: " + qty);
			while (qty >= 1) {
				System.out.println("Giving " + item.stackSize + " items, " + qty + " more stacks of this to go.");
				entityPlayer.inventory.addItemStackToInventory(new ItemStack(item.getItem(), item.stackSize, item.getItemDamage()));
				qty--;
			}
		}
	}
}


public TileEntityAdminShop() {
	items = new ItemStack[4]; //Amount of stacks
}

@Override
public int getSizeInventory() {
	return items.length;
}

@Override
public ItemStack getStackInSlot(int i) {
	return items[i];
}

@Override
public ItemStack decrStackSize(int i, int amount) {
	ItemStack itemStack = getStackInSlot(i);

	if (itemStack != null) {
		if (itemStack.stackSize <= amount) {
			setInventorySlotContents(i, null);
		} else {
			itemStack = itemStack.splitStack(amount);
			onInventoryChanged(); //Update the inventory. TODO use this for card removal
		}
	}
	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) {
	if (isItemValidForSlot(i, itemStack)) {
		items[i] = itemStack;

		if (itemStack != null && itemStack.stackSize > getInventoryStackLimit()) {
			itemStack.stackSize = getInventoryStackLimit();
		}

		onInventoryChanged();
	}
}

public void addMoneyToShopInventory(int i, ItemStack itemStack, double amount) {
	if (isItemValidForSlot(i, itemStack)) {
		items[i] = itemStack;

		if (itemStack != null && itemStack.stackSize > getInventoryStackLimit()) {
			itemStack.stackSize = getInventoryStackLimit();
		}

		onInventoryChanged();
	}
}

@Override
public String getInvName() {
	return "Floating Shelves";
}

@Override //Apparently not used...
public boolean isInvNameLocalized() {
	return true;
}

//Max size of stacks placed inside.
@Override
public int getInventoryStackLimit() {
	return 64;
}

//Checks if the player can use it.
//Wouldn't work for owner only- if I did that, no one else would be able to interact (Maybe? Need to test that.)
@Override
public boolean isUseableByPlayer(EntityPlayer entityPlayer) {
	return entityPlayer.getDistanceSq(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5) <= 64;
}

//Not used
@Override
public void openChest() {}

//Not used
@Override
public void closeChest() {}

//Checks that the item is valid. For shelves, use instanceof to see if it's item or block.
@Override
public boolean isItemValidForSlot(int i, ItemStack item) {
	ItemStack slot1 = getStackInSlot(0);
	ItemStack slot2 = getStackInSlot(1);
	ItemStack slot3 = getStackInSlot(2);
	ItemStack slot4 = getStackInSlot(3);
	if (item != null) {
		if (i > 3 && i <= 39) {
			return item.itemID == slot1.itemID;
		}
		if (i > 39 && i <= 75) {
			return item.itemID == slot2.itemID;
		}
		if (i > 75 && i <= 111) {
			return item.itemID == slot3.itemID;
		}
		if (i > 111 && i <= 147) {
			return item.itemID == slot4.itemID;
		}
		if (i > 147 && i <= 184) {
			if (item.getItem() instanceof ItemCoin || item.getItem() instanceof ItemNote) {
				return true;
			} else {
				return false;
			}
		} if (i > 184) {
			return false;
		}
	}
	return true;
}
}

 

 

package co.uk.silvania.cities.econ.store.container;

import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import co.uk.silvania.cities.econ.store.entity.TileEntityAdminShop;

public class ContainerAdminShop extends Container {

private TileEntityAdminShop te;
private IInventory adminShopInventory;
public static int tabButton;

private int field_94536_g;
private int field_94535_f = -1;
private final Set field_94537_h = new HashSet();

public ContainerAdminShop(InventoryPlayer invPlayer, TileEntityAdminShop te) {
	this.te = te;
	addSlotToContainer(new Slot(te, 0, 8, 50));
	addSlotToContainer(new Slot(te, 1, 8, 72));
	addSlotToContainer(new Slot(te, 2, 8, 94));
	addSlotToContainer(new Slot(te, 3, 8, 116));
	bindPlayerInventory(invPlayer);
}



protected void bindPlayerInventory(InventoryPlayer invPlayer) {
	//C = vertical inventory slots, "columns"
	//R = horizontal inventory slots, "rows"
	for (int c = 0; c < 3; c++) {
		for (int r = 0; r < 9; r++) {
			addSlotToContainer(new Slot(invPlayer, r + c * 9 + 9, 8 + r * 18, 141 + c * 18));
		}
	}
	//H = hotbar slots
	for (int h = 0; h <9; h++) {
		addSlotToContainer(new Slot(invPlayer, h, 8 + h * 18, 199));
	}
}

@Override
public boolean canInteractWith(EntityPlayer entityPlayer) {
	return true;
}

@Override
    public ItemStack transferStackInSlot(EntityPlayer player, int slot) {
	ItemStack stack = null;
        Slot slotObject = (Slot) inventorySlots.get(slot);

        if (slotObject != null && slotObject.getHasStack()) {
        	ItemStack stackInSlot = slotObject.getStack();
        	stack = stackInSlot.copy();

        	if (slot < 9) {
        		if (!this.mergeItemStack(stackInSlot, 9, 45, true)) {
        			return null;
        		}
        	}

        	else if (!this.mergeItemStack(stackInSlot, 0, 9, false)) {
        		return null;
        	}

        	if (stackInSlot.stackSize == 10) {
        		slotObject.putStack(null);
        	} else {
        		slotObject.onSlotChanged();
        	}

        	if (stackInSlot.stackSize == stack.stackSize) {
        		return null;
        	}
        	slotObject.onPickupFromSlot(player, stackInSlot);
        }
        return stack;
}

@Override
    public void putStackInSlot(int slot, ItemStack item) {
        this.getSlot(slot).putStack(item);
    }

public IInventory getFloatingShelvesInveotry() {
	return this.adminShopInventory;
}

@Override
public ItemStack slotClick(int par1, int par2, int par3, EntityPlayer entityPlayer) {
	System.out.println("Slot clicked!");
	if (entityPlayer.capabilities.isCreativeMode) {
		super.slotClick(par1, par2, par3, entityPlayer);
	}
	return null;
}
}

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

Posted

I'm not entirely sure, but you may be able to do all the calculation on the server and use a packet handler to send the data to the client and have the client render the model.

Don't be afraid to ask question when modding, there are no stupid question! Unless you don't know java then all your questions are stupid!

Posted

You can do this by creating a method in your tile entity to check for the item in the slot like so

 

public boolean hasBook(int slot)
{
// on phone so can't remember method but there is a method in IInventory to check for items in slot
if(items.unknownMethod[slot] instanceof ItemBook)
      return items.unknownMethod[slot];

 

Then do a check in your renderer and if so render that part of the model.

Posted
  On 3/16/2014 at 4:38 AM, Jdb100 said:

You can do this by creating a method in your tile entity to check for the item in the slot like so

 

public boolean hasBook(int slot)
{
// on phone so can't remember method but there is a method in IInventory to check for items in slot
if(items.unknownMethod[slot] instanceof ItemBook)
      return items.unknownMethod[slot];

 

That would only work for something like Bibliocraft's bookshelf, where the physical item in the slot has no relevance to what is rendered. I need to know what itemstack is in the slot, because I'll be rendering that exact stack

 

Then do a check in your renderer and if so render that part of the model.

width=463 height=200

http://s13.postimg.org/z9mlly2av/siglogo.png[/img]

My mods (Links coming soon)

Cities | Roads | Remula | SilvaniaMod | MoreStats

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

    • Okay so I went to a different version of that mod and it booted right up, thank you
    • C:\Users\bruiser\curseforge\minecraft\Instances\Fazbear Remnants\essential\loader\stage1\launchwrapper\stage2.forge_1.12.2.jar: The process cannot access the file because it is being used by another process. Restart your system and test it again If there is no change, delete the mentioned essential folder or remove the mod essential
    • Does it work with newer versions? For 1.16.5 also make a test with Embeddium + Oculus as Optifine replacement
    • Looking for the best Temu coupon code $100 off? You’re in the right place! We’ve got the ultimate deal that helps you save big on your favorite items. Our exclusive ACS670886 Temu coupon code is perfect for shoppers in the USA, Canada, and Europe. Whether you're a new or existing customer, this code ensures you get maximum benefits. By using the Temu coupon $100 off, you can unlock exciting savings on Temu’s vast collection. Don’t miss this chance to claim your Temu 100 off coupon code today! What Is The Coupon Code For Temu $100 Off? Both new and existing customers can enjoy incredible benefits with our Temu coupon $100 off on the Temu app and website. This $100 off Temu coupon ensures huge savings for everyone! ACS670886 – Get a flat $100 off on selected purchases. ACS670886 – Unlock a $100 coupon pack for multiple uses. ACS670886 – Enjoy a $100 flat discount if you're a new customer. ACS670886 – Existing customers can claim an extra $100 promo code. ACS670886 – This $100 coupon is valid for shoppers in the USA and Canada. Temu Coupon Code $100 Off For New Users In 2025 New users can maximize their savings by applying our Temu coupon $100 off on the Temu app. This Temu coupon code $100 off unlocks amazing deals for first-time shoppers. ACS670886 – Get a flat $100 discount for new users. ACS670886 – Receive a $100 coupon bundle as a welcome offer. ACS670886 – Unlock up to $100 in coupons for multiple uses. ACS670886 – Enjoy free shipping to 68 countries. ACS670886 – Get an extra 30% off on any purchase as a first-time user. How To Redeem The Temu Coupon $100 Off For New Customers? Using the Temu $100 coupon is easy! Follow these steps to redeem your Temu $100 off coupon code for new users: Sign up on the Temu app or website. Browse and add your favorite items to the cart. Enter ACS670886 at checkout. See the $100 discount applied instantly. Complete your purchase and enjoy your savings! Temu Coupon $100 Off For Existing Customers Existing customers can also benefit from our exclusive Temu $100 coupon codes for existing users. Use this Temu coupon $100 off for existing customers free shipping deal and save more! ACS670886 – Get an extra $100 discount for existing users. ACS670886 – Enjoy a $100 coupon bundle for multiple purchases. ACS670886 – Receive a free gift with express shipping across the USA/Canada. ACS670886 – Grab an extra 30% off on top of existing discounts. ACS670886 – Avail free shipping to 68 countries. How To Use The Temu Coupon Code $100 Off For Existing Customers? Redeeming your Temu coupon code $100 off as an existing user is simple. Just follow these steps: Log in to your Temu account. Select your desired products and add them to your cart. Apply ACS670886 at checkout. Your Temu coupon $100 off code will be applied automatically. Confirm your order and enjoy massive savings! Latest Temu Coupon $100 Off First Order First-time buyers get the best deals with our Temu coupon code $100 off first order. This Temu coupon code first order ensures maximum savings. ACS670886 – Flat $100 discount for the first order. ACS670886 – Special $100 Temu coupon code for new customers. ACS670886 – Get up to $100 in coupons for multiple uses. ACS670886 – Free shipping to 68 countries. ACS670886 – Extra 30% off on any first-time purchase. How To Find The Temu Coupon Code $100 Off? Finding a Temu coupon $100 off is easy! Check out the Temu coupon $100 off Reddit section or follow these tips: Subscribe to the Temu newsletter for exclusive deals. Follow Temu’s official social media pages for the latest updates. Visit trusted coupon sites for verified and working codes. Is Temu $100 Off Coupon Legit? Yes, our Temu $100 Off Coupon Legit and verified! Wondering if the Temu 100 off coupon legit? Here’s why: The ACS670886 code is officially tested and confirmed. Valid for all customers in the USA, Canada, and Europe. No expiration date—use it anytime! How Does Temu $100 Off Coupon Work? The Temu coupon code $100 off first-time user works instantly upon applying at checkout. Simply enter the Temu coupon codes 100 off, and the discount is automatically deducted. How To Earn Temu $100 Coupons As A New Customer? To earn a Temu coupon code $100 off, sign up on Temu, make your first purchase, and refer friends. This 100 off Temu coupon code can be unlocked through special promotions. What Are The Advantages Of Using The Temu Coupon $100 Off? $100 discount on the first order $100 coupon bundle for multiple uses 70% discount on popular items Extra 30% off for existing customers Up to 90% off on selected products Free gifts for new users Free delivery to 68 countries Temu $100 Discount Code And Free Gift For New And Existing Customers Enjoy the Temu $100 off coupon code and get amazing benefits! Our $100 off Temu coupon code ensures huge savings. ACS670886 – $100 discount for the first order. ACS670886 – Extra 30% off on any item. ACS670886 – Free gift for new Temu users. ACS670886 – Up to 70% discount on all Temu items. ACS670886 – Free shipping in 68 countries including the USA and UK. Final Note: Use The Latest Temu Coupon Code $100 Off Using the Temu coupon code $100 off is the smartest way to save on Temu! Don’t wait—grab your discount now. Our Temu coupon $100 off is available for all customers, ensuring maximum savings. Get yours today! FAQs Of Temu $100 Off Coupon Q: How can I get the Temu $100 off coupon? A: Use code ACS670886 at checkout to claim your $100 discount. Q: Is the Temu $100 coupon valid for existing customers? A: Yes! Existing users can also apply ACS670886 and enjoy savings. Q: Does the Temu $100 off coupon have an expiration date? A: No, ACS670886 is valid indefinitely. Q: Can I use the Temu coupon on multiple orders? A: Yes! ACS670886 allows multiple redemptions. Q: Is the Temu $100 coupon applicable worldwide? A: Yes, it’s valid in the USA, Canada, Europe, and 68 other countries.
    • I tried both Vanilla and Optfine like you said, and both gave the same result. So I believe the issue is most likely with Minecraft in general and not Forge
  • Topics

×
×
  • Create New...

Important Information

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