2024-06-24 06:56:04 +00:00
|
|
|
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 SvEmoticon struct {
|
|
|
|
ChunkHeader *chunk7.ChunkHeader
|
|
|
|
|
2024-06-25 04:19:51 +00:00
|
|
|
ClientId int
|
2024-06-24 06:56:04 +00:00
|
|
|
Emoticon network7.Emote
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) MsgId() int {
|
|
|
|
return network7.MsgGameSvEmoticon
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) MsgType() network7.MsgType {
|
|
|
|
return network7.TypeNet
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) System() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) Vital() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) Pack() []byte {
|
|
|
|
return slices.Concat(
|
2024-06-25 04:19:51 +00:00
|
|
|
packer.PackInt(msg.ClientId),
|
2024-06-24 06:56:04 +00:00
|
|
|
packer.PackInt(int(msg.Emoticon)),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) Unpack(u *packer.Unpacker) error {
|
2024-06-25 04:19:51 +00:00
|
|
|
msg.ClientId = u.GetInt()
|
2024-06-24 06:56:04 +00:00
|
|
|
msg.Emoticon = network7.Emote(u.GetInt())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) Header() *chunk7.ChunkHeader {
|
|
|
|
return msg.ChunkHeader
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *SvEmoticon) SetHeader(header *chunk7.ChunkHeader) {
|
|
|
|
msg.ChunkHeader = header
|
|
|
|
}
|