diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java new file mode 100644 index 00000000..47d0e935 --- /dev/null +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java @@ -0,0 +1,109 @@ +package WayofTime.bloodmagic.alchemyArray; + +import net.minecraft.block.Block; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.Entity; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.init.SoundEvents; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.network.play.server.SPacketUpdateHealth; +import net.minecraft.potion.Potion; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.SoundCategory; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import net.minecraft.world.WorldServer; +import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; +import WayofTime.bloodmagic.iface.IAlchemyArray; + +public class AlchemyArrayEffectTeleport extends AlchemyArrayEffect +{ + public static final int MAX_SEARCH = 20; + public static final int TELEPORT_DELAY = 40; + + public AlchemyArrayEffectTeleport(String key) + { + super(key); + } + + @Override + public boolean update(TileEntity tile, int ticksActive) + { + return false; + } + + @Override + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) + { + + { + double motionY = 0.5; + double speed = 3; + EnumFacing direction = array.getRotation(); + + teleportEntityInDirection(world, pos, entity, direction); + } + + } + + public void teleportEntityInDirection(World world, BlockPos currentPos, Entity entity, EnumFacing direction) + { + if (entity != null && entity.timeUntilPortal <= 0) + { + for (int i = 1; i <= MAX_SEARCH; i++) + { + BlockPos offsetPos = currentPos.offset(direction, i); + Block testBlock = world.getBlockState(offsetPos).getBlock(); + if (testBlock == RegistrarBloodMagicBlocks.ALCHEMY_ARRAY) + { + int x = offsetPos.getX(); + int y = offsetPos.getY(); + int z = offsetPos.getZ(); + + entity.getEntityWorld().playSound(x, y, z, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.0F, 1.0F, false); + entity.timeUntilPortal = TELEPORT_DELAY; + if (!world.isRemote) + { + Potion d; + if (entity instanceof EntityPlayer) + { + EntityPlayerMP player = (EntityPlayerMP) entity; + + player.setPositionAndUpdate(x + 0.5, y + 0.5, z + 0.5); + player.getEntityWorld().updateEntityWithOptionalForce(player, false); + player.connection.sendPacket(new SPacketUpdateHealth(player.getHealth(), player.getFoodStats().getFoodLevel(), player.getFoodStats().getSaturationLevel())); + + } else + { + WorldServer worldServer = (WorldServer) entity.getEntityWorld(); + + entity.setPosition(x + 0.5, y + 0.5, z + 0.5); + worldServer.resetUpdateEntityTick(); + } + } + return; + } + } + } + } + + @Override + public void writeToNBT(NBTTagCompound tag) + { + + } + + @Override + public void readFromNBT(NBTTagCompound tag) + { + + } + + @Override + public AlchemyArrayEffect getNewCopy() + { + return new AlchemyArrayEffectTeleport(key); + } +} diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java index 28b4094c..855181d2 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java @@ -95,6 +95,8 @@ public class ModRecipes AlchemyArrayRecipeRegistry.registerRecipe(new ItemStack(Items.ARROW), new ItemStack(Items.FEATHER), new AlchemyArrayEffectSkeletonTurret("skeletonTurret"), new DualAlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/SkeletonTurret1.png"), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/SkeletonTurret2.png"))); + AlchemyArrayRecipeRegistry.registerRecipe(new ItemStack(Items.FEATHER), new ItemStack(Items.APPLE), new AlchemyArrayEffectTeleport("teleport"), new StaticAlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/teleportation.png"))); + AlchemyArrayRecipeRegistry.registerRecipe(ComponentTypes.REAGENT_FAST_MINER.getStack(), new ItemStack(Items.IRON_PICKAXE), new AlchemyArrayEffectSigil("fastMiner", (ISigil) RegistrarBloodMagicItems.SIGIL_FAST_MINER), new SingleAlchemyCircleRenderer(new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/FastMinerSigil.png"))); } diff --git a/src/main/resources/assets/bloodmagic/textures/models/alchemyarrays/teleportation.png b/src/main/resources/assets/bloodmagic/textures/models/alchemyarrays/teleportation.png new file mode 100644 index 00000000..de03c724 Binary files /dev/null and b/src/main/resources/assets/bloodmagic/textures/models/alchemyarrays/teleportation.png differ