update comments
This commit is contained in:
@ -7,14 +7,13 @@
|
||||
// There is 4 kinds of clientbound packet is handled by this package.
|
||||
// - LoginPacket, for cache player info. The player info will be stored in [Player.PlayerInfo].
|
||||
// - KeepAlivePacket, for avoid the client to be kicked by the server.
|
||||
// - PlayerPosition, is only received when server teleporting the player. And the confirm packet is automatically sent.
|
||||
// - PlayerPosition, is only received when server teleporting the player.
|
||||
// - Respawn, for updating player info, which may change when player respawned.
|
||||
//
|
||||
// # [EventsListener]
|
||||
//
|
||||
// Handles some basic event you probably need.
|
||||
// - GameStart
|
||||
// - ChatMsg
|
||||
// - Disconnect
|
||||
// - HealthChange
|
||||
// - Death
|
||||
@ -32,21 +31,22 @@ type Player struct {
|
||||
|
||||
PlayerInfo
|
||||
WorldInfo
|
||||
isSpawn bool
|
||||
}
|
||||
|
||||
// NewPlayer create a new Player manager.
|
||||
func NewPlayer(c *bot.Client, settings Settings, events EventsListener) *Player {
|
||||
p := &Player{c: c, Settings: settings}
|
||||
c.Events.AddListener(
|
||||
bot.PacketHandler{Priority: 0, ID: packetid.ClientboundLogin, F: p.handleLoginPacket},
|
||||
bot.PacketHandler{Priority: 0, ID: packetid.ClientboundKeepAlive, F: p.handleKeepAlivePacket},
|
||||
bot.PacketHandler{Priority: 0, ID: packetid.ClientboundPlayerPosition, F: p.handlePlayerPosition},
|
||||
bot.PacketHandler{Priority: 0, ID: packetid.ClientboundRespawn, F: p.handleRespawnPacket},
|
||||
)
|
||||
events.attach(p)
|
||||
return p
|
||||
}
|
||||
|
||||
// Respawn is used to send a respawn packet to the server.
|
||||
// Typically, you should call this method when the player is dead (in the [Death] event handler).
|
||||
func (p *Player) Respawn() error {
|
||||
const PerformRespawn = 0
|
||||
|
||||
@ -61,6 +61,19 @@ func (p *Player) Respawn() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// AcceptTeleportation is used to send a teleport confirmation packet to the server.
|
||||
// Typically, you should call this method when received a ClientboundPlayerPosition packet (in the [Teleported] event handler).
|
||||
func (p *Player) AcceptTeleportation(teleportID pk.VarInt) error {
|
||||
err := p.c.Conn.WritePacket(pk.Marshal(
|
||||
packetid.ServerboundAcceptTeleportation,
|
||||
teleportID,
|
||||
))
|
||||
if err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Error struct {
|
||||
Err error
|
||||
}
|
||||
|
@ -7,11 +7,49 @@ import (
|
||||
pk "github.com/Tnze/go-mc/net/packet"
|
||||
)
|
||||
|
||||
// EventsListener is a collection of event handlers.
|
||||
// Fill the fields with your handler functions and pass it to [NewPlayer] to create the Player manager.
|
||||
// For the event you don't want to handle, just leave it nil.
|
||||
type EventsListener struct {
|
||||
GameStart func() error
|
||||
Disconnect func(reason chat.Message) error
|
||||
HealthChange func(health float32) error
|
||||
Death func() error
|
||||
// GameStart event is called when the login process is completed and the player is ready to play.
|
||||
//
|
||||
// If you want to do some action when the bot joined the server like sending a chat message,
|
||||
// this event is the right place to do it.
|
||||
GameStart func() error
|
||||
|
||||
// Disconnect event is called before the server disconnects your client.
|
||||
// When the server willfully disconnects the client, it will send a ClientboundDisconnect packet and tell you why.
|
||||
// On vanilla client, the reason is displayed in the disconnect screen.
|
||||
//
|
||||
// This information may be very useful for debugging, and generally you should record it into the log.
|
||||
//
|
||||
// If the connection is disconnected due to network reasons or the client's initiative,
|
||||
// this event will not be triggered.
|
||||
Disconnect func(reason chat.Message) error
|
||||
|
||||
// HealthChange event is called when the player's health or food changed.
|
||||
HealthChange func(health float32, foodLevel int32, foodSaturation float32) error
|
||||
|
||||
// Death event is a special case of HealthChange.
|
||||
// It will be called after HealthChange handler called (if it isn't nil)
|
||||
// when the player's health is less than or equal to 0.
|
||||
//
|
||||
// Typically, you should call [Player.Respawn] in this handler.
|
||||
Death func() error
|
||||
|
||||
// Teleported event is called when the server think the player position in the client side is wrong,
|
||||
// and send a ClientboundPlayerPosition packet to correct the client.
|
||||
//
|
||||
// Typically, you need to do two things in this handler:
|
||||
// - Update the player's position and rotation you tracked to the correct position.
|
||||
// - Call [Player.AcceptTeleportation] to send a teleport confirmation packet to the server.
|
||||
//
|
||||
// Before you confirm the teleportation, the server will not accept any player motion packets.
|
||||
//
|
||||
// The position coordinates and rotation are absolute or relative depends on the flags.
|
||||
// The flag byte is a bitfield, specifies whether each coordinate value is absolute or relative.
|
||||
// For more information, see https://wiki.vg/Protocol#Synchronize_Player_Position
|
||||
Teleported func(x, y, z float64, yaw, pitch float32, flags byte, teleportID int32, dismountVehicle bool) error
|
||||
}
|
||||
|
||||
// attach your event listener to the client.
|
||||
@ -26,6 +64,9 @@ func (e EventsListener) attach(p *Player) {
|
||||
if e.HealthChange != nil || e.Death != nil {
|
||||
attachUpdateHealth(p.c, e.HealthChange, e.Death)
|
||||
}
|
||||
if e.Teleported != nil {
|
||||
attachPlayerPosition(p.c, e.Teleported)
|
||||
}
|
||||
}
|
||||
|
||||
func attachJoinGameHandler(c *bot.Client, handler func() error) {
|
||||
@ -50,20 +91,20 @@ func attachDisconnect(c *bot.Client, handler func(reason chat.Message) error) {
|
||||
})
|
||||
}
|
||||
|
||||
func attachUpdateHealth(c *bot.Client, healthChangeHandler func(health float32) error, deathHandler func() error) {
|
||||
func attachUpdateHealth(c *bot.Client, healthChangeHandler func(health float32, food int32, saturation float32) error, deathHandler func() error) {
|
||||
c.Events.AddListener(bot.PacketHandler{
|
||||
Priority: 64, ID: packetid.ClientboundSetHealth,
|
||||
F: func(p pk.Packet) error {
|
||||
var health pk.Float
|
||||
var food pk.VarInt
|
||||
var foodSaturation pk.Float
|
||||
var saturation pk.Float
|
||||
|
||||
if err := p.Scan(&health, &food, &foodSaturation); err != nil {
|
||||
if err := p.Scan(&health, &food, &saturation); err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
var healthChangeErr, deathErr error
|
||||
if healthChangeHandler != nil {
|
||||
healthChangeErr = healthChangeHandler(float32(health))
|
||||
healthChangeErr = healthChangeHandler(float32(health), int32(food), float32(saturation))
|
||||
}
|
||||
if deathHandler != nil && health <= 0 {
|
||||
deathErr = deathHandler()
|
||||
@ -76,6 +117,25 @@ func attachUpdateHealth(c *bot.Client, healthChangeHandler func(health float32)
|
||||
})
|
||||
}
|
||||
|
||||
func attachPlayerPosition(c *bot.Client, handler func(x, y, z float64, yaw, pitch float32, flag byte, teleportID int32, dismountVehicle bool) error) {
|
||||
c.Events.AddListener(bot.PacketHandler{
|
||||
Priority: 64, ID: packetid.ClientboundPlayerPosition,
|
||||
F: func(p pk.Packet) error {
|
||||
var (
|
||||
X, Y, Z pk.Double
|
||||
Yaw, Pitch pk.Float
|
||||
Flags pk.Byte
|
||||
TeleportID pk.VarInt
|
||||
DismountVehicle pk.Boolean
|
||||
)
|
||||
if err := p.Scan(&X, &Y, &Z, &Yaw, &Pitch, &Flags, &TeleportID, &DismountVehicle); err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
return handler(float64(X), float64(Y), float64(Z), float32(Yaw), float32(Pitch), byte(Flags), int32(TeleportID), bool(DismountVehicle))
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
type updateHealthError struct {
|
||||
healthChangeErr, deathErr error
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ type WorldInfo struct {
|
||||
MaxPlayers int32 // Was once used by the client to draw the player list, but now is ignored.
|
||||
ViewDistance int32 // Render distance (2-32).
|
||||
SimulationDistance int32 // The distance that the client will process specific things, such as entities.
|
||||
ReducedDebugInfo bool // If true, a Notchian client shows reduced information on the debug screen. For servers in development, this should almost always be false.
|
||||
ReducedDebugInfo bool // If true, a vanilla client shows reduced information on the debug screen. For servers in development, this should almost always be false.
|
||||
EnableRespawnScreen bool // Set to false when the doImmediateRespawn gamerule is true.
|
||||
IsDebug bool // True if the world is a debug mode world; debug mode worlds cannot be modified and have predefined blocks.
|
||||
IsFlat bool // True if the world is a superflat world; flat worlds have different void fog and a horizon at y=0 instead of y=63.
|
||||
@ -31,11 +31,6 @@ type PlayerInfo struct {
|
||||
PrevGamemode int8 // Previous Gamemode
|
||||
}
|
||||
|
||||
// ServInfo contains information about the server implementation.
|
||||
type ServInfo struct {
|
||||
Brand string
|
||||
}
|
||||
|
||||
func (p *Player) handleLoginPacket(packet pk.Packet) error {
|
||||
err := packet.Scan(
|
||||
(*pk.Int)(&p.EID),
|
||||
|
@ -20,41 +20,3 @@ func (p *Player) handleKeepAlivePacket(packet pk.Packet) error {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *Player) handlePlayerPosition(packet pk.Packet) error {
|
||||
var (
|
||||
X, Y, Z pk.Double
|
||||
Yaw, Pitch pk.Float
|
||||
Flags pk.Byte
|
||||
TeleportID pk.VarInt
|
||||
DismountVehicle pk.Boolean
|
||||
)
|
||||
if err := packet.Scan(&X, &Y, &Z, &Yaw, &Pitch, &Flags, &TeleportID, &DismountVehicle); err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
|
||||
// Teleport Confirm
|
||||
err := p.c.Conn.WritePacket(pk.Marshal(
|
||||
packetid.ServerboundAcceptTeleportation,
|
||||
TeleportID,
|
||||
))
|
||||
if err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
|
||||
if !p.isSpawn {
|
||||
// PlayerPositionAndRotation to confirm the spawn position
|
||||
err = p.c.Conn.WritePacket(pk.Marshal(
|
||||
packetid.ServerboundMovePlayerPosRot,
|
||||
X, Y-1.62, Z,
|
||||
Yaw, Pitch,
|
||||
pk.Boolean(true),
|
||||
))
|
||||
if err != nil {
|
||||
return Error{err}
|
||||
}
|
||||
p.isSpawn = true
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user