NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/BlockFieldCreator.java

126 lines
5.4 KiB
Java
Raw Normal View History

2018-11-13 00:36:47 +01:00
package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityFieldCreator;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
2018-11-13 01:27:47 +01:00
import net.minecraft.block.state.BlockFaceShape;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.BlockState;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.nbt.CompoundNBT;
2018-11-13 00:36:47 +01:00
import net.minecraft.tileentity.TileEntity;
2018-11-13 01:27:47 +01:00
import net.minecraft.util.BlockRenderLayer;
2019-10-20 22:30:49 +02:00
import net.minecraft.util.Direction;
import net.minecraft.util.Hand;
2018-11-13 00:36:47 +01:00
import net.minecraft.util.math.BlockPos;
2019-10-20 22:30:49 +02:00
import net.minecraft.util.text.TranslationTextComponent;
2018-11-13 01:27:47 +01:00
import net.minecraft.world.IBlockAccess;
2018-11-13 00:36:47 +01:00
import net.minecraft.world.World;
2019-10-20 22:30:49 +02:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
2018-11-13 00:36:47 +01:00
import java.util.Random;
public class BlockFieldCreator extends BlockContainerImpl {
public BlockFieldCreator() {
super(Material.ROCK, "field_creator", TileEntityFieldCreator.class, "field_creator");
this.setSoundType(SoundType.STONE);
this.setHardness(2F);
}
@Override
2019-10-20 22:30:49 +02:00
public boolean onBlockActivated(World worldIn, BlockPos pos, BlockState state, PlayerEntity playerIn, Hand hand, Direction facing, float hitX, float hitY, float hitZ) {
2018-11-13 00:36:47 +01:00
TileEntity tile = worldIn.getTileEntity(pos);
if (tile instanceof TileEntityFieldCreator) {
if (!worldIn.isRemote) {
String key = NaturesAura.MOD_ID + ":field_creator_pos";
2019-10-20 22:30:49 +02:00
CompoundNBT compound = playerIn.getEntityData();
2018-11-13 00:36:47 +01:00
if (!playerIn.isSneaking() && compound.hasKey(key)) {
BlockPos stored = BlockPos.fromLong(compound.getLong(key));
TileEntityFieldCreator creator = (TileEntityFieldCreator) tile;
if (!pos.equals(stored)) {
if (creator.isCloseEnough(stored)) {
TileEntity otherTile = worldIn.getTileEntity(stored);
if (otherTile instanceof TileEntityFieldCreator) {
creator.connectionOffset = stored.subtract(pos);
creator.isMain = true;
creator.sendToClients();
TileEntityFieldCreator otherCreator = (TileEntityFieldCreator) otherTile;
otherCreator.connectionOffset = pos.subtract(stored);
2019-01-31 18:58:31 +01:00
otherCreator.isMain = false;
2018-11-13 00:36:47 +01:00
otherCreator.sendToClients();
compound.removeTag(key);
2019-10-20 22:30:49 +02:00
playerIn.sendStatusMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".connected"), true);
2018-11-13 00:36:47 +01:00
} else
2019-10-20 22:30:49 +02:00
playerIn.sendStatusMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".stored_pos_gone"), true);
2018-11-13 00:36:47 +01:00
} else
2019-10-20 22:30:49 +02:00
playerIn.sendStatusMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".too_far"), true);
2018-11-13 00:36:47 +01:00
} else
2019-10-20 22:30:49 +02:00
playerIn.sendStatusMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".same_position"), true);
2018-11-13 00:36:47 +01:00
} else {
compound.setLong(key, pos.toLong());
2019-10-20 22:30:49 +02:00
playerIn.sendStatusMessage(new TranslationTextComponent("info." + NaturesAura.MOD_ID + ".stored_pos"), true);
2018-11-13 00:36:47 +01:00
}
}
return true;
} else
return false;
}
@Override
2019-10-20 22:30:49 +02:00
@OnlyIn(Dist.CLIENT)
public void randomDisplayTick(BlockState stateIn, World worldIn, BlockPos pos, Random rand) {
2018-11-13 00:36:47 +01:00
TileEntity tile = worldIn.getTileEntity(pos);
if (tile instanceof TileEntityFieldCreator) {
TileEntityFieldCreator creator = (TileEntityFieldCreator) tile;
if (creator.isCharged) {
BlockPos connected = creator.getConnectedPos();
if (connected != null)
NaturesAuraAPI.instance().spawnParticleStream(
2018-11-13 01:27:47 +01:00
pos.getX() + 0.25F + rand.nextFloat() * 0.5F,
pos.getY() + 0.25F + rand.nextFloat() * 0.5F,
pos.getZ() + 0.25F + rand.nextFloat() * 0.5F,
connected.getX() + 0.25F + rand.nextFloat() * 0.5F,
connected.getY() + 0.25F + rand.nextFloat() * 0.5F,
connected.getZ() + 0.25F + rand.nextFloat() * 0.5F,
2018-11-13 00:36:47 +01:00
0.65F, 0x4245f4, 1F
);
}
}
}
2018-11-13 01:27:47 +01:00
@Override
2019-10-20 22:30:49 +02:00
@OnlyIn(Dist.CLIENT)
2018-11-13 01:27:47 +01:00
public BlockRenderLayer getRenderLayer() {
return BlockRenderLayer.CUTOUT;
}
@Override
2019-10-20 22:30:49 +02:00
public boolean isFullCube(BlockState state) {
2018-11-13 01:27:47 +01:00
return false;
}
@Override
2019-10-20 22:30:49 +02:00
public boolean isOpaqueCube(BlockState state) {
2018-11-13 01:27:47 +01:00
return false;
}
@Override
2019-10-20 22:30:49 +02:00
public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) {
2018-11-13 01:27:47 +01:00
return false;
}
@Override
2019-10-20 22:30:49 +02:00
public boolean isSideSolid(BlockState baseState, IBlockAccess world, BlockPos pos, Direction side) {
2018-11-13 01:27:47 +01:00
return false;
}
@Override
2019-10-20 22:30:49 +02:00
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, BlockState state, BlockPos pos, Direction face) {
2018-11-13 01:27:47 +01:00
return BlockFaceShape.UNDEFINED;
}
2018-11-13 00:36:47 +01:00
}