Geyser/connector/src/main/java/org/geysermc/connector/entity/Entity.java

183 lines
7.2 KiB
Java
Raw Normal View History

2019-08-03 03:38:09 +00:00
/*
* Copyright (c) 2019 GeyserMC. http://geysermc.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
package org.geysermc.connector.entity;
import com.flowpowered.math.vector.Vector3f;
2019-08-06 06:38:03 +00:00
import com.github.steveice10.mc.protocol.packet.ingame.server.entity.ServerEntityPropertiesPacket;
2019-08-03 03:38:09 +00:00
import com.nukkitx.protocol.bedrock.data.EntityData;
import com.nukkitx.protocol.bedrock.data.EntityDataDictionary;
2019-09-13 10:49:18 +00:00
import com.nukkitx.protocol.bedrock.data.EntityFlag;
import com.nukkitx.protocol.bedrock.data.EntityFlags;
2019-08-03 03:38:09 +00:00
import com.nukkitx.protocol.bedrock.packet.AddEntityPacket;
import com.nukkitx.protocol.bedrock.packet.RemoveEntityPacket;
2019-08-06 06:38:03 +00:00
import com.nukkitx.protocol.bedrock.packet.UpdateAttributesPacket;
2019-08-03 03:38:09 +00:00
import lombok.Getter;
import lombok.Setter;
2019-08-03 06:51:05 +00:00
import org.geysermc.connector.console.GeyserLogger;
2019-08-06 06:38:03 +00:00
import org.geysermc.connector.entity.attribute.Attribute;
import org.geysermc.connector.entity.attribute.AttributeType;
2019-08-03 03:38:09 +00:00
import org.geysermc.connector.entity.type.EntityType;
import org.geysermc.connector.network.session.GeyserSession;
2019-08-06 06:38:03 +00:00
import org.geysermc.connector.utils.AttributeUtils;
2019-08-03 03:38:09 +00:00
2019-09-13 10:49:18 +00:00
import java.util.*;
2019-08-03 03:38:09 +00:00
@Getter
@Setter
public class Entity {
protected long entityId;
protected long geyserId;
protected int dimension;
protected Vector3f position;
protected Vector3f motion;
2019-08-03 06:51:05 +00:00
// 1 - pitch, 2 - yaw, 3 - roll (head yaw)
2019-08-03 03:38:09 +00:00
protected Vector3f rotation;
protected int scale = 1;
2019-08-03 06:51:05 +00:00
protected boolean movePending;
2019-08-03 03:38:09 +00:00
protected EntityType entityType;
protected boolean valid;
2019-08-03 06:51:05 +00:00
protected Set<Long> passengers = new HashSet<Long>();
2019-08-06 06:38:03 +00:00
protected Map<AttributeType, Attribute> attributes = new HashMap<AttributeType, Attribute>();
2019-08-03 03:38:09 +00:00
public Entity(long entityId, long geyserId, EntityType entityType, Vector3f position, Vector3f motion, Vector3f rotation) {
this.entityId = entityId;
this.geyserId = geyserId;
this.entityType = entityType;
this.position = position;
this.motion = motion;
this.rotation = rotation;
this.valid = false;
2019-08-03 06:51:05 +00:00
this.movePending = false;
2019-08-03 03:38:09 +00:00
}
public void spawnEntity(GeyserSession session) {
AddEntityPacket addEntityPacket = new AddEntityPacket();
2019-08-03 06:51:05 +00:00
addEntityPacket.setIdentifier("minecraft:" + entityType.name().toLowerCase());
2019-08-03 03:38:09 +00:00
addEntityPacket.setRuntimeEntityId(geyserId);
2019-08-03 06:51:05 +00:00
addEntityPacket.setUniqueEntityId(geyserId);
2019-08-03 03:38:09 +00:00
addEntityPacket.setPosition(position);
addEntityPacket.setMotion(motion);
addEntityPacket.setRotation(rotation);
addEntityPacket.setEntityType(entityType.getType());
2019-08-03 06:51:05 +00:00
addEntityPacket.getMetadata().putAll(getMetadata());
2019-08-03 03:38:09 +00:00
valid = true;
2019-08-03 06:51:05 +00:00
session.getUpstream().sendPacket(addEntityPacket);
GeyserLogger.DEFAULT.debug("Spawned entity " + entityType + " at location " + position + " with id " + geyserId + " (java id " + entityId + ")");
2019-08-03 03:38:09 +00:00
}
public void despawnEntity(GeyserSession session) {
if (!valid)
return;
RemoveEntityPacket removeEntityPacket = new RemoveEntityPacket();
2019-08-03 06:51:05 +00:00
removeEntityPacket.setUniqueEntityId(geyserId);
2019-08-03 03:38:09 +00:00
session.getUpstream().sendPacket(removeEntityPacket);
}
public void moveRelative(double relX, double relY, double relZ, float pitch, float yaw) {
2019-08-03 06:51:05 +00:00
moveRelative(relX, relY, relZ, new Vector3f(pitch, yaw, 0));
}
2019-08-03 03:38:09 +00:00
2019-08-03 06:51:05 +00:00
public void moveRelative(double relX, double relY, double relZ, Vector3f rotation) {
if (relX == 0 && relY != 0 && relZ != 0 && position.getX() == 0 && position.getY() == 0)
return;
2019-08-03 03:38:09 +00:00
2019-08-03 06:51:05 +00:00
this.rotation = rotation;
2019-08-03 03:38:09 +00:00
this.position = new Vector3f(position.getX() + relX, position.getX() + relY, position.getX() + relZ);
2019-08-03 06:51:05 +00:00
this.movePending = true;
2019-08-03 03:38:09 +00:00
}
public void moveAbsolute(Vector3f position, float pitch, float yaw) {
2019-08-03 06:51:05 +00:00
moveAbsolute(position, new Vector3f(pitch, yaw, 0));
}
public void moveAbsolute(Vector3f position, Vector3f rotation) {
if (position.getX() == 0 && position.getX() != 0 && position.getX() != 0 && rotation.getX() == 0 && rotation.getY() == 0)
2019-08-03 03:38:09 +00:00
return;
this.position = position;
2019-08-03 06:51:05 +00:00
this.rotation = rotation;
this.movePending = true;
2019-08-03 03:38:09 +00:00
}
2019-08-03 06:51:05 +00:00
public EntityDataDictionary getMetadata() {
2019-09-13 10:49:18 +00:00
EntityFlags flags = new EntityFlags();
flags.setFlag(EntityFlag.HAS_GRAVITY, true);
2019-08-03 03:38:09 +00:00
EntityDataDictionary dictionary = new EntityDataDictionary();
dictionary.put(EntityData.NAMETAG, "");
dictionary.put(EntityData.ENTITY_AGE, 0);
dictionary.put(EntityData.SCALE, 1f);
dictionary.put(EntityData.MAX_AIR, (short) 400);
dictionary.put(EntityData.AIR, (short) 0);
dictionary.put(EntityData.BOUNDING_BOX_HEIGHT, entityType.getHeight());
dictionary.put(EntityData.BOUNDING_BOX_WIDTH, entityType.getWidth());
2019-09-13 10:49:18 +00:00
dictionary.putFlags(flags);
2019-08-03 03:38:09 +00:00
return dictionary;
}
2019-08-06 06:38:03 +00:00
public void updateBedrockAttributes(GeyserSession session) {
List<com.nukkitx.protocol.bedrock.data.Attribute> attributes = new ArrayList<>();
for (Map.Entry<AttributeType, Attribute> entry : this.attributes.entrySet()) {
if (!entry.getValue().getType().isBedrockAttribute())
continue;
attributes.add(AttributeUtils.getBedrockAttribute(entry.getValue()));
}
UpdateAttributesPacket updateAttributesPacket = new UpdateAttributesPacket();
updateAttributesPacket.setRuntimeEntityId(geyserId);
updateAttributesPacket.setAttributes(attributes);
session.getUpstream().sendPacket(updateAttributesPacket);
}
// To be used at a later date
public void updateJavaAttributes(GeyserSession session) {
List<com.github.steveice10.mc.protocol.data.game.entity.attribute.Attribute> attributes = new ArrayList<>();
for (Map.Entry<AttributeType, Attribute> entry : this.attributes.entrySet()) {
if (!entry.getValue().getType().isBedrockAttribute())
continue;
attributes.add(AttributeUtils.getJavaAttribute(entry.getValue()));
}
ServerEntityPropertiesPacket entityPropertiesPacket = new ServerEntityPropertiesPacket((int) entityId, attributes);
session.getDownstream().getSession().send(entityPropertiesPacket);
}
2019-08-03 03:38:09 +00:00
}