mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-23 23:38:41 +01:00
Fixed Villager Position when Sleeping (#933)
* Update Entity.java * Switched to VillagerEntity.java and added indents and whitespace * Fix indents and whitespace and changed to pattern and matcher * Clean up indentation problems Co-authored-by: Savagetechguy <jakehorner@gmail.com> Co-authored-by: Redned <redned235@gmail.com>
This commit is contained in:
parent
3e0cb28a63
commit
4daa568311
1 changed files with 64 additions and 0 deletions
|
@ -27,12 +27,20 @@ package org.geysermc.connector.entity.living.merchant;
|
||||||
|
|
||||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
|
import com.github.steveice10.mc.protocol.data.game.entity.metadata.EntityMetadata;
|
||||||
import com.github.steveice10.mc.protocol.data.game.entity.metadata.VillagerData;
|
import com.github.steveice10.mc.protocol.data.game.entity.metadata.VillagerData;
|
||||||
|
import com.github.steveice10.mc.protocol.data.game.entity.metadata.Position;
|
||||||
import com.nukkitx.math.vector.Vector3f;
|
import com.nukkitx.math.vector.Vector3f;
|
||||||
import com.nukkitx.protocol.bedrock.data.entity.EntityData;
|
import com.nukkitx.protocol.bedrock.data.entity.EntityData;
|
||||||
|
import com.nukkitx.protocol.bedrock.data.entity.EntityFlag;
|
||||||
|
import com.nukkitx.protocol.bedrock.data.entity.EntityFlags;
|
||||||
|
import com.nukkitx.protocol.bedrock.packet.*;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2IntMap;
|
import it.unimi.dsi.fastutil.ints.Int2IntMap;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
||||||
import org.geysermc.connector.entity.type.EntityType;
|
import org.geysermc.connector.entity.type.EntityType;
|
||||||
import org.geysermc.connector.network.session.GeyserSession;
|
import org.geysermc.connector.network.session.GeyserSession;
|
||||||
|
import org.geysermc.connector.network.translators.world.WorldManager;
|
||||||
|
import org.geysermc.connector.network.translators.world.block.BlockTranslator;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
public class VillagerEntity extends AbstractMerchantEntity {
|
public class VillagerEntity extends AbstractMerchantEntity {
|
||||||
|
|
||||||
|
@ -84,4 +92,60 @@ public class VillagerEntity extends AbstractMerchantEntity {
|
||||||
}
|
}
|
||||||
super.updateBedrockMetadata(entityMetadata, session);
|
super.updateBedrockMetadata(entityMetadata, session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void moveRelative(GeyserSession session, double relX, double relY, double relZ, Vector3f rotation, boolean isOnGround) {
|
||||||
|
int z = 0;
|
||||||
|
int bedId = 0;
|
||||||
|
float bedPositionSubtractorW = 0;
|
||||||
|
float bedPositionSubtractorN = 0;
|
||||||
|
if (session.getConnector().getConfig().isCacheChunks()) {
|
||||||
|
Position bedLocation = new Position((int) position.getFloorX(), (int) position.getFloorY(), (int) position.getFloorZ());
|
||||||
|
bedId = session.getConnector().getWorldManager().getBlockAt(session, bedLocation);
|
||||||
|
}
|
||||||
|
String bedRotationZ = BlockTranslator.getJavaIdBlockMap().inverse().get(bedId);
|
||||||
|
setRotation(rotation);
|
||||||
|
setOnGround(isOnGround);
|
||||||
|
this.position = Vector3f.from(position.getX() + relX, position.getY() + relY, position.getZ() + relZ);
|
||||||
|
|
||||||
|
MoveEntityAbsolutePacket moveEntityPacket = new MoveEntityAbsolutePacket();
|
||||||
|
moveEntityPacket.setRuntimeEntityId(geyserId);
|
||||||
|
//Sets Villager position and rotation when sleeping
|
||||||
|
if (!metadata.getFlags().getFlag(EntityFlag.SLEEPING)) {
|
||||||
|
moveEntityPacket.setPosition(position);
|
||||||
|
moveEntityPacket.setRotation(getBedrockRotation());
|
||||||
|
} else {
|
||||||
|
//String Setup
|
||||||
|
Pattern r = Pattern.compile("facing=([a-z]+)");
|
||||||
|
Matcher m = r.matcher(bedRotationZ);
|
||||||
|
if (m.find()) {
|
||||||
|
switch (m.group(0)){
|
||||||
|
case "facing=south":
|
||||||
|
//bed is facing south
|
||||||
|
z = 180;
|
||||||
|
bedPositionSubtractorW = -.5f;
|
||||||
|
break;
|
||||||
|
case "facing=east":
|
||||||
|
//bed is facing east
|
||||||
|
z = 90;
|
||||||
|
bedPositionSubtractorW = -.5f;
|
||||||
|
break;
|
||||||
|
case "facing=west":
|
||||||
|
//bed is facing west
|
||||||
|
z = 270;
|
||||||
|
bedPositionSubtractorW = .5f;
|
||||||
|
break;
|
||||||
|
case "facing=north":
|
||||||
|
//rotation does not change because north is 0
|
||||||
|
bedPositionSubtractorN = .5f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
moveEntityPacket.setRotation(Vector3f.from(0, 0, z));
|
||||||
|
moveEntityPacket.setPosition(Vector3f.from(position.getX() + bedPositionSubtractorW, position.getY(), position.getZ() + bedPositionSubtractorN));
|
||||||
|
}
|
||||||
|
moveEntityPacket.setOnGround(isOnGround);
|
||||||
|
moveEntityPacket.setTeleported(false);
|
||||||
|
session.sendUpstreamPacket(moveEntityPacket);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue