1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package moe.nea.firmament.apis.ingame
import net.minecraft.network.PacketByteBuf
import net.minecraft.network.codec.PacketCodec
import net.minecraft.network.packet.CustomPayload
class InGameCodecWrapper(
val wrapped: PacketCodec<PacketByteBuf, CustomPayload>,
val direction: Direction,
) : PacketCodec<PacketByteBuf, CustomPayload> {
enum class Direction {
S2C,
C2S,
;
var customCodec: PacketCodec<PacketByteBuf, FirmamentCustomPayload> = createStealthyCodec()
}
companion object {
fun createStealthyCodec(vararg codecs: CustomPayload.Type<PacketByteBuf, out FirmamentCustomPayload>): PacketCodec<PacketByteBuf, FirmamentCustomPayload> {
return CustomPayload.createCodec(
{ FirmamentCustomPayload.Unhandled.createCodec(it) },
codecs.toList()
) as PacketCodec<PacketByteBuf, FirmamentCustomPayload>
}
}
override fun decode(buf: PacketByteBuf): CustomPayload {
val duplicateBuffer = PacketByteBuf(buf.slice())
val original = wrapped.decode(buf)
buf.skipBytes(buf.readableBytes())
val duplicate = runCatching { direction.customCodec.decode(duplicateBuffer) }
.getOrNull()
if (duplicate is FirmamentCustomPayload.Unhandled || duplicate == null)
return original
return JoinedCustomPayload(original, duplicate)
}
override fun encode(buf: PacketByteBuf, value: CustomPayload) {
if (value is FirmamentCustomPayload) {
direction.customCodec.encode(buf, value)
} else {
wrapped.encode(buf, value)
}
}
}
|