mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 15:43:49 +01:00
Replace the mutable global `_config.ErupeConfig` with dependency injection across 79 files. Config is now threaded through existing paths: `ClientContext.RealClientMode` for packet encoding, `s.server. erupeConfig` for channel handlers, and explicit parameters for utility functions. This removes hidden coupling, enables test parallelism without global save/restore, and prevents low-level packages from reaching up to the config layer. Key changes: - Enrich ClientContext with RealClientMode for packet files - Add mode parameter to CryptConn, mhfitem, mhfcourse functions - Convert handlers_commands init() to lazy sync.Once initialization - Delete global var, init(), and helper functions from config.go - Update all tests to pass config explicitly
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package mhfpacket
|
|
|
|
import (
|
|
"errors"
|
|
_config "erupe-ce/config"
|
|
|
|
"erupe-ce/common/byteframe"
|
|
"erupe-ce/network"
|
|
"erupe-ce/network/clientctx"
|
|
)
|
|
|
|
// MsgMhfSavedata represents the MSG_MHF_SAVEDATA
|
|
type MsgMhfSavedata struct {
|
|
AckHandle uint32
|
|
AllocMemSize uint32
|
|
SaveType uint8 // Either 1 or 2, representing a true or false value for some reason.
|
|
Unk1 uint32
|
|
DataSize uint32
|
|
RawDataPayload []byte
|
|
}
|
|
|
|
// Opcode returns the ID associated with this packet type.
|
|
func (m *MsgMhfSavedata) Opcode() network.PacketID {
|
|
return network.MSG_MHF_SAVEDATA
|
|
}
|
|
|
|
// Parse parses the packet from binary
|
|
func (m *MsgMhfSavedata) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
m.AckHandle = bf.ReadUint32()
|
|
m.AllocMemSize = bf.ReadUint32()
|
|
m.SaveType = bf.ReadUint8()
|
|
m.Unk1 = bf.ReadUint32()
|
|
if ctx.RealClientMode >= _config.G1 {
|
|
m.DataSize = bf.ReadUint32()
|
|
}
|
|
if m.DataSize == 0 { // seems to be used when DataSize = 0 rather than on savetype?
|
|
m.RawDataPayload = bf.ReadBytes(uint(m.AllocMemSize))
|
|
} else {
|
|
m.RawDataPayload = bf.ReadBytes(uint(m.DataSize))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Build builds a binary packet from the current data.
|
|
func (m *MsgMhfSavedata) Build(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
return errors.New("NOT IMPLEMENTED")
|
|
}
|