51 lines
979 B
Go
51 lines
979 B
Go
package messages7
|
|
|
|
import (
|
|
"slices"
|
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/chunk7"
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/network7"
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/packer"
|
|
)
|
|
|
|
type MaplistEntryRem struct {
|
|
ChunkHeader *chunk7.ChunkHeader
|
|
|
|
MapName string
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) MsgId() int {
|
|
return network7.MsgSysMaplistEntryRem
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) MsgType() network7.MsgType {
|
|
return network7.TypeNet
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) System() bool {
|
|
return true
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) Vital() bool {
|
|
return true
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) Pack() []byte {
|
|
return slices.Concat(
|
|
packer.PackStr(msg.MapName),
|
|
)
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) Unpack(u *packer.Unpacker) error {
|
|
msg.MapName, _ = u.GetString()
|
|
return nil
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) Header() *chunk7.ChunkHeader {
|
|
return msg.ChunkHeader
|
|
}
|
|
|
|
func (msg *MaplistEntryRem) SetHeader(header *chunk7.ChunkHeader) {
|
|
msg.ChunkHeader = header
|
|
}
|