@@ -142,8 +142,8 @@ public class DDTeleporter
|
|||||||
throw new IllegalStateException("The destination world should be loaded!");
|
throw new IllegalStateException("The destination world should be loaded!");
|
||||||
}
|
}
|
||||||
|
|
||||||
//Check if the block at that point is actually a door
|
//Check if the block below that point is actually a door
|
||||||
int blockID = world.getBlockId(door.getX(), door.getY(), door.getZ());
|
int blockID = world.getBlockId(door.getX(), door.getY() - 1, door.getZ());
|
||||||
if (blockID != properties.DimensionalDoorID && blockID != properties.WarpDoorID &&
|
if (blockID != properties.DimensionalDoorID && blockID != properties.WarpDoorID &&
|
||||||
blockID != properties.TransientDoorID && blockID != properties.UnstableDoorID)
|
blockID != properties.TransientDoorID && blockID != properties.UnstableDoorID)
|
||||||
{
|
{
|
||||||
@@ -152,7 +152,7 @@ public class DDTeleporter
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Return the orientation portion of its metadata
|
//Return the orientation portion of its metadata
|
||||||
return world.getBlockMetadata(door.getX(), door.getY(), door.getZ()) & 3;
|
return world.getBlockMetadata(door.getX(), door.getY() - 1, door.getZ()) & 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Entity teleportEntity(Entity entity, Point4D destination)
|
public static Entity teleportEntity(Entity entity, Point4D destination)
|
||||||
|
|||||||
@@ -168,14 +168,14 @@ public class DungeonSchematic extends Schematic {
|
|||||||
return new DungeonSchematic(Schematic.copyFromWorld(world, x, y, z, width, height, length, doCompactBounds));
|
return new DungeonSchematic(Schematic.copyFromWorld(world, x, y, z, width, height, length, doCompactBounds));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void copyToWorld(World world, Point3D pocketCenter, int dungeonOrientation, DimLink entryLink, Random random)
|
public void copyToWorld(World world, Point3D pocketCenter, int targetOrientation, DimLink entryLink, Random random)
|
||||||
{
|
{
|
||||||
//TODO: This function is an improvised solution so we can get the release moving. In the future,
|
//TODO: This function is an improvised solution so we can get the release moving. In the future,
|
||||||
//we should generalize block transformations and implement support for them at the level of Schematic,
|
//we should generalize block transformations and implement support for them at the level of Schematic,
|
||||||
//then just use that support from DungeonSchematic instead of making this local fix.
|
//then just use that support from DungeonSchematic instead of making this local fix.
|
||||||
//It might be easiest to support transformations using a WorldOperation
|
//It might be easiest to support transformations using a WorldOperation
|
||||||
|
|
||||||
final int turnAngle = dungeonOrientation - orientation;
|
final int turnAngle = targetOrientation - this.orientation;
|
||||||
|
|
||||||
int index;
|
int index;
|
||||||
int count;
|
int count;
|
||||||
@@ -285,10 +285,10 @@ public class DungeonSchematic extends Schematic {
|
|||||||
|
|
||||||
private static void createEntranceReverseLink(NewDimData dimension, Point3D pocketCenter, DimLink entryLink)
|
private static void createEntranceReverseLink(NewDimData dimension, Point3D pocketCenter, DimLink entryLink)
|
||||||
{
|
{
|
||||||
DimLink link = dimension.createLink(pocketCenter.getX(), pocketCenter.getY(), pocketCenter.getZ(), LinkTypes.NORMAL);
|
DimLink reverseLink = dimension.createLink(pocketCenter.getX(), pocketCenter.getY(), pocketCenter.getZ(), LinkTypes.NORMAL);
|
||||||
Point4D destination = link.source();
|
Point4D destination = entryLink.source();
|
||||||
NewDimData prevDim = PocketManager.getDimensionData(destination.getDimension());
|
NewDimData prevDim = PocketManager.getDimensionData(destination.getDimension());
|
||||||
prevDim.setDestination(link, destination.getX(), destination.getY(), destination.getZ());
|
prevDim.setDestination(reverseLink, destination.getX(), destination.getY(), destination.getZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void createExitDoorLink(NewDimData dimension, Point3D point, Point3D entrance, int rotation, Point3D pocketCenter)
|
private static void createExitDoorLink(NewDimData dimension, Point3D point, Point3D entrance, int rotation, Point3D pocketCenter)
|
||||||
|
|||||||
@@ -24,9 +24,9 @@ public class ItemRiftSignature extends Item
|
|||||||
{
|
{
|
||||||
super(itemID);
|
super(itemID);
|
||||||
this.setMaxStackSize(1);
|
this.setMaxStackSize(1);
|
||||||
this.setCreativeTab(mod_pocketDim.dimDoorsCreativeTab);
|
|
||||||
this.setMaxDamage(0);
|
this.setMaxDamage(0);
|
||||||
this.hasSubtypes = true;
|
this.hasSubtypes = true;
|
||||||
|
this.setCreativeTab(mod_pocketDim.dimDoorsCreativeTab);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
@@ -43,67 +43,69 @@ public class ItemRiftSignature extends Item
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int par7, float par8, float par9, float par10)
|
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
|
||||||
{
|
{
|
||||||
tryItemUse(stack, player, world, x, y, z);
|
// We must use onItemUseFirst() instead of onItemUse() because Minecraft checks
|
||||||
return true;
|
// whether the user is in creative mode after calling onItemUse() and undoes any
|
||||||
}
|
// damage we might set to indicate the rift sig has been activated. Otherwise,
|
||||||
|
// we would need to rely on checking NBT tags for hasEffect() and that function
|
||||||
|
// gets called constantly. Avoiding NBT lookups reduces our performance impact.
|
||||||
|
|
||||||
protected boolean tryItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z)
|
// Return false on the client side to pass this request to the server
|
||||||
{
|
if (world.isRemote)
|
||||||
if (!world.isRemote)
|
|
||||||
{
|
{
|
||||||
//We don't check for replaceable blocks. The user can deal with that. <_<
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
y += 2; //Increase y by 2 to place the rift at head level
|
//We don't check for replaceable blocks. The user can deal with that. <_<
|
||||||
if (!player.canPlayerEdit(x, y, z, 0, stack))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
Point4D source = getSource(stack);
|
y += 2; //Increase y by 2 to place the rift at head level
|
||||||
if (source != null)
|
if (!player.canPlayerEdit(x, y, z, 0, stack))
|
||||||
{
|
{
|
||||||
//The link was used before and already has an endpoint stored. Create links connecting the two endpoints.
|
|
||||||
NewDimData sourceDimension = PocketManager.getDimensionData(source.getDimension());
|
|
||||||
NewDimData destinationDimension = PocketManager.getDimensionData(world);
|
|
||||||
DimLink link = sourceDimension.createLink(source.getX(), source.getY(), source.getZ(), LinkTypes.NORMAL);
|
|
||||||
DimLink reverse = destinationDimension.createLink(x, y, z, LinkTypes.NORMAL);
|
|
||||||
destinationDimension.setDestination(link, x, y, z);
|
|
||||||
sourceDimension.setDestination(reverse, source.getX(), source.getY(), source.getZ());
|
|
||||||
|
|
||||||
//Try placing a rift at the destination point
|
|
||||||
if (!mod_pocketDim.blockRift.isBlockImmune(world, x, y, z))
|
|
||||||
{
|
|
||||||
world.setBlock(x, y, z, mod_pocketDim.blockRift.blockID);
|
|
||||||
}
|
|
||||||
|
|
||||||
//Try placing a rift at the source point, but check if its world is loaded first
|
|
||||||
World sourceWorld = DimensionManager.getWorld(sourceDimension.id());
|
|
||||||
if (sourceWorld != null &&
|
|
||||||
!mod_pocketDim.blockRift.isBlockImmune(sourceWorld, source.getX(), source.getY(), source.getZ()))
|
|
||||||
{
|
|
||||||
sourceWorld.setBlock(source.getX(), source.getY(), source.getY(), mod_pocketDim.blockRift.blockID);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!player.capabilities.isCreativeMode)
|
|
||||||
{
|
|
||||||
stack.stackSize--;
|
|
||||||
}
|
|
||||||
clearSource(stack);
|
|
||||||
player.sendChatToPlayer("Rift Created");
|
|
||||||
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftEnd", 0.6f, 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//The link signature has not been used. Store its current target as the first location.
|
|
||||||
setSource(stack, x, y, z, PocketManager.getDimensionData(world));
|
|
||||||
player.sendChatToPlayer("Location Stored in Rift Signature");
|
|
||||||
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftStart", 0.6f, 1);
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
|
Point4D source = getSource(stack);
|
||||||
|
if (source != null)
|
||||||
|
{
|
||||||
|
//The link was used before and already has an endpoint stored. Create links connecting the two endpoints.
|
||||||
|
NewDimData sourceDimension = PocketManager.getDimensionData(source.getDimension());
|
||||||
|
NewDimData destinationDimension = PocketManager.getDimensionData(world);
|
||||||
|
DimLink link = sourceDimension.createLink(source.getX(), source.getY(), source.getZ(), LinkTypes.NORMAL);
|
||||||
|
DimLink reverse = destinationDimension.createLink(x, y, z, LinkTypes.NORMAL);
|
||||||
|
destinationDimension.setDestination(link, x, y, z);
|
||||||
|
sourceDimension.setDestination(reverse, source.getX(), source.getY(), source.getZ());
|
||||||
|
|
||||||
|
//Try placing a rift at the destination point
|
||||||
|
if (!mod_pocketDim.blockRift.isBlockImmune(world, x, y, z))
|
||||||
|
{
|
||||||
|
world.setBlock(x, y, z, mod_pocketDim.blockRift.blockID);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Try placing a rift at the source point, but check if its world is loaded first
|
||||||
|
World sourceWorld = DimensionManager.getWorld(sourceDimension.id());
|
||||||
|
if (sourceWorld != null &&
|
||||||
|
!mod_pocketDim.blockRift.isBlockImmune(sourceWorld, source.getX(), source.getY(), source.getZ()))
|
||||||
|
{
|
||||||
|
sourceWorld.setBlock(source.getX(), source.getY(), source.getZ(), mod_pocketDim.blockRift.blockID);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!player.capabilities.isCreativeMode)
|
||||||
|
{
|
||||||
|
stack.stackSize--;
|
||||||
|
}
|
||||||
|
clearSource(stack);
|
||||||
|
player.sendChatToPlayer("Rift Created");
|
||||||
|
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftEnd", 0.6f, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//The link signature has not been used. Store its current target as the first location.
|
||||||
|
setSource(stack, x, y, z, PocketManager.getDimensionData(world));
|
||||||
|
player.sendChatToPlayer("Location Stored in Rift Signature");
|
||||||
|
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftStart", 0.6f, 1);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,65 +7,113 @@ import net.minecraft.entity.player.EntityPlayer;
|
|||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.common.DimensionManager;
|
||||||
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
||||||
|
import StevenDimDoors.mod_pocketDim.core.DimLink;
|
||||||
|
import StevenDimDoors.mod_pocketDim.core.LinkTypes;
|
||||||
|
import StevenDimDoors.mod_pocketDim.core.NewDimData;
|
||||||
|
import StevenDimDoors.mod_pocketDim.core.PocketManager;
|
||||||
import StevenDimDoors.mod_pocketDim.util.Point4D;
|
import StevenDimDoors.mod_pocketDim.util.Point4D;
|
||||||
import cpw.mods.fml.relauncher.Side;
|
import cpw.mods.fml.relauncher.Side;
|
||||||
import cpw.mods.fml.relauncher.SideOnly;
|
import cpw.mods.fml.relauncher.SideOnly;
|
||||||
|
|
||||||
public class ItemStabilizedRiftSignature extends ItemRiftSignature
|
public class ItemStabilizedRiftSignature extends ItemRiftSignature
|
||||||
{
|
{
|
||||||
public ItemStabilizedRiftSignature(int itemID)
|
public ItemStabilizedRiftSignature(int itemID)
|
||||||
{
|
{
|
||||||
super(itemID);
|
super(itemID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void registerIcons(IconRegister par1IconRegister)
|
public void registerIcons(IconRegister par1IconRegister)
|
||||||
{
|
{
|
||||||
this.itemIcon = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName().replace("item.", ""));
|
this.itemIcon = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName().replace("item.", ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int par7, float par8, float par9, float par10)
|
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
|
||||||
{
|
{
|
||||||
//Check if the Stabilized Rift Signature has been initialized
|
// Return false on the client side to pass this request to the server
|
||||||
Point4D source = getSource(stack);
|
if (world.isRemote)
|
||||||
if (source != null)
|
{
|
||||||
{
|
return false;
|
||||||
//Yes, it's initialized. Check if the player can pay an Ender Pearl to create a rift.
|
}
|
||||||
if (player.inventory.hasItem(Item.enderPearl.itemID))
|
|
||||||
{
|
|
||||||
if (tryItemUse(stack, player, world, x, y, z) && !player.capabilities.isCreativeMode)
|
|
||||||
{
|
|
||||||
player.inventory.consumeInventoryItem(Item.enderPearl.itemID);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//Initialization doesn't cost any materials
|
|
||||||
tryItemUse(stack, player, world, x, y, z);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
// We don't check for replaceable blocks. The user can deal with that. <_<
|
||||||
* allows items to add custom lines of information to the mouseover description
|
y += 2; //Increase y by 2 to place the rift at head level
|
||||||
*/
|
if (!player.canPlayerEdit(x, y, z, 0, stack))
|
||||||
@SuppressWarnings({ "rawtypes", "unchecked" })
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if the Stabilized Rift Signature has been initialized
|
||||||
|
Point4D source = getSource(stack);
|
||||||
|
if (source != null)
|
||||||
|
{
|
||||||
|
// Yes, it's initialized. Check if the player is in creative
|
||||||
|
// or if the player can pay an Ender Pearl to create a rift.
|
||||||
|
if (!player.capabilities.isCreativeMode && !player.inventory.hasItem(Item.enderPearl.itemID))
|
||||||
|
{
|
||||||
|
player.sendChatToPlayer("You don't have any Ender Pearls!");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//The link was used before and already has an endpoint stored. Create links connecting the two endpoints.
|
||||||
|
NewDimData sourceDimension = PocketManager.getDimensionData(source.getDimension());
|
||||||
|
NewDimData destinationDimension = PocketManager.getDimensionData(world);
|
||||||
|
DimLink link = sourceDimension.createLink(source.getX(), source.getY(), source.getZ(), LinkTypes.NORMAL);
|
||||||
|
DimLink reverse = destinationDimension.createLink(x, y, z, LinkTypes.NORMAL);
|
||||||
|
destinationDimension.setDestination(link, x, y, z);
|
||||||
|
sourceDimension.setDestination(reverse, source.getX(), source.getY(), source.getZ());
|
||||||
|
|
||||||
|
//Try placing a rift at the destination point
|
||||||
|
if (!mod_pocketDim.blockRift.isBlockImmune(world, x, y, z))
|
||||||
|
{
|
||||||
|
world.setBlock(x, y, z, mod_pocketDim.blockRift.blockID);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Try placing a rift at the source point, but check if its world is loaded first
|
||||||
|
World sourceWorld = DimensionManager.getWorld(sourceDimension.id());
|
||||||
|
if (sourceWorld != null &&
|
||||||
|
!mod_pocketDim.blockRift.isBlockImmune(sourceWorld, source.getX(), source.getY(), source.getZ()))
|
||||||
|
{
|
||||||
|
sourceWorld.setBlock(source.getX(), source.getY(), source.getZ(), mod_pocketDim.blockRift.blockID);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!player.capabilities.isCreativeMode)
|
||||||
|
{
|
||||||
|
player.inventory.consumeInventoryItem(Item.enderPearl.itemID);
|
||||||
|
}
|
||||||
|
player.sendChatToPlayer("Rift Created");
|
||||||
|
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftEnd", 0.6f, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//The link signature has not been used. Store its current target as the first location.
|
||||||
|
setSource(stack, x, y, z, PocketManager.getDimensionData(world));
|
||||||
|
player.sendChatToPlayer("Location Stored in Rift Signature");
|
||||||
|
world.playSoundAtEntity(player,"mods.DimDoors.sfx.riftStart", 0.6f, 1);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* allows items to add custom lines of information to the mouseover description
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
@Override
|
@Override
|
||||||
public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4)
|
public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4)
|
||||||
{
|
{
|
||||||
Point4D source = getSource(par1ItemStack);
|
Point4D source = getSource(par1ItemStack);
|
||||||
if (source != null)
|
if (source != null)
|
||||||
{
|
{
|
||||||
par3List.add("Leads to (" + source.getX() + ", " + source.getY() + ", " + source.getZ() + ") at dimension #" + source.getDimension());
|
par3List.add("Leads to (" + source.getX() + ", " + source.getY() + ", " + source.getZ() + ") at dimension #" + source.getDimension());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
par3List.add("First click stores a location,");
|
par3List.add("First click stores a location,");
|
||||||
par3List.add("second click creates two rifts");
|
par3List.add("second click creates two rifts");
|
||||||
par3List.add("that link the locations together.");
|
par3List.add("that link the locations together.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,9 @@ import net.minecraft.world.chunk.storage.ExtendedBlockStorage;
|
|||||||
import net.minecraftforge.common.DimensionManager;
|
import net.minecraftforge.common.DimensionManager;
|
||||||
import StevenDimDoors.mod_pocketDim.DDProperties;
|
import StevenDimDoors.mod_pocketDim.DDProperties;
|
||||||
import StevenDimDoors.mod_pocketDim.Point3D;
|
import StevenDimDoors.mod_pocketDim.Point3D;
|
||||||
|
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
||||||
import StevenDimDoors.mod_pocketDim.core.DimLink;
|
import StevenDimDoors.mod_pocketDim.core.DimLink;
|
||||||
|
import StevenDimDoors.mod_pocketDim.core.LinkTypes;
|
||||||
import StevenDimDoors.mod_pocketDim.core.NewDimData;
|
import StevenDimDoors.mod_pocketDim.core.NewDimData;
|
||||||
import StevenDimDoors.mod_pocketDim.core.PocketManager;
|
import StevenDimDoors.mod_pocketDim.core.PocketManager;
|
||||||
import StevenDimDoors.mod_pocketDim.dungeon.DungeonData;
|
import StevenDimDoors.mod_pocketDim.dungeon.DungeonData;
|
||||||
@@ -18,6 +20,7 @@ import StevenDimDoors.mod_pocketDim.dungeon.DungeonSchematic;
|
|||||||
import StevenDimDoors.mod_pocketDim.dungeon.pack.DungeonPackConfig;
|
import StevenDimDoors.mod_pocketDim.dungeon.pack.DungeonPackConfig;
|
||||||
import StevenDimDoors.mod_pocketDim.helpers.DungeonHelper;
|
import StevenDimDoors.mod_pocketDim.helpers.DungeonHelper;
|
||||||
import StevenDimDoors.mod_pocketDim.helpers.yCoordHelper;
|
import StevenDimDoors.mod_pocketDim.helpers.yCoordHelper;
|
||||||
|
import StevenDimDoors.mod_pocketDim.items.ItemDimensionalDoor;
|
||||||
import StevenDimDoors.mod_pocketDim.schematic.BlockRotator;
|
import StevenDimDoors.mod_pocketDim.schematic.BlockRotator;
|
||||||
import StevenDimDoors.mod_pocketDim.util.Pair;
|
import StevenDimDoors.mod_pocketDim.util.Pair;
|
||||||
import StevenDimDoors.mod_pocketDim.util.Point4D;
|
import StevenDimDoors.mod_pocketDim.util.Point4D;
|
||||||
@@ -55,7 +58,7 @@ public class PocketBuilder
|
|||||||
{
|
{
|
||||||
//Register a new dimension
|
//Register a new dimension
|
||||||
NewDimData parent = PocketManager.getDimensionData(link.source().getDimension());
|
NewDimData parent = PocketManager.getDimensionData(link.source().getDimension());
|
||||||
NewDimData dimension = PocketManager.registerPocket(parent, false);
|
NewDimData dimension = PocketManager.registerPocket(parent, true);
|
||||||
|
|
||||||
//Load a world
|
//Load a world
|
||||||
World world = DimensionManager.getWorld(dimension.id());
|
World world = DimensionManager.getWorld(dimension.id());
|
||||||
@@ -106,7 +109,7 @@ public class PocketBuilder
|
|||||||
schematic.copyToWorld(world, destination, orientation, link, random);
|
schematic.copyToWorld(world, destination, orientation, link, random);
|
||||||
|
|
||||||
//Finish up destination initialization
|
//Finish up destination initialization
|
||||||
dimension.initializePocket(destination.getX(), destination.getY(), destination.getZ(), orientation, link);
|
dimension.initializeDungeon(destination.getX(), destination.getY(), destination.getZ(), orientation, link, dungeon);
|
||||||
dimension.setFilled(true);
|
dimension.setFilled(true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -227,8 +230,8 @@ public class PocketBuilder
|
|||||||
throw new IllegalStateException("The link's source world should be loaded!");
|
throw new IllegalStateException("The link's source world should be loaded!");
|
||||||
}
|
}
|
||||||
|
|
||||||
//Check if the block at that point is actually a door
|
//Check if the block below that point is actually a door
|
||||||
int blockID = world.getBlockId(source.getX(), source.getY(), source.getZ());
|
int blockID = world.getBlockId(source.getX(), source.getY() - 1, source.getZ());
|
||||||
if (blockID != properties.DimensionalDoorID && blockID != properties.WarpDoorID &&
|
if (blockID != properties.DimensionalDoorID && blockID != properties.WarpDoorID &&
|
||||||
blockID != properties.TransientDoorID)
|
blockID != properties.TransientDoorID)
|
||||||
{
|
{
|
||||||
@@ -236,7 +239,7 @@ public class PocketBuilder
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Return the orientation portion of its metadata
|
//Return the orientation portion of its metadata
|
||||||
int orientation = world.getBlockMetadata(source.getX(), source.getY(), source.getZ()) & 3;
|
int orientation = world.getBlockMetadata(source.getX(), source.getY() - 1, source.getZ()) & 3;
|
||||||
return orientation;
|
return orientation;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -301,6 +304,10 @@ public class PocketBuilder
|
|||||||
int destinationY = yCoordHelper.adjustDestinationY(source.getY(), world.getHeight(), wallThickness + 1, size);
|
int destinationY = yCoordHelper.adjustDestinationY(source.getY(), world.getHeight(), wallThickness + 1, size);
|
||||||
int orientation = getDoorOrientation(source, properties);
|
int orientation = getDoorOrientation(source, properties);
|
||||||
|
|
||||||
|
//Place a link leading back out of the pocket
|
||||||
|
DimLink reverseLink = dimension.createLink(source.getX(), destinationY, source.getZ(), LinkTypes.NORMAL);
|
||||||
|
parent.setDestination(reverseLink, source.getX(), source.getY(), source.getZ());
|
||||||
|
|
||||||
//Build the actual pocket area
|
//Build the actual pocket area
|
||||||
buildPocket(world, source.getX(), destinationY, source.getZ(), orientation, size, wallThickness, properties);
|
buildPocket(world, source.getX(), destinationY, source.getZ(), orientation, size, wallThickness, properties);
|
||||||
|
|
||||||
@@ -354,9 +361,8 @@ public class PocketBuilder
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Build the door
|
//Build the door
|
||||||
int metadata = BlockRotator.transformMetadata(BlockRotator.EAST_DOOR_METADATA, orientation - BlockRotator.EAST_DOOR_METADATA, properties.DimensionalDoorID);
|
int doorOrientation = BlockRotator.transformMetadata(BlockRotator.EAST_DOOR_METADATA, orientation - BlockRotator.EAST_DOOR_METADATA + 2, properties.DimensionalDoorID);
|
||||||
setBlockDirectly(world, x, y, z, properties.DimensionalDoorID, metadata);
|
ItemDimensionalDoor.placeDoorBlock(world, x, y - 1, z, doorOrientation, mod_pocketDim.dimensionalDoor);
|
||||||
setBlockDirectly(world, x, y - 1, z, properties.DimensionalDoorID, metadata);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void buildBox(World world, int centerX, int centerY, int centerZ, int radius, int blockID, boolean placeTnt, int nonTntWeight)
|
private static void buildBox(World world, int centerX, int centerY, int centerZ, int radius, int blockID, boolean placeTnt, int nonTntWeight)
|
||||||
|
|||||||
Reference in New Issue
Block a user