Applied-Energistics-2-tiler.../src/main/java/appeng/tile/storage/TileSkyChest.java

123 lines
3 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-02-28 09:12:00 +01:00
package appeng.tile.storage;
import io.netty.buffer.ByteBuf;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.util.ForgeDirection;
2014-02-28 09:12:00 +01:00
import appeng.tile.AEBaseInvTile;
2014-08-28 09:39:52 +02:00
import appeng.tile.TileEvent;
2014-02-28 09:12:00 +01:00
import appeng.tile.events.TileEventType;
import appeng.tile.inventory.AppEngInternalInventory;
import appeng.tile.inventory.InvOperation;
import appeng.util.Platform;
public class TileSkyChest extends AEBaseInvTile
{
final int sides[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35 };
final AppEngInternalInventory inv = new AppEngInternalInventory( this, 9 * 4 );
2014-08-28 09:39:52 +02:00
@TileEvent(TileEventType.NETWORK_WRITE)
2014-10-04 08:08:28 +02:00
public void writeToStream_TileSkyChest(ByteBuf data)
2014-02-28 09:12:00 +01:00
{
2014-08-28 09:39:52 +02:00
data.writeBoolean( playerOpen > 0 );
}
2014-02-28 09:12:00 +01:00
2014-08-28 09:39:52 +02:00
@TileEvent(TileEventType.NETWORK_READ)
2014-10-04 08:08:28 +02:00
public boolean readFromStream_TileSkyChest(ByteBuf data)
2014-08-28 09:39:52 +02:00
{
int wasOpen = playerOpen;
playerOpen = data.readBoolean() ? 1 : 0;
2014-02-28 09:12:00 +01:00
2014-08-28 09:39:52 +02:00
if ( wasOpen != playerOpen )
lastEvent = System.currentTimeMillis();
2014-02-28 09:12:00 +01:00
2014-08-28 09:39:52 +02:00
return false; // TESR yo!
2014-02-28 09:12:00 +01:00
}
// server
public int playerOpen;
// client..
public long lastEvent;
public float lidAngle;
@Override
public boolean requiresTESR()
{
return true;
}
@Override
public void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removed, ItemStack added)
{
}
@Override
public IInventory getInternalInventory()
{
return inv;
}
@Override
public int[] getAccessibleSlotsBySide(ForgeDirection side)
2014-02-28 09:12:00 +01:00
{
return sides;
}
@Override
public void openInventory()
{
if ( Platform.isClient() )
return;
playerOpen++;
if ( playerOpen == 1 )
{
getWorldObj().playSoundEffect( xCoord + 0.5D, yCoord + 0.5D, zCoord + 0.5D, "random.chestopen", 0.5F, getWorldObj().rand.nextFloat() * 0.1F + 0.9F );
markForUpdate();
}
}
@Override
public void closeInventory()
{
if ( Platform.isClient() )
return;
playerOpen--;
if ( playerOpen < 0 )
playerOpen = 0;
if ( playerOpen == 0 )
{
getWorldObj().playSoundEffect( xCoord + 0.5D, yCoord + 0.5D, zCoord + 0.5D, "random.chestclosed", 0.5F,
getWorldObj().rand.nextFloat() * 0.1F + 0.9F );
2014-02-28 09:12:00 +01:00
markForUpdate();
}
2014-02-28 09:12:00 +01:00
}
}