2021-06-16 21:57:52 +02:00
|
|
|
package com.jozufozu.flywheel.util;
|
|
|
|
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import com.mojang.datafixers.util.Either;
|
|
|
|
import com.mojang.serialization.Codec;
|
|
|
|
|
|
|
|
public class CodecUtil {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a list codec that can be parsed from either a single element or a complete list.
|
|
|
|
*/
|
|
|
|
public static <T> Codec<List<T>> oneOrMore(Codec<T> codec) {
|
|
|
|
return Codec.either(codec.listOf(), codec)
|
2021-06-30 21:43:54 +02:00
|
|
|
.xmap(either -> either.map(l -> l, Collections::singletonList), list -> {
|
|
|
|
if (list.size() == 1) {
|
|
|
|
return Either.right(list.get(0));
|
2021-06-30 22:03:02 +02:00
|
|
|
} else {
|
2021-06-30 21:43:54 +02:00
|
|
|
return Either.left(list);
|
|
|
|
}
|
|
|
|
});
|
2021-06-16 21:57:52 +02:00
|
|
|
}
|
|
|
|
}
|