From b691c43c44ff180d10e7d4a9afc83b98551ff586 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 1 Mar 2026 12:16:08 +0800 Subject: Initial commit --- Minecraft.World/ThrownEnderpearl.cpp | 62 ++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Minecraft.World/ThrownEnderpearl.cpp (limited to 'Minecraft.World/ThrownEnderpearl.cpp') diff --git a/Minecraft.World/ThrownEnderpearl.cpp b/Minecraft.World/ThrownEnderpearl.cpp new file mode 100644 index 00000000..1cddfb1f --- /dev/null +++ b/Minecraft.World/ThrownEnderpearl.cpp @@ -0,0 +1,62 @@ +#include "stdafx.h" +#include "net.minecraft.world.phys.h" +#include "net.minecraft.world.damagesource.h" +#include "net.minecraft.world.entity.h" +#include "net.minecraft.world.level.h" +#include "..\Minecraft.Client\ServerPlayer.h" +#include "..\Minecraft.Client\PlayerConnection.h" +#include "ThrownEnderpearl.h" + + + +ThrownEnderpearl::ThrownEnderpearl(Level *level) : Throwable(level) +{ + // 4J Stu - This function call had to be moved here from the Entity ctor to ensure that + // the derived version of the function is called + this->defineSynchedData(); +} + +ThrownEnderpearl::ThrownEnderpearl(Level *level, shared_ptr mob) : Throwable(level,mob) +{ + // 4J Stu - This function call had to be moved here from the Entity ctor to ensure that + // the derived version of the function is called + this->defineSynchedData(); +} + +ThrownEnderpearl::ThrownEnderpearl(Level *level, double x, double y, double z) : Throwable(level,x,y,z) +{ + // 4J Stu - This function call had to be moved here from the Entity ctor to ensure that + // the derived version of the function is called + this->defineSynchedData(); +} + +void ThrownEnderpearl::onHit(HitResult *res) +{ + if (res->entity != NULL) + { + DamageSource *damageSource = DamageSource::thrown(shared_from_this(), owner); + res->entity->hurt(damageSource, 0); + delete damageSource; + } + for (int i = 0; i < 32; i++) + { + level->addParticle(eParticleType_ender, x, y + random->nextDouble() * 2, z, random->nextGaussian(), 0, random->nextGaussian()); + } + + if (!level->isClientSide) + { + // Fix for #67486 - TCR #001: BAS Game Stability: Customer Encountered: TU8: Code: Gameplay: The title crashes on Host's console when Client Player leaves the game before the Ender Pearl thrown by him touches the ground. + // If the owner has been removed, then ignore + shared_ptr serverPlayer = dynamic_pointer_cast(owner); + if (serverPlayer != NULL && !serverPlayer->removed) + { + if(!serverPlayer->connection->done && serverPlayer->level == this->level) + { + owner->teleportTo(x, y, z); + owner->fallDistance = 0; + owner->hurt(DamageSource::fall, 5); + } + } + remove(); + } +} \ No newline at end of file -- cgit v1.2.3