2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("TileEntityPhantomface.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2015-11-02 20:55:19 +01:00
|
|
|
* © 2015 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
2015-10-27 23:09:23 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-08-10 10:37:44 +02:00
|
|
|
import ellpeck.actuallyadditions.blocks.BlockPhantom;
|
2015-06-12 19:12:06 +02:00
|
|
|
import ellpeck.actuallyadditions.blocks.InitBlocks;
|
2015-05-20 22:39:43 +02:00
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-07-07 11:51:05 +02:00
|
|
|
import ellpeck.actuallyadditions.util.WorldPos;
|
2015-05-29 18:17:28 +02:00
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
2015-06-12 19:12:06 +02:00
|
|
|
import net.minecraft.block.Block;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-11-18 17:00:47 +01:00
|
|
|
import net.minecraft.util.Vec3;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2015-08-10 10:37:44 +02:00
|
|
|
public class TileEntityPhantomface extends TileEntityInventoryBase implements IPhantomTile{
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-07-07 11:51:05 +02:00
|
|
|
public WorldPos boundPosition;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-08-10 22:55:34 +02:00
|
|
|
public BlockPhantom.Type type;
|
2015-05-27 21:57:53 +02:00
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
public int range;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-07-07 16:22:37 +02:00
|
|
|
private int rangeBefore;
|
|
|
|
private WorldPos boundPosBefore;
|
|
|
|
private Block boundBlockBefore;
|
|
|
|
|
2015-05-27 21:57:53 +02:00
|
|
|
public TileEntityPhantomface(String name){
|
|
|
|
super(0, name);
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-27 21:57:53 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2015-05-27 21:57:53 +02:00
|
|
|
if(!worldObj.isRemote){
|
2015-08-15 20:41:45 +02:00
|
|
|
this.range = upgradeRange(ConfigIntValues.PHANTOMFACE_RANGE.getValue(), worldObj, xCoord, yCoord, zCoord);
|
2015-05-27 21:57:53 +02:00
|
|
|
|
2015-08-10 10:37:44 +02:00
|
|
|
if(!this.hasBoundPosition()){
|
2015-06-12 19:12:06 +02:00
|
|
|
this.boundPosition = null;
|
2015-05-27 21:57:53 +02:00
|
|
|
}
|
2015-07-07 16:22:37 +02:00
|
|
|
|
2015-08-11 00:39:57 +02:00
|
|
|
if(this.boundPosition != this.boundPosBefore || (this.boundPosition != null && this.boundPosition.getBlock() != this.boundBlockBefore) || this.rangeBefore != this.range){
|
2015-07-07 16:22:37 +02:00
|
|
|
this.rangeBefore = this.range;
|
|
|
|
this.boundPosBefore = this.boundPosition;
|
|
|
|
this.boundBlockBefore = this.boundPosition == null ? null : this.boundPosition.getBlock();
|
|
|
|
WorldUtil.updateTileAndTilesAround(this);
|
|
|
|
}
|
2015-05-27 21:57:53 +02:00
|
|
|
}
|
2015-10-26 22:47:26 +01:00
|
|
|
else{
|
|
|
|
if(this.boundPosition != null){
|
2015-10-27 23:09:23 +01:00
|
|
|
this.renderParticles();
|
2015-10-26 22:47:26 +01:00
|
|
|
}
|
|
|
|
}
|
2015-05-27 21:57:53 +02:00
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
public static int upgradeRange(int defaultRange, World world, int x, int y, int z){
|
|
|
|
int newRange = defaultRange;
|
|
|
|
for(int i = 0; i < 3; i++){
|
|
|
|
Block block = world.getBlock(x, y+1+i, z);
|
|
|
|
if(block == InitBlocks.blockPhantomBooster){
|
|
|
|
newRange = newRange*2;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
break;
|
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
return newRange;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
2015-08-10 10:37:44 +02:00
|
|
|
@Override
|
|
|
|
public boolean hasBoundPosition(){
|
|
|
|
if(this.boundPosition != null && this.boundPosition.getWorld() != null){
|
|
|
|
if(this.boundPosition.getWorld().getTileEntity(boundPosition.getX(), boundPosition.getY(), boundPosition.getZ()) instanceof IPhantomTile || (this.xCoord == this.boundPosition.getX() && this.yCoord == this.boundPosition.getY() && this.zCoord == this.boundPosition.getZ() && this.worldObj == this.boundPosition.getWorld())){
|
|
|
|
this.boundPosition = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return this.boundPosition.getWorld() == this.worldObj;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void renderParticles(){
|
|
|
|
if(this.worldObj.rand.nextInt(2) == 0){
|
|
|
|
double d1 = (double)((float)this.boundPosition.getY()+worldObj.rand.nextFloat());
|
|
|
|
int i1 = worldObj.rand.nextInt(2)*2-1;
|
|
|
|
int j1 = worldObj.rand.nextInt(2)*2-1;
|
|
|
|
double d4 = ((double)worldObj.rand.nextFloat()-0.5D)*0.125D;
|
|
|
|
double d2 = (double)this.boundPosition.getZ()+0.5D+0.25D*(double)j1;
|
|
|
|
double d5 = (double)(worldObj.rand.nextFloat()*1.0F*(float)j1);
|
|
|
|
double d0 = (double)this.boundPosition.getX()+0.5D+0.25D*(double)i1;
|
|
|
|
double d3 = (double)(worldObj.rand.nextFloat()*1.0F*(float)i1);
|
|
|
|
worldObj.spawnParticle("portal", d0, d1, d2, d3, d4, d5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-10 10:37:44 +02:00
|
|
|
@Override
|
|
|
|
public boolean isBoundThingInRange(){
|
2015-11-18 17:00:47 +01:00
|
|
|
return this.hasBoundPosition() && this.boundPosition.toVec().distanceTo(Vec3.createVectorHelper(xCoord, yCoord, zCoord)) <= this.range;
|
2015-08-10 10:37:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public WorldPos getBoundPosition(){
|
|
|
|
return this.boundPosition;
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:16:18 +02:00
|
|
|
@Override
|
|
|
|
public void setBoundPosition(WorldPos pos){
|
|
|
|
this.boundPosition = pos == null ? null : pos.copy();
|
|
|
|
}
|
|
|
|
|
2015-08-10 10:37:44 +02:00
|
|
|
@Override
|
|
|
|
public int getGuiID(){
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getRange(){
|
|
|
|
return this.range;
|
|
|
|
}
|
|
|
|
|
2015-10-23 16:54:33 +02:00
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
2015-10-27 23:09:23 +01:00
|
|
|
if(this.boundPosition != null){
|
2015-10-23 16:54:33 +02:00
|
|
|
compound.setInteger("XCoordOfTileStored", boundPosition.getX());
|
|
|
|
compound.setInteger("YCoordOfTileStored", boundPosition.getY());
|
|
|
|
compound.setInteger("ZCoordOfTileStored", boundPosition.getZ());
|
|
|
|
compound.setInteger("WorldOfTileStored", boundPosition.getWorld().provider.dimensionId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2015-10-18 15:28:06 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
super.readSyncableNBT(compound, sync);
|
2015-10-03 10:19:40 +02:00
|
|
|
int x = compound.getInteger("XCoordOfTileStored");
|
|
|
|
int y = compound.getInteger("YCoordOfTileStored");
|
|
|
|
int z = compound.getInteger("ZCoordOfTileStored");
|
2015-10-27 23:09:23 +01:00
|
|
|
int world = compound.getInteger("WorldOfTileStored");
|
|
|
|
if(!(x == 0 && y == 0 && z == 0)){
|
2015-10-03 10:19:40 +02:00
|
|
|
this.boundPosition = new WorldPos(world, x, y, z);
|
|
|
|
this.markDirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|
|
|
return false;
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|