aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PlayerAbilitiesPacket.h
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/PlayerAbilitiesPacket.h
parentdef8cb415354ac390b7e89052a50605285f1aca9 (diff)
Initial commit
Diffstat (limited to 'Minecraft.World/PlayerAbilitiesPacket.h')
-rw-r--r--Minecraft.World/PlayerAbilitiesPacket.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/Minecraft.World/PlayerAbilitiesPacket.h b/Minecraft.World/PlayerAbilitiesPacket.h
new file mode 100644
index 00000000..21c1fdc2
--- /dev/null
+++ b/Minecraft.World/PlayerAbilitiesPacket.h
@@ -0,0 +1,50 @@
+#pragma once
+
+#include "Packet.h"
+
+class Abilities;
+
+class PlayerAbilitiesPacket : public Packet, public enable_shared_from_this<PlayerAbilitiesPacket>
+{
+private:
+ static const int FLAG_INVULNERABLE = 1 << 0;
+ static const int FLAG_FLYING = 1 << 1;
+ static const int FLAG_CAN_FLY = 1 << 2;
+ static const int FLAG_INSTABUILD = 1 << 3;
+ static const float SPEED_ACCURACY;
+
+ bool invulnerable;
+ bool _isFlying;
+ bool _canFly;
+ bool instabuild;
+ float flyingSpeed;
+ float walkingSpeed;
+
+public:
+ PlayerAbilitiesPacket();
+ PlayerAbilitiesPacket(Abilities *abilities);
+
+ void read(DataInputStream *dis);
+ void write(DataOutputStream *dos);
+ void handle(PacketListener *listener);
+ int getEstimatedSize();
+ //wstring getDebugInfo();
+ bool isInvulnerable();
+ void setInvulnerable(bool invulnerable);
+ bool isFlying();
+ void setFlying(bool flying);
+ bool canFly();
+ void setCanFly(bool canFly);
+ bool canInstabuild();
+ void setInstabuild(bool instabuild);
+ float getFlyingSpeed();
+ void setFlyingSpeed(float flySpeed);
+ float getWalkingSpeed();
+ void setWalkingSpeed(float walkingSpeed);
+ bool canBeInvalidated();
+ bool isInvalidatedBy(shared_ptr<Packet> packet);
+
+public:
+ static shared_ptr<Packet> create() { return shared_ptr<Packet>(new PlayerAbilitiesPacket()); }
+ virtual int getId() { return 202; }
+}; \ No newline at end of file