25 lines
775 B
Java

package com.hbm.tileentity;
public class TileEntityProxyDyn extends TileEntityProxyCombo {
@Override
public Object getCoreObject() {
Object o = super.getCoreObject();
if(o instanceof IProxyDelegateProvider) {
Object delegate = ((IProxyDelegateProvider) o).getDelegateForPosition(xCoord, yCoord, zCoord);
if(delegate != null) return delegate;
}
return o;
}
/** Based on the position of the proxy, produces a delegate instead of returning the core tile entity. God this fucking sucks. */
public static interface IProxyDelegateProvider {
/** Returns the delegate based on the proxy's position. Retunring NULL skips the delegate and reverts back to original core behavior */
public Object getDelegateForPosition(int x, int y, int z);
}
}