Handle dust particle rgb type change

This commit is contained in:
KennyTV 2020-12-09 12:42:11 +01:00
parent 9e4718abc3
commit 54dcb32232
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
2 changed files with 26 additions and 14 deletions

View File

@ -56,7 +56,7 @@ public class BlockItemPackets1_17 extends nl.matsv.viabackwards.api.rewriters.It
protocol.registerOutgoing(ClientboundPackets1_17.SPAWN_PARTICLE, new PacketRemapper() {
@Override
public void registerMap() {
map(Type.INT); // Particle Id
map(Type.INT); // Particle id
map(Type.BOOLEAN); // Long distance
map(Type.DOUBLE); // X
map(Type.DOUBLE); // Y
@ -68,16 +68,18 @@ public class BlockItemPackets1_17 extends nl.matsv.viabackwards.api.rewriters.It
map(Type.INT); // Particle count
handler(wrapper -> {
int id = wrapper.get(Type.INT, 0);
if (id == 15) {
// Dust color transition -> Dust
wrapper.passthrough(Type.DOUBLE); // R
wrapper.passthrough(Type.DOUBLE); // G
wrapper.passthrough(Type.DOUBLE); // B
if (id == 14 || id == 15) {
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // R
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // G
wrapper.write(Type.FLOAT, wrapper.read(Type.DOUBLE).floatValue()); // B
wrapper.passthrough(Type.FLOAT); // Scale
wrapper.read(Type.DOUBLE); // R
wrapper.read(Type.DOUBLE); // G
wrapper.read(Type.DOUBLE); // B
if (id == 15) {
// Dust color transition -> Dust
wrapper.read(Type.DOUBLE); // R
wrapper.read(Type.DOUBLE); // G
wrapper.read(Type.DOUBLE); // B
}
} else if (id == 36) {
// Vibration signal - no nice mapping possible without tracking entity positions and doing particle tasks
wrapper.cancel();

View File

@ -82,13 +82,23 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
}
} else if (type == MetaType1_14.PARTICLE) {
Particle particle = (Particle) meta.getValue();
if (particle.getId() == 15) {
// Remove target color values 4-6
particle.getArguments().subList(4, 7).clear();
} else if (particle.getId() == 36) {
// Vibration signal - no nice mapping possible without tracking entity positions and doing particle tasks
if (particle.getId() == 14 || particle.getId() == 15) { // Dust / Dust Transition
// RGB is encoded as doubles in 1.17
for (int i = 0; i < 3; i++) {
Particle.ParticleData data = particle.getArguments().get(i);
data.setValue(((Number) data.getValue()).floatValue());
data.setType(Type.FLOAT);
}
if (particle.getId() == 15) {
// Remove transition target color values 4-6
particle.getArguments().subList(4, 7).clear();
}
} else if (particle.getId() == 36) { // Vibration Signal
// No nice mapping possible without tracking entity positions and doing particle tasks
particle.setId(0);
particle.getArguments().clear();
return meta;
}
rewriteParticle(particle);