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 GameDataFlag struct {
|
|
|
|
ItemId int
|
|
|
|
|
|
|
|
// It is either the client id of the carrier so 0-64 or one of those values
|
|
|
|
//
|
|
|
|
// -3 - FLAG_MISSING
|
|
|
|
// -2 - FLAG_ATSTAND
|
|
|
|
// -1 - FLAG_TAKEN
|
|
|
|
FlagCarrierRed int
|
|
|
|
|
|
|
|
// It is either the client id of the carrier so 0-64 or one of those values
|
|
|
|
//
|
|
|
|
// -3 - FLAG_MISSING
|
|
|
|
// -2 - FLAG_ATSTAND
|
|
|
|
// -1 - FLAG_TAKEN
|
|
|
|
FlagCarrierBlue int
|
|
|
|
|
|
|
|
FlagDropTickRed int
|
|
|
|
FlagDropTickBlue int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *GameDataFlag) Id() int {
|
|
|
|
return o.ItemId
|
|
|
|
}
|
|
|
|
|
2024-06-24 14:50:15 +00:00
|
|
|
func (o *GameDataFlag) TypeId() int {
|
2024-06-24 09:03:13 +00:00
|
|
|
return network7.ObjGameDataFlag
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *GameDataFlag) Size() int {
|
|
|
|
return reflect.TypeOf(GameDataFlag{}).NumField() - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *GameDataFlag) 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.FlagCarrierRed),
|
|
|
|
packer.PackInt(o.FlagCarrierBlue),
|
|
|
|
packer.PackInt(o.FlagDropTickRed),
|
|
|
|
packer.PackInt(o.FlagDropTickBlue),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *GameDataFlag) Unpack(u *packer.Unpacker) error {
|
|
|
|
o.FlagCarrierRed = u.GetInt()
|
|
|
|
o.FlagCarrierBlue = u.GetInt()
|
|
|
|
o.FlagDropTickRed = u.GetInt()
|
|
|
|
o.FlagDropTickBlue = u.GetInt()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|