2024-06-24 09:03:13 +00:00
|
|
|
package object7
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"slices"
|
|
|
|
|
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/network7"
|
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PlayerInfo struct {
|
|
|
|
ItemId int
|
|
|
|
|
|
|
|
// TODO: parse flags
|
|
|
|
PlayerFlags int
|
|
|
|
Score int
|
|
|
|
Latency int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *PlayerInfo) Id() int {
|
|
|
|
return o.ItemId
|
|
|
|
}
|
|
|
|
|
2024-06-24 14:50:15 +00:00
|
|
|
func (o *PlayerInfo) TypeId() int {
|
2024-06-24 09:03:13 +00:00
|
|
|
return network7.ObjPlayerInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *PlayerInfo) Size() int {
|
|
|
|
return reflect.TypeOf(PlayerInfo{}).NumField() - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *PlayerInfo) Pack() []byte {
|
|
|
|
return slices.Concat(
|
2024-06-24 14:50:15 +00:00
|
|
|
packer.PackInt(o.TypeId()),
|
2024-06-24 09:03:13 +00:00
|
|
|
packer.PackInt(o.Id()),
|
|
|
|
|
|
|
|
packer.PackInt(o.PlayerFlags),
|
|
|
|
packer.PackInt(o.Score),
|
|
|
|
packer.PackInt(o.Latency),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *PlayerInfo) Unpack(u *packer.Unpacker) error {
|
|
|
|
o.PlayerFlags = u.GetInt()
|
|
|
|
o.Score = u.GetInt()
|
|
|
|
o.Latency = u.GetInt()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|