mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 15:04:38 +01:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package mhfpacket
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"erupe-ce/network/clientctx"
|
|
"erupe-ce/network"
|
|
"erupe-ce/common/byteframe"
|
|
)
|
|
|
|
// MsgMhfAnnounce represents the MSG_MHF_ANNOUNCE
|
|
type MsgMhfAnnounce struct {
|
|
AckHandle uint32
|
|
IPAddress uint32
|
|
Port uint16
|
|
StageID []byte
|
|
Type uint8
|
|
}
|
|
|
|
// Opcode returns the ID associated with this packet type.
|
|
func (m *MsgMhfAnnounce) Opcode() network.PacketID {
|
|
return network.MSG_MHF_ANNOUNCE
|
|
}
|
|
|
|
// Parse parses the packet from binary
|
|
func (m *MsgMhfAnnounce) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
m.AckHandle = bf.ReadUint32()
|
|
m.IPAddress = bf.ReadUint32()
|
|
m.Port = bf.ReadUint16()
|
|
_ = bf.ReadUint8()
|
|
_ = bf.ReadUint16()
|
|
m.StageID = bf.ReadNullTerminatedBytes()
|
|
for {
|
|
if bf.ReadUint8() != 0 {
|
|
m.Type = bf.ReadUint8()
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Build builds a binary packet from the current data.
|
|
func (m *MsgMhfAnnounce) Build(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
return errors.New("NOT IMPLEMENTED")
|
|
}
|