Applied-Energistics-2-tiler.../src/main/java/appeng/parts/CableBusStorage.java

128 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-08-27 07:57:37 +02:00
package appeng.parts;
import net.minecraftforge.common.util.ForgeDirection;
2014-12-29 21:59:05 +01:00
2014-08-27 07:57:37 +02:00
import appeng.api.implementations.parts.IPartCable;
import appeng.api.parts.IFacadePart;
import appeng.api.parts.IPart;
/**
* Thin data storage to optimize memory usage for cables.
*/
public class CableBusStorage
{
private IPartCable center;
private IPart[] sides;
private IFacadePart[] facades;
2014-08-27 07:57:37 +02:00
protected IPartCable getCenter()
{
2014-12-29 15:13:47 +01:00
return this.center;
2014-08-27 07:57:37 +02:00
}
protected void setCenter(IPartCable center)
{
this.center = center;
}
protected IPart getSide(ForgeDirection side)
{
int x = side.ordinal();
2014-12-29 15:13:47 +01:00
if ( this.sides != null && this.sides.length > x )
return this.sides[x];
2014-08-27 07:57:37 +02:00
return null;
}
protected void setSide(ForgeDirection side, IPart part)
{
int x = side.ordinal();
2014-12-29 15:13:47 +01:00
if ( this.sides != null && this.sides.length > x && part == null )
2014-08-27 07:57:37 +02:00
{
2014-12-29 15:13:47 +01:00
this.sides[x] = null;
this.sides = this.shrink( this.sides, true );
2014-08-27 07:57:37 +02:00
}
else if ( part != null )
{
2014-12-29 15:13:47 +01:00
this.sides = this.grow( this.sides, x, true );
this.sides[x] = part;
2014-08-27 07:57:37 +02:00
}
}
public IFacadePart getFacade(int x)
{
2014-12-29 15:13:47 +01:00
if ( this.facades != null && this.facades.length > x )
return this.facades[x];
2014-08-27 07:57:37 +02:00
return null;
}
public void setFacade(int x, IFacadePart facade)
{
2014-12-29 15:13:47 +01:00
if ( this.facades != null && this.facades.length > x && facade == null )
2014-08-27 07:57:37 +02:00
{
2014-12-29 15:13:47 +01:00
this.facades[x] = null;
this.facades = this.shrink( this.facades, false );
2014-08-27 07:57:37 +02:00
}
else
{
2014-12-29 15:13:47 +01:00
this.facades = this.grow( this.facades, x, false );
this.facades[x] = facade;
2014-08-27 07:57:37 +02:00
}
}
private <T> T[] grow(T[] in, int new_value, boolean parts)
{
if ( in != null && in.length > new_value )
return in;
int newSize = new_value + 1;
T[] newArray = (T[]) (parts ? new IPart[newSize] : new IFacadePart[newSize]);
if ( in != null )
System.arraycopy( in, 0, newArray, 0, in.length );
return newArray;
}
private <T> T[] shrink(T[] in, boolean parts)
{
int newSize = -1;
2014-08-27 07:57:37 +02:00
for (int x = 0; x < in.length; x++)
if ( in[x] != null )
newSize = x;
if ( newSize == -1 )
2014-08-27 07:57:37 +02:00
return null;
newSize++;
if ( newSize == in.length )
return in;
T[] newArray = (T[]) (parts ? new IPart[newSize] : new IFacadePart[newSize]);
System.arraycopy( in, 0, newArray, 0, newSize );
return newArray;
}
}