2024-06-20 03:08:52 +00:00
|
|
|
package messages7
|
|
|
|
|
|
|
|
// this message is shared between client and server
|
|
|
|
// but this implementation is assuming we are sending from a client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"slices"
|
|
|
|
|
2024-06-22 05:59:27 +00:00
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/chunk7"
|
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/network7"
|
|
|
|
"github.com/teeworlds-go/go-teeworlds-protocol/packer"
|
2024-06-20 03:08:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type CtrlToken struct {
|
|
|
|
Token [4]byte
|
|
|
|
}
|
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) MsgId() int {
|
2024-06-20 03:08:52 +00:00
|
|
|
return network7.MsgCtrlToken
|
|
|
|
}
|
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) MsgType() network7.MsgType {
|
2024-06-20 03:08:52 +00:00
|
|
|
return network7.TypeControl
|
|
|
|
}
|
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) System() bool {
|
2024-06-20 03:08:52 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) Vital() bool {
|
2024-06-20 03:08:52 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) Pack() []byte {
|
2024-06-20 03:08:52 +00:00
|
|
|
return slices.Concat(
|
|
|
|
[]byte{network7.MsgCtrlToken},
|
|
|
|
msg.Token[:],
|
|
|
|
[]byte{512: 0},
|
|
|
|
)
|
|
|
|
}
|
2024-06-20 05:07:10 +00:00
|
|
|
|
2024-06-23 19:18:54 +00:00
|
|
|
func (msg *CtrlToken) Unpack(u *packer.Unpacker) error {
|
2024-06-22 04:25:29 +00:00
|
|
|
msg.Token = [4]byte(u.Rest())
|
2024-06-23 19:18:54 +00:00
|
|
|
return nil
|
2024-06-20 05:07:10 +00:00
|
|
|
}
|
2024-06-21 01:38:59 +00:00
|
|
|
|
|
|
|
func (msg *CtrlToken) Header() *chunk7.ChunkHeader {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *CtrlToken) SetHeader(header *chunk7.ChunkHeader) {
|
|
|
|
}
|