You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
398 lines
12 KiB
398 lines
12 KiB
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: msg.proto
|
|
|
|
package pb
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
//同步客户端玩家ID
|
|
type SyncPid struct {
|
|
Pid int32 `protobuf:"varint,1,opt,name=Pid,proto3" json:"Pid,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SyncPid) Reset() { *m = SyncPid{} }
|
|
func (m *SyncPid) String() string { return proto.CompactTextString(m) }
|
|
func (*SyncPid) ProtoMessage() {}
|
|
func (*SyncPid) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{0}
|
|
}
|
|
|
|
func (m *SyncPid) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SyncPid.Unmarshal(m, b)
|
|
}
|
|
func (m *SyncPid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SyncPid.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SyncPid) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SyncPid.Merge(m, src)
|
|
}
|
|
func (m *SyncPid) XXX_Size() int {
|
|
return xxx_messageInfo_SyncPid.Size(m)
|
|
}
|
|
func (m *SyncPid) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SyncPid.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SyncPid proto.InternalMessageInfo
|
|
|
|
func (m *SyncPid) GetPid() int32 {
|
|
if m != nil {
|
|
return m.Pid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
//玩家位置
|
|
type Position struct {
|
|
X float32 `protobuf:"fixed32,1,opt,name=X,proto3" json:"X,omitempty"`
|
|
Y float32 `protobuf:"fixed32,2,opt,name=Y,proto3" json:"Y,omitempty"`
|
|
Z float32 `protobuf:"fixed32,3,opt,name=Z,proto3" json:"Z,omitempty"`
|
|
V float32 `protobuf:"fixed32,4,opt,name=V,proto3" json:"V,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Position) Reset() { *m = Position{} }
|
|
func (m *Position) String() string { return proto.CompactTextString(m) }
|
|
func (*Position) ProtoMessage() {}
|
|
func (*Position) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{1}
|
|
}
|
|
|
|
func (m *Position) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Position.Unmarshal(m, b)
|
|
}
|
|
func (m *Position) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Position.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Position) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Position.Merge(m, src)
|
|
}
|
|
func (m *Position) XXX_Size() int {
|
|
return xxx_messageInfo_Position.Size(m)
|
|
}
|
|
func (m *Position) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Position.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Position proto.InternalMessageInfo
|
|
|
|
func (m *Position) GetX() float32 {
|
|
if m != nil {
|
|
return m.X
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Position) GetY() float32 {
|
|
if m != nil {
|
|
return m.Y
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Position) GetZ() float32 {
|
|
if m != nil {
|
|
return m.Z
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Position) GetV() float32 {
|
|
if m != nil {
|
|
return m.V
|
|
}
|
|
return 0
|
|
}
|
|
|
|
//玩家广播数据
|
|
type BroadCast struct {
|
|
Pid int32 `protobuf:"varint,1,opt,name=Pid,proto3" json:"Pid,omitempty"`
|
|
Tp int32 `protobuf:"varint,2,opt,name=Tp,proto3" json:"Tp,omitempty"`
|
|
// Types that are valid to be assigned to Data:
|
|
// *BroadCast_Content
|
|
// *BroadCast_P
|
|
// *BroadCast_ActionData
|
|
Data isBroadCast_Data `protobuf_oneof:"Data"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *BroadCast) Reset() { *m = BroadCast{} }
|
|
func (m *BroadCast) String() string { return proto.CompactTextString(m) }
|
|
func (*BroadCast) ProtoMessage() {}
|
|
func (*BroadCast) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{2}
|
|
}
|
|
|
|
func (m *BroadCast) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_BroadCast.Unmarshal(m, b)
|
|
}
|
|
func (m *BroadCast) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_BroadCast.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *BroadCast) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_BroadCast.Merge(m, src)
|
|
}
|
|
func (m *BroadCast) XXX_Size() int {
|
|
return xxx_messageInfo_BroadCast.Size(m)
|
|
}
|
|
func (m *BroadCast) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_BroadCast.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_BroadCast proto.InternalMessageInfo
|
|
|
|
func (m *BroadCast) GetPid() int32 {
|
|
if m != nil {
|
|
return m.Pid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *BroadCast) GetTp() int32 {
|
|
if m != nil {
|
|
return m.Tp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type isBroadCast_Data interface {
|
|
isBroadCast_Data()
|
|
}
|
|
|
|
type BroadCast_Content struct {
|
|
Content string `protobuf:"bytes,3,opt,name=Content,proto3,oneof"`
|
|
}
|
|
|
|
type BroadCast_P struct {
|
|
P *Position `protobuf:"bytes,4,opt,name=P,proto3,oneof"`
|
|
}
|
|
|
|
type BroadCast_ActionData struct {
|
|
ActionData int32 `protobuf:"varint,5,opt,name=ActionData,proto3,oneof"`
|
|
}
|
|
|
|
func (*BroadCast_Content) isBroadCast_Data() {}
|
|
|
|
func (*BroadCast_P) isBroadCast_Data() {}
|
|
|
|
func (*BroadCast_ActionData) isBroadCast_Data() {}
|
|
|
|
func (m *BroadCast) GetData() isBroadCast_Data {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *BroadCast) GetContent() string {
|
|
if x, ok := m.GetData().(*BroadCast_Content); ok {
|
|
return x.Content
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *BroadCast) GetP() *Position {
|
|
if x, ok := m.GetData().(*BroadCast_P); ok {
|
|
return x.P
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *BroadCast) GetActionData() int32 {
|
|
if x, ok := m.GetData().(*BroadCast_ActionData); ok {
|
|
return x.ActionData
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*BroadCast) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*BroadCast_Content)(nil),
|
|
(*BroadCast_P)(nil),
|
|
(*BroadCast_ActionData)(nil),
|
|
}
|
|
}
|
|
|
|
//玩家聊天数据
|
|
type Talk struct {
|
|
Content string `protobuf:"bytes,1,opt,name=Content,proto3" json:"Content,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Talk) Reset() { *m = Talk{} }
|
|
func (m *Talk) String() string { return proto.CompactTextString(m) }
|
|
func (*Talk) ProtoMessage() {}
|
|
func (*Talk) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{3}
|
|
}
|
|
|
|
func (m *Talk) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Talk.Unmarshal(m, b)
|
|
}
|
|
func (m *Talk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Talk.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Talk) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Talk.Merge(m, src)
|
|
}
|
|
func (m *Talk) XXX_Size() int {
|
|
return xxx_messageInfo_Talk.Size(m)
|
|
}
|
|
func (m *Talk) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Talk.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Talk proto.InternalMessageInfo
|
|
|
|
func (m *Talk) GetContent() string {
|
|
if m != nil {
|
|
return m.Content
|
|
}
|
|
return ""
|
|
}
|
|
|
|
//玩家信息
|
|
type Player struct {
|
|
Pid int32 `protobuf:"varint,1,opt,name=Pid,proto3" json:"Pid,omitempty"`
|
|
P *Position `protobuf:"bytes,2,opt,name=P,proto3" json:"P,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Player) Reset() { *m = Player{} }
|
|
func (m *Player) String() string { return proto.CompactTextString(m) }
|
|
func (*Player) ProtoMessage() {}
|
|
func (*Player) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{4}
|
|
}
|
|
|
|
func (m *Player) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Player.Unmarshal(m, b)
|
|
}
|
|
func (m *Player) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Player.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Player) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Player.Merge(m, src)
|
|
}
|
|
func (m *Player) XXX_Size() int {
|
|
return xxx_messageInfo_Player.Size(m)
|
|
}
|
|
func (m *Player) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Player.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Player proto.InternalMessageInfo
|
|
|
|
func (m *Player) GetPid() int32 {
|
|
if m != nil {
|
|
return m.Pid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Player) GetP() *Position {
|
|
if m != nil {
|
|
return m.P
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//同步玩家显示数据
|
|
type SyncPlayers struct {
|
|
Ps []*Player `protobuf:"bytes,1,rep,name=ps,proto3" json:"ps,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SyncPlayers) Reset() { *m = SyncPlayers{} }
|
|
func (m *SyncPlayers) String() string { return proto.CompactTextString(m) }
|
|
func (*SyncPlayers) ProtoMessage() {}
|
|
func (*SyncPlayers) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{5}
|
|
}
|
|
|
|
func (m *SyncPlayers) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SyncPlayers.Unmarshal(m, b)
|
|
}
|
|
func (m *SyncPlayers) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SyncPlayers.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SyncPlayers) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SyncPlayers.Merge(m, src)
|
|
}
|
|
func (m *SyncPlayers) XXX_Size() int {
|
|
return xxx_messageInfo_SyncPlayers.Size(m)
|
|
}
|
|
func (m *SyncPlayers) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SyncPlayers.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SyncPlayers proto.InternalMessageInfo
|
|
|
|
func (m *SyncPlayers) GetPs() []*Player {
|
|
if m != nil {
|
|
return m.Ps
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*SyncPid)(nil), "pb.SyncPid")
|
|
proto.RegisterType((*Position)(nil), "pb.Position")
|
|
proto.RegisterType((*BroadCast)(nil), "pb.BroadCast")
|
|
proto.RegisterType((*Talk)(nil), "pb.Talk")
|
|
proto.RegisterType((*Player)(nil), "pb.Player")
|
|
proto.RegisterType((*SyncPlayers)(nil), "pb.SyncPlayers")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("msg.proto", fileDescriptor_c06e4cca6c2cc899) }
|
|
|
|
var fileDescriptor_c06e4cca6c2cc899 = []byte{
|
|
// 278 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xbf, 0x4e, 0xc3, 0x30,
|
|
0x10, 0x87, 0x63, 0xe7, 0x4f, 0xc9, 0xa5, 0x42, 0xc8, 0x93, 0x15, 0x18, 0x22, 0x4f, 0x65, 0xc9,
|
|
0x50, 0x24, 0x76, 0x52, 0x86, 0x8c, 0x96, 0x89, 0xaa, 0xb6, 0x9b, 0xd3, 0x54, 0x28, 0xa2, 0xc4,
|
|
0x56, 0xec, 0xa5, 0x8f, 0xc1, 0x6b, 0xf0, 0x94, 0xc8, 0x8e, 0x0a, 0x48, 0xed, 0x64, 0x7f, 0x77,
|
|
0xf6, 0xef, 0x3e, 0xd9, 0x90, 0x7e, 0x9a, 0xf7, 0x52, 0x8f, 0xca, 0x2a, 0x82, 0x75, 0xcb, 0xee,
|
|
0x61, 0xf6, 0x76, 0x1a, 0xf6, 0xbc, 0xef, 0xc8, 0x1d, 0x84, 0xbc, 0xef, 0x28, 0x2a, 0xd0, 0x22,
|
|
0x16, 0x6e, 0xcb, 0x2a, 0xb8, 0xe1, 0xca, 0xf4, 0xb6, 0x57, 0x03, 0x99, 0x03, 0xda, 0xf8, 0x1e,
|
|
0x16, 0x68, 0xe3, 0x68, 0x4b, 0xf1, 0x44, 0x5b, 0x47, 0x3b, 0x1a, 0x4e, 0xb4, 0x73, 0xb4, 0xa6,
|
|
0xd1, 0x44, 0x6b, 0xf6, 0x85, 0x20, 0xad, 0x46, 0x25, 0xbb, 0x95, 0x34, 0xf6, 0x72, 0x06, 0xb9,
|
|
0x05, 0xdc, 0x68, 0x1f, 0x15, 0x0b, 0xdc, 0x68, 0x92, 0xc3, 0x6c, 0xa5, 0x06, 0x7b, 0x18, 0xac,
|
|
0x4f, 0x4c, 0xeb, 0x40, 0x9c, 0x0b, 0xe4, 0x01, 0x10, 0xf7, 0xc9, 0xd9, 0x72, 0x5e, 0xea, 0xb6,
|
|
0x3c, 0xcb, 0xd5, 0x81, 0x40, 0x9c, 0x14, 0x00, 0x2f, 0x7b, 0x87, 0xaf, 0xd2, 0x4a, 0x1a, 0xbb,
|
|
0xc4, 0x3a, 0x10, 0xff, 0x6a, 0x55, 0x02, 0x91, 0x5b, 0x59, 0x01, 0x51, 0x23, 0x8f, 0x1f, 0x84,
|
|
0xfe, 0xcd, 0x72, 0x46, 0xe9, 0xef, 0x24, 0xf6, 0x0c, 0x09, 0x3f, 0xca, 0xd3, 0x61, 0xbc, 0x62,
|
|
0x9c, 0x3b, 0x0b, 0x7c, 0x69, 0x21, 0x10, 0x67, 0x8f, 0x90, 0xf9, 0xe7, 0xf4, 0x77, 0x0d, 0xc9,
|
|
0x01, 0x6b, 0x43, 0x51, 0x11, 0x2e, 0xb2, 0x25, 0xf8, 0xb3, 0xbe, 0x21, 0xb0, 0x36, 0x55, 0xfc,
|
|
0x8d, 0x31, 0x6f, 0xdb, 0xc4, 0xff, 0xc5, 0xd3, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xb4,
|
|
0xb8, 0x13, 0x98, 0x01, 0x00, 0x00,
|
|
}
|