Unicopia/src/main/java/com/minelittlepony/unicopia/util/NbtSerialisable.java

49 lines
1.1 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.util;
2020-01-16 12:35:46 +01:00
import net.minecraft.nbt.CompoundTag;
import net.minecraft.util.math.BlockPos;
2020-04-15 18:12:00 +02:00
public interface NbtSerialisable {
2020-01-16 12:35:46 +01:00
/**
* Called to save this to nbt to persist state on file or to transmit over the network
*
* @param compound Compound tag to write to.
*/
default void toNBT(CompoundTag compound) {
}
/**
* Called to load this state from nbt
*
* @param compound Compound tag to read from.
*/
default void fromNBT(CompoundTag compound) {
}
default CompoundTag toNBT() {
CompoundTag compound = new CompoundTag();
toNBT(compound);
return compound;
}
static CompoundTag writeBlockPos(BlockPos pos) {
CompoundTag dest = new CompoundTag();
dest.putInt("X", pos.getX());
dest.putInt("Y", pos.getY());
dest.putInt("Z", pos.getZ());
return dest;
}
static BlockPos readBlockPos(CompoundTag compound) {
return new BlockPos(
compound.getInt("X"),
compound.getInt("Y"),
compound.getInt("Z")
);
}
}