package debug
import "github.com/Diarkis/diarkis/proto/go/debug"
Index
Constants
const OfflineCmd uint16 = 902
OfflineCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const OfflineVer uint8 = 1
OfflineVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const OnlineCmd uint16 = 900
OnlineCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const OnlineVer uint8 = 1
OnlineVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const RoomDumpCmd uint16 = 904
RoomDumpCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const RoomDumpVer uint8 = 1
RoomDumpVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const TakenCmd uint16 = 901
TakenCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const TakenVer uint8 = 1
TakenVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const TerminateCmd uint16 = 903
TerminateCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const TerminateVer uint8 = 1
TerminateVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const UserDumpCmd uint16 = 905
UserDumpCmd represents the command ID of the protocol's command ID.
[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const UserDumpVer uint8 = 1
UserDumpVer represents the ver of the protocol's command.
[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
Types
type Offline
type Offline struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
Offline represents the command protocol data structure.
func NewOffline
func NewOffline() *Offline
NewOffline creates a new instance of Offline struct.
func (*Offline) GetCmd
func (proto *Offline) GetCmd() uint16
func (*Offline) GetVer
func (proto *Offline) GetVer() uint8
func (*Offline) Pack
func (proto *Offline) Pack() []byte
Pack encodes Offline struct to a byte array to be delivered over the command.
func (*Offline) PackedSize
func (proto *Offline) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*Offline) String
func (proto *Offline) String() string
func (*Offline) Unpack
func (proto *Offline) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to Offline struct.
type Online
type Online struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
Online represents the command protocol data structure.
func NewOnline
func NewOnline() *Online
NewOnline creates a new instance of Online struct.
func (*Online) GetCmd
func (proto *Online) GetCmd() uint16
func (*Online) GetVer
func (proto *Online) GetVer() uint8
func (*Online) Pack
func (proto *Online) Pack() []byte
Pack encodes Online struct to a byte array to be delivered over the command.
func (*Online) PackedSize
func (proto *Online) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*Online) String
func (proto *Online) String() string
func (*Online) Unpack
func (proto *Online) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to Online struct.
type RoomDump
type RoomDump struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
RoomDump represents the command protocol data structure.
func NewRoomDump
func NewRoomDump() *RoomDump
NewRoomDump creates a new instance of RoomDump struct.
func (*RoomDump) GetCmd
func (proto *RoomDump) GetCmd() uint16
func (*RoomDump) GetVer
func (proto *RoomDump) GetVer() uint8
func (*RoomDump) Pack
func (proto *RoomDump) Pack() []byte
Pack encodes RoomDump struct to a byte array to be delivered over the command.
func (*RoomDump) PackedSize
func (proto *RoomDump) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*RoomDump) String
func (proto *RoomDump) String() string
func (*RoomDump) Unpack
func (proto *RoomDump) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to RoomDump struct.
type Taken
type Taken struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
Taken represents the command protocol data structure.
func NewTaken
func NewTaken() *Taken
NewTaken creates a new instance of Taken struct.
func (*Taken) GetCmd
func (proto *Taken) GetCmd() uint16
func (*Taken) GetVer
func (proto *Taken) GetVer() uint8
func (*Taken) Pack
func (proto *Taken) Pack() []byte
Pack encodes Taken struct to a byte array to be delivered over the command.
func (*Taken) PackedSize
func (proto *Taken) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*Taken) String
func (proto *Taken) String() string
func (*Taken) Unpack
func (proto *Taken) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to Taken struct.
type Terminate
type Terminate struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
Terminate represents the command protocol data structure.
func NewTerminate
func NewTerminate() *Terminate
NewTerminate creates a new instance of Terminate struct.
func (*Terminate) GetCmd
func (proto *Terminate) GetCmd() uint16
func (*Terminate) GetVer
func (proto *Terminate) GetVer() uint8
func (*Terminate) Pack
func (proto *Terminate) Pack() []byte
Pack encodes Terminate struct to a byte array to be delivered over the command.
func (*Terminate) PackedSize
func (proto *Terminate) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*Terminate) String
func (proto *Terminate) String() string
func (*Terminate) Unpack
func (proto *Terminate) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to Terminate struct.
type UserDump
type UserDump struct { // Command version of the protocol Ver uint8 // Command ID of the protocol Cmd uint16 }
UserDump represents the command protocol data structure.
func NewUserDump
func NewUserDump() *UserDump
NewUserDump creates a new instance of UserDump struct.
func (*UserDump) GetCmd
func (proto *UserDump) GetCmd() uint16
func (*UserDump) GetVer
func (proto *UserDump) GetVer() uint8
func (*UserDump) Pack
func (proto *UserDump) Pack() []byte
Pack encodes UserDump struct to a byte array to be delivered over the command.
func (*UserDump) PackedSize
func (proto *UserDump) PackedSize() int
PackedSize returns the estimated packed size of the struct.
func (*UserDump) String
func (proto *UserDump) String() string
func (*UserDump) Unpack
func (proto *UserDump) Unpack(bytes []byte) error
Unpack decodes the command payload byte array to UserDump struct.