Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/querz/nbt

A java implementation of the NBT protocol, including a way to implement custom tags.
https://github.com/querz/nbt

compression customizable deserialization java java-library mca mca-file mca-files mca-region minecraft nbt nbt-parser nbt-protocol nbt-structure serialization

Last synced: 3 days ago
JSON representation

A java implementation of the NBT protocol, including a way to implement custom tags.

Awesome Lists containing this project

README

        

# NBT
[![Build Status](https://travis-ci.org/Querz/NBT.svg?branch=master)](https://travis-ci.org/Querz/NBT) [![Coverage Status](https://img.shields.io/coveralls/github/Querz/NBT/master.svg)](https://coveralls.io/github/Querz/NBT?branch=master) [![Release](https://jitpack.io/v/Querz/NBT.svg)](https://jitpack.io/#Querz/NBT)
#### A java implementation of the [NBT protocol](https://minecraft.gamepedia.com/NBT_format) for Minecraft Java Edition.
---
### Specification
According to the [specification](https://minecraft.gamepedia.com/NBT_format), there are currently 13 different types of tags:

| Tag class | Superclass | ID | Payload |
| --------- | ---------- | -- | ----------- |
| [EndTag](src/main/java/net/querz/nbt/tag/EndTag.java) | [Tag](src/main/java/net/querz/nbt/tag/Tag.java) | 0 | None |
| [ByteTag](src/main/java/net/querz/nbt/tag/ByteTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 1 | 1 byte / 8 bits, signed |
| [ShortTag](src/main/java/net/querz/nbt/tag/ShortTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 2 | 2 bytes / 16 bits, signed, big endian |
| [IntTag](src/main/java/net/querz/nbt/tag/IntTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 3 | 4 bytes / 32 bits, signed, big endian |
| [LongTag](src/main/java/net/querz/nbt/tag/LongTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 4 | 8 bytes / 64 bits, signed, big endian |
| [FloatTag](src/main/java/net/querz/nbt/tag/FloatTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 5 | 4 bytes / 32 bits, signed, big endian, IEEE 754-2008, binary32 |
| [DoubleTag](src/main/java/net/querz/nbt/tag/DoubleTag.java) | [NumberTag](src/main/java/net/querz/nbt/tag/NumberTag.java) | 6 | 8 bytes / 64 bits, signed, big endian, IEEE 754-2008, binary64 |
| [ByteArrayTag](src/main/java/net/querz/nbt/tag/ByteArrayTag.java) | [ArrayTag](src/main/java/net/querz/nbt/tag/ArrayTag.java) | 7 | `IntTag` payload *size*, then *size* `ByteTag` payloads |
| [StringTag](src/main/java/net/querz/nbt/tag/StringTag.java) | [Tag](src/main/java/net/querz/nbt/tag/Tag.java) | 8 | `ShortTag` payload *length*, then a UTF-8 string with size *length* |
| [ListTag](src/main/java/net/querz/nbt/tag/ListTag.java) | [Tag](src/main/java/net/querz/nbt/tag/Tag.java) | 9 | `ByteTag` payload *tagId*, then `IntTag` payload *size*, then *size* tags' payloads, all of type *tagId* |
| [CompoundTag](src/main/java/net/querz/nbt/tag/CompoundTag.java) | [Tag](src/main/java/net/querz/nbt/tag/Tag.java) | 10 | Fully formed tags, followed by an `EndTag` |
| [IntArrayTag](src/main/java/net/querz/nbt/tag/IntArrayTag.java) | [ArrayTag](src/main/java/net/querz/nbt/tag/ArrayTag.java) | 11 | `IntTag` payload *size*, then *size* `IntTag` payloads |
| [LongArrayTag](src/main/java/net/querz/nbt/tag/LongArrayTag.java) | [ArrayTag](src/main/java/net/querz/nbt/tag/ArrayTag.java) | 12 | `IntTag` payload *size*, then *size* `LongTag` payloads |

* The `EndTag` is only used to mark the end of a `CompoundTag` in its serialized state or an empty `ListTag`.

* The maximum depth of the NBT structure is 512. If the depth exceeds this restriction during serialization, deserialization or String conversion, a `MaxDepthReachedException` is thrown. This usually happens when a circular reference exists in the NBT structure. The NBT specification does not allow circular references, as there is no tag to represent this.

### Add the library as a dependency using Gradle:
Add Jitpack to your `repositories`:
```
repositories {
...
maven { url 'https://jitpack.io/' }
}
```
And then add it as a dependency as usual:
```
dependencies {
...
implementation 'com.github.Querz:NBT:6.1'
}
```

### Add the library as a dependency using Maven:
Add Jitpack:
```


jitpack.io
https://jitpack.io

```
Dependency:
```

com.github.Querz
NBT
6.1

```

---
### Example usage:
The following code snippet shows how to create a `CompoundTag`:
```java
CompoundTag ct = new CompoundTag();

ct.put("byte", new ByteTag((byte) 1));
ct.put("double", new DoubleTag(1.234));
ct.putString("string", "stringValue");
```
An example how to use a `ListTag`:
```java
ListTag fl = new ListTag<>(FloatTag.class);

fl.add(new FloatTag(1.234f);
fl.addFloat(5.678f);
```

#### Nesting
All methods serializing instances or deserializing data track the nesting levels to prevent circular references or malicious data which could, when deserialized, result in thousands of instances causing a denial of service.

These methods have a parameter for the maximum nesting depth they are allowed to traverse. A value of `0` means that only the object itself, but no nested object may be processed.

If an instance is nested further than allowed, a [MaxDepthReachedException](src/main/java/net/querz/nbt/MaxDepthReachedException.java) will be thrown. A negative maximum depth will cause an `IllegalArgumentException`.

Some methods do not provide a parameter to specify the maximum depth, but instead use `Tag.DEFAULT_MAX_DEPTH` (`512`) which is also the maximum used in Minecraft.

---
### Utility
There are several utility methods to make your life easier if you use this library.
#### NBTUtil
`NBTUtil.write()` lets you write a Tag into a gzip compressed or uncompressed file in one line (not counting exception handling). Files are gzip compressed by default.

Example usage:
```java
NBTUtil.write(namedTag, "filename.dat");
```
`NBTUtil.read()` reads any file containing NBT data. No worry about compression, it will automatically uncompress gzip compressed files.

Example usage:
```java
NamedTag namedTag = NBTUtil.read("filename.dat");
```
#### Playing Minecraft?
Each tag can be converted into an NBT String (SNBT) used in Minecraft commands.

Example usage:
```java
CompoundTag c = new CompoundTag();
c.putByte("blah", (byte) 5);
c.putString("foo", "bär");
ListTag s = new ListTag<>(StringTag.class);
s.addString("test");
s.add(new StringTag("text"));
c.add("list", s);
System.out.println(SNBTUtil.toSNBT(c)); // {blah:5b,foo:"bär",list:[test,text]}

```
There is also a tool to read, change and write MCA files.

Here are some examples:
```java
// This changes the InhabitedTime field of the chunk at x=68, z=81 to 0
MCAFile mcaFile = MCAUtil.readMCAFile("r.2.2.mca");
Chunk chunk = mcaFile.getChunk(68, 81);
chunk.setInhabitedTime(0);
MCAUtil.writeMCAFile("r.2.2.mca", mcaFile);
```
There is also an optimized api to retrieve and set block information (BlockStates) in MCA files.

Example:
```java
// Retrieves block information from the MCA file
CompoundTag blockState = mcaFile.getBlockStateAt(1090, 25, 1301);

// Retrieves block information from a single chunk
CompoundTag blockState = chunk.getBlockStateAt(2, 25, 5);

// Set block information
CompoundTag stone = new CompoundTag();
stone.putString("Name", "minecraft:stone");
mcaFile.setBlockStateAt(1090, 25, 1301, stone, false);
```
To ensure good performance even when setting a lot of blocks and / or editing sections with a huge palette of block states, the size of the BlockStates array is only updated when the size of the palette requires it. This means there might be blocks in the palette that are not actually used in the BlockStates array.
You can trigger a cleanup process by calling one of the following three methods, depending on the desired depth:
```java
mcaFile.cleanupPalettesAndBlockStates();
chunk.cleanupPalettesAndBlockStates();
section.cleanupPaletteAndBlockStates();
```