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

61 lines
2.6 KiB
Java
Raw Normal View History

2020-07-07 23:27:12 +00:00
/*
2022-01-01 19:03:05 +00:00
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
2020-07-07 23:27:12 +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:
2020-07-07 23:27:12 +00:00
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
2020-07-07 23:27:12 +00:00
*
* 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.
2020-07-07 23:27:12 +00:00
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
2020-07-07 23:27:12 +00:00
*/
package org.geysermc.geyser.entity.type.living;
2020-07-07 23:27:12 +00:00
import com.nukkitx.math.vector.Vector3f;
import com.nukkitx.protocol.bedrock.data.entity.EntityData;
2022-05-07 19:13:11 +00:00
import org.geysermc.geyser.entity.GeyserEntityDefinition;
2021-11-22 19:52:26 +00:00
import org.geysermc.geyser.session.GeyserSession;
2020-07-07 23:27:12 +00:00
2021-11-18 03:02:38 +00:00
import java.util.UUID;
2020-07-07 23:27:12 +00:00
public class MagmaCubeEntity extends SlimeEntity {
2022-05-07 19:13:11 +00:00
public MagmaCubeEntity(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-07-07 23:27:12 +00:00
}
@Override
2021-11-18 03:02:38 +00:00
public void moveRelative(double relX, double relY, double relZ, float yaw, float pitch, float headYaw, boolean isOnGround) {
updateJump(isOnGround);
super.moveRelative(relX, relY, relZ, yaw, pitch, headYaw, isOnGround);
2020-07-07 23:27:12 +00:00
}
@Override
2021-11-18 03:02:38 +00:00
public void moveAbsolute(Vector3f position, float yaw, float pitch, float headYaw, boolean isOnGround, boolean teleported) {
updateJump(isOnGround);
super.moveAbsolute(position, yaw, pitch, headYaw, isOnGround, teleported);
2020-07-07 23:27:12 +00:00
}
2021-11-18 03:02:38 +00:00
public void updateJump(boolean newOnGround) {
2020-07-07 23:27:12 +00:00
if (newOnGround != onGround) {
// Add the jumping effect to the magma cube
2021-11-18 03:02:38 +00:00
dirtyMetadata.put(EntityData.CLIENT_EVENT, (byte) (newOnGround ? 1 : 2));
updateBedrockMetadata();
2020-07-07 23:27:12 +00:00
}
}
}