aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ThrownEnderpearl.cpp
diff options
context:
space:
mode:
authordaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
committerdaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
commitb691c43c44ff180d10e7d4a9afc83b98551ff586 (patch)
tree3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.World/ThrownEnderpearl.cpp
parentdef8cb415354ac390b7e89052a50605285f1aca9 (diff)
Initial commit
Diffstat (limited to 'Minecraft.World/ThrownEnderpearl.cpp')
-rw-r--r--Minecraft.World/ThrownEnderpearl.cpp62
1 files changed, 62 insertions, 0 deletions
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> 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> serverPlayer = dynamic_pointer_cast<ServerPlayer>(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