mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
37 lines
930 B
Go
37 lines
930 B
Go
package mhfpacket
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"erupe-ce/common/byteframe"
|
|
"erupe-ce/network"
|
|
"erupe-ce/network/clientctx"
|
|
)
|
|
|
|
// MsgMhfPlayStepupGacha represents the MSG_MHF_PLAY_STEPUP_GACHA
|
|
type MsgMhfPlayStepupGacha struct {
|
|
AckHandle uint32
|
|
GachaID uint32
|
|
RollType uint8
|
|
GachaType uint8
|
|
}
|
|
|
|
// Opcode returns the ID associated with this packet type.
|
|
func (m *MsgMhfPlayStepupGacha) Opcode() network.PacketID {
|
|
return network.MSG_MHF_PLAY_STEPUP_GACHA
|
|
}
|
|
|
|
// Parse parses the packet from binary
|
|
func (m *MsgMhfPlayStepupGacha) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
m.AckHandle = bf.ReadUint32()
|
|
m.GachaID = bf.ReadUint32()
|
|
m.RollType = bf.ReadUint8()
|
|
m.GachaType = bf.ReadUint8()
|
|
return nil
|
|
}
|
|
|
|
// Build builds a binary packet from the current data.
|
|
func (m *MsgMhfPlayStepupGacha) Build(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
return errors.New("NOT IMPLEMENTED")
|
|
}
|