Add parsers for some ackHandle-only packets

This commit is contained in:
Andrew Gutekanst
2020-02-23 18:56:54 -05:00
parent 112dc03acc
commit 1e33ed84c6
40 changed files with 240 additions and 120 deletions

View File

@@ -6,7 +6,9 @@ import (
)
// MsgMhfLoadLegendDispatch represents the MSG_MHF_LOAD_LEGEND_DISPATCH
type MsgMhfLoadLegendDispatch struct{}
type MsgMhfLoadLegendDispatch struct {
AckHandle uint32
}
// Opcode returns the ID associated with this packet type.
func (m *MsgMhfLoadLegendDispatch) Opcode() network.PacketID {
@@ -15,10 +17,11 @@ func (m *MsgMhfLoadLegendDispatch) Opcode() network.PacketID {
// Parse parses the packet from binary
func (m *MsgMhfLoadLegendDispatch) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
m.AckHandle = bf.ReadUint32()
return nil
}
// Build builds a binary packet from the current data.
func (m *MsgMhfLoadLegendDispatch) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}
}