Geyser/core/src/main/java/org/geysermc/geyser/entity/type/living/monster/EndermanEntity.java

74 lines
3.3 KiB
Java
Raw Normal View History

2020-04-15 01:52:25 +00:00
/*
2022-01-01 19:03:05 +00:00
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
2020-04-15 01:52:25 +00:00
*
* 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.geyser.entity.type.living.monster;
2020-04-14 20:58:41 +00:00
2021-11-18 03:02:38 +00:00
import com.github.steveice10.mc.protocol.data.game.entity.metadata.type.BooleanEntityMetadata;
2023-03-11 01:51:51 +00:00
import com.github.steveice10.mc.protocol.data.game.entity.metadata.type.IntEntityMetadata;
2022-10-30 00:23:21 +00:00
import org.cloudburstmc.math.vector.Vector3f;
import org.cloudburstmc.protocol.bedrock.data.SoundEvent;
import org.cloudburstmc.protocol.bedrock.data.defintions.BlockDefinition;
2022-10-30 00:23:21 +00:00
import org.cloudburstmc.protocol.bedrock.data.entity.EntityDataTypes;
import org.cloudburstmc.protocol.bedrock.data.entity.EntityFlag;
import org.cloudburstmc.protocol.bedrock.packet.LevelSoundEvent2Packet;
import org.geysermc.geyser.entity.GeyserEntityDefinition;
2021-11-22 19:52:26 +00:00
import org.geysermc.geyser.session.GeyserSession;
2020-04-14 20:58:41 +00:00
2021-11-18 03:02:38 +00:00
import java.util.UUID;
2020-04-14 20:58:41 +00:00
public class EndermanEntity extends MonsterEntity {
public EndermanEntity(GeyserSession session, int entityId, long geyserId, UUID uuid, GeyserEntityDefinition<?> definition, Vector3f position, Vector3f motion, float yaw, float pitch, float headYaw) {
2021-11-18 03:02:38 +00:00
super(session, entityId, geyserId, uuid, definition, position, motion, yaw, pitch, headYaw);
2020-04-14 20:58:41 +00:00
}
2023-03-11 01:51:51 +00:00
public void setCarriedBlock(IntEntityMetadata entityMetadata) {
BlockDefinition bedrockBlockId = session.getBlockMappings().getBedrockBlock(entityMetadata.getPrimitiveValue());
2022-11-22 22:13:59 +00:00
dirtyMetadata.put(EntityDataTypes.CARRY_BLOCK_STATE, bedrockBlockId);
2021-11-18 03:02:38 +00:00
}
/**
* Controls the screaming sound
*/
public void setScreaming(BooleanEntityMetadata entityMetadata) {
2021-11-18 03:02:38 +00:00
//TODO see if Bedrock controls this differently
// Java Edition this controls which ambient sound is used
if (entityMetadata.getPrimitiveValue()) {
2021-11-18 03:02:38 +00:00
LevelSoundEvent2Packet packet = new LevelSoundEvent2Packet();
packet.setSound(SoundEvent.STARE);
packet.setPosition(this.position);
packet.setExtraData(-1);
packet.setIdentifier("minecraft:enderman");
session.sendUpstreamPacket(packet);
}
2021-11-18 03:02:38 +00:00
}
public void setAngry(BooleanEntityMetadata entityMetadata) {
// "Is staring/provoked" - controls visuals
setFlag(EntityFlag.ANGRY, entityMetadata.getPrimitiveValue());
2020-04-14 20:58:41 +00:00
}
}