2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.util;
|
2020-01-16 12:35:46 +01:00
|
|
|
|
2022-09-04 14:16:47 +02:00
|
|
|
import java.util.*;
|
|
|
|
import java.util.function.Function;
|
|
|
|
import java.util.stream.Stream;
|
2021-08-23 13:42:04 +02:00
|
|
|
|
2022-09-04 14:16:47 +02:00
|
|
|
import net.minecraft.nbt.*;
|
2021-08-23 13:42:04 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2021-03-03 19:04:40 +01:00
|
|
|
import net.minecraft.util.math.Vec3d;
|
2020-01-16 12:35:46 +01:00
|
|
|
|
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.
|
|
|
|
*/
|
2021-12-23 17:52:40 +01:00
|
|
|
void toNBT(NbtCompound compound);
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to load this state from nbt
|
|
|
|
*
|
|
|
|
* @param compound Compound tag to read from.
|
|
|
|
*/
|
2021-12-23 17:52:40 +01:00
|
|
|
void fromNBT(NbtCompound compound);
|
2020-01-16 12:35:46 +01:00
|
|
|
|
2021-08-04 15:38:03 +02:00
|
|
|
default NbtCompound toNBT() {
|
|
|
|
NbtCompound compound = new NbtCompound();
|
2020-01-16 12:35:46 +01:00
|
|
|
toNBT(compound);
|
|
|
|
return compound;
|
|
|
|
}
|
|
|
|
|
2021-08-04 15:38:03 +02:00
|
|
|
static NbtList writeVector(Vec3d vector) {
|
|
|
|
NbtList list = new NbtList();
|
|
|
|
list.add(NbtDouble.of(vector.getX()));
|
|
|
|
list.add(NbtDouble.of(vector.getY()));
|
|
|
|
list.add(NbtDouble.of(vector.getZ()));
|
2021-03-03 19:04:40 +01:00
|
|
|
return list;
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|
|
|
|
|
2021-08-04 15:38:03 +02:00
|
|
|
static Vec3d readVector(NbtList list) {
|
2021-03-03 19:04:40 +01:00
|
|
|
return new Vec3d(list.getDouble(0), list.getDouble(1), list.getDouble(2));
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|
2021-08-23 13:42:04 +02:00
|
|
|
|
|
|
|
static void writeBlockPos(String name, Optional<BlockPos> pos, NbtCompound nbt) {
|
2022-09-19 17:33:38 +02:00
|
|
|
pos.map(NbtHelper::fromBlockPos).ifPresent(p -> nbt.put(name, p));
|
2021-08-23 13:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static Optional<BlockPos> readBlockPos(String name, NbtCompound nbt) {
|
|
|
|
return nbt.contains(name) ? Optional.ofNullable(NbtHelper.toBlockPos(nbt.getCompound(name))) : Optional.empty();
|
|
|
|
}
|
2022-09-04 14:16:47 +02:00
|
|
|
|
|
|
|
interface Serializer<T> {
|
|
|
|
T read(NbtCompound compound);
|
|
|
|
|
|
|
|
NbtCompound write(T t);
|
|
|
|
|
|
|
|
default T read(NbtElement element) {
|
|
|
|
return read((NbtCompound)element);
|
|
|
|
}
|
|
|
|
|
|
|
|
default NbtList writeAll(Collection<T> ts) {
|
|
|
|
NbtList list = new NbtList();
|
|
|
|
ts.stream().map(this::write).forEach(list::add);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
default Stream<T> readAll(NbtList list) {
|
|
|
|
return list.stream().map(this::read).filter(Objects::nonNull);
|
|
|
|
}
|
|
|
|
|
|
|
|
static <T> Serializer<T> of(Function<NbtCompound, T> read, Function<T, NbtCompound> write) {
|
|
|
|
return new Serializer<>() {
|
|
|
|
@Override
|
|
|
|
public T read(NbtCompound compound) {
|
|
|
|
return read.apply(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public NbtCompound write(T t) {
|
|
|
|
return write.apply(t);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2020-01-16 12:35:46 +01:00
|
|
|
}
|