You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package ent
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/jordanorelli/hyperstone/bit"
|
|
"github.com/jordanorelli/hyperstone/dota"
|
|
)
|
|
|
|
func getSerializers(m *dota.CDemoSendTables) (*dota.CSVCMsg_FlattenedSerializer, error) {
|
|
data := m.GetData()
|
|
r := bit.NewBytesReader(data)
|
|
|
|
size := int(bit.ReadVarInt(r))
|
|
buf := make([]byte, size)
|
|
|
|
r.Read(buf)
|
|
if r.Err() != nil {
|
|
return nil, wrap(r.Err(), "error reading serializers body")
|
|
}
|
|
|
|
flat := dota.CSVCMsg_FlattenedSerializer{}
|
|
if err := proto.Unmarshal(buf, &flat); err != nil {
|
|
return nil, wrap(err, "error unmarshaling serializers body")
|
|
}
|
|
return &flat, nil
|
|
}
|
|
|
|
func prettyFlatField(flat *dota.ProtoFlattenedSerializerFieldT, env *Env) string {
|
|
var_name := env.symbol(int(flat.GetVarNameSym()))
|
|
var_type := env.symbol(int(flat.GetVarTypeSym()))
|
|
|
|
var pretty bytes.Buffer
|
|
fmt.Fprintf(&pretty, "{name: %s type: %s", var_name, var_type)
|
|
if flat.BitCount != nil {
|
|
fmt.Fprintf(&pretty, " bits: %d", flat.GetBitCount())
|
|
}
|
|
if flat.LowValue != nil {
|
|
fmt.Fprintf(&pretty, " low: %f", flat.GetLowValue())
|
|
}
|
|
if flat.HighValue != nil {
|
|
fmt.Fprintf(&pretty, " high: %f", flat.GetHighValue())
|
|
}
|
|
if flat.EncodeFlags != nil {
|
|
fmt.Fprintf(&pretty, " flags: %d", flat.GetEncodeFlags())
|
|
}
|
|
if flat.FieldSerializerNameSym != nil {
|
|
fmt.Fprintf(&pretty, " serializer: %s", env.symbol(int(flat.GetFieldSerializerNameSym())))
|
|
}
|
|
if flat.FieldSerializerVersion != nil {
|
|
fmt.Fprintf(&pretty, " s_version: %d", flat.GetFieldSerializerVersion())
|
|
}
|
|
if flat.SendNodeSym != nil {
|
|
fmt.Fprintf(&pretty, " send: %s", env.symbol(int(flat.GetSendNodeSym())))
|
|
}
|
|
if flat.VarEncoderSym != nil {
|
|
fmt.Fprintf(&pretty, " var_enc: %s", env.symbol(int(flat.GetVarEncoderSym())))
|
|
}
|
|
fmt.Fprint(&pretty, "}")
|
|
return pretty.String()
|
|
}
|