Export function added
This commit is contained in:
parent
b97eab46b5
commit
4858a69be5
25 changed files with 2045 additions and 26 deletions
|
@ -102,8 +102,8 @@ public class SchematicLoader
|
||||||
|
|
||||||
addId = nbtdata.getByteArray("AddBlocks");
|
addId = nbtdata.getByteArray("AddBlocks");
|
||||||
|
|
||||||
entities = nbtdata.getTagList("Entities");
|
// entities = nbtdata.getTagList("Entities");
|
||||||
tileentities = nbtdata.getTagList("TileEntities");
|
//tileentities = nbtdata.getTagList("TileEntities");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -62,8 +62,19 @@ public class ExitDoor extends dimDoor
|
||||||
{
|
{
|
||||||
DimData dimData = dimHelper.dimList.get(locDimID);
|
DimData dimData = dimHelper.dimList.get(locDimID);
|
||||||
int ExitDimID = dimData.exitDimLink.destDimID;
|
int ExitDimID = dimData.exitDimLink.destDimID;
|
||||||
|
if(dimHelper.dimList.get(par1World.provider.dimensionId).isPocket)
|
||||||
|
{
|
||||||
|
int yCoord=yCoordHelper.getFirstUncovered(ExitDimID, par2, par3, par4);
|
||||||
|
|
||||||
|
|
||||||
|
dimHelper.instance.createLink(locDimID, ExitDimID, par2, par3, par4, par2, yCoord, par4,par1World.getBlockMetadata(par2, par3-1, par4));
|
||||||
|
dimHelper.instance.createLink(ExitDimID, locDimID, par2, yCoord, par4, par2, par3, par4,dimHelper.instance.flipDoorMetadata(par1World.getBlockMetadata(par2, par3-1, par4)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
|
||||||
if(dimHelper.instance.getDimDepth(locDimID)==1)
|
if(dimHelper.instance.getDimDepth(locDimID)==1)
|
||||||
{
|
{
|
||||||
//System.out.println("exitToOverowrld from "+String.valueOf(locDimID));
|
//System.out.println("exitToOverowrld from "+String.valueOf(locDimID));
|
||||||
|
@ -91,6 +102,7 @@ public class ExitDoor extends dimDoor
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
**/
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (dimHelper.instance.getLinkDataFromCoords(par2, par3, par4, par1World)!=null)
|
else if (dimHelper.instance.getLinkDataFromCoords(par2, par3, par4, par1World)!=null)
|
||||||
|
|
|
@ -1,25 +1,9 @@
|
||||||
package StevenDimDoors.mod_pocketDim.commands;
|
package StevenDimDoors.mod_pocketDim.commands;
|
||||||
|
|
||||||
import java.io.FileInputStream;
|
import StevenDimDoors.mod_pocketDim.customDungeonImporter;
|
||||||
import java.io.FileOutputStream;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.OutputStream;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
import cpw.mods.fml.common.FMLCommonHandler;
|
|
||||||
|
|
||||||
import StevenDimDoors.mod_pocketDim.DimData;
|
|
||||||
import StevenDimDoors.mod_pocketDim.LinkData;
|
|
||||||
import StevenDimDoors.mod_pocketDim.dimHelper;
|
|
||||||
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
import StevenDimDoors.mod_pocketDim.mod_pocketDim;
|
||||||
import StevenDimDoors.mod_pocketDim.helpers.copyfile;
|
|
||||||
import StevenDimDoors.mod_pocketDim.world.pocketProvider;
|
|
||||||
import net.minecraft.command.CommandBase;
|
import net.minecraft.command.CommandBase;
|
||||||
import net.minecraft.command.ICommandSender;
|
import net.minecraft.command.ICommandSender;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
|
||||||
import net.minecraft.world.MinecraftException;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
import net.minecraft.world.WorldServer;
|
|
||||||
|
|
||||||
public class CommandEndDungeonCreation extends CommandBase
|
public class CommandEndDungeonCreation extends CommandBase
|
||||||
{
|
{
|
||||||
|
@ -35,8 +19,20 @@ public class CommandEndDungeonCreation extends CommandBase
|
||||||
public void processCommand(ICommandSender var1, String[] var2)
|
public void processCommand(ICommandSender var1, String[] var2)
|
||||||
|
|
||||||
{
|
{
|
||||||
|
int x = (int) this.getCommandSenderAsPlayer(var1).posX;
|
||||||
|
int y = (int) this.getCommandSenderAsPlayer(var1).posY;
|
||||||
|
int z = (int) this.getCommandSenderAsPlayer(var1).posZ;
|
||||||
|
|
||||||
|
if(var2.length==0)
|
||||||
|
{
|
||||||
|
System.out.println("Must name file");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
customDungeonImporter.exportDungeon(this.getCommandSenderAsPlayer(var1).worldObj, x, y, z, mod_pocketDim.schematicContainer+"/"+var2[0]);
|
||||||
|
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("created dungeon schematic in " +mod_pocketDim.schematicContainer+"/"+var2[0]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
|
|
|
@ -0,0 +1,145 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.BlockComparator;
|
||||||
|
import net.minecraft.block.BlockContainer;
|
||||||
|
import net.minecraft.block.BlockDoor;
|
||||||
|
import net.minecraft.block.BlockRedstoneRepeater;
|
||||||
|
import net.minecraft.block.BlockStairs;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.nbt.CompressedStreamTools;
|
||||||
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
import net.minecraft.nbt.NBTTagList;
|
||||||
|
import net.minecraft.tileentity.TileEntityChest;
|
||||||
|
import net.minecraft.tileentity.TileEntityDispenser;
|
||||||
|
import net.minecraft.util.WeightedRandomChestContent;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraft.world.chunk.Chunk;
|
||||||
|
import net.minecraft.world.chunk.storage.ExtendedBlockStorage;
|
||||||
|
import net.minecraftforge.common.ChestGenHooks;
|
||||||
|
import StevenDimDoors.mod_pocketDim.helpers.yCoordHelper;
|
||||||
|
import StevenDimDoors.mod_pocketDim.helpers.jnbt.ByteArrayTag;
|
||||||
|
import StevenDimDoors.mod_pocketDim.helpers.jnbt.CompoundTag;
|
||||||
|
import StevenDimDoors.mod_pocketDim.helpers.jnbt.NBTOutputStream;
|
||||||
|
|
||||||
|
public class customDungeonImporter
|
||||||
|
{
|
||||||
|
NBTTagCompound nbtdata= new NBTTagCompound();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public static void exportDungeon(World world, int xI, int yI, int zI, String file)
|
||||||
|
{
|
||||||
|
int xMin;
|
||||||
|
int yMin;
|
||||||
|
int zMin;
|
||||||
|
|
||||||
|
int xMax;
|
||||||
|
int yMax;
|
||||||
|
int zMax;
|
||||||
|
|
||||||
|
xMin=xMax=xI;
|
||||||
|
yMin=yMax=yI;
|
||||||
|
zMin=zMax=zI;
|
||||||
|
/**
|
||||||
|
for(int count=0;xI<50;xI++)
|
||||||
|
{
|
||||||
|
|
||||||
|
if(world.getBlockId(xMin, yI, zI)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
xMin--;
|
||||||
|
}
|
||||||
|
if(world.getBlockId(xI, yMin, zI)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
yMin--;
|
||||||
|
}
|
||||||
|
if(world.getBlockId(xI, yI, zMin)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
zMin--;
|
||||||
|
}
|
||||||
|
if(world.getBlockId(xMax, yI, zI)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
xMin++;
|
||||||
|
}
|
||||||
|
if(world.getBlockId(xI, yMax, zI)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
yMin++;
|
||||||
|
}
|
||||||
|
if(world.getBlockId(xI, yI, zMax)!=mod_pocketDim.blockDimWallPermID)
|
||||||
|
{
|
||||||
|
zMin++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
**/
|
||||||
|
short width = 100;//(short) (xMax-xMin);
|
||||||
|
short height= 100;//(short) (yMax-yMin);
|
||||||
|
short length= 100;//(short) (zMax=zMin);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
byte[] blocks = new byte[width * height * length];
|
||||||
|
byte[] addBlocks = null;
|
||||||
|
byte[] blockData = new byte[width * height * length];
|
||||||
|
|
||||||
|
for (int x = 0; x < width; ++x) {
|
||||||
|
for (int y = 0; y < height; ++y) {
|
||||||
|
for (int z = 0; z < length; ++z) {
|
||||||
|
int index = y * width * length + z * width + x;
|
||||||
|
int blockID = world.getBlockId(x, y, z);
|
||||||
|
int meta= world.getBlockMetadata(x, y, z);
|
||||||
|
// Save 4096 IDs in an AddBlocks section
|
||||||
|
if (blockID > 255) {
|
||||||
|
if (addBlocks == null) { // Lazily create section
|
||||||
|
addBlocks = new byte[(blocks.length >> 1) + 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
addBlocks[index >> 1] = (byte) (((index & 1) == 0) ?
|
||||||
|
addBlocks[index >> 1] & 0xF0 | (blockID >> 8) & 0xF
|
||||||
|
: addBlocks[index >> 1] & 0xF | ((blockID >> 8) & 0xF) << 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
blocks[index] = (byte) blockID;
|
||||||
|
blockData[index] = (byte) meta;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* this.nbtdata.setShort("Width", width);
|
||||||
|
this.nbtdata.setShort("Height", height);
|
||||||
|
this.nbtdata.setShort("Length", length);
|
||||||
|
|
||||||
|
this.nbtdata.setByteArray("Blocks", blocks);
|
||||||
|
this.nbtdata.setByteArray("Data", blockData);
|
||||||
|
*/
|
||||||
|
|
||||||
|
HashMap schematic = new HashMap();
|
||||||
|
schematic.put("Blocks", new ByteArrayTag("Blocks", blocks));
|
||||||
|
schematic.put("Data", new ByteArrayTag("Data", blockData));
|
||||||
|
if (addBlocks != null) {
|
||||||
|
schematic.put("AddBlocks", new ByteArrayTag("AddBlocks", addBlocks));
|
||||||
|
}
|
||||||
|
|
||||||
|
CompoundTag schematicTag = new CompoundTag("Schematic", schematic);
|
||||||
|
try{
|
||||||
|
|
||||||
|
|
||||||
|
NBTOutputStream stream = new NBTOutputStream(new FileOutputStream(file));
|
||||||
|
stream.writeTag(schematicTag);
|
||||||
|
stream.close();
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
86
StevenDimDoors/mod_pocketDim/helpers/jnbt/ByteArrayTag.java
Normal file
86
StevenDimDoors/mod_pocketDim/helpers/jnbt/ByteArrayTag.java
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Byte_Array</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class ByteArrayTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final byte[] value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public ByteArrayTag(String name, byte[] value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public byte[] getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
StringBuilder hex = new StringBuilder();
|
||||||
|
for (byte b : value) {
|
||||||
|
String hexDigits = Integer.toHexString(b).toUpperCase();
|
||||||
|
if (hexDigits.length() == 1) {
|
||||||
|
hex.append("0");
|
||||||
|
}
|
||||||
|
hex.append(hexDigits).append(" ");
|
||||||
|
}
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Byte_Array" + append + ": " + hex.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/ByteTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/ByteTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Byte</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class ByteTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final byte value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public ByteTag(String name, byte value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Byte getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Byte" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
89
StevenDimDoors/mod_pocketDim/helpers/jnbt/CompoundTag.java
Normal file
89
StevenDimDoors/mod_pocketDim/helpers/jnbt/CompoundTag.java
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Compound</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class CompoundTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final Map<String, Tag> value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public CompoundTag(String name, Map<String, Tag> value) {
|
||||||
|
super(name);
|
||||||
|
this.value = Collections.unmodifiableMap(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, Tag> getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
StringBuilder bldr = new StringBuilder();
|
||||||
|
bldr.append("TAG_Compound" + append + ": " + value.size()
|
||||||
|
+ " entries\r\n{\r\n");
|
||||||
|
for (Map.Entry<String, Tag> entry : value.entrySet()) {
|
||||||
|
bldr.append(" "
|
||||||
|
+ entry.getValue().toString().replaceAll("\r\n", "\r\n ")
|
||||||
|
+ "\r\n");
|
||||||
|
}
|
||||||
|
bldr.append("}");
|
||||||
|
return bldr.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/DoubleTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/DoubleTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Double</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class DoubleTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final double value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public DoubleTag(String name, double value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Double getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Double" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
62
StevenDimDoors/mod_pocketDim/helpers/jnbt/EndTag.java
Normal file
62
StevenDimDoors/mod_pocketDim/helpers/jnbt/EndTag.java
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_End</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class EndTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*/
|
||||||
|
public EndTag() {
|
||||||
|
super("");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object getValue() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "TAG_End";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/FloatTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/FloatTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Float</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class FloatTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final float value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public FloatTag(String name, float value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Float getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Float" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
86
StevenDimDoors/mod_pocketDim/helpers/jnbt/IntArrayTag.java
Normal file
86
StevenDimDoors/mod_pocketDim/helpers/jnbt/IntArrayTag.java
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Int_Array</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class IntArrayTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final int[] value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public IntArrayTag(String name, int[] value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int[] getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
StringBuilder hex = new StringBuilder();
|
||||||
|
for (int b : value) {
|
||||||
|
String hexDigits = Integer.toHexString(b).toUpperCase();
|
||||||
|
if (hexDigits.length() == 1) {
|
||||||
|
hex.append("0");
|
||||||
|
}
|
||||||
|
hex.append(hexDigits).append(" ");
|
||||||
|
}
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Int_Array" + append + ": " + hex.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/IntTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/IntTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Int</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class IntTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final int value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public IntTag(String name, int value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Integer getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Int" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
106
StevenDimDoors/mod_pocketDim/helpers/jnbt/ListTag.java
Normal file
106
StevenDimDoors/mod_pocketDim/helpers/jnbt/ListTag.java
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_List</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class ListTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type.
|
||||||
|
*/
|
||||||
|
private final Class<? extends Tag> type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final List<Tag> value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param type
|
||||||
|
* The type of item in the list.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public ListTag(String name, Class<? extends Tag> type, List<? extends Tag> value) {
|
||||||
|
super(name);
|
||||||
|
this.type = type;
|
||||||
|
this.value = Collections.unmodifiableList(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the type of item in this list.
|
||||||
|
*
|
||||||
|
* @return The type of item in this list.
|
||||||
|
*/
|
||||||
|
public Class<? extends Tag> getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Tag> getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
StringBuilder bldr = new StringBuilder();
|
||||||
|
bldr.append("TAG_List" + append + ": " + value.size()
|
||||||
|
+ " entries of type " + NBTUtils.getTypeName(type)
|
||||||
|
+ "\r\n{\r\n");
|
||||||
|
for (Tag t : value) {
|
||||||
|
bldr.append(" " + t.toString().replaceAll("\r\n", "\r\n ")
|
||||||
|
+ "\r\n");
|
||||||
|
}
|
||||||
|
bldr.append("}");
|
||||||
|
return bldr.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/LongTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/LongTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Long</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class LongTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final long value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public LongTag(String name, long value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Long getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Long" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
104
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTConstants.java
Normal file
104
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTConstants.java
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class which holds constant values.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class NBTConstants {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The character set used by NBT (UTF-8).
|
||||||
|
*/
|
||||||
|
public static final Charset CHARSET = Charset.forName("UTF-8");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tag type constants.
|
||||||
|
*/
|
||||||
|
public static final int TYPE_END = 0, TYPE_BYTE = 1, TYPE_SHORT = 2,
|
||||||
|
TYPE_INT = 3, TYPE_LONG = 4, TYPE_FLOAT = 5, TYPE_DOUBLE = 6,
|
||||||
|
TYPE_BYTE_ARRAY = 7, TYPE_STRING = 8, TYPE_LIST = 9,
|
||||||
|
TYPE_COMPOUND = 10, TYPE_INT_ARRAY = 11;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default private constructor.
|
||||||
|
*/
|
||||||
|
private NBTConstants() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert a type ID to its corresponding {@link Tag} class.
|
||||||
|
*
|
||||||
|
* @param id type ID
|
||||||
|
* @return tag class
|
||||||
|
* @throws IllegalArgumentException thrown if the tag ID is not valid
|
||||||
|
*/
|
||||||
|
public static Class<? extends Tag> getClassFromType(int id) {
|
||||||
|
switch (id) {
|
||||||
|
case TYPE_END:
|
||||||
|
return EndTag.class;
|
||||||
|
case TYPE_BYTE:
|
||||||
|
return ByteTag.class;
|
||||||
|
case TYPE_SHORT:
|
||||||
|
return ShortTag.class;
|
||||||
|
case TYPE_INT:
|
||||||
|
return IntTag.class;
|
||||||
|
case TYPE_LONG:
|
||||||
|
return LongTag.class;
|
||||||
|
case TYPE_FLOAT:
|
||||||
|
return FloatTag.class;
|
||||||
|
case TYPE_DOUBLE:
|
||||||
|
return DoubleTag.class;
|
||||||
|
case TYPE_BYTE_ARRAY:
|
||||||
|
return ByteArrayTag.class;
|
||||||
|
case TYPE_STRING:
|
||||||
|
return StringTag.class;
|
||||||
|
case TYPE_LIST:
|
||||||
|
return ListTag.class;
|
||||||
|
case TYPE_COMPOUND:
|
||||||
|
return CompoundTag.class;
|
||||||
|
case TYPE_INT_ARRAY:
|
||||||
|
return IntArrayTag.class;
|
||||||
|
default:
|
||||||
|
throw new IllegalArgumentException("Unknown tag type ID of " + id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
204
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTInputStream.java
Normal file
204
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTInputStream.java
Normal file
|
@ -0,0 +1,204 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.io.Closeable;
|
||||||
|
import java.io.DataInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* This class reads <strong>NBT</strong>, or <strong>Named Binary Tag</strong>
|
||||||
|
* streams, and produces an object graph of subclasses of the <code>Tag</code>
|
||||||
|
* object.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* The NBT format was created by Markus Persson, and the specification may be
|
||||||
|
* found at <a href="http://www.minecraft.net/docs/NBT.txt">
|
||||||
|
* http://www.minecraft.net/docs/NBT.txt</a>.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class NBTInputStream implements Closeable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The data input stream.
|
||||||
|
*/
|
||||||
|
private final DataInputStream is;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new <code>NBTInputStream</code>, which will source its data
|
||||||
|
* from the specified input stream.
|
||||||
|
*
|
||||||
|
* @param is
|
||||||
|
* The input stream.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
public NBTInputStream(InputStream is) throws IOException {
|
||||||
|
this.is = new DataInputStream(is);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads an NBT tag from the stream.
|
||||||
|
*
|
||||||
|
* @return The tag that was read.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
public Tag readTag() throws IOException {
|
||||||
|
return readTag(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads an NBT from the stream.
|
||||||
|
*
|
||||||
|
* @param depth
|
||||||
|
* The depth of this tag.
|
||||||
|
* @return The tag that was read.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private Tag readTag(int depth) throws IOException {
|
||||||
|
int type = is.readByte() & 0xFF;
|
||||||
|
|
||||||
|
String name;
|
||||||
|
if (type != NBTConstants.TYPE_END) {
|
||||||
|
int nameLength = is.readShort() & 0xFFFF;
|
||||||
|
byte[] nameBytes = new byte[nameLength];
|
||||||
|
is.readFully(nameBytes);
|
||||||
|
name = new String(nameBytes, NBTConstants.CHARSET);
|
||||||
|
} else {
|
||||||
|
name = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
return readTagPayload(type, name, depth);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads the payload of a tag, given the name and type.
|
||||||
|
*
|
||||||
|
* @param type
|
||||||
|
* The type.
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param depth
|
||||||
|
* The depth.
|
||||||
|
* @return The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private Tag readTagPayload(int type, String name, int depth)
|
||||||
|
throws IOException {
|
||||||
|
switch (type) {
|
||||||
|
case NBTConstants.TYPE_END:
|
||||||
|
if (depth == 0) {
|
||||||
|
throw new IOException(
|
||||||
|
"TAG_End found without a TAG_Compound/TAG_List tag preceding it.");
|
||||||
|
} else {
|
||||||
|
return new EndTag();
|
||||||
|
}
|
||||||
|
case NBTConstants.TYPE_BYTE:
|
||||||
|
return new ByteTag(name, is.readByte());
|
||||||
|
case NBTConstants.TYPE_SHORT:
|
||||||
|
return new ShortTag(name, is.readShort());
|
||||||
|
case NBTConstants.TYPE_INT:
|
||||||
|
return new IntTag(name, is.readInt());
|
||||||
|
case NBTConstants.TYPE_LONG:
|
||||||
|
return new LongTag(name, is.readLong());
|
||||||
|
case NBTConstants.TYPE_FLOAT:
|
||||||
|
return new FloatTag(name, is.readFloat());
|
||||||
|
case NBTConstants.TYPE_DOUBLE:
|
||||||
|
return new DoubleTag(name, is.readDouble());
|
||||||
|
case NBTConstants.TYPE_BYTE_ARRAY:
|
||||||
|
int length = is.readInt();
|
||||||
|
byte[] bytes = new byte[length];
|
||||||
|
is.readFully(bytes);
|
||||||
|
return new ByteArrayTag(name, bytes);
|
||||||
|
case NBTConstants.TYPE_STRING:
|
||||||
|
length = is.readShort();
|
||||||
|
bytes = new byte[length];
|
||||||
|
is.readFully(bytes);
|
||||||
|
return new StringTag(name, new String(bytes, NBTConstants.CHARSET));
|
||||||
|
case NBTConstants.TYPE_LIST:
|
||||||
|
int childType = is.readByte();
|
||||||
|
length = is.readInt();
|
||||||
|
|
||||||
|
List<Tag> tagList = new ArrayList<Tag>();
|
||||||
|
for (int i = 0; i < length; ++i) {
|
||||||
|
Tag tag = readTagPayload(childType, "", depth + 1);
|
||||||
|
if (tag instanceof EndTag) {
|
||||||
|
throw new IOException("TAG_End not permitted in a list.");
|
||||||
|
}
|
||||||
|
tagList.add(tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new ListTag(name, NBTUtils.getTypeClass(childType), tagList);
|
||||||
|
case NBTConstants.TYPE_COMPOUND:
|
||||||
|
Map<String, Tag> tagMap = new HashMap<String, Tag>();
|
||||||
|
while (true) {
|
||||||
|
Tag tag = readTag(depth + 1);
|
||||||
|
if (tag instanceof EndTag) {
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
tagMap.put(tag.getName(), tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return new CompoundTag(name, tagMap);
|
||||||
|
case NBTConstants.TYPE_INT_ARRAY:
|
||||||
|
length = is.readInt();
|
||||||
|
int[] data = new int[length];
|
||||||
|
for (int i = 0; i < length; i++) {
|
||||||
|
data[i] = is.readInt();
|
||||||
|
}
|
||||||
|
return new IntArrayTag(name, data);
|
||||||
|
default:
|
||||||
|
throw new IOException("Invalid tag type: " + type + ".");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void close() throws IOException {
|
||||||
|
is.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
313
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTOutputStream.java
Normal file
313
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTOutputStream.java
Normal file
|
@ -0,0 +1,313 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
import java.io.Closeable;
|
||||||
|
import java.io.DataOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* This class writes <strong>NBT</strong>, or <strong>Named Binary Tag</strong>
|
||||||
|
* <code>Tag</code> objects to an underlying <code>OutputStream</code>.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* The NBT format was created by Markus Persson, and the specification may be
|
||||||
|
* found at <a href="http://www.minecraft.net/docs/NBT.txt">
|
||||||
|
* http://www.minecraft.net/docs/NBT.txt</a>.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class NBTOutputStream implements Closeable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The output stream.
|
||||||
|
*/
|
||||||
|
private final DataOutputStream os;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new <code>NBTOutputStream</code>, which will write data to the
|
||||||
|
* specified underlying output stream.
|
||||||
|
*
|
||||||
|
* @param os
|
||||||
|
* The output stream.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
public NBTOutputStream(OutputStream os) throws IOException {
|
||||||
|
this.os = new DataOutputStream(new GZIPOutputStream(os));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag to write.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
public void writeTag(Tag tag) throws IOException {
|
||||||
|
int type = NBTUtils.getTypeCode(tag.getClass());
|
||||||
|
String name = tag.getName();
|
||||||
|
byte[] nameBytes = name.getBytes(NBTConstants.CHARSET);
|
||||||
|
|
||||||
|
os.writeByte(type);
|
||||||
|
os.writeShort(nameBytes.length);
|
||||||
|
os.write(nameBytes);
|
||||||
|
|
||||||
|
if (type == NBTConstants.TYPE_END) {
|
||||||
|
throw new IOException("Named TAG_End not permitted.");
|
||||||
|
}
|
||||||
|
|
||||||
|
writeTagPayload(tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes tag payload.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeTagPayload(Tag tag) throws IOException {
|
||||||
|
int type = NBTUtils.getTypeCode(tag.getClass());
|
||||||
|
switch (type) {
|
||||||
|
case NBTConstants.TYPE_END:
|
||||||
|
writeEndTagPayload((EndTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_BYTE:
|
||||||
|
writeByteTagPayload((ByteTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_SHORT:
|
||||||
|
writeShortTagPayload((ShortTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_INT:
|
||||||
|
writeIntTagPayload((IntTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_LONG:
|
||||||
|
writeLongTagPayload((LongTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_FLOAT:
|
||||||
|
writeFloatTagPayload((FloatTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_DOUBLE:
|
||||||
|
writeDoubleTagPayload((DoubleTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_BYTE_ARRAY:
|
||||||
|
writeByteArrayTagPayload((ByteArrayTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_STRING:
|
||||||
|
writeStringTagPayload((StringTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_LIST:
|
||||||
|
writeListTagPayload((ListTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_COMPOUND:
|
||||||
|
writeCompoundTagPayload((CompoundTag) tag);
|
||||||
|
break;
|
||||||
|
case NBTConstants.TYPE_INT_ARRAY:
|
||||||
|
writeIntArrayTagPayload((IntArrayTag) tag);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new IOException("Invalid tag type: " + type + ".");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Byte</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeByteTagPayload(ByteTag tag) throws IOException {
|
||||||
|
os.writeByte(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Byte_Array</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeByteArrayTagPayload(ByteArrayTag tag) throws IOException {
|
||||||
|
byte[] bytes = tag.getValue();
|
||||||
|
os.writeInt(bytes.length);
|
||||||
|
os.write(bytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Compound</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeCompoundTagPayload(CompoundTag tag) throws IOException {
|
||||||
|
for (Tag childTag : tag.getValue().values()) {
|
||||||
|
writeTag(childTag);
|
||||||
|
}
|
||||||
|
os.writeByte((byte) 0); // end tag - better way?
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_List</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeListTagPayload(ListTag tag) throws IOException {
|
||||||
|
Class<? extends Tag> clazz = tag.getType();
|
||||||
|
List<Tag> tags = tag.getValue();
|
||||||
|
int size = tags.size();
|
||||||
|
|
||||||
|
os.writeByte(NBTUtils.getTypeCode(clazz));
|
||||||
|
os.writeInt(size);
|
||||||
|
for (int i = 0; i < size; ++i) {
|
||||||
|
writeTagPayload(tags.get(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_String</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeStringTagPayload(StringTag tag) throws IOException {
|
||||||
|
byte[] bytes = tag.getValue().getBytes(NBTConstants.CHARSET);
|
||||||
|
os.writeShort(bytes.length);
|
||||||
|
os.write(bytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Double</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeDoubleTagPayload(DoubleTag tag) throws IOException {
|
||||||
|
os.writeDouble(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Float</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeFloatTagPayload(FloatTag tag) throws IOException {
|
||||||
|
os.writeFloat(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Long</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeLongTagPayload(LongTag tag) throws IOException {
|
||||||
|
os.writeLong(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Int</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeIntTagPayload(IntTag tag) throws IOException {
|
||||||
|
os.writeInt(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Short</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeShortTagPayload(ShortTag tag) throws IOException {
|
||||||
|
os.writeShort(tag.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a <code>TAG_Empty</code> tag.
|
||||||
|
*
|
||||||
|
* @param tag
|
||||||
|
* The tag.
|
||||||
|
* @throws IOException
|
||||||
|
* if an I/O error occurs.
|
||||||
|
*/
|
||||||
|
private void writeEndTagPayload(EndTag tag) {
|
||||||
|
/* empty */
|
||||||
|
}
|
||||||
|
|
||||||
|
private void writeIntArrayTagPayload(IntArrayTag tag) throws IOException {
|
||||||
|
int[] data = tag.getValue();
|
||||||
|
os.writeInt(data.length);
|
||||||
|
for (int i = 0; i < data.length; i++) {
|
||||||
|
os.writeInt(data[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void close() throws IOException {
|
||||||
|
os.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
193
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTUtils.java
Normal file
193
StevenDimDoors/mod_pocketDim/helpers/jnbt/NBTUtils.java
Normal file
|
@ -0,0 +1,193 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class which contains NBT-related utility methods.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class NBTUtils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the type name of a tag.
|
||||||
|
*
|
||||||
|
* @param clazz
|
||||||
|
* The tag class.
|
||||||
|
* @return The type name.
|
||||||
|
*/
|
||||||
|
public static String getTypeName(Class<? extends Tag> clazz) {
|
||||||
|
if (clazz.equals(ByteArrayTag.class)) {
|
||||||
|
return "TAG_Byte_Array";
|
||||||
|
} else if (clazz.equals(ByteTag.class)) {
|
||||||
|
return "TAG_Byte";
|
||||||
|
} else if (clazz.equals(CompoundTag.class)) {
|
||||||
|
return "TAG_Compound";
|
||||||
|
} else if (clazz.equals(DoubleTag.class)) {
|
||||||
|
return "TAG_Double";
|
||||||
|
} else if (clazz.equals(EndTag.class)) {
|
||||||
|
return "TAG_End";
|
||||||
|
} else if (clazz.equals(FloatTag.class)) {
|
||||||
|
return "TAG_Float";
|
||||||
|
} else if (clazz.equals(IntTag.class)) {
|
||||||
|
return "TAG_Int";
|
||||||
|
} else if (clazz.equals(ListTag.class)) {
|
||||||
|
return "TAG_List";
|
||||||
|
} else if (clazz.equals(LongTag.class)) {
|
||||||
|
return "TAG_Long";
|
||||||
|
} else if (clazz.equals(ShortTag.class)) {
|
||||||
|
return "TAG_Short";
|
||||||
|
} else if (clazz.equals(StringTag.class)) {
|
||||||
|
return "TAG_String";
|
||||||
|
} else if (clazz.equals(IntArrayTag.class)) {
|
||||||
|
return "TAG_Int_Array";
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException("Invalid tag classs ("
|
||||||
|
+ clazz.getName() + ").");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the type code of a tag class.
|
||||||
|
*
|
||||||
|
* @param clazz
|
||||||
|
* The tag class.
|
||||||
|
* @return The type code.
|
||||||
|
* @throws IllegalArgumentException
|
||||||
|
* if the tag class is invalid.
|
||||||
|
*/
|
||||||
|
public static int getTypeCode(Class<? extends Tag> clazz) {
|
||||||
|
if (clazz.equals(ByteArrayTag.class)) {
|
||||||
|
return NBTConstants.TYPE_BYTE_ARRAY;
|
||||||
|
} else if (clazz.equals(ByteTag.class)) {
|
||||||
|
return NBTConstants.TYPE_BYTE;
|
||||||
|
} else if (clazz.equals(CompoundTag.class)) {
|
||||||
|
return NBTConstants.TYPE_COMPOUND;
|
||||||
|
} else if (clazz.equals(DoubleTag.class)) {
|
||||||
|
return NBTConstants.TYPE_DOUBLE;
|
||||||
|
} else if (clazz.equals(EndTag.class)) {
|
||||||
|
return NBTConstants.TYPE_END;
|
||||||
|
} else if (clazz.equals(FloatTag.class)) {
|
||||||
|
return NBTConstants.TYPE_FLOAT;
|
||||||
|
} else if (clazz.equals(IntTag.class)) {
|
||||||
|
return NBTConstants.TYPE_INT;
|
||||||
|
} else if (clazz.equals(ListTag.class)) {
|
||||||
|
return NBTConstants.TYPE_LIST;
|
||||||
|
} else if (clazz.equals(LongTag.class)) {
|
||||||
|
return NBTConstants.TYPE_LONG;
|
||||||
|
} else if (clazz.equals(ShortTag.class)) {
|
||||||
|
return NBTConstants.TYPE_SHORT;
|
||||||
|
} else if (clazz.equals(StringTag.class)) {
|
||||||
|
return NBTConstants.TYPE_STRING;
|
||||||
|
} else if (clazz.equals(IntArrayTag.class)) {
|
||||||
|
return NBTConstants.TYPE_INT_ARRAY;
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException("Invalid tag classs ("
|
||||||
|
+ clazz.getName() + ").");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the class of a type of tag.
|
||||||
|
*
|
||||||
|
* @param type
|
||||||
|
* The type.
|
||||||
|
* @return The class.
|
||||||
|
* @throws IllegalArgumentException
|
||||||
|
* if the tag type is invalid.
|
||||||
|
*/
|
||||||
|
public static Class<? extends Tag> getTypeClass(int type) {
|
||||||
|
switch (type) {
|
||||||
|
case NBTConstants.TYPE_END:
|
||||||
|
return EndTag.class;
|
||||||
|
case NBTConstants.TYPE_BYTE:
|
||||||
|
return ByteTag.class;
|
||||||
|
case NBTConstants.TYPE_SHORT:
|
||||||
|
return ShortTag.class;
|
||||||
|
case NBTConstants.TYPE_INT:
|
||||||
|
return IntTag.class;
|
||||||
|
case NBTConstants.TYPE_LONG:
|
||||||
|
return LongTag.class;
|
||||||
|
case NBTConstants.TYPE_FLOAT:
|
||||||
|
return FloatTag.class;
|
||||||
|
case NBTConstants.TYPE_DOUBLE:
|
||||||
|
return DoubleTag.class;
|
||||||
|
case NBTConstants.TYPE_BYTE_ARRAY:
|
||||||
|
return ByteArrayTag.class;
|
||||||
|
case NBTConstants.TYPE_STRING:
|
||||||
|
return StringTag.class;
|
||||||
|
case NBTConstants.TYPE_LIST:
|
||||||
|
return ListTag.class;
|
||||||
|
case NBTConstants.TYPE_COMPOUND:
|
||||||
|
return CompoundTag.class;
|
||||||
|
case NBTConstants.TYPE_INT_ARRAY:
|
||||||
|
return IntArrayTag.class;
|
||||||
|
default:
|
||||||
|
throw new IllegalArgumentException("Invalid tag type : " + type
|
||||||
|
+ ".");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default private constructor.
|
||||||
|
*/
|
||||||
|
private NBTUtils() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get child tag of a NBT structure.
|
||||||
|
*
|
||||||
|
* @param items
|
||||||
|
* @param key
|
||||||
|
* @param expected
|
||||||
|
* @return child tag
|
||||||
|
* @throws InvalidFormatException
|
||||||
|
*/
|
||||||
|
public static <T extends Tag> T getChildTag(Map<String,Tag> items, String key,
|
||||||
|
Class<T> expected) throws Exception {
|
||||||
|
if (!items.containsKey(key)) {
|
||||||
|
throw new Exception("Missing a \"" + key + "\" tag");
|
||||||
|
}
|
||||||
|
Tag tag = items.get(key);
|
||||||
|
if (!expected.isInstance(tag)) {
|
||||||
|
throw new Exception(key + " tag is not of tag type " + expected.getName());
|
||||||
|
}
|
||||||
|
return expected.cast(tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/ShortTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/ShortTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_Short</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class ShortTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final short value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public ShortTag(String name, short value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Short getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_Short" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/StringTag.java
Normal file
78
StevenDimDoors/mod_pocketDim/helpers/jnbt/StringTag.java
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>TAG_String</code> tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class StringTag extends Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
* @param value
|
||||||
|
* The value.
|
||||||
|
*/
|
||||||
|
public StringTag(String name, String value) {
|
||||||
|
super(name);
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
String name = getName();
|
||||||
|
String append = "";
|
||||||
|
if (name != null && !name.equals("")) {
|
||||||
|
append = "(\"" + this.getName() + "\")";
|
||||||
|
}
|
||||||
|
return "TAG_String" + append + ": " + value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
75
StevenDimDoors/mod_pocketDim/helpers/jnbt/Tag.java
Normal file
75
StevenDimDoors/mod_pocketDim/helpers/jnbt/Tag.java
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
package StevenDimDoors.mod_pocketDim.helpers.jnbt;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* JNBT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010 Graham Edgecombe
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* * Neither the name of the JNBT team nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a single NBT tag.
|
||||||
|
*
|
||||||
|
* @author Graham Edgecombe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public abstract class Tag {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of this tag.
|
||||||
|
*/
|
||||||
|
private final String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates the tag with the specified name.
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* The name.
|
||||||
|
*/
|
||||||
|
public Tag(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the name of this tag.
|
||||||
|
*
|
||||||
|
* @return The name of this tag.
|
||||||
|
*/
|
||||||
|
public final String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of this tag.
|
||||||
|
*
|
||||||
|
* @return The value of this tag.
|
||||||
|
*/
|
||||||
|
public abstract Object getValue();
|
||||||
|
|
||||||
|
}
|
|
@ -111,7 +111,7 @@ public class mod_pocketDim
|
||||||
public static final ICommand removeAllLinksCommand = new CommandDeleteAllLinks();
|
public static final ICommand removeAllLinksCommand = new CommandDeleteAllLinks();
|
||||||
public static final ICommand deleteDimDataCommand = new CommandDeleteDimData();
|
public static final ICommand deleteDimDataCommand = new CommandDeleteDimData();
|
||||||
public static final ICommand addDungeonRift = new CommandAddDungeonRift();
|
public static final ICommand addDungeonRift = new CommandAddDungeonRift();
|
||||||
//public static final ICommand endDungeonCreation = new CommandEndDungeonCreation();
|
public static final ICommand endDungeonCreation = new CommandEndDungeonCreation();
|
||||||
public static final ICommand startDungeonCreation = new CommandStartDungeonCreation();
|
public static final ICommand startDungeonCreation = new CommandStartDungeonCreation();
|
||||||
|
|
||||||
|
|
||||||
|
@ -127,6 +127,8 @@ public class mod_pocketDim
|
||||||
public static int limboExitRange;
|
public static int limboExitRange;
|
||||||
// public static int railRenderID;
|
// public static int railRenderID;
|
||||||
|
|
||||||
|
public static String schematicContainer;
|
||||||
|
|
||||||
public static int itemStableFabricID;
|
public static int itemStableFabricID;
|
||||||
|
|
||||||
public static int itemStabilizedLinkSignatureID;
|
public static int itemStabilizedLinkSignatureID;
|
||||||
|
@ -285,6 +287,7 @@ public class mod_pocketDim
|
||||||
|
|
||||||
|
|
||||||
String schematicDir = configFile.getParent()+"/DimDoors_Custom_schematics";
|
String schematicDir = configFile.getParent()+"/DimDoors_Custom_schematics";
|
||||||
|
this.schematicContainer=schematicDir;
|
||||||
File file= new File(schematicDir);
|
File file= new File(schematicDir);
|
||||||
file.mkdir();
|
file.mkdir();
|
||||||
|
|
||||||
|
@ -772,6 +775,7 @@ public class mod_pocketDim
|
||||||
event.registerServerCommand(addDungeonRift);
|
event.registerServerCommand(addDungeonRift);
|
||||||
event.registerServerCommand(this.startDungeonCreation);
|
event.registerServerCommand(this.startDungeonCreation);
|
||||||
event.registerServerCommand(this.printDimData);
|
event.registerServerCommand(this.printDimData);
|
||||||
|
event.registerServerCommand(this.endDungeonCreation);
|
||||||
|
|
||||||
dimHelper.instance.load();
|
dimHelper.instance.load();
|
||||||
if(!dimHelper.dimList.containsKey(this.limboDimID))
|
if(!dimHelper.dimList.containsKey(this.limboDimID))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Adding dungeons is pretty simple, but you have to know the various flags and stuff I use to read them in and build them. Ill walk you through the process here, and provide all the flags and a breif description of what they mean here.
|
Adding dungeons is pretty simple, but you have to know the various flags and stuff I use to read them in and build them. Ill walk you through the process here, and provide all the flags and a breif description of what they mean here.
|
||||||
|
|
||||||
You will also need a copy of mcEdit to export your custom dungeons.
|
You will also need WorldEdit installed and running to export your dungeon.
|
||||||
|
|
||||||
To get started, run minecraft with DimDoors installed and type the following command-
|
To get started, run minecraft with DimDoors installed and type the following command-
|
||||||
|
|
||||||
|
@ -18,11 +18,9 @@ Any vanilla iron doors you place will become iron dim doors, and link to more du
|
||||||
|
|
||||||
If you want your dungeon to link back the overworld, place a vanilla wooden door on top of a sandstone block. This will mark it as an exit door, and it will gen as a wooden Dim door leading to the overworld (or whatever dim this chain started in)
|
If you want your dungeon to link back the overworld, place a vanilla wooden door on top of a sandstone block. This will mark it as an exit door, and it will gen as a wooden Dim door leading to the overworld (or whatever dim this chain started in)
|
||||||
|
|
||||||
Once you have finished creating your dungeon, close minecraft Close minecraft while you are STILL IN THE POCKET and open your pocketDimension save folder. Inside, find the pocket dimension you where building in by its ID. Copy this folder up one level (into your main world data save folder and rename it to DIM<id>.
|
Once you have finished creating your dungeon, use the world edit //wand command to give yourself a wand and select the pocket dimension for export. Copy this selection using //copy, and export it with //schematic mcedit <NameHere>.
|
||||||
|
|
||||||
|
|
||||||
Now using mcEdit, open the main world save and use the find player function to warp to that dimension. Select your pocket with mcEdit, and export this as an .schematic file.
|
|
||||||
|
|
||||||
Congratulations! You have finished the hard part. Now all you need to do is name you .schematic and drop it into the DimDoors_Custom_schematics folder that’s in the same directory as all your config files.
|
Congratulations! You have finished the hard part. Now all you need to do is name you .schematic and drop it into the DimDoors_Custom_schematics folder that’s in the same directory as all your config files.
|
||||||
|
|
||||||
To name it, use the following format-
|
To name it, use the following format-
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3.2 KiB |
Loading…
Reference in a new issue