mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 15:43:49 +01:00
RE'd putAdd_ud_point (FUN_114fd490) and putAdd_ud_tactics_point (FUN_114fe9c0) from the ZZ client DLL via Ghidra decompilation. MsgMhfAddUdPoint fields: QuestPoints (sum of 11 category accumulators earned per quest) and BonusPoints (kiju prayer song multiplier extra). MsgMhfAddUdTacticsPoint fields: QuestID and TacticsPoints. Adds diva_points table (migration 0009) for per-character per-event point tracking, with UPSERT-based atomic accumulation in the handler.
41 lines
1.3 KiB
Go
41 lines
1.3 KiB
Go
package mhfpacket
|
|
|
|
import (
|
|
"erupe-ce/common/byteframe"
|
|
"erupe-ce/network"
|
|
"erupe-ce/network/clientctx"
|
|
)
|
|
|
|
// MsgMhfAddUdPoint represents the MSG_MHF_ADD_UD_POINT
|
|
//
|
|
// Sent by the client after completing a Diva Defense quest to report earned points.
|
|
// RE'd from ZZ DLL putAdd_ud_point (FUN_114fd490): the client sums 11 point
|
|
// category accumulators into QuestPoints, and computes BonusPoints from the
|
|
// kiju prayer song multiplier applied to the base categories.
|
|
type MsgMhfAddUdPoint struct {
|
|
AckHandle uint32
|
|
QuestPoints uint32 // Total points earned from the quest (sum of all categories)
|
|
BonusPoints uint32 // Extra points from kiju/prayer song multiplier
|
|
}
|
|
|
|
// Opcode returns the ID associated with this packet type.
|
|
func (m *MsgMhfAddUdPoint) Opcode() network.PacketID {
|
|
return network.MSG_MHF_ADD_UD_POINT
|
|
}
|
|
|
|
// Parse parses the packet from binary
|
|
func (m *MsgMhfAddUdPoint) Parse(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
m.AckHandle = bf.ReadUint32()
|
|
m.QuestPoints = bf.ReadUint32()
|
|
m.BonusPoints = bf.ReadUint32()
|
|
return nil
|
|
}
|
|
|
|
// Build builds a binary packet from the current data.
|
|
func (m *MsgMhfAddUdPoint) Build(bf *byteframe.ByteFrame, ctx *clientctx.ClientContext) error {
|
|
bf.WriteUint32(m.AckHandle)
|
|
bf.WriteUint32(m.QuestPoints)
|
|
bf.WriteUint32(m.BonusPoints)
|
|
return nil
|
|
}
|