Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / block / DoubleChest.java
@vlad20012 vlad20012 on 24 Feb 2017 1 KB initial
package org.bukkit.block;

import org.bukkit.Location;
import org.bukkit.World;
import org.bukkit.inventory.DoubleChestInventory;
import org.bukkit.inventory.Inventory;
import org.bukkit.inventory.InventoryHolder;

/**
 * Represents a double chest.
 */
public class DoubleChest implements InventoryHolder
{
	private DoubleChestInventory inventory;

	public DoubleChest(DoubleChestInventory chest)
	{
		inventory = chest;
	}

	public Inventory getInventory()
	{
		return inventory;
	}

	public InventoryHolder getLeftSide()
	{
		return inventory.getLeftSide().getHolder();
	}

	public InventoryHolder getRightSide()
	{
		return inventory.getRightSide().getHolder();
	}

	public Location getLocation()
	{
		return new Location(getWorld(), getX(), getY(), getZ());
	}

	public World getWorld()
	{
		return ((Chest) getLeftSide()).getWorld();
	}

	public double getX()
	{
		return 0.5 * (((Chest) getLeftSide()).getX() + ((Chest) getRightSide()).getX());
	}

	public double getY()
	{
		return 0.5 * (((Chest) getLeftSide()).getY() + ((Chest) getRightSide()).getY());
	}

	public double getZ()
	{
		return 0.5 * (((Chest) getLeftSide()).getZ() + ((Chest) getRightSide()).getZ());
	}
}