格式化代码

This commit is contained in:
flswld
2023-05-22 00:39:02 +08:00
parent f851ad1692
commit 3100e8b147
115 changed files with 38550 additions and 38546 deletions
+8 -7
View File
@@ -1,19 +1,20 @@
syntax = "proto3";
package gs.api;
option go_package = "hk4e/gs/api;api";
// GM 服务
service GM {
rpc Cmd (CmdRequest) returns (CmdReply) {}
rpc Cmd (CmdRequest) returns (CmdReply) {}
}
message CmdRequest {
string func_name = 1;
repeated string param_list = 2;
message CmdRequest {
string func_name = 1;
repeated string param_list = 2;
}
message CmdReply {
int32 code = 1; // 0 表示成功
string message = 2;
message CmdReply {
int32 code = 1; // 0 表示成功
string message = 2;
}
+43 -42
View File
@@ -1,92 +1,93 @@
syntax = "proto3";
package node.api;
option go_package = "hk4e/node/api;api";
// 节点服务器注册发现服务
service Discovery {
// 服务器启动注册获取appid
rpc RegisterServer (RegisterServerReq) returns (RegisterServerRsp) {}
// 服务器关闭取消注册
rpc CancelServer (CancelServerReq) returns (NullMsg) {}
// 服务器在线心跳保持
rpc KeepaliveServer (KeepaliveServerReq) returns (NullMsg) {}
// 获取负载最小的服务器的appid
rpc GetServerAppId (GetServerAppIdReq) returns (GetServerAppIdRsp) {}
// 获取区服密钥信息
rpc GetRegionEc2b (NullMsg) returns (RegionEc2b) {}
// 获取负载最小的网关服务器的地址和端口
rpc GetGateServerAddr (GetGateServerAddrReq) returns (GateServerAddr) {}
// 获取全部网关服务器信息列表
rpc GetAllGateServerInfoList (NullMsg) returns (GateServerInfoList) {}
// 获取主游戏服务器的appid
rpc GetMainGameServerAppId (NullMsg) returns (GetMainGameServerAppIdRsp) {}
// 获取全服玩家GS在线列表
rpc GetGlobalGsOnlineMap (NullMsg) returns (GetGlobalGsOnlineMapRsp) {}
// 服务器启动注册获取appid
rpc RegisterServer (RegisterServerReq) returns (RegisterServerRsp) {}
// 服务器关闭取消注册
rpc CancelServer (CancelServerReq) returns (NullMsg) {}
// 服务器在线心跳保持
rpc KeepaliveServer (KeepaliveServerReq) returns (NullMsg) {}
// 获取负载最小的服务器的appid
rpc GetServerAppId (GetServerAppIdReq) returns (GetServerAppIdRsp) {}
// 获取区服密钥信息
rpc GetRegionEc2b (NullMsg) returns (RegionEc2b) {}
// 获取负载最小的网关服务器的地址和端口
rpc GetGateServerAddr (GetGateServerAddrReq) returns (GateServerAddr) {}
// 获取全部网关服务器信息列表
rpc GetAllGateServerInfoList (NullMsg) returns (GateServerInfoList) {}
// 获取主游戏服务器的appid
rpc GetMainGameServerAppId (NullMsg) returns (GetMainGameServerAppIdRsp) {}
// 获取全服玩家GS在线列表
rpc GetGlobalGsOnlineMap (NullMsg) returns (GetGlobalGsOnlineMapRsp) {}
}
message NullMsg {
}
message GetServerAppIdReq {
string server_type = 1;
string server_type = 1;
}
message GetServerAppIdRsp {
string app_id = 1;
string app_id = 1;
}
message RegisterServerReq {
string server_type = 1;
GateServerAddr gate_server_addr = 2;
repeated string version = 3;
string server_type = 1;
GateServerAddr gate_server_addr = 2;
repeated string version = 3;
}
message RegisterServerRsp {
string app_id = 1;
uint32 gs_id = 2;
string app_id = 1;
uint32 gs_id = 2;
}
message CancelServerReq {
string server_type = 1;
string app_id = 2;
string server_type = 1;
string app_id = 2;
}
message KeepaliveServerReq {
string server_type = 1;
string app_id = 2;
uint32 load_count = 3;
string server_type = 1;
string app_id = 2;
uint32 load_count = 3;
}
message GetGateServerAddrReq {
string version = 1;
string version = 1;
}
message GetMainGameServerAppIdRsp {
string app_id = 1;
string app_id = 1;
}
message RegionEc2b {
bytes data = 1;
bytes data = 1;
}
message GateServerAddr {
string kcp_addr = 1;
uint32 kcp_port = 2;
string mq_addr = 3;
uint32 mq_port = 4;
string kcp_addr = 1;
uint32 kcp_port = 2;
string mq_addr = 3;
uint32 mq_port = 4;
}
message GateServerInfo {
string app_id = 1;
string mq_addr = 2;
uint32 mq_port = 3;
string app_id = 1;
string mq_addr = 2;
uint32 mq_port = 3;
}
message GateServerInfoList {
repeated GateServerInfo gate_server_info_list = 1;
repeated GateServerInfo gate_server_info_list = 1;
}
message GetGlobalGsOnlineMapRsp {
map<uint32, string> GlobalGsOnlineMap = 1;
map<uint32, string> GlobalGsOnlineMap = 1;
}
File diff suppressed because it is too large Load Diff
+69 -69
View File
@@ -2,100 +2,100 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message Achievement {
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
option go_package = "./;proto";
uint32 finish_timestamp = 11;
Status status = 13;
uint32 cur_progress = 12;
uint32 id = 14;
uint32 total_progress = 8;
message Achievement {
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
uint32 finish_timestamp = 11;
Status status = 13;
uint32 cur_progress = 12;
uint32 id = 14;
uint32 total_progress = 8;
}
message AchievementAllDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2676;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2676;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated Achievement achievement_list = 4;
repeated uint32 reward_taken_goal_id_list = 2;
repeated Achievement achievement_list = 4;
repeated uint32 reward_taken_goal_id_list = 2;
}
message AchievementUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2668;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2668;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated Achievement achievement_list = 14;
repeated Achievement achievement_list = 14;
}
message TakeAchievementRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2675;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2675;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 id_list = 13;
repeated uint32 id_list = 13;
}
message TakeAchievementRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2657;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2657;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 id_list = 7;
repeated ItemParam item_list = 10;
int32 retcode = 1;
repeated uint32 id_list = 7;
repeated ItemParam item_list = 10;
int32 retcode = 1;
}
message TakeAchievementGoalRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2652;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2652;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 id_list = 5;
repeated uint32 id_list = 5;
}
message TakeAchievementGoalRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2681;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2681;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 15;
repeated uint32 id_list = 12;
repeated ItemParam item_list = 5;
int32 retcode = 15;
repeated uint32 id_list = 12;
repeated ItemParam item_list = 5;
}
File diff suppressed because it is too large Load Diff
@@ -2,67 +2,67 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message AranaraCollectionSuite {
map<uint32, AranaraCollectionState> collection_id_state_map = 6;
uint32 collection_type = 12;
map<uint32, AranaraCollectionState> collection_id_state_map = 6;
uint32 collection_type = 12;
}
message AranaraCollectionDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6376;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6376;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated AranaraCollectionSuite collection_suite_list = 14;
repeated AranaraCollectionSuite collection_suite_list = 14;
}
message AddAranaraCollectionNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6368;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6368;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 collection_type = 7;
AranaraCollectionState target_state = 12;
AranaraCollectionState from_state = 15;
uint32 collection_id = 8;
uint32 collection_type = 7;
AranaraCollectionState target_state = 12;
AranaraCollectionState from_state = 15;
uint32 collection_id = 8;
}
message CataLogGlobalWatcherFinishedData {
repeated uint32 finished_global_watcher_list = 8;
uint32 catalog_type = 13;
repeated uint32 finished_global_watcher_list = 8;
uint32 catalog_type = 13;
}
message CataLogFinishedGlobalWatcherAllDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6370;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6370;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CataLogGlobalWatcherFinishedData finished_global_watcher_data_list = 13;
repeated CataLogGlobalWatcherFinishedData finished_global_watcher_data_list = 13;
}
message CataLogNewFinishedGlobalWatcherNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6395;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6395;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CataLogGlobalWatcherFinishedData new_finished_global_watcher_data_list = 2;
repeated CataLogGlobalWatcherFinishedData new_finished_global_watcher_data_list = 2;
}
File diff suppressed because it is too large Load Diff
+181 -181
View File
@@ -2,267 +2,267 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum BattlePassUnlockStatus {
BATTLE_PASS_UNLOCK_INVALID = 0;
BATTLE_PASS_UNLOCK_FREE = 1;
BATTLE_PASS_UNLOCK_PAID = 2;
BATTLE_PASS_UNLOCK_INVALID = 0;
BATTLE_PASS_UNLOCK_FREE = 1;
BATTLE_PASS_UNLOCK_PAID = 2;
}
message BattlePassCycle {
uint32 cycle_idx = 3;
uint32 end_time = 10;
uint32 begin_time = 13;
uint32 cycle_idx = 3;
uint32 end_time = 10;
uint32 begin_time = 13;
}
message BattlePassMission {
enum MissionStatus {
MISSION_INVALID = 0;
MISSION_UNFINISHED = 1;
MISSION_FINISHED = 2;
MISSION_POINT_TAKEN = 3;
}
enum MissionStatus {
MISSION_INVALID = 0;
MISSION_UNFINISHED = 1;
MISSION_FINISHED = 2;
MISSION_POINT_TAKEN = 3;
}
uint32 cur_progress = 13;
MissionStatus mission_status = 15;
uint32 mission_id = 11;
uint32 reward_battle_pass_point = 3;
uint32 mission_type = 12;
uint32 total_progress = 6;
uint32 cur_progress = 13;
MissionStatus mission_status = 15;
uint32 mission_id = 11;
uint32 reward_battle_pass_point = 3;
uint32 mission_type = 12;
uint32 total_progress = 6;
}
message BattlePassRewardTag {
uint32 level = 4;
BattlePassUnlockStatus unlock_status = 2;
uint32 reward_id = 7;
uint32 level = 4;
BattlePassUnlockStatus unlock_status = 2;
uint32 reward_id = 7;
}
message BattlePassProduct {
string normal_product_id = 13;
string extra_product_id = 10;
string upgrade_product_id = 6;
string normal_product_id = 13;
string extra_product_id = 10;
string upgrade_product_id = 6;
}
message BattlePassSchedule {
uint32 level = 14;
uint32 begin_time = 2;
uint32 end_time = 15;
uint32 point = 1;
BattlePassCycle cur_cycle = 4;
BattlePassUnlockStatus unlock_status = 7;
repeated BattlePassRewardTag reward_taken_list = 11;
uint32 cur_cycle_points = 10;
uint32 paid_platform_flags = 12;
BattlePassProduct product_info = 13;
bool is_extra_paid_reward_taken = 6;
bool is_viewed = 3;
uint32 schedule_id = 9;
uint32 level = 14;
uint32 begin_time = 2;
uint32 end_time = 15;
uint32 point = 1;
BattlePassCycle cur_cycle = 4;
BattlePassUnlockStatus unlock_status = 7;
repeated BattlePassRewardTag reward_taken_list = 11;
uint32 cur_cycle_points = 10;
uint32 paid_platform_flags = 12;
BattlePassProduct product_info = 13;
bool is_extra_paid_reward_taken = 6;
bool is_viewed = 3;
uint32 schedule_id = 9;
}
message BattlePassAllDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2626;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2626;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool have_cur_schedule = 2;
repeated BattlePassMission mission_list = 4;
BattlePassSchedule cur_schedule = 1;
bool have_cur_schedule = 2;
repeated BattlePassMission mission_list = 4;
BattlePassSchedule cur_schedule = 1;
}
message BattlePassMissionUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2618;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2618;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated BattlePassMission mission_list = 1;
repeated BattlePassMission mission_list = 1;
}
message BattlePassMissionDelNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2625;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2625;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 del_mission_id_list = 10;
repeated uint32 del_mission_id_list = 10;
}
message BattlePassCurScheduleUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2607;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2607;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool have_cur_schedule = 11;
BattlePassSchedule cur_schedule = 1;
bool have_cur_schedule = 11;
BattlePassSchedule cur_schedule = 1;
}
message BattlePassRewardTakeOption {
BattlePassRewardTag tag = 10;
uint32 option_idx = 14;
BattlePassRewardTag tag = 10;
uint32 option_idx = 14;
}
message TakeBattlePassRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2602;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2602;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated BattlePassRewardTakeOption take_option_list = 12;
repeated BattlePassRewardTakeOption take_option_list = 12;
}
message TakeBattlePassRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2631;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2631;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ItemParam item_list = 7;
int32 retcode = 13;
repeated BattlePassRewardTakeOption take_option_list = 9;
repeated ItemParam item_list = 7;
int32 retcode = 13;
repeated BattlePassRewardTakeOption take_option_list = 9;
}
message TakeBattlePassMissionPointReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2629;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2629;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 mission_id_list = 5;
repeated uint32 mission_id_list = 5;
}
message TakeBattlePassMissionPointRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2622;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2622;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 4;
repeated uint32 mission_id_list = 11;
int32 retcode = 4;
repeated uint32 mission_id_list = 11;
}
message GetBattlePassProductReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2644;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2644;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 battle_pass_product_play_type = 10;
uint32 battle_pass_product_play_type = 10;
}
message GetBattlePassProductRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2649;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2649;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
string price_tier = 6;
uint32 battle_pass_product_play_type = 2;
string product_id = 1;
uint32 cur_schedule_id = 11;
int32 retcode = 14;
string price_tier = 6;
uint32 battle_pass_product_play_type = 2;
string product_id = 1;
uint32 cur_schedule_id = 11;
}
message SetBattlePassViewedReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2641;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2641;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 schedule_id = 6;
uint32 schedule_id = 6;
}
message SetBattlePassViewedRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2642;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2642;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 schedule_id = 2;
int32 retcode = 3;
uint32 schedule_id = 2;
int32 retcode = 3;
}
message BattlePassBuySuccNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2614;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2614;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 schedule_id = 4;
uint32 product_play_type = 11;
uint32 add_point = 12;
repeated ItemParam item_list = 9;
uint32 schedule_id = 4;
uint32 product_play_type = 11;
uint32 add_point = 12;
repeated ItemParam item_list = 9;
}
message BuyBattlePassLevelReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2647;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2647;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 buy_level = 8;
uint32 buy_level = 8;
}
message BuyBattlePassLevelRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2637;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2637;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 5;
uint32 buy_level = 13;
int32 retcode = 5;
uint32 buy_level = 13;
}
+88 -88
View File
@@ -2,129 +2,129 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum BlossomScheduleState {
BLOSSOM_SCHEDULE_NONE = 0;
BLOSSOM_SCHEDULE_INIT = 1;
BLOSSOM_SCHEDULE_IN_PROGRESS = 2;
BLOSSOM_SCHEDULE_REWARD = 3;
BLOSSOM_SCHEDULE_NONE = 0;
BLOSSOM_SCHEDULE_INIT = 1;
BLOSSOM_SCHEDULE_IN_PROGRESS = 2;
BLOSSOM_SCHEDULE_REWARD = 3;
}
message BlossomBriefInfo {
uint32 refresh_id = 13;
uint32 reward_id = 5;
uint32 city_id = 10;
uint32 resin = 11;
uint32 state = 7;
bool is_guide_opened = 1;
uint32 monster_level = 8;
uint32 circle_camp_id = 15;
Vector pos = 12;
uint32 scene_id = 9;
uint32 refresh_id = 13;
uint32 reward_id = 5;
uint32 city_id = 10;
uint32 resin = 11;
uint32 state = 7;
bool is_guide_opened = 1;
uint32 monster_level = 8;
uint32 circle_camp_id = 15;
Vector pos = 12;
uint32 scene_id = 9;
}
message GetBlossomBriefInfoListReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2772;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2772;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 city_id_list = 4;
repeated uint32 city_id_list = 4;
}
message GetBlossomBriefInfoListRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2798;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2798;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
int32 retcode = 12;
repeated BlossomBriefInfo brief_info_list = 11;
int32 retcode = 12;
repeated BlossomBriefInfo brief_info_list = 11;
}
message BlossomBriefInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2712;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2712;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated BlossomBriefInfo brief_info_list = 4;
repeated BlossomBriefInfo brief_info_list = 4;
}
message WorldOwnerBlossomBriefInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2735;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2735;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated BlossomBriefInfo brief_info_list = 13;
repeated BlossomBriefInfo brief_info_list = 13;
}
message BlossomScheduleInfo {
uint32 progress = 13;
uint32 state = 10;
uint32 round = 4;
uint32 circle_camp_id = 15;
uint32 refresh_id = 6;
uint32 finish_progress = 14;
uint32 progress = 13;
uint32 state = 10;
uint32 round = 4;
uint32 circle_camp_id = 15;
uint32 refresh_id = 6;
uint32 finish_progress = 14;
}
message WorldOwnerBlossomScheduleInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2707;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2707;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
BlossomScheduleInfo schedule_info = 3;
BlossomScheduleInfo schedule_info = 3;
}
message BlossomChestCreateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2721;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2721;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 refresh_id = 1;
uint32 circle_camp_id = 10;
uint32 refresh_id = 1;
uint32 circle_camp_id = 10;
}
message OpenBlossomCircleCampGuideNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2703;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2703;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 refresh_id = 7;
repeated uint32 circle_camp_id_list = 11;
uint32 refresh_id = 7;
repeated uint32 circle_camp_id_list = 11;
}
+128 -128
View File
@@ -2,187 +2,187 @@ syntax = "proto3";
package proto;
import "cmd/cmd_scene.proto";
import "define.proto";
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_scene.proto";
message PrivateChatReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5022;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5022;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 target_uid = 7;
oneof content {
string text = 3;
uint32 icon = 4;
}
uint32 target_uid = 7;
oneof content {
string text = 3;
uint32 icon = 4;
}
}
message PrivateChatRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5048;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5048;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 chat_forbidden_endtime = 12;
int32 retcode = 14;
uint32 chat_forbidden_endtime = 12;
int32 retcode = 14;
}
message PrivateChatNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4962;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4962;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ChatInfo chat_info = 7;
ChatInfo chat_info = 7;
}
message PullPrivateChatReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4971;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4971;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 target_uid = 5;
uint32 pull_num = 7;
uint32 from_sequence = 12;
uint32 target_uid = 5;
uint32 pull_num = 7;
uint32 from_sequence = 12;
}
message PullPrivateChatRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4953;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4953;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ChatInfo chat_info = 15;
int32 retcode = 11;
repeated ChatInfo chat_info = 15;
int32 retcode = 11;
}
message PullRecentChatReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5040;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5040;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 pull_num = 6;
uint32 begin_sequence = 15;
uint32 pull_num = 6;
uint32 begin_sequence = 15;
}
message PullRecentChatRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5023;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5023;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ChatInfo chat_info = 15;
int32 retcode = 3;
repeated ChatInfo chat_info = 15;
int32 retcode = 3;
}
message ReadPrivateChatReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5049;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5049;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 target_uid = 1;
uint32 target_uid = 1;
}
message ReadPrivateChatRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
int32 retcode = 1;
}
message ChatChannelUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5025;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5025;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 channel_id = 3;
bool is_create = 15;
ChatChannelInfo channel_info = 14;
uint32 channel_id = 3;
bool is_create = 15;
ChatChannelInfo channel_info = 14;
}
message ChatChannelInfo {
bool is_shield = 15;
uint32 channel_id = 8;
bool is_shield = 15;
uint32 channel_id = 8;
}
message ChatChannelDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 channel_list = 3;
repeated ChatChannelInfo channel_info_list = 7;
repeated uint32 channel_list = 3;
repeated ChatChannelInfo channel_info_list = 7;
}
message ChatChannelShieldNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5047;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5047;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_shield = 5;
uint32 channel_id = 14;
bool is_shield = 5;
uint32 channel_id = 14;
}
message ChatChannelInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5031;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5031;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ChatChannelInfo channel_info = 2;
ChatChannelInfo channel_info = 2;
}
+88 -88
View File
@@ -2,127 +2,127 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message CodexTypeData {
repeated uint32 codex_id_list = 14;
map<uint32, uint32> weapon_max_promote_level_map = 4;
CodexType type = 13;
repeated bool have_viewed_list = 5;
repeated uint32 codex_id_list = 14;
map<uint32, uint32> weapon_max_promote_level_map = 4;
CodexType type = 13;
repeated bool have_viewed_list = 5;
}
message CodexDataFullNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4205;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4205;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 last_read_pushtips_codex_id = 4;
repeated uint32 recent_viewed_pushtips_list = 2;
uint32 last_read_pushtips_type_id = 3;
repeated CodexTypeData type_data_list = 6;
uint32 last_read_pushtips_codex_id = 4;
repeated uint32 recent_viewed_pushtips_list = 2;
uint32 last_read_pushtips_type_id = 3;
repeated CodexTypeData type_data_list = 6;
}
message CodexDataUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 id = 8;
uint32 weapon_max_promote_level = 15;
CodexType type = 11;
uint32 id = 8;
uint32 weapon_max_promote_level = 15;
CodexType type = 11;
}
message QueryCodexMonsterBeKilledNumReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 codex_id_list = 14;
repeated uint32 codex_id_list = 14;
}
message QueryCodexMonsterBeKilledNumRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4209;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4209;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 codex_id_list = 4;
repeated uint32 be_captured_num_list = 6;
repeated uint32 be_killed_num_list = 12;
int32 retcode = 5;
repeated uint32 codex_id_list = 4;
repeated uint32 be_captured_num_list = 6;
repeated uint32 be_killed_num_list = 12;
int32 retcode = 5;
}
message ViewCodexReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4202;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4202;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated CodexTypeData type_data_list = 10;
repeated CodexTypeData type_data_list = 10;
}
message ViewCodexRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4201;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4201;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 12;
repeated uint32 push_tips_reward_list = 10;
repeated uint32 recent_viewed_pushtips_list = 3;
repeated CodexTypeData type_data_list = 9;
repeated uint32 push_tips_read_list = 15;
int32 retcode = 12;
repeated uint32 push_tips_reward_list = 10;
repeated uint32 recent_viewed_pushtips_list = 3;
repeated CodexTypeData type_data_list = 9;
repeated uint32 push_tips_read_list = 15;
}
message SetCodexPushtipsReadReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4208;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4208;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 type_id = 2;
uint32 codex_id = 14;
uint32 type_id = 2;
uint32 codex_id = 14;
}
message SetCodexPushtipsReadRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4206;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4206;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
uint32 type_id = 5;
uint32 codex_id = 14;
int32 retcode = 10;
uint32 type_id = 5;
uint32 codex_id = 14;
}
+285 -285
View File
@@ -5,409 +5,409 @@ package proto;
option go_package = "./;proto";
message MainCoop {
enum Status {
INVALID = 0;
RUNNING = 1;
FINISHED = 2;
}
enum Status {
INVALID = 0;
RUNNING = 1;
FINISHED = 2;
}
map<uint32, uint32> seen_ending_map = 13;
map<uint32, int32> normal_var_map = 4;
uint32 self_confidence = 5;
repeated uint32 save_point_id_list = 1;
Status status = 6;
map<uint32, int32> temp_var_map = 11;
uint32 id = 9;
map<uint32, uint32> seen_ending_map = 13;
map<uint32, int32> normal_var_map = 4;
uint32 self_confidence = 5;
repeated uint32 save_point_id_list = 1;
Status status = 6;
map<uint32, int32> temp_var_map = 11;
uint32 id = 9;
}
message AllCoopInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1976;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1976;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated MainCoop main_coop_list = 14;
repeated MainCoop main_coop_list = 14;
}
message MainCoopUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1968;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1968;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated MainCoop main_coop_list = 5;
repeated MainCoop main_coop_list = 5;
}
message SaveMainCoopReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1975;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1975;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
map<uint32, int32> normal_var_map = 15;
uint32 self_confidence = 2;
uint32 save_point_id = 1;
map<uint32, int32> temp_var_map = 8;
uint32 id = 3;
map<uint32, int32> normal_var_map = 15;
uint32 self_confidence = 2;
uint32 save_point_id = 1;
map<uint32, int32> temp_var_map = 8;
uint32 id = 3;
}
message SaveMainCoopRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1957;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1957;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 2;
repeated uint32 save_point_id_list = 15;
uint32 id = 14;
int32 retcode = 2;
repeated uint32 save_point_id_list = 15;
uint32 id = 14;
}
message FinishMainCoopReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1952;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1952;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 id = 10;
uint32 ending_save_point_id = 1;
uint32 id = 10;
uint32 ending_save_point_id = 1;
}
message FinishMainCoopRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 id = 2;
uint32 ending_save_point_id = 6;
int32 retcode = 4;
uint32 id = 2;
uint32 ending_save_point_id = 6;
int32 retcode = 4;
}
message CoopPoint {
enum State {
STATE_UNSTARTED = 0;
STATE_STARTED = 1;
STATE_FINISHED = 2;
}
enum State {
STATE_UNSTARTED = 0;
STATE_STARTED = 1;
STATE_FINISHED = 2;
}
uint32 self_confidence = 15;
State state = 10;
uint32 id = 14;
uint32 self_confidence = 15;
State state = 10;
uint32 id = 14;
}
message CoopReward {
enum State {
STATE_UNLOCK = 0;
STATE_LOCK = 1;
STATE_TAKEN = 2;
}
enum State {
STATE_UNLOCK = 0;
STATE_LOCK = 1;
STATE_TAKEN = 2;
}
uint32 id = 5;
State state = 6;
uint32 id = 5;
State state = 6;
}
message CoopCg {
bool is_unlock = 14;
uint32 id = 8;
bool is_unlock = 14;
uint32 id = 8;
}
message CoopChapter {
enum State {
STATE_CLOSE = 0;
STATE_COND_NOT_MEET = 1;
STATE_COND_MEET = 2;
STATE_ACCEPT = 3;
}
enum State {
STATE_CLOSE = 0;
STATE_COND_NOT_MEET = 1;
STATE_COND_MEET = 2;
STATE_ACCEPT = 3;
}
repeated CoopCg coop_cg_list = 1;
uint32 id = 2;
repeated CoopPoint coop_point_list = 11;
repeated uint32 finish_dialog_list = 10;
uint32 finished_end_count = 14;
uint32 total_end_count = 7;
repeated CoopReward coop_reward_list = 5;
repeated uint32 lock_reason_list = 12;
State state = 4;
map<uint32, uint32> seen_ending_map = 9;
repeated CoopCg coop_cg_list = 1;
uint32 id = 2;
repeated CoopPoint coop_point_list = 11;
repeated uint32 finish_dialog_list = 10;
uint32 finished_end_count = 14;
uint32 total_end_count = 7;
repeated CoopReward coop_reward_list = 5;
repeated uint32 lock_reason_list = 12;
State state = 4;
map<uint32, uint32> seen_ending_map = 9;
}
message CoopDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1979;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1979;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CoopChapter chapter_list = 15;
repeated uint32 viewed_chapter_list = 7;
bool is_have_progress = 10;
uint32 cur_coop_point = 5;
repeated CoopChapter chapter_list = 15;
repeated uint32 viewed_chapter_list = 7;
bool is_have_progress = 10;
uint32 cur_coop_point = 5;
}
message CoopChapterUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1972;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1972;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CoopChapter chapter_list = 14;
repeated CoopChapter chapter_list = 14;
}
message CoopCgUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1994;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1994;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 cg_list = 13;
repeated uint32 cg_list = 13;
}
message CoopRewardUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1999;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1999;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CoopReward reward_list = 7;
repeated CoopReward reward_list = 7;
}
message UnlockCoopChapterReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1970;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1970;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 chapter_id = 3;
uint32 chapter_id = 3;
}
message UnlockCoopChapterRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1995;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1995;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 chapter_id = 4;
int32 retcode = 6;
uint32 chapter_id = 4;
int32 retcode = 6;
}
message CoopPointUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1991;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1991;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
CoopPoint coop_point = 13;
CoopPoint coop_point = 13;
}
message StartCoopPointReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1992;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1992;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 coop_point = 7;
uint32 coop_point = 7;
}
message StartCoopPointRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1964;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1964;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_start = 9;
MainCoop start_main_coop = 15;
uint32 coop_point = 13;
int32 retcode = 8;
bool is_start = 9;
MainCoop start_main_coop = 15;
uint32 coop_point = 13;
int32 retcode = 8;
}
message CancelCoopTaskReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1997;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1997;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 chapter_id = 13;
uint32 chapter_id = 13;
}
message CancelCoopTaskRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1987;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1987;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 chapter_id = 1;
int32 retcode = 5;
uint32 chapter_id = 1;
int32 retcode = 5;
}
message TakeCoopRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1973;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1973;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 reward_config_id = 6;
uint32 reward_config_id = 6;
}
message TakeCoopRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1985;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1985;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
uint32 reward_config_id = 1;
int32 retcode = 9;
uint32 reward_config_id = 1;
}
message CoopProgressUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cur_coop_point = 11;
bool is_have_progress = 12;
uint32 cur_coop_point = 11;
bool is_have_progress = 12;
}
message SaveCoopDialogReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2000;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2000;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 main_coop_id = 11;
uint32 dialog_id = 6;
uint32 main_coop_id = 11;
uint32 dialog_id = 6;
}
message SaveCoopDialogRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1962;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1962;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 dialog_id = 8;
uint32 main_coop_id = 10;
int32 retcode = 7;
uint32 dialog_id = 8;
uint32 main_coop_id = 10;
int32 retcode = 7;
}
message CoopCgShowNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1983;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1983;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 cg_list = 10;
repeated uint32 cg_list = 10;
}
message SetCoopChapterViewedReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1965;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1965;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 chapter_id = 2;
uint32 chapter_id = 2;
}
message SetCoopChapterViewedRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1963;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1963;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 chapter_id = 11;
int32 retcode = 2;
uint32 chapter_id = 11;
int32 retcode = 2;
}
message MainCoopFailNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1951;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1951;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
string textmap_id = 7;
uint32 chapter_id = 15;
string textmap_id = 7;
uint32 chapter_id = 15;
}
+399 -399
View File
@@ -2,584 +2,584 @@ syntax = "proto3";
package proto;
import "cmd/cmd_social.proto";
import "define.proto";
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_social.proto";
enum EnterCustomDungeonType {
ENTER_CUSTOM_DUNGEON_NONE = 0;
ENTER_CUSTOM_DUNGEON_EDIT = 1;
ENTER_CUSTOM_DUNGEON_PLAY = 2;
ENTER_CUSTOM_DUNGEON_OFFICIAL = 3;
ENTER_CUSTOM_DUNGEON_NONE = 0;
ENTER_CUSTOM_DUNGEON_EDIT = 1;
ENTER_CUSTOM_DUNGEON_PLAY = 2;
ENTER_CUSTOM_DUNGEON_OFFICIAL = 3;
}
enum CustomDungeonState {
CUSTOM_DUNGEON_STATE_EDIT = 0;
CUSTOM_DUNGEON_STATE_SELF_PASS = 1;
CUSTOM_DUNGEON_STATE_PUBLISHED = 2;
CUSTOM_DUNGEON_STATE_EDIT = 0;
CUSTOM_DUNGEON_STATE_SELF_PASS = 1;
CUSTOM_DUNGEON_STATE_PUBLISHED = 2;
}
enum CustomDungeonBanType {
CUSTOM_DUNGEON_BAN_TYPE_NONE = 0;
CUSTOM_DUNGEON_BAN_TYPE_LAYOUT = 1;
CUSTOM_DUNGEON_BAN_TYPE_NONE = 0;
CUSTOM_DUNGEON_BAN_TYPE_LAYOUT = 1;
}
enum TryCustomDungeonType {
TRY_CUSTOM_DUNGEON_NONE = 0;
TRY_CUSTOM_DUNGEON_ROOM = 1;
TRY_CUSTOM_DUNGEON_ALL = 2;
TRY_CUSTOM_DUNGEON_OFFICIAL_PLAY = 3;
TRY_CUSTOM_DUNGEON_NONE = 0;
TRY_CUSTOM_DUNGEON_ROOM = 1;
TRY_CUSTOM_DUNGEON_ALL = 2;
TRY_CUSTOM_DUNGEON_OFFICIAL_PLAY = 3;
}
message CustomDungeonBlock {
uint32 block_id = 8;
Vector rot = 12;
uint32 guid = 4;
Vector pos = 1;
uint32 block_id = 8;
Vector rot = 12;
uint32 guid = 4;
Vector pos = 1;
}
message CustomDungeonRoom {
uint32 room_id = 15;
repeated CustomDungeonBlock block_list = 4;
uint32 room_id = 15;
repeated CustomDungeonBlock block_list = 4;
}
message CustomDungeonSetting {
repeated uint32 open_room_list = 1;
bool is_arrive_finish = 14;
uint32 life_num = 6;
uint32 start_room_id = 4;
bool is_forbid_skill = 3;
uint32 coin_limit = 10;
uint32 time_limit = 9;
repeated uint32 open_room_list = 1;
bool is_arrive_finish = 14;
uint32 life_num = 6;
uint32 start_room_id = 4;
bool is_forbid_skill = 3;
uint32 coin_limit = 10;
uint32 time_limit = 9;
}
message CustomDungeon {
CustomDungeonSetting setting = 1;
repeated CustomDungeonRoom room_list = 15;
uint32 dungeon_id = 3;
uint64 dungeon_guid = 10;
CustomDungeonSetting setting = 1;
repeated CustomDungeonRoom room_list = 15;
uint32 dungeon_id = 3;
uint64 dungeon_guid = 10;
}
message EnterCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6226;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6226;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint64 dungeon_guid = 11;
uint32 dungeon_id = 12;
EnterCustomDungeonType enter_type = 10;
uint64 dungeon_guid = 11;
uint32 dungeon_id = 12;
EnterCustomDungeonType enter_type = 10;
}
message EnterCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6218;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6218;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
CustomDungeon custom_dungeon = 14;
EnterCustomDungeonType enter_type = 2;
int32 retcode = 10;
map<uint32, uint32> room_cost_map = 6;
CustomDungeon custom_dungeon = 14;
EnterCustomDungeonType enter_type = 2;
int32 retcode = 10;
map<uint32, uint32> room_cost_map = 6;
}
message SaveCustomDungeonRoomReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6225;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6225;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
CustomDungeonRoom custom_dungeon_room = 5;
bool is_update_setting = 7;
CustomDungeonSetting setting = 13;
CustomDungeonRoom custom_dungeon_room = 5;
bool is_update_setting = 7;
CustomDungeonSetting setting = 13;
}
message SaveCustomDungeonRoomRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 room_id = 14;
repeated CustomDungeonBlock error_block_list = 9;
int32 retcode = 12;
uint32 room_id = 14;
repeated CustomDungeonBlock error_block_list = 9;
int32 retcode = 12;
}
message CustomDungeonAbstract {
map<uint32, uint32> brick_statistics_map = 12;
uint32 first_publish_time = 3;
uint32 total_coin_num = 15;
uint32 last_publish_time = 6;
uint32 finish_room_id = 7;
map<uint32, uint32> brick_statistics_map = 12;
uint32 first_publish_time = 3;
uint32 total_coin_num = 15;
uint32 last_publish_time = 6;
uint32 finish_room_id = 7;
}
message CustomDungeonSocial {
uint32 win_num = 4;
uint32 like_num = 12;
uint32 play_num = 7;
uint32 store_num = 2;
uint32 win_num = 4;
uint32 like_num = 12;
uint32 play_num = 7;
uint32 store_num = 2;
}
message CustomDungeonBrief {
CustomDungeonSetting setting = 2;
bool is_psn_platform = 13;
CustomDungeonSocial social = 7;
uint64 dungeon_guid = 10;
uint32 last_save_time = 14;
repeated uint32 tag_list = 15;
uint32 dungeon_id = 5;
uint32 battle_min_cost_time = 12;
CustomDungeonState state = 1;
CustomDungeonAbstract abstract = 4;
CustomDungeonSetting setting = 2;
bool is_psn_platform = 13;
CustomDungeonSocial social = 7;
uint64 dungeon_guid = 10;
uint32 last_save_time = 14;
repeated uint32 tag_list = 15;
uint32 dungeon_id = 5;
uint32 battle_min_cost_time = 12;
CustomDungeonState state = 1;
CustomDungeonAbstract abstract = 4;
}
message OtherCustomDungeonBrief {
SocialDetail creator_detail = 4;
uint32 battle_min_cost_time = 15;
CustomDungeonAbstract abstract = 2;
uint64 dungeon_guid = 14;
CustomDungeonSetting setting = 10;
uint32 dungeon_id = 6;
repeated uint32 tag_list = 1;
bool is_adventure_dungeon = 11;
bool is_psn_platform = 9;
bool is_stored = 3;
CustomDungeonSocial social = 12;
SocialDetail creator_detail = 4;
uint32 battle_min_cost_time = 15;
CustomDungeonAbstract abstract = 2;
uint64 dungeon_guid = 14;
CustomDungeonSetting setting = 10;
uint32 dungeon_id = 6;
repeated uint32 tag_list = 1;
bool is_adventure_dungeon = 11;
bool is_psn_platform = 9;
bool is_stored = 3;
CustomDungeonSocial social = 12;
}
message CustomDungeonBanInfo {
CustomDungeonBanType ban_type = 11;
uint32 expire_time = 6;
uint64 dungeon_guid = 5;
CustomDungeonBanType ban_type = 11;
uint32 expire_time = 6;
uint64 dungeon_guid = 5;
}
message ChangeCustomDungeonRoomReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 room_id = 4;
uint32 room_id = 4;
}
message ChangeCustomDungeonRoomRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6244;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6244;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint32 room_id = 13;
int32 retcode = 1;
uint32 room_id = 13;
}
message RemoveCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6249;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6249;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint64 dungeon_guid = 14;
uint64 dungeon_guid = 14;
}
message RemoveCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6220;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6220;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
uint64 dungeon_guid = 11;
int32 retcode = 14;
uint64 dungeon_guid = 11;
}
message TryCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6245;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6245;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 room_id = 13;
uint32 room_id = 13;
}
message TryCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6241;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6241;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 room_id = 4;
int32 retcode = 1;
uint32 room_id = 4;
int32 retcode = 1;
}
message PublishCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6242;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6242;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 tag_list = 1;
uint64 dungeon_guid = 5;
repeated uint32 tag_list = 1;
uint64 dungeon_guid = 5;
}
message PublishCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6214;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6214;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 2;
int32 retcode = 2;
}
message ExitCustomDungeonTryReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6247;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6247;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message ExitCustomDungeonTryRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6237;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6237;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 3;
int32 retcode = 3;
}
message CustomDungeonUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6223;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6223;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
CustomDungeonBrief dungeon_brief = 12;
CustomDungeonBrief dungeon_brief = 12;
}
message GetRecommendCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_refresh = 13;
bool is_refresh = 13;
}
message GetRecommendCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6248;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6248;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated OtherCustomDungeonBrief custom_dungeon_list = 8;
int32 retcode = 14;
repeated OtherCustomDungeonBrief custom_dungeon_list = 8;
int32 retcode = 14;
}
message GetStoreCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6250;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6250;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetStoreCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 13;
repeated OtherCustomDungeonBrief custom_dungeon_list = 7;
int32 retcode = 13;
repeated OtherCustomDungeonBrief custom_dungeon_list = 7;
}
message SearchCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6233;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6233;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string dungeon_code = 6;
string dungeon_code = 6;
}
message SearchCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6215;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6215;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 15;
OtherCustomDungeonBrief custom_dungeon_brief = 14;
int32 retcode = 15;
OtherCustomDungeonBrief custom_dungeon_brief = 14;
}
message StoreCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6213;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6213;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_cancel_store = 9;
uint64 dungeon_guid = 11;
bool is_cancel_store = 9;
uint64 dungeon_guid = 11;
}
message StoreCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6201;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6201;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 12;
int32 retcode = 12;
}
message LikeCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6210;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6210;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_cancel_like = 5;
uint64 dungeon_guid = 10;
bool is_cancel_like = 5;
uint64 dungeon_guid = 10;
}
message LikeCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6219;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6219;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 3;
int32 retcode = 3;
}
message GetCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6209;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6209;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6227;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6227;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
CustomDungeonBanInfo ban_info = 14;
repeated CustomDungeonBrief brief_list = 5;
int32 retcode = 10;
CustomDungeonBanInfo ban_info = 14;
repeated CustomDungeonBrief brief_list = 5;
}
message CustomDungeonRecoverNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6217;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6217;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
EnterCustomDungeonType enter_type = 14;
TryCustomDungeonType try_type = 3;
CustomDungeon custom_dungeon = 10;
repeated uint32 official_black_coin_list = 12;
EnterCustomDungeonType enter_type = 14;
TryCustomDungeonType try_type = 3;
CustomDungeon custom_dungeon = 10;
repeated uint32 official_black_coin_list = 12;
}
message BackPlayCustomDungeonOfficialReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 room_id = 2;
uint32 room_id = 2;
}
message BackPlayCustomDungeonOfficialRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6204;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6204;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 12;
int32 retcode = 12;
}
message CustomDungeonOfficialNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6221;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6221;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
TryCustomDungeonType try_type = 9;
repeated uint32 official_black_coin_list = 14;
EnterCustomDungeonType enter_type = 15;
TryCustomDungeonType try_type = 9;
repeated uint32 official_black_coin_list = 14;
EnterCustomDungeonType enter_type = 15;
}
message CustomDungeonVerify {
uint64 dungeon_guid = 3;
uint32 uid = 15;
uint32 timestamp = 4;
string region = 11;
uint32 lang = 13;
uint64 dungeon_guid = 3;
uint32 uid = 15;
uint32 timestamp = 4;
string region = 11;
uint32 lang = 13;
}
message ReplayCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6243;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6243;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message ReplayCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6240;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6240;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
int32 retcode = 15;
int32 retcode = 15;
}
message CustomDungeonBattleRecordNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6236;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6236;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 min_cost_time = 13;
uint64 dungeon_guid = 12;
uint32 min_cost_time = 13;
uint64 dungeon_guid = 12;
}
message OutStuckCustomDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6211;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6211;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message OutStuckCustomDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6234;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6234;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
int32 retcode = 15;
int32 retcode = 15;
}
+127 -127
View File
@@ -2,185 +2,185 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum DraftInviteFailReason {
DRAFT_FAIL_UNKNOWN = 0;
DRAFT_ACTIVITY_NOT_OPEN = 1;
DRAFT_ACTIVITY_PLAY_NOT_OPEN = 2;
DRAFT_SCENE_NOT_MEET = 3;
DRAFT_WORLD_NOT_MEET = 4;
DRAFT_PLAY_LIMIT_NOT_MEET = 5;
DRAFT_FAIL_UNKNOWN = 0;
DRAFT_ACTIVITY_NOT_OPEN = 1;
DRAFT_ACTIVITY_PLAY_NOT_OPEN = 2;
DRAFT_SCENE_NOT_MEET = 3;
DRAFT_WORLD_NOT_MEET = 4;
DRAFT_PLAY_LIMIT_NOT_MEET = 5;
}
message DraftOwnerStartInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 draft_id = 14;
uint32 draft_id = 14;
}
message DraftInviteFailInfo {
uint32 uid = 8;
DraftInviteFailReason reason = 5;
uint32 uid = 8;
DraftInviteFailReason reason = 5;
}
message DraftOwnerStartInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated DraftInviteFailInfo invite_fail_info_list = 15;
int32 retcode = 9;
uint32 wrong_uid = 3;
uint32 draft_id = 14;
repeated DraftInviteFailInfo invite_fail_info_list = 15;
int32 retcode = 9;
uint32 wrong_uid = 3;
uint32 draft_id = 14;
}
message DraftOwnerInviteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5407;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5407;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 draft_id = 4;
uint32 invite_deadline_time = 15;
uint32 draft_id = 4;
uint32 invite_deadline_time = 15;
}
message DraftGuestReplyInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 draft_id = 10;
bool is_agree = 3;
uint32 draft_id = 10;
bool is_agree = 3;
}
message DraftGuestReplyInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 draft_id = 3;
int32 retcode = 1;
bool is_agree = 10;
uint32 draft_id = 3;
int32 retcode = 1;
bool is_agree = 10;
}
message DraftGuestReplyInviteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 draft_id = 5;
bool is_agree = 9;
uint32 guest_uid = 10;
uint32 draft_id = 5;
bool is_agree = 9;
uint32 guest_uid = 10;
}
message DraftInviteResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_all_argee = 9;
uint32 draft_id = 13;
bool is_all_argee = 9;
uint32 draft_id = 13;
}
message DraftOwnerTwiceConfirmNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5499;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5499;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 twice_confirm_deadline_time = 15;
uint32 draft_id = 14;
uint32 twice_confirm_deadline_time = 15;
uint32 draft_id = 14;
}
message DraftGuestReplyTwiceConfirmReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_agree = 15;
uint32 draft_id = 14;
bool is_agree = 15;
uint32 draft_id = 14;
}
message DraftGuestReplyTwiceConfirmRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 draft_id = 5;
bool is_agree = 13;
int32 retcode = 3;
uint32 draft_id = 5;
bool is_agree = 13;
int32 retcode = 3;
}
message DraftTwiceConfirmResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_all_argee = 7;
uint32 draft_id = 1;
bool is_all_argee = 7;
uint32 draft_id = 1;
}
message DraftGuestReplyTwiceConfirmNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_agree = 14;
uint32 draft_id = 15;
uint32 guest_uid = 7;
bool is_agree = 14;
uint32 draft_id = 15;
uint32 guest_uid = 7;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+201 -201
View File
@@ -2,289 +2,289 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum FishEscapeReason {
FISN_ESCAPE_NONE = 0;
FISH_ESCAPE_SHOCKED = 1;
FISH_ESCAPE_UNHOOK = 2;
FISN_ESCAPE_NONE = 0;
FISH_ESCAPE_SHOCKED = 1;
FISH_ESCAPE_UNHOOK = 2;
}
enum FishBattleResult {
FISH_BATTLE_RESULT_NONE = 0;
FISH_BATTLE_RESULT_SUCC = 1;
FISH_BATTLE_RESULT_FAIL = 2;
FISH_BATTLE_RESULT_TIMEOUT = 3;
FISH_BATTLE_RESULT_CANCEL = 4;
FISH_BATTLE_RESULT_EXIT = 5;
FISH_BATTLE_RESULT_NONE = 0;
FISH_BATTLE_RESULT_SUCC = 1;
FISH_BATTLE_RESULT_FAIL = 2;
FISH_BATTLE_RESULT_TIMEOUT = 3;
FISH_BATTLE_RESULT_CANCEL = 4;
FISH_BATTLE_RESULT_EXIT = 5;
}
message EnterFishingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5826;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5826;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 fish_pool_id = 3;
uint32 fish_pool_id = 3;
}
message EnterFishingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5818;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5818;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
uint32 fish_pool_id = 9;
int32 retcode = 7;
uint32 fish_pool_id = 9;
}
message StartFishingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5825;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5825;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 rod_entity_id = 5;
uint32 fish_pool_id = 15;
uint32 rod_entity_id = 5;
uint32 fish_pool_id = 15;
}
message StartFishingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint32 fish_pool_id = 14;
int32 retcode = 1;
uint32 fish_pool_id = 14;
}
message FishCastRodReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5802;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5802;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 bait_id = 14;
uint32 rod_id = 4;
uint32 rod_entity_id = 7;
Vector pos = 12;
uint32 bait_id = 14;
uint32 rod_id = 4;
uint32 rod_entity_id = 7;
Vector pos = 12;
}
message FishCastRodRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 12;
int32 retcode = 12;
}
message FishChosenNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5829;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5829;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 fish_id = 12;
uint32 fish_id = 12;
}
message FishEscapeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5822;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5822;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
FishEscapeReason reason = 4;
Vector pos = 7;
uint32 uid = 14;
repeated uint32 fish_id_list = 6;
FishEscapeReason reason = 4;
Vector pos = 7;
uint32 uid = 14;
repeated uint32 fish_id_list = 6;
}
message FishBiteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5844;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5844;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message FishBiteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5849;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5849;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
int32 retcode = 9;
}
message FishBattleBeginReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5820;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5820;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message FishBattleBeginRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5845;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5845;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
int32 retcode = 10;
}
message FishBattleEndReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5841;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5841;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 max_bonus_time = 3;
FishBattleResult battle_result = 10;
bool is_always_bonus = 11;
uint32 max_bonus_time = 3;
FishBattleResult battle_result = 10;
bool is_always_bonus = 11;
}
message FishBattleEndRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5842;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5842;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum FishNoRewardReason {
FISH_NO_REWARD_NONE = 0;
FISH_NO_REWARD_ACTIVITY_LIMIT = 1;
FISH_NO_REWARD_BAG_LIMIT = 2;
FISH_NO_REWARD_POOL_LIMIT = 3;
}
enum FishNoRewardReason {
FISH_NO_REWARD_NONE = 0;
FISH_NO_REWARD_ACTIVITY_LIMIT = 1;
FISH_NO_REWARD_BAG_LIMIT = 2;
FISH_NO_REWARD_POOL_LIMIT = 3;
}
bool is_got_reward = 10;
repeated ItemParam reward_item_list = 11;
repeated ItemParam talent_item_list = 13;
repeated ItemParam drop_item_list = 9;
int32 retcode = 7;
FishNoRewardReason no_reward_reason = 14;
FishBattleResult battle_result = 6;
bool is_got_reward = 10;
repeated ItemParam reward_item_list = 11;
repeated ItemParam talent_item_list = 13;
repeated ItemParam drop_item_list = 9;
int32 retcode = 7;
FishNoRewardReason no_reward_reason = 14;
FishBattleResult battle_result = 6;
}
message ExitFishingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5814;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5814;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message ExitFishingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5847;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5847;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
int32 retcode = 9;
}
message FishAttractNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5837;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5837;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 fish_id_list = 3;
Vector pos = 9;
uint32 uid = 2;
repeated uint32 fish_id_list = 3;
Vector pos = 9;
uint32 uid = 2;
}
message FishBaitGoneNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5823;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5823;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 uid = 8;
uint32 uid = 8;
}
message PlayerFishingDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 last_fish_rod_id = 8;
uint32 last_fish_rod_id = 8;
}
message FishPoolDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 entity_id = 6;
uint32 today_fish_num = 2;
uint32 entity_id = 6;
uint32 today_fish_num = 2;
}
+139 -139
View File
@@ -2,186 +2,186 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message GetGachaInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GachaUpInfo {
uint32 item_parent_type = 7;
repeated uint32 item_id_list = 15;
uint32 item_parent_type = 7;
repeated uint32 item_id_list = 15;
}
message GachaInfo {
uint32 ten_cost_item_id = 2;
uint32 end_time = 14;
repeated uint32 display_up4_item_list = 1875;
uint32 cur_schedule_daily_gacha_times = 469;
repeated GachaUpInfo gacha_up_info_list = 1233;
string gacha_prob_url = 8;
string gacha_prefab_path = 15;
uint32 wish_item_id = 1637;
uint32 begin_time = 1;
uint32 wish_max_progress = 1222;
uint32 schedule_id = 10;
string gacha_prob_url_oversea = 1481;
uint32 gacha_type = 13;
uint32 left_gacha_times = 5;
repeated uint32 display_up5_item_list = 2006;
uint32 gacha_times_limit = 11;
uint32 cost_item_num = 3;
bool is_new_wish = 733;
uint32 cost_item_id = 9;
uint32 ten_cost_item_num = 6;
string gacha_preview_prefab_path = 4;
uint32 wish_progress = 1819;
string title_textmap = 736;
string gacha_record_url_oversea = 1854;
uint32 gacha_sort_id = 7;
string gacha_record_url = 12;
uint32 ten_cost_item_id = 2;
uint32 end_time = 14;
repeated uint32 display_up4_item_list = 1875;
uint32 cur_schedule_daily_gacha_times = 469;
repeated GachaUpInfo gacha_up_info_list = 1233;
string gacha_prob_url = 8;
string gacha_prefab_path = 15;
uint32 wish_item_id = 1637;
uint32 begin_time = 1;
uint32 wish_max_progress = 1222;
uint32 schedule_id = 10;
string gacha_prob_url_oversea = 1481;
uint32 gacha_type = 13;
uint32 left_gacha_times = 5;
repeated uint32 display_up5_item_list = 2006;
uint32 gacha_times_limit = 11;
uint32 cost_item_num = 3;
bool is_new_wish = 733;
uint32 cost_item_id = 9;
uint32 ten_cost_item_num = 6;
string gacha_preview_prefab_path = 4;
uint32 wish_progress = 1819;
string title_textmap = 736;
string gacha_record_url_oversea = 1854;
uint32 gacha_sort_id = 7;
string gacha_record_url = 12;
}
message GetGachaInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1598;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1598;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_under_general_restrict = 6;
uint32 gacha_random = 9;
int32 retcode = 10;
bool is_under_minors_restrict = 2;
uint32 daily_gacha_times = 5;
repeated GachaInfo gacha_info_list = 13;
bool is_under_general_restrict = 6;
uint32 gacha_random = 9;
int32 retcode = 10;
bool is_under_minors_restrict = 2;
uint32 daily_gacha_times = 5;
repeated GachaInfo gacha_info_list = 13;
}
message DoGachaReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1512;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1512;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 gacha_times = 10;
uint32 gacha_schedule_id = 7;
uint32 gacha_type = 14;
uint32 gacha_random = 13;
string gacha_tag = 4;
uint32 gacha_times = 10;
uint32 gacha_schedule_id = 7;
uint32 gacha_type = 14;
uint32 gacha_random = 13;
string gacha_tag = 4;
}
message GachaTransferItem {
ItemParam item = 3;
bool is_transfer_item_new = 1;
ItemParam item = 3;
bool is_transfer_item_new = 1;
}
message GachaItem {
ItemParam gacha_item = 7;
bool is_gacha_item_new = 6;
bool is_flash_card = 8;
repeated ItemParam token_item_list = 9;
repeated GachaTransferItem transfer_items = 12;
ItemParam gacha_item = 7;
bool is_gacha_item_new = 6;
bool is_flash_card = 8;
repeated ItemParam token_item_list = 9;
repeated GachaTransferItem transfer_items = 12;
}
message DoGachaRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cur_schedule_daily_gacha_times = 155;
uint32 cost_item_num = 10;
uint32 wish_max_progress = 9;
uint32 wish_item_id = 8;
int32 retcode = 13;
uint32 ten_cost_item_num = 3;
uint32 wish_progress = 2;
repeated GachaItem gacha_item_list = 15;
uint32 ten_cost_item_id = 7;
uint32 gacha_times = 4;
bool is_under_minors_restrict = 1435;
bool is_under_general_restrict = 1868;
uint32 gacha_type = 12;
uint32 gacha_times_limit = 1;
uint32 cost_item_id = 14;
uint32 daily_gacha_times = 1240;
uint32 left_gacha_times = 6;
uint32 new_gacha_random = 11;
uint32 gacha_schedule_id = 5;
uint32 cur_schedule_daily_gacha_times = 155;
uint32 cost_item_num = 10;
uint32 wish_max_progress = 9;
uint32 wish_item_id = 8;
int32 retcode = 13;
uint32 ten_cost_item_num = 3;
uint32 wish_progress = 2;
repeated GachaItem gacha_item_list = 15;
uint32 ten_cost_item_id = 7;
uint32 gacha_times = 4;
bool is_under_minors_restrict = 1435;
bool is_under_general_restrict = 1868;
uint32 gacha_type = 12;
uint32 gacha_times_limit = 1;
uint32 cost_item_id = 14;
uint32 daily_gacha_times = 1240;
uint32 left_gacha_times = 6;
uint32 new_gacha_random = 11;
uint32 gacha_schedule_id = 5;
}
message GachaWishReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 gacha_schedule_id = 14;
uint32 gacha_type = 13;
uint32 item_id = 4;
uint32 gacha_schedule_id = 14;
uint32 gacha_type = 13;
uint32 item_id = 4;
}
message GachaWishRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 gacha_type = 8;
uint32 gacha_schedule_id = 7;
uint32 wish_max_progress = 2;
uint32 wish_progress = 5;
uint32 wish_item_id = 3;
int32 retcode = 14;
uint32 gacha_type = 8;
uint32 gacha_schedule_id = 7;
uint32 wish_max_progress = 2;
uint32 wish_progress = 5;
uint32 wish_item_id = 3;
int32 retcode = 14;
}
message GachaOpenWishNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1503;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1503;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 gacha_type = 2;
uint32 gacha_schedule_id = 9;
uint32 gacha_type = 2;
uint32 gacha_schedule_id = 9;
}
message GachaSimpleInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1590;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1590;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_new = 5;
bool is_new = 5;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+121 -121
View File
@@ -5,167 +5,167 @@ package proto;
option go_package = "./;proto";
enum GCGActionType {
GCG_ACTION_NONE = 0;
GCG_ACTION_SPECIAL_PHASE = 1;
GCG_ACTION_NEXT_PHASE = 2;
GCG_ACTION_DRAW = 3;
GCG_ACTION_REDRAW = 4;
GCG_ACTION_SELECT_ONSTAGE = 5;
GCG_ACTION_ROLL = 6;
GCG_ACTION_REROLL = 7;
GCG_ACTION_ATTACK = 8;
GCG_ACTION_PLAY_CARD = 9;
GCG_ACTION_PASS = 10;
GCG_ACTION_REBOOT = 11;
GCG_ACTION_GAME_OVER = 12;
GCG_ACTION_TRIGGER = 13;
GCG_ACTION_PHASE_EXIT = 14;
GCG_ACTION_CUSTOM = 15;
GCG_ACTION_NOTIFY_COST = 16;
GCG_ACTION_AFTER_OPERATION = 17;
GCG_ACTION_USE_SKILL = 18;
GCG_ACTION_NOTIFY_SKILL_PREVIEW = 19;
GCG_ACTION_PREVIEW_ATTACK = 20;
GCG_ACTION_PREVIEW_AFTER_ATTACK = 21;
GCG_ACTION_SEND_MESSAGE = 22;
GCG_ACTION_WAITING_CHARACTER = 23;
GCG_ACTION_TRIGGER_SKILL = 24;
GCG_ACTION_BEFORE_NEXT_OPERATION = 25;
GCG_ACTION_NONE = 0;
GCG_ACTION_SPECIAL_PHASE = 1;
GCG_ACTION_NEXT_PHASE = 2;
GCG_ACTION_DRAW = 3;
GCG_ACTION_REDRAW = 4;
GCG_ACTION_SELECT_ONSTAGE = 5;
GCG_ACTION_ROLL = 6;
GCG_ACTION_REROLL = 7;
GCG_ACTION_ATTACK = 8;
GCG_ACTION_PLAY_CARD = 9;
GCG_ACTION_PASS = 10;
GCG_ACTION_REBOOT = 11;
GCG_ACTION_GAME_OVER = 12;
GCG_ACTION_TRIGGER = 13;
GCG_ACTION_PHASE_EXIT = 14;
GCG_ACTION_CUSTOM = 15;
GCG_ACTION_NOTIFY_COST = 16;
GCG_ACTION_AFTER_OPERATION = 17;
GCG_ACTION_USE_SKILL = 18;
GCG_ACTION_NOTIFY_SKILL_PREVIEW = 19;
GCG_ACTION_PREVIEW_ATTACK = 20;
GCG_ACTION_PREVIEW_AFTER_ATTACK = 21;
GCG_ACTION_SEND_MESSAGE = 22;
GCG_ACTION_WAITING_CHARACTER = 23;
GCG_ACTION_TRIGGER_SKILL = 24;
GCG_ACTION_BEFORE_NEXT_OPERATION = 25;
}
enum GCGControllerValue {
GCG_CONTROLLER_NONE = 0;
GCG_CONTROLLER_A = 1;
GCG_CONTROLLER_B = 2;
GCG_CONTROLLER_NONE = 0;
GCG_CONTROLLER_A = 1;
GCG_CONTROLLER_B = 2;
}
enum GCGDiceSideType {
GCG_DICE_SIDE_INVALID = 0;
GCG_DICE_SIDE_CRYO = 1;
GCG_DICE_SIDE_HYDRO = 2;
GCG_DICE_SIDE_PYRO = 3;
GCG_DICE_SIDE_ELECTRO = 4;
GCG_DICE_SIDE_GEO = 5;
GCG_DICE_SIDE_DENDRO = 6;
GCG_DICE_SIDE_ANEMO = 7;
GCG_DICE_SIDE_PAIMON = 8;
GCG_DICE_SIDE_INVALID = 0;
GCG_DICE_SIDE_CRYO = 1;
GCG_DICE_SIDE_HYDRO = 2;
GCG_DICE_SIDE_PYRO = 3;
GCG_DICE_SIDE_ELECTRO = 4;
GCG_DICE_SIDE_GEO = 5;
GCG_DICE_SIDE_DENDRO = 6;
GCG_DICE_SIDE_ANEMO = 7;
GCG_DICE_SIDE_PAIMON = 8;
}
enum GCGZoneType {
GCG_ZONE_INVALID = 0;
GCG_ZONE_DECK = 1;
GCG_ZONE_HAND = 2;
GCG_ZONE_CHARACTER = 3;
GCG_ZONE_MODIFY = 4;
GCG_ZONE_SUMMON = 5;
GCG_ZONE_ASSIST = 7;
GCG_ZONE_ONSTAGE = 8;
GCG_ZONE_RULE = 9;
GCG_ZONE_INVALID = 0;
GCG_ZONE_DECK = 1;
GCG_ZONE_HAND = 2;
GCG_ZONE_CHARACTER = 3;
GCG_ZONE_MODIFY = 4;
GCG_ZONE_SUMMON = 5;
GCG_ZONE_ASSIST = 7;
GCG_ZONE_ONSTAGE = 8;
GCG_ZONE_RULE = 9;
}
enum GCGPhaseType {
GCG_PHASE_INVALID = 0;
GCG_PHASE_START = 1;
GCG_PHASE_DRAW = 2;
GCG_PHASE_ON_STAGE = 3;
GCG_PHASE_DICE = 4;
GCG_PHASE_MAIN = 5;
GCG_PHASE_END = 6;
GCG_PHASE_DIE = 7;
GCG_PHASE_FIN = 8;
GCG_PHASE_PRE_MAIN = 9;
GCG_PHASE_REROLL = 10;
GCG_PHASE_INVALID = 0;
GCG_PHASE_START = 1;
GCG_PHASE_DRAW = 2;
GCG_PHASE_ON_STAGE = 3;
GCG_PHASE_DICE = 4;
GCG_PHASE_MAIN = 5;
GCG_PHASE_END = 6;
GCG_PHASE_DIE = 7;
GCG_PHASE_FIN = 8;
GCG_PHASE_PRE_MAIN = 9;
GCG_PHASE_REROLL = 10;
}
enum GCGTargetType {
GCG_TARGET_NONE = 0;
GCG_TARGET_CARD = 1;
GCG_TARGET_DICE = 2;
GCG_TARGET_NONE = 0;
GCG_TARGET_CARD = 1;
GCG_TARGET_DICE = 2;
}
enum GCGCardState {
GCG_CARD_STATE_HIDE = 0;
GCG_CARD_STATE_SELF = 1;
GCG_CARD_STATE_SHOW = 2;
GCG_CARD_STATE_HIDE = 0;
GCG_CARD_STATE_SELF = 1;
GCG_CARD_STATE_SHOW = 2;
}
enum GCGReason {
GCG_REASON_DEFAULT = 0;
GCG_REASON_EFFECT = 1;
GCG_REASON_COST = 2;
GCG_REASON_GM = 3;
GCG_REASON_ATTACK = 4;
GCG_REASON_REBOOT = 5;
GCG_REASON_PLAY_CARD = 6;
GCG_REASON_QUICKLY_ONSTAGE = 7;
GCG_REASON_REMOVE_AFTER_DIE = 8;
GCG_REASON_INIT = 9;
GCG_REASON_EFFECT_DAMAGE = 10;
GCG_REASON_EFFECT_HEAL = 11;
GCG_REASON_EFFECT_REVIVE = 12;
GCG_REASON_DEFAULT = 0;
GCG_REASON_EFFECT = 1;
GCG_REASON_COST = 2;
GCG_REASON_GM = 3;
GCG_REASON_ATTACK = 4;
GCG_REASON_REBOOT = 5;
GCG_REASON_PLAY_CARD = 6;
GCG_REASON_QUICKLY_ONSTAGE = 7;
GCG_REASON_REMOVE_AFTER_DIE = 8;
GCG_REASON_INIT = 9;
GCG_REASON_EFFECT_DAMAGE = 10;
GCG_REASON_EFFECT_HEAL = 11;
GCG_REASON_EFFECT_REVIVE = 12;
}
enum GCGClientPerformType {
GCG_PERFORM_INVALID = 0;
GCG_PERFORM_CARD_EXCHANGE = 1;
GCG_PERFORM_FIRST_HAND = 2;
GCG_PERFORM_REROLL = 3;
GCG_PERFORM_INVALID = 0;
GCG_PERFORM_CARD_EXCHANGE = 1;
GCG_PERFORM_FIRST_HAND = 2;
GCG_PERFORM_REROLL = 3;
}
enum GCGEndReason {
GCG_END_REASON_DEFAULT = 0;
GCG_END_REASON_DIE = 1;
GCG_END_REASON_SURRENDER = 2;
GCG_END_REASON_DISCONNECTED = 3;
GCG_END_REASON_ROUND_LIMIT = 4;
GCG_END_REASON_GM = 5;
GCG_END_REASON_NO_PLAYER = 6;
GCG_END_REASON_GIVE_UP = 7;
GCG_END_REASON_INIT_TIMEOUT = 8;
GCG_END_REASON_EFFECT = 9;
GCG_END_REASON_DEFAULT = 0;
GCG_END_REASON_DIE = 1;
GCG_END_REASON_SURRENDER = 2;
GCG_END_REASON_DISCONNECTED = 3;
GCG_END_REASON_ROUND_LIMIT = 4;
GCG_END_REASON_GM = 5;
GCG_END_REASON_NO_PLAYER = 6;
GCG_END_REASON_GIVE_UP = 7;
GCG_END_REASON_INIT_TIMEOUT = 8;
GCG_END_REASON_EFFECT = 9;
}
enum GCGTavernNPCState {
GCG_TRAVERN_NPC_STATE_NONE = 0;
GCG_TRAVERN_NPC_STATE_DUEL = 1;
GCG_TRAVERN_NPC_STATE_STAND = 2;
GCG_TRAVERN_NPC_STATE_NONE = 0;
GCG_TRAVERN_NPC_STATE_DUEL = 1;
GCG_TRAVERN_NPC_STATE_STAND = 2;
}
enum GCGGameBusinessType {
GCG_GAME_NONE = 0;
GCG_GAME_GM = 1;
GCG_GAME_MATCH = 2;
GCG_GAME_PVP = 3;
GCG_GAME_TAVERN_CHALLENGE = 4;
GCG_GAME_CONST_CHALLENGE = 5;
GCG_GAME_WORLD_CHALLENGE = 6;
GCG_GAME_BOSS_CHALLENGE = 7;
GCG_GAME_WEEK_CHALLENGE = 8;
GCG_GAME_BREAK_CHALLENGE = 9;
GCG_GAME_QUEST = 10;
GCG_GAME_GUIDE_GROUP = 11;
GCG_GAME_NONE = 0;
GCG_GAME_GM = 1;
GCG_GAME_MATCH = 2;
GCG_GAME_PVP = 3;
GCG_GAME_TAVERN_CHALLENGE = 4;
GCG_GAME_CONST_CHALLENGE = 5;
GCG_GAME_WORLD_CHALLENGE = 6;
GCG_GAME_BOSS_CHALLENGE = 7;
GCG_GAME_WEEK_CHALLENGE = 8;
GCG_GAME_BREAK_CHALLENGE = 9;
GCG_GAME_QUEST = 10;
GCG_GAME_GUIDE_GROUP = 11;
}
enum GCGChallengeType {
GCG_CHALLENGE_NONE = 0;
GCG_CHALLENGE_CONST = 1;
GCG_CHALLENGE_WEEK = 2;
GCG_CHALLENGE_WORLD = 3;
GCG_CHALLENGE_NONE = 0;
GCG_CHALLENGE_CONST = 1;
GCG_CHALLENGE_WEEK = 2;
GCG_CHALLENGE_WORLD = 3;
}
enum GCGLevelType {
GCG_LEVEL_NONE = 0;
GCG_LEVEL_CONST = 1;
GCG_LEVEL_WEEK = 2;
GCG_LEVEL_WORLD = 3;
GCG_LEVEL_BOSS = 4;
GCG_LEVEL_CHARACTER = 5;
GCG_LEVEL_BREAK = 6;
GCG_LEVEL_QUEST = 7;
GCG_LEVEL_GUIDE_GROUP = 8;
GCG_LEVEL_NONE = 0;
GCG_LEVEL_CONST = 1;
GCG_LEVEL_WEEK = 2;
GCG_LEVEL_WORLD = 3;
GCG_LEVEL_BOSS = 4;
GCG_LEVEL_CHARACTER = 5;
GCG_LEVEL_BREAK = 6;
GCG_LEVEL_QUEST = 7;
GCG_LEVEL_GUIDE_GROUP = 8;
}
enum GCGIntentionChangeType {
GCG_INTENTION_CHANGE_NONE = 0;
GCG_INTENTION_CHANGE_RM = 1;
GCG_INTENTION_CHANGE_NONE = 0;
GCG_INTENTION_CHANGE_RM = 1;
}
+40 -40
View File
@@ -2,63 +2,63 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message GroupLinkBundle {
Vector center = 4;
bool is_activated = 12;
uint32 bundle_id = 3;
bool is_show_mark = 14;
uint32 scene_id = 5;
uint32 radius = 1;
Vector center = 4;
bool is_activated = 12;
uint32 bundle_id = 3;
bool is_show_mark = 14;
uint32 scene_id = 5;
uint32 radius = 1;
}
message GroupLinkAllNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5776;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5776;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated GroupLinkBundle bundle_list = 5;
repeated GroupLinkBundle bundle_list = 5;
}
message GroupLinkChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5768;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5768;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
GroupLinkBundle bundle = 8;
GroupLinkBundle bundle = 8;
}
message GroupLinkDeleteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5775;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5775;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 bundle_id = 12;
uint32 bundle_id = 12;
}
message GroupLinkMarkUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5757;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5757;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
GroupLinkBundle bundle = 11;
GroupLinkBundle bundle = 11;
}
+51 -51
View File
@@ -5,74 +5,74 @@ package proto;
option go_package = "./;proto";
message H5ActivityInfo {
uint32 h5_activity_id = 3;
string url = 4;
bool is_entrance_open = 7;
uint32 h5_schedule_id = 8;
uint32 end_time = 10;
string prefab_path = 11;
uint32 content_close_time = 2;
uint32 begin_time = 13;
uint32 h5_activity_id = 3;
string url = 4;
bool is_entrance_open = 7;
uint32 h5_schedule_id = 8;
uint32 end_time = 10;
string prefab_path = 11;
uint32 content_close_time = 2;
uint32 begin_time = 13;
}
message GetAllH5ActivityInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5668;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5668;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetAllH5ActivityInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5676;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5676;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated H5ActivityInfo h5_activity_info_list = 15;
int32 retcode = 5;
uint32 client_red_dot_timestamp = 12;
repeated H5ActivityInfo h5_activity_info_list = 15;
int32 retcode = 5;
uint32 client_red_dot_timestamp = 12;
}
message H5ActivityIdsNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5675;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5675;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 client_red_dot_timestamp = 1;
map<uint32, uint32> h5_activity_map = 12;
uint32 client_red_dot_timestamp = 1;
map<uint32, uint32> h5_activity_map = 12;
}
message SetH5ActivityRedDotTimestampReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5657;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5657;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 client_red_dot_timestamp = 13;
uint32 client_red_dot_timestamp = 13;
}
message SetH5ActivityRedDotTimestampRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5652;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5652;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 4;
int32 retcode = 4;
}
File diff suppressed because it is too large Load Diff
+148 -148
View File
@@ -2,214 +2,214 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message HuntingPair {
uint32 refresh_id = 9;
uint32 monster_config_id = 4;
uint32 refresh_id = 9;
uint32 monster_config_id = 4;
}
message TakeHuntingOfferReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4326;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4326;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
HuntingPair hunting_pair = 14;
uint32 city_id = 4;
HuntingPair hunting_pair = 14;
uint32 city_id = 4;
}
message TakeHuntingOfferRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4318;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4318;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
HuntingPair hunting_pair = 13;
uint32 city_id = 14;
int32 retcode = 3;
HuntingPair hunting_pair = 13;
uint32 city_id = 14;
int32 retcode = 3;
}
message HuntingOfferData {
HuntingPair hunting_pair = 4;
uint32 city_id = 8;
HuntingOfferState state = 1;
HuntingPair hunting_pair = 4;
uint32 city_id = 8;
HuntingOfferState state = 1;
}
message GetCityHuntingOfferReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4325;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4325;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 9;
uint32 city_id = 9;
}
message GetCityHuntingOfferRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
repeated HuntingOfferData hunting_offer_list = 13;
uint32 city_id = 2;
HuntingPair ongoing_hunting_pair = 8;
uint32 cur_week_finished_count = 1;
uint32 next_refresh_time = 4;
int32 retcode = 9;
repeated HuntingOfferData hunting_offer_list = 13;
uint32 city_id = 2;
HuntingPair ongoing_hunting_pair = 8;
uint32 cur_week_finished_count = 1;
uint32 next_refresh_time = 4;
}
message GetHuntingOfferRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4302;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4302;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 6;
HuntingPair hunting_pair = 4;
uint32 city_id = 6;
HuntingPair hunting_pair = 4;
}
message GetHuntingOfferRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4331;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4331;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
HuntingPair hunting_pair = 14;
uint32 city_id = 3;
int32 retcode = 12;
HuntingPair hunting_pair = 14;
uint32 city_id = 3;
int32 retcode = 12;
}
message HuntingStartNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
Vector clue_position = 4;
uint32 fail_time = 15;
HuntingPair hunting_pair = 3;
bool is_final = 8;
Vector clue_position = 4;
uint32 fail_time = 15;
HuntingPair hunting_pair = 3;
bool is_final = 8;
}
message HuntingRevealClueNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4322;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4322;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 finish_clue_count = 5;
Vector clue_position = 4;
HuntingPair hunting_pair = 12;
uint32 finished_group_id = 7;
uint32 finish_clue_count = 5;
Vector clue_position = 4;
HuntingPair hunting_pair = 12;
uint32 finished_group_id = 7;
}
message HuntingRevealFinalNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4344;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4344;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 finished_group_id = 5;
HuntingPair hunting_pair = 11;
Vector final_position = 2;
uint32 finished_group_id = 5;
HuntingPair hunting_pair = 11;
Vector final_position = 2;
}
message HuntingSuccessNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4349;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4349;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
HuntingPair hunting_pair = 4;
HuntingPair hunting_pair = 4;
}
message HuntingFailNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4320;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4320;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
HuntingPair hunting_pair = 12;
HuntingPair hunting_pair = 12;
}
message HuntingOngoingNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4345;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4345;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
HuntingPair hunting_pair = 15;
bool is_started = 8;
Vector next_position = 3;
uint32 finish_clue_count = 10;
bool is_final = 14;
uint32 fail_time = 7;
HuntingPair hunting_pair = 15;
bool is_started = 8;
Vector next_position = 3;
uint32 finish_clue_count = 10;
bool is_final = 14;
uint32 fail_time = 7;
}
message HuntingGiveUpReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4341;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4341;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
HuntingPair hunting_pair = 1;
HuntingPair hunting_pair = 1;
}
message HuntingGiveUpRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4342;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4342;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 3;
HuntingPair hunting_pair = 4;
int32 retcode = 3;
HuntingPair hunting_pair = 4;
}
+162 -162
View File
@@ -2,227 +2,227 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message Investigation {
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
option go_package = "./;proto";
uint32 total_progress = 5;
State state = 2;
uint32 progress = 13;
uint32 id = 9;
message Investigation {
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
uint32 total_progress = 5;
State state = 2;
uint32 progress = 13;
uint32 id = 9;
}
message InvestigationTarget {
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
uint32 quest_id = 15;
State state = 2;
uint32 progress = 8;
uint32 total_progress = 7;
uint32 investigation_id = 3;
uint32 quest_id = 15;
State state = 2;
uint32 progress = 8;
uint32 total_progress = 7;
uint32 investigation_id = 3;
}
message PlayerInvestigationAllInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1928;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1928;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated Investigation investigation_list = 15;
repeated InvestigationTarget investigation_target_list = 12;
repeated Investigation investigation_list = 15;
repeated InvestigationTarget investigation_target_list = 12;
}
message TakeInvestigationRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1912;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1912;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 id = 5;
uint32 id = 5;
}
message TakeInvestigationRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1922;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1922;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 4;
uint32 id = 12;
int32 retcode = 4;
uint32 id = 12;
}
message TakeInvestigationTargetRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1918;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1918;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 quest_id = 11;
uint32 quest_id = 11;
}
message TakeInvestigationTargetRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1916;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1916;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint32 quest_id = 2;
int32 retcode = 1;
uint32 quest_id = 2;
}
message GetInvestigationMonsterReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1901;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1901;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 city_id_list = 3;
bool is_for_mark = 4;
repeated uint32 city_id_list = 3;
bool is_for_mark = 4;
}
message InvestigationMonster {
enum LockState {
LOCK_NONE = 0;
LOCK_QUEST = 1;
}
enum LockState {
LOCK_NONE = 0;
LOCK_QUEST = 1;
}
bool is_alive = 9;
uint32 refresh_interval = 3;
uint32 id = 13;
uint32 level = 5;
uint32 boss_chest_num = 1;
WeeklyBossResinDiscountInfo weekly_boss_resin_discount_info = 12;
uint32 monster_id = 301;
Vector pos = 14;
uint32 resin = 8;
uint32 max_boss_chest_num = 4;
uint32 next_refresh_time = 11;
uint32 group_id = 285;
uint32 scene_id = 10;
bool is_area_locked = 15;
LockState lock_state = 2;
uint32 next_boss_chest_refresh_time = 7;
uint32 city_id = 6;
bool is_alive = 9;
uint32 refresh_interval = 3;
uint32 id = 13;
uint32 level = 5;
uint32 boss_chest_num = 1;
WeeklyBossResinDiscountInfo weekly_boss_resin_discount_info = 12;
uint32 monster_id = 301;
Vector pos = 14;
uint32 resin = 8;
uint32 max_boss_chest_num = 4;
uint32 next_refresh_time = 11;
uint32 group_id = 285;
uint32 scene_id = 10;
bool is_area_locked = 15;
LockState lock_state = 2;
uint32 next_boss_chest_refresh_time = 7;
uint32 city_id = 6;
}
message GetInvestigationMonsterRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1910;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1910;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated InvestigationMonster monster_list = 10;
int32 retcode = 1;
bool is_for_mark = 2;
repeated InvestigationMonster monster_list = 10;
int32 retcode = 1;
bool is_for_mark = 2;
}
message PlayerInvestigationNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1911;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1911;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated Investigation investigation_list = 1;
repeated Investigation investigation_list = 1;
}
message PlayerInvestigationTargetNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1929;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1929;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated InvestigationTarget investigation_target_list = 1;
repeated InvestigationTarget investigation_target_list = 1;
}
message MarkTargetInvestigationMonsterNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1915;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1915;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 scene_id = 11;
uint32 monster_id = 4;
uint32 group_id = 5;
uint32 investigation_monster_id = 12;
uint32 scene_id = 11;
uint32 monster_id = 4;
uint32 group_id = 5;
uint32 investigation_monster_id = 12;
}
message InvestigationMonsterUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1906;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1906;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
InvestigationMonster investigation_monster = 5;
InvestigationMonster investigation_monster = 5;
}
message InvestigationQuestDailyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1921;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1921;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
}
message InvestigationReadQuestDailyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1902;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1902;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
File diff suppressed because it is too large Load Diff
+145 -145
View File
@@ -2,208 +2,208 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum AuthkeySignType {
AUTHKEY_SIGN_TYPE_NONE = 0;
AUTHKEY_SIGN_TYPE_DEFAULT = 1;
AUTHKEY_SIGN_TYPE_RSA = 2;
AUTHKEY_SIGN_TYPE_NONE = 0;
AUTHKEY_SIGN_TYPE_DEFAULT = 1;
AUTHKEY_SIGN_TYPE_RSA = 2;
}
message MailChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1498;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1498;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated MailData mail_list = 14;
repeated uint32 del_mail_id_list = 8;
repeated MailData mail_list = 14;
repeated uint32 del_mail_id_list = 8;
}
message ReadMailNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 mail_id_list = 2;
repeated uint32 mail_id_list = 2;
}
message GetMailItemReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 mail_id_list = 6;
repeated uint32 mail_id_list = 6;
}
message GetMailItemRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1407;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1407;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
repeated uint32 mail_id_list = 3;
repeated EquipParam item_list = 2;
int32 retcode = 7;
repeated uint32 mail_id_list = 3;
repeated EquipParam item_list = 2;
}
message DelMailReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 mail_id_list = 12;
repeated uint32 mail_id_list = 12;
}
message DelMailRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
repeated uint32 mail_id_list = 5;
int32 retcode = 11;
repeated uint32 mail_id_list = 5;
}
message GetAuthkeyReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string auth_appid = 14;
uint32 sign_type = 7;
uint32 authkey_ver = 13;
string auth_appid = 14;
uint32 sign_type = 7;
uint32 authkey_ver = 13;
}
message GetAuthkeyRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
string auth_appid = 4;
uint32 sign_type = 15;
int32 retcode = 6;
uint32 authkey_ver = 9;
string game_biz = 11;
string authkey = 3;
string auth_appid = 4;
uint32 sign_type = 15;
int32 retcode = 6;
uint32 authkey_ver = 9;
string game_biz = 11;
string authkey = 3;
}
message ClientNewMailNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1499;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1499;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 not_read_num = 7;
uint32 not_got_attachment_num = 2;
uint32 not_read_num = 7;
uint32 not_got_attachment_num = 2;
}
message GetAllMailReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_collected = 7;
bool is_collected = 7;
}
message GetAllMailRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 8;
repeated MailData mail_list = 14;
bool is_collected = 1;
bool is_truncated = 2;
int32 retcode = 8;
repeated MailData mail_list = 14;
bool is_collected = 1;
bool is_truncated = 2;
}
message ChangeMailStarNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_star = 14;
repeated uint32 mail_id_list = 2;
bool is_star = 14;
repeated uint32 mail_id_list = 2;
}
message GetAllMailNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_collected = 13;
bool is_collected = 13;
}
message GetAllMailResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1481;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1481;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
string transaction = 9;
repeated MailData mail_list = 5;
uint32 page_index = 11;
uint32 total_page_count = 4;
bool is_collected = 7;
int32 retcode = 14;
string transaction = 9;
repeated MailData mail_list = 5;
uint32 page_index = 11;
uint32 total_page_count = 4;
bool is_collected = 7;
int32 retcode = 14;
}
+218 -218
View File
@@ -2,306 +2,306 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message PlayerStartMatchReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4176;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
option go_package = "./;proto";
MatchType match_type = 3;
uint32 mechanicus_difficult_level = 12;
repeated uint32 match_param_list = 11;
uint32 dungeon_id = 1;
uint32 mp_play_id = 15;
uint32 match_id = 6;
message PlayerStartMatchReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4176;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
MatchType match_type = 3;
uint32 mechanicus_difficult_level = 12;
repeated uint32 match_param_list = 11;
uint32 dungeon_id = 1;
uint32 mp_play_id = 15;
uint32 match_id = 6;
}
message PlayerStartMatchRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4168;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4168;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint32 punish_end_time = 5;
uint32 param = 4;
uint32 mp_play_id = 13;
uint32 mechanicus_difficult_level = 2;
uint32 dungeon_id = 3;
uint32 match_id = 8;
MatchType match_type = 7;
int32 retcode = 1;
uint32 punish_end_time = 5;
uint32 param = 4;
uint32 mp_play_id = 13;
uint32 mechanicus_difficult_level = 2;
uint32 dungeon_id = 3;
uint32 match_id = 8;
MatchType match_type = 7;
}
message PlayerMatchInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4175;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4175;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 match_id = 8;
uint32 match_begin_time = 4;
uint32 dungeon_id = 10;
MatchType match_type = 11;
uint32 mechanicus_difficult_level = 12;
repeated uint32 match_param_list = 6;
uint32 estimate_match_cost_time = 3;
uint32 mp_play_id = 5;
uint32 host_uid = 13;
uint32 match_id = 8;
uint32 match_begin_time = 4;
uint32 dungeon_id = 10;
MatchType match_type = 11;
uint32 mechanicus_difficult_level = 12;
repeated uint32 match_param_list = 6;
uint32 estimate_match_cost_time = 3;
uint32 mp_play_id = 5;
uint32 host_uid = 13;
}
message PlayerCancelMatchReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4157;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4157;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
MatchType match_type = 11;
MatchType match_type = 11;
}
message PlayerCancelMatchRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4152;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4152;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 6;
MatchType match_type = 7;
int32 retcode = 6;
MatchType match_type = 7;
}
message PlayerMatchStopNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4181;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4181;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
MatchReason reason = 1;
uint32 host_uid = 12;
MatchReason reason = 1;
uint32 host_uid = 12;
}
message MatchPlayerInfo {
bool is_agreed = 9;
OnlinePlayerInfo player_info = 2;
bool is_agreed = 9;
OnlinePlayerInfo player_info = 2;
}
message GeneralMatchInfo {
uint32 match_param = 1;
uint32 match_id = 9;
repeated MatchPlayerInfo player_list = 5;
uint32 match_param = 1;
uint32 match_id = 9;
repeated MatchPlayerInfo player_list = 5;
}
message GCGMatchInfo {
repeated MatchPlayerInfo player_list = 13;
repeated MatchPlayerInfo player_list = 13;
}
message PlayerMatchSuccNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4179;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4179;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
GeneralMatchInfo general_match_info = 7;
uint32 mp_play_id = 15;
uint32 host_uid = 3;
MatchType match_type = 5;
GCGMatchInfo gcg_match_info = 11;
uint32 confirm_end_time = 2;
uint32 dungeon_id = 6;
uint32 mechanicus_difficult_level = 1;
GeneralMatchInfo general_match_info = 7;
uint32 mp_play_id = 15;
uint32 host_uid = 3;
MatchType match_type = 5;
GCGMatchInfo gcg_match_info = 11;
uint32 confirm_end_time = 2;
uint32 dungeon_id = 6;
uint32 mechanicus_difficult_level = 1;
}
message PlayerConfirmMatchReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
MatchType match_type = 12;
bool is_agreed = 10;
MatchType match_type = 12;
bool is_agreed = 10;
}
message PlayerConfirmMatchRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4194;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4194;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
MatchType match_type = 9;
uint32 match_id = 4;
bool is_agreed = 11;
int32 retcode = 10;
MatchType match_type = 9;
uint32 match_id = 4;
bool is_agreed = 11;
int32 retcode = 10;
}
message PlayerAllowEnterMpAfterAgreeMatchNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4199;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4199;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 target_uid = 1;
uint32 target_uid = 1;
}
message PlayerMatchAgreedResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4170;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4170;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum Reason {
SUCC = 0;
TARGET_SCENE_CANNOT_ENTER = 1;
SELF_MP_UNAVAILABLE = 2;
OTHER_DATA_VERSION_NOT_LATEST = 3;
DATA_VERSION_NOT_LATEST = 4;
}
enum Reason {
SUCC = 0;
TARGET_SCENE_CANNOT_ENTER = 1;
SELF_MP_UNAVAILABLE = 2;
OTHER_DATA_VERSION_NOT_LATEST = 3;
DATA_VERSION_NOT_LATEST = 4;
}
uint32 target_uid = 14;
MatchType match_type = 3;
Reason reason = 8;
uint32 target_uid = 14;
MatchType match_type = 3;
Reason reason = 8;
}
message PlayerApplyEnterMpAfterMatchAgreedNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4195;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4195;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
OnlinePlayerInfo src_player_info = 11;
uint32 matchserver_id = 10;
MatchType match_type = 3;
OnlinePlayerInfo src_player_info = 11;
uint32 matchserver_id = 10;
MatchType match_type = 3;
}
message PlayerGeneralMatchDismissNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4191;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4191;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 uid_list = 3;
MatchReason reason = 13;
uint32 match_id = 1;
repeated uint32 uid_list = 3;
MatchReason reason = 13;
uint32 match_id = 1;
}
message PlayerGeneralMatchConfirmNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4192;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4192;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 match_id = 8;
bool is_agree = 13;
uint32 uid = 14;
uint32 match_id = 8;
bool is_agree = 13;
uint32 uid = 14;
}
message PlayerGetForceQuitBanInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4164;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4164;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message PlayerGetForceQuitBanInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4197;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4197;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 4;
uint32 match_id = 8;
uint32 expire_time = 13;
int32 retcode = 4;
uint32 match_id = 8;
uint32 expire_time = 13;
}
message ServerTryCancelGeneralMatchNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4187;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4187;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 match_id = 9;
uint32 match_id = 9;
}
message PlayerGCGMatchDismissNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4173;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4173;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 match_id = 11;
MatchReason reason = 5;
repeated uint32 uid_list = 7;
uint32 match_id = 11;
MatchReason reason = 5;
repeated uint32 uid_list = 7;
}
message PlayerGCGMatchConfirmNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4185;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4185;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 uid = 10;
bool is_agree = 5;
uint32 match_id = 14;
uint32 uid = 10;
bool is_agree = 5;
uint32 match_id = 14;
}
+140 -140
View File
@@ -2,202 +2,202 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message MechanicusInfo {
repeated Uint32Pair gear_level_pair_list = 14;
repeated uint32 open_sequence_id_list = 7;
uint32 coin = 8;
uint32 punish_over_time = 12;
uint32 mechanicus_id = 10;
repeated uint32 finish_difficult_level_list = 13;
bool is_finish_teach_dungeon = 4;
repeated Uint32Pair gear_level_pair_list = 14;
repeated uint32 open_sequence_id_list = 7;
uint32 coin = 8;
uint32 punish_over_time = 12;
uint32 mechanicus_id = 10;
repeated uint32 finish_difficult_level_list = 13;
bool is_finish_teach_dungeon = 4;
}
message GetMechanicusInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3972;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3972;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetMechanicusInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3998;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
MechanicusInfo mechanicus_info = 15;
int32 retcode = 14;
MechanicusInfo mechanicus_info = 15;
}
message MechanicusSequenceOpenNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3912;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3912;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mechanicus_id = 8;
uint32 sequence_id = 7;
uint32 mechanicus_id = 8;
uint32 sequence_id = 7;
}
message MechanicusCoinNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3935;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3935;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mechanicus_id = 7;
uint32 coin = 4;
uint32 mechanicus_id = 7;
uint32 coin = 4;
}
message MechanicusOpenNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3907;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3907;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mechanicus_id = 2;
uint32 mechanicus_id = 2;
}
message MechanicusCloseNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3921;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3921;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mechanicus_id = 6;
uint32 mechanicus_id = 6;
}
message MechanicusUnlockGearReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3903;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3903;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 mechanicus_id = 7;
uint32 gear_id = 6;
uint32 mechanicus_id = 7;
uint32 gear_id = 6;
}
message MechanicusUnlockGearRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3990;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3990;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 3;
uint32 mechanicus_id = 8;
uint32 gear_id = 14;
int32 retcode = 3;
uint32 mechanicus_id = 8;
uint32 gear_id = 14;
}
message MechanicusLevelupGearReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3973;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3973;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 gear_id = 14;
uint32 mechanicus_id = 12;
uint32 gear_id = 14;
uint32 mechanicus_id = 12;
}
message MechanicusLevelupGearRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3999;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3999;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 gear_id = 7;
uint32 mechanicus_id = 2;
uint32 after_gear_level = 12;
int32 retcode = 8;
uint32 gear_id = 7;
uint32 mechanicus_id = 2;
uint32 after_gear_level = 12;
int32 retcode = 8;
}
message EnterMechanicusDungeonReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3931;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3931;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 difficult_level = 7;
uint32 difficult_level = 7;
}
message EnterMechanicusDungeonRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3975;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3975;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 wrong_uid = 12;
uint32 difficult_level = 13;
int32 retcode = 6;
uint32 dungeon_id = 11;
uint32 wrong_uid = 12;
uint32 difficult_level = 13;
int32 retcode = 6;
uint32 dungeon_id = 11;
}
message MechanicusCandidateTeamCreateReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3981;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 difficult_level = 6;
uint32 difficult_level = 6;
}
message MechanicusCandidateTeamCreateRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3905;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3905;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 dungeon_id = 1;
int32 retcode = 7;
uint32 difficult_level = 10;
uint32 dungeon_id = 1;
int32 retcode = 7;
uint32 difficult_level = 10;
}
+100 -100
View File
@@ -2,141 +2,141 @@ syntax = "proto3";
package proto;
import "cmd/cmd_gadget.proto";
import "define.proto";
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_gadget.proto";
message UseMiracleRingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5226;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5226;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum MiracleRingOpType {
MIRACLE_RING_OP_NONE = 0;
MIRACLE_RING_OP_PLACE = 1;
MIRACLE_RING_OP_RETRACT = 2;
}
enum MiracleRingOpType {
MIRACLE_RING_OP_NONE = 0;
MIRACLE_RING_OP_PLACE = 1;
MIRACLE_RING_OP_RETRACT = 2;
}
uint32 miracle_ring_op_type = 13;
Vector pos = 8;
Vector rot = 7;
uint32 miracle_ring_op_type = 13;
Vector pos = 8;
Vector rot = 7;
}
message UseMiracleRingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5218;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5218;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
uint32 miracle_ring_op_type = 7;
int32 retcode = 11;
uint32 miracle_ring_op_type = 7;
}
message MiracleRingDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5225;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5225;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_gadget_created = 8;
uint32 last_take_reward_time = 14;
uint32 gadget_entity_id = 12;
uint32 last_deliver_item_time = 10;
uint32 miracle_ring_cd = 7;
bool is_gadget_created = 8;
uint32 last_take_reward_time = 14;
uint32 gadget_entity_id = 12;
uint32 last_deliver_item_time = 10;
uint32 miracle_ring_cd = 7;
}
message MiracleRingTakeRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 gadget_id = 11;
uint32 gadget_entity_id = 7;
uint32 gadget_id = 11;
uint32 gadget_entity_id = 7;
}
message MiracleRingTakeRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5202;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5202;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
int32 retcode = 14;
}
message MiracleRingDropResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5231;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5231;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 last_take_reward_time = 5;
int32 drop_result = 9;
int32 last_take_reward_time = 5;
int32 drop_result = 9;
}
message MiracleRingDeliverItemReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5229;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5229;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
InterOpType op_type = 9;
repeated ItemParam item_param_list = 1;
repeated uint64 food_weapon_guid_list = 4;
uint32 gadget_id = 14;
uint32 gadget_entity_id = 5;
InterOpType op_type = 9;
repeated ItemParam item_param_list = 1;
repeated uint64 food_weapon_guid_list = 4;
uint32 gadget_id = 14;
uint32 gadget_entity_id = 5;
}
message MiracleRingDeliverItemRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
InteractType interact_type = 15;
int32 retcode = 11;
InterOpType op_type = 14;
uint32 gadget_id = 4;
uint32 gadget_entity_id = 9;
InteractType interact_type = 15;
int32 retcode = 11;
InterOpType op_type = 14;
uint32 gadget_id = 4;
uint32 gadget_entity_id = 9;
}
message MiracleRingDestroyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5244;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5244;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 entity_id = 7;
uint32 entity_id = 7;
}
+269 -269
View File
@@ -2,397 +2,397 @@ syntax = "proto3";
package proto;
import "cmd/cmd_social.proto";
import "define.proto";
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_social.proto";
enum SvrMsgId {
MSG_UNKNOWN = 0;
MSG_BLOCK_REFRESH_COUNTDOWN = 1;
MSG_AVATAR_REVIVE_BY_STATUE = 2;
MSG_DAILY_TASK_REWARD_MAX_NUM = 3;
MSG_ROUTINE_TYPE_NOT_OPEN = 4;
MSG_ROUTINE_TYPE_REWARD_MAX_NUM = 5;
MSG_MECHANICUS_COIN_LIMIT = 6;
MSG_UNKNOWN = 0;
MSG_BLOCK_REFRESH_COUNTDOWN = 1;
MSG_AVATAR_REVIVE_BY_STATUE = 2;
MSG_DAILY_TASK_REWARD_MAX_NUM = 3;
MSG_ROUTINE_TYPE_NOT_OPEN = 4;
MSG_ROUTINE_TYPE_REWARD_MAX_NUM = 5;
MSG_MECHANICUS_COIN_LIMIT = 6;
}
enum ServerLogType {
SERVER_LOG_NONE = 0;
SERVER_LOG_ABILITY = 1;
SERVER_LOG_LEVEL = 2;
SERVER_LOG_ENTITY = 3;
SERVER_LOG_LUA = 4;
SERVER_LOG_NONE = 0;
SERVER_LOG_ABILITY = 1;
SERVER_LOG_LEVEL = 2;
SERVER_LOG_ENTITY = 3;
SERVER_LOG_LUA = 4;
}
enum ServerLogLevel {
LOG_LEVEL_NONE = 0;
LOG_LEVEL_DEBUG = 1;
LOG_LEVEL_INFO = 2;
LOG_LEVEL_WARNING = 3;
LOG_LEVEL_ERROR = 4;
LOG_LEVEL_NONE = 0;
LOG_LEVEL_DEBUG = 1;
LOG_LEVEL_INFO = 2;
LOG_LEVEL_WARNING = 3;
LOG_LEVEL_ERROR = 4;
}
enum ClientReconnectReason {
CLIENT_RECONNNECT_NONE = 0;
CLIENT_RECONNNECT_QUIT_MP = 1;
CLIENT_RECONNNECT_NONE = 0;
CLIENT_RECONNNECT_QUIT_MP = 1;
}
message KeepAliveNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 72;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 72;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
}
message GmTalkReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 98;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 98;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string msg = 13;
string msg = 13;
}
message GmTalkRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 12;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 12;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 15;
string retmsg = 3;
string msg = 13;
int32 retcode = 15;
string retmsg = 3;
string msg = 13;
}
message MsgParam {
oneof param {
uint32 int_param = 9;
float flt_param = 7;
string str_param = 4;
}
oneof param {
uint32 int_param = 9;
float flt_param = 7;
string str_param = 4;
}
}
message ShowMessageNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 35;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 35;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
SvrMsgId msg_id = 14;
repeated MsgParam params = 13;
SvrMsgId msg_id = 14;
repeated MsgParam params = 13;
}
message PingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 7;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 7;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 client_time = 12;
float ue_time = 14;
double total_tick_time = 6;
bytes sc_data = 10;
uint32 seq = 3;
uint32 client_time = 12;
float ue_time = 14;
double total_tick_time = 6;
bytes sc_data = 10;
uint32 seq = 3;
}
message PingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 21;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 21;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 client_time = 15;
int32 retcode = 6;
uint32 seq = 13;
uint32 client_time = 15;
int32 retcode = 6;
uint32 seq = 13;
}
message GetOnlinePlayerListReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 90;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 90;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetOnlinePlayerListRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 73;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 73;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
uint32 param = 11;
repeated OnlinePlayerInfo player_info_list = 5;
int32 retcode = 7;
uint32 param = 11;
repeated OnlinePlayerInfo player_info_list = 5;
}
message ServerTimeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 99;
ENET_CHANNEL_ID = 1;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 99;
ENET_CHANNEL_ID = 1;
ENET_IS_RELIABLE = 1;
}
uint64 server_time = 5;
uint64 server_time = 5;
}
message ServerLogNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 31;
ENET_CHANNEL_ID = 1;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 31;
ENET_CHANNEL_ID = 1;
ENET_IS_RELIABLE = 1;
}
string server_log = 7;
ServerLogType log_type = 9;
ServerLogLevel log_level = 15;
string server_log = 7;
ServerLogType log_type = 9;
ServerLogLevel log_level = 15;
}
message ClientReconnectNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 75;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 75;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ClientReconnectReason reason = 6;
ClientReconnectReason reason = 6;
}
message RobotPushPlayerDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 97;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 97;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bytes bin = 6;
bytes bin = 6;
}
message ClientReportNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 81;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 81;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string report_type = 1;
string report_value = 4;
string report_type = 1;
string report_value = 4;
}
message UnionCmd {
bytes body = 14;
uint32 message_id = 8;
bytes body = 14;
uint32 message_id = 8;
}
message UnionCmdNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated UnionCmd cmd_list = 1;
repeated UnionCmd cmd_list = 1;
}
message GetOnlinePlayerInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 82;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 82;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_online_id = 15;
oneof player_id {
uint32 target_uid = 9;
string online_id = 7;
string psn_id = 2;
}
bool is_online_id = 15;
oneof player_id {
uint32 target_uid = 9;
string online_id = 7;
string psn_id = 2;
}
}
message GetOnlinePlayerInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 47;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 47;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
uint32 target_uid = 7;
uint32 param = 4;
OnlinePlayerInfo target_player_info = 14;
int32 retcode = 11;
uint32 target_uid = 7;
uint32 param = 4;
OnlinePlayerInfo target_player_info = 14;
}
message SegmentInfo {
uint32 offset = 3;
uint32 module = 7;
uint32 size = 8;
uint32 offset = 3;
uint32 module = 7;
uint32 size = 8;
}
message SegmentCRCInfo {
uint32 module = 13;
int32 retcode = 5;
uint32 size = 10;
string crc = 3;
uint32 offset = 11;
uint32 module = 13;
int32 retcode = 5;
uint32 size = 10;
string crc = 3;
uint32 offset = 11;
}
message CheckSegmentCRCNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 39;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 39;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated SegmentInfo info_list = 6;
repeated SegmentInfo info_list = 6;
}
message CheckSegmentCRCReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 53;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 53;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated SegmentCRCInfo info_list = 1;
repeated SegmentCRCInfo info_list = 1;
}
message PlayerRTTInfo {
uint32 rtt = 2;
uint32 uid = 1;
uint32 rtt = 2;
uint32 uid = 1;
}
message WorldPlayerRTTNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 22;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 22;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PlayerRTTInfo player_rtt_list = 1;
repeated PlayerRTTInfo player_rtt_list = 1;
}
message EchoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 65;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 65;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 seq_id = 4;
string content = 9;
uint32 seq_id = 4;
string content = 9;
}
message UpdateRedPointNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 93;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 93;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated RedPointData red_point_list = 12;
repeated RedPointData red_point_list = 12;
}
message ClientBulletCreateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 param = 6;
uint32 param = 6;
}
message ChangeServerGlobalValueNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 27;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 27;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 entity_id = 4;
uint32 entity_id = 4;
}
message GmTalkNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 94;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 94;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
string msg = 5;
string msg = 5;
}
message LastPacketPrintNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 88;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 88;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
+9 -9
View File
@@ -5,14 +5,14 @@ package proto;
option go_package = "./;proto";
message MonsterSummonTagNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1372;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1372;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, uint32> summon_tag_map = 1;
uint32 monster_entity_id = 8;
map<uint32, uint32> summon_tag_map = 1;
uint32 monster_entity_id = 8;
}
+285 -285
View File
@@ -2,394 +2,394 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message PlayerApplyEnterMpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1826;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
option go_package = "./;proto";
uint32 src_thread_index = 5;
uint32 src_app_id = 6;
OnlinePlayerInfo src_player_info = 2;
message PlayerApplyEnterMpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1826;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 src_thread_index = 5;
uint32 src_app_id = 6;
OnlinePlayerInfo src_player_info = 2;
}
message PlayerApplyEnterMpReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1818;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1818;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 target_uid = 4;
uint32 target_uid = 4;
}
message PlayerApplyEnterMpRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1825;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1825;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 5;
uint32 target_uid = 3;
uint32 param = 4;
int32 retcode = 5;
uint32 target_uid = 3;
uint32 param = 4;
}
message PlayerApplyEnterMpResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum Reason {
PLAYER_JUDGE = 0;
SCENE_CANNOT_ENTER = 1;
PLAYER_CANNOT_ENTER_MP = 2;
SYSTEM_JUDGE = 3;
ALLOW_ENTER_PLAYER_FULL = 4;
WORLD_LEVEL_LOWER_THAN_HOST = 5;
HOST_IN_MATCH = 6;
PLAYER_IN_BLACKLIST = 7;
PS_PLAYER_NOT_ACCEPT_OTHERS = 8;
HOST_IS_BLOCKED = 9;
OTHER_DATA_VERSION_NOT_LATEST = 10;
DATA_VERSION_NOT_LATEST = 11;
PLAYER_NOT_IN_PLAYER_WORLD = 12;
MAX_PLAYER = 13;
}
enum Reason {
PLAYER_JUDGE = 0;
SCENE_CANNOT_ENTER = 1;
PLAYER_CANNOT_ENTER_MP = 2;
SYSTEM_JUDGE = 3;
ALLOW_ENTER_PLAYER_FULL = 4;
WORLD_LEVEL_LOWER_THAN_HOST = 5;
HOST_IN_MATCH = 6;
PLAYER_IN_BLACKLIST = 7;
PS_PLAYER_NOT_ACCEPT_OTHERS = 8;
HOST_IS_BLOCKED = 9;
OTHER_DATA_VERSION_NOT_LATEST = 10;
DATA_VERSION_NOT_LATEST = 11;
PLAYER_NOT_IN_PLAYER_WORLD = 12;
MAX_PLAYER = 13;
}
bool is_agreed = 2;
string target_nickname = 12;
Reason reason = 13;
uint32 target_uid = 1;
bool is_agreed = 2;
string target_nickname = 12;
Reason reason = 13;
uint32 target_uid = 1;
}
message PlayerApplyEnterMpResultReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1802;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1802;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 apply_uid = 2;
bool is_agreed = 12;
uint32 apply_uid = 2;
bool is_agreed = 12;
}
message PlayerApplyEnterMpResultRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
bool is_agreed = 3;
uint32 apply_uid = 10;
uint32 param = 12;
int32 retcode = 1;
bool is_agreed = 3;
uint32 apply_uid = 10;
uint32 param = 12;
}
message PlayerQuitFromMpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1829;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1829;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum QuitReason {
INVALID = 0;
HOST_NO_OTHER_PLAYER = 1;
KICK_BY_HOST = 2;
BACK_TO_MY_WORLD = 3;
KICK_BY_HOST_LOGOUT = 4;
KICK_BY_HOST_BLOCK = 5;
BE_BLOCKED = 6;
KICK_BY_HOST_ENTER_HOME = 7;
HOST_SCENE_INVALID = 8;
KICK_BY_PLAY = 9;
KICK_BY_ISLAND_PARTY_GALLERY_START_FAILED = 10;
}
enum QuitReason {
INVALID = 0;
HOST_NO_OTHER_PLAYER = 1;
KICK_BY_HOST = 2;
BACK_TO_MY_WORLD = 3;
KICK_BY_HOST_LOGOUT = 4;
KICK_BY_HOST_BLOCK = 5;
BE_BLOCKED = 6;
KICK_BY_HOST_ENTER_HOME = 7;
HOST_SCENE_INVALID = 8;
KICK_BY_PLAY = 9;
KICK_BY_ISLAND_PARTY_GALLERY_START_FAILED = 10;
}
QuitReason reason = 11;
QuitReason reason = 11;
}
message PlayerPreEnterMpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1822;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1822;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum State {
INVALID = 0;
START = 1;
TIMEOUT = 2;
}
enum State {
INVALID = 0;
START = 1;
TIMEOUT = 2;
}
State state = 2;
uint32 uid = 14;
string nickname = 6;
State state = 2;
uint32 uid = 14;
string nickname = 6;
}
message GetPlayerMpModeAvailabilityReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1844;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1844;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetPlayerMpModeAvailabilityRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1849;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1849;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 mp_ret = 15;
int32 retcode = 2;
repeated uint32 param_list = 8;
int32 mp_ret = 15;
int32 retcode = 2;
repeated uint32 param_list = 8;
}
message PlayerSetOnlyMPWithPSPlayerReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1820;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1820;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_only = 13;
bool is_only = 13;
}
message PlayerSetOnlyMPWithPSPlayerRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1845;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1845;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 5;
bool is_only = 8;
int32 retcode = 5;
bool is_only = 8;
}
message PSPlayerApplyEnterMpReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1841;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1841;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string target_psn_id = 5;
string target_psn_id = 5;
}
message PSPlayerApplyEnterMpRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1842;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1842;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
string target_psn_id = 2;
int32 retcode = 6;
uint32 param = 10;
string target_psn_id = 2;
int32 retcode = 6;
uint32 param = 10;
}
message MpPlayOwnerCheckReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1814;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1814;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 mp_play_id = 9;
bool is_skip_match = 3;
uint32 mp_play_id = 9;
bool is_skip_match = 3;
}
message MpPlayOwnerCheckRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1847;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1847;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 wrong_uid = 4;
bool is_skip_match = 15;
uint32 mp_play_id = 10;
int32 retcode = 12;
uint32 wrong_uid = 4;
bool is_skip_match = 15;
uint32 mp_play_id = 10;
int32 retcode = 12;
}
message MpPlayOwnerStartInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1837;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1837;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 mp_play_id = 3;
bool is_skip_match = 6;
uint32 mp_play_id = 3;
bool is_skip_match = 6;
}
message MpPlayOwnerStartInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1823;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1823;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
uint32 mp_play_id = 3;
bool is_skip_match = 9;
int32 retcode = 14;
uint32 mp_play_id = 3;
bool is_skip_match = 9;
}
message MpPlayOwnerInviteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cd = 12;
uint32 mp_play_id = 13;
bool is_remain_reward = 10;
uint32 cd = 12;
uint32 mp_play_id = 13;
bool is_remain_reward = 10;
}
message MpPlayGuestReplyInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 mp_play_id = 3;
bool is_agree = 15;
uint32 mp_play_id = 3;
bool is_agree = 15;
}
message MpPlayGuestReplyInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1850;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1850;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 4;
uint32 mp_play_id = 10;
int32 retcode = 4;
uint32 mp_play_id = 10;
}
message MpPlayGuestReplyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1812;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1812;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 uid = 7;
bool is_agree = 4;
uint32 mp_play_id = 14;
uint32 uid = 7;
bool is_agree = 4;
uint32 mp_play_id = 14;
}
message MpPlayPrepareNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1833;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1833;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mp_play_id = 9;
uint32 prepare_end_time = 11;
uint32 mp_play_id = 9;
uint32 prepare_end_time = 11;
}
message MpPlayInviteResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1815;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1815;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mp_play_id = 11;
bool all_argee = 10;
uint32 mp_play_id = 11;
bool all_argee = 10;
}
message MpPlayPrepareInterruptNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1813;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1813;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mp_play_id = 12;
uint32 mp_play_id = 12;
}
message MpBlockNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1801;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1801;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 end_time = 13;
uint32 end_time = 13;
}
File diff suppressed because it is too large Load Diff
+79 -79
View File
@@ -2,114 +2,114 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message NpcTalkReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
option go_package = "./;proto";
uint32 entity_id = 8;
uint32 npc_entity_id = 9;
uint32 talk_id = 7;
message NpcTalkReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 entity_id = 8;
uint32 npc_entity_id = 9;
uint32 talk_id = 7;
}
message NpcTalkRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 598;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 598;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cur_talk_id = 9;
uint32 npc_entity_id = 6;
int32 retcode = 3;
uint32 entity_id = 13;
uint32 cur_talk_id = 9;
uint32 npc_entity_id = 6;
int32 retcode = 3;
uint32 entity_id = 13;
}
message GetSceneNpcPositionReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 npc_id_list = 6;
uint32 scene_id = 8;
repeated uint32 npc_id_list = 6;
uint32 scene_id = 8;
}
message GetSceneNpcPositionRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
repeated NpcPositionInfo npc_info_list = 14;
uint32 scene_id = 4;
int32 retcode = 10;
repeated NpcPositionInfo npc_info_list = 14;
uint32 scene_id = 4;
}
message MetNpcIdListNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 npc_first_met_id_list = 9;
repeated uint32 npc_first_met_id_list = 9;
}
message MeetNpcReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 503;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 503;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 npc_id = 4;
uint32 npc_id = 4;
}
message MeetNpcRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 590;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 590;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 14;
uint32 npc_first_met_id = 8;
int32 retcode = 14;
uint32 npc_first_met_id = 8;
}
message FinishedTalkIdListNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 573;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 573;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 finished_talk_id_list = 1;
repeated uint32 finished_talk_id_list = 1;
}
+73 -73
View File
@@ -2,108 +2,108 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message PlayerOfferingData {
uint32 offering_id = 1;
bool is_first_interact = 15;
uint32 level = 12;
repeated uint32 taken_level_reward_list = 8;
bool is_new_max_level = 6;
uint32 offering_id = 1;
bool is_first_interact = 15;
uint32 level = 12;
repeated uint32 taken_level_reward_list = 8;
bool is_new_max_level = 6;
}
message PlayerOfferingDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2923;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2923;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PlayerOfferingData offering_data_list = 2;
repeated PlayerOfferingData offering_data_list = 2;
}
message PlayerOfferingReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2907;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2907;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 offering_id = 6;
uint32 offering_id = 6;
}
message PlayerOfferingRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2917;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2917;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ItemParam item_list = 7;
int32 retcode = 4;
PlayerOfferingData offering_data = 10;
repeated ItemParam item_list = 7;
int32 retcode = 4;
PlayerOfferingData offering_data = 10;
}
message TakeOfferingLevelRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2919;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2919;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 level = 6;
uint32 offering_id = 11;
uint32 level = 6;
uint32 offering_id = 11;
}
message TakeOfferingLevelRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2911;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2911;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 offering_id = 3;
uint32 take_level = 4;
int32 retcode = 8;
repeated ItemParam item_list = 2;
uint32 offering_id = 3;
uint32 take_level = 4;
int32 retcode = 8;
repeated ItemParam item_list = 2;
}
message OfferingInteractReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2918;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2918;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 offering_id = 9;
uint32 offering_id = 9;
}
message OfferingInteractRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2908;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2908;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
PlayerOfferingData offering_data = 11;
int32 retcode = 12;
PlayerOfferingData offering_data = 11;
int32 retcode = 12;
}
+42 -42
View File
@@ -5,64 +5,64 @@ package proto;
option go_package = "./;proto";
message OpActivityInfo {
uint32 activity_id = 2;
uint32 end_time = 6;
uint32 begin_time = 5;
bool is_has_change = 1;
uint32 schedule_id = 13;
oneof detail {
BonusOpActivityInfo bonus_info = 12;
}
uint32 activity_id = 2;
uint32 end_time = 6;
uint32 begin_time = 5;
bool is_has_change = 1;
uint32 schedule_id = 13;
oneof detail {
BonusOpActivityInfo bonus_info = 12;
}
}
message BonusOpActivityInfo {
uint32 left_bonus_count = 11;
uint32 left_bonus_count = 11;
}
message GetOpActivityInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetOpActivityInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
repeated OpActivityInfo op_activity_info_list = 7;
int32 retcode = 10;
repeated OpActivityInfo op_activity_info_list = 7;
}
message OpActivityDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated OpActivityInfo op_activity_info_list = 15;
repeated OpActivityInfo op_activity_info_list = 15;
}
message OpActivityUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5135;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5135;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
OpActivityInfo op_activity_info = 6;
OpActivityInfo op_activity_info = 6;
}
+162 -162
View File
@@ -2,231 +2,231 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message QueryFilter {
int32 type_id = 9;
int32 area_mask = 13;
int32 type_id = 9;
int32 area_mask = 13;
}
message QueryPathReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2372;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2372;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum OptionType {
OPTION_NONE = 0;
OPTION_NORMAL = 1;
OPTION_FIRST_CAN_GO = 2;
}
enum OptionType {
OPTION_NONE = 0;
OPTION_NORMAL = 1;
OPTION_FIRST_CAN_GO = 2;
}
OptionType query_type = 13;
Vector3Int source_extend = 6;
Vector source_pos = 2;
QueryFilter filter = 12;
int32 query_id = 15;
Vector3Int destination_extend = 4;
repeated Vector destination_pos = 10;
uint32 scene_id = 11;
OptionType query_type = 13;
Vector3Int source_extend = 6;
Vector source_pos = 2;
QueryFilter filter = 12;
int32 query_id = 15;
Vector3Int destination_extend = 4;
repeated Vector destination_pos = 10;
uint32 scene_id = 11;
}
message QueryPathRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2398;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2398;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum PathStatusType {
STATUS_FAIL = 0;
STATUS_SUCC = 1;
STATUS_PARTIAL = 2;
}
enum PathStatusType {
STATUS_FAIL = 0;
STATUS_SUCC = 1;
STATUS_PARTIAL = 2;
}
int32 query_id = 12;
repeated Vector corners = 6;
PathStatusType query_status = 8;
int32 retcode = 1;
int32 query_id = 12;
repeated Vector corners = 6;
PathStatusType query_status = 8;
int32 retcode = 1;
}
message ObstacleInfo {
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
MathQuaternion rotation = 4;
int32 obstacle_id = 2;
Vector center = 14;
ShapeType shape = 6;
Vector3Int extents = 12;
MathQuaternion rotation = 4;
int32 obstacle_id = 2;
Vector center = 14;
ShapeType shape = 6;
Vector3Int extents = 12;
}
message ObstacleModifyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2312;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2312;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated int32 remove_obstacle_ids = 9;
repeated ObstacleInfo add_obstacles = 6;
uint32 scene_id = 5;
repeated int32 remove_obstacle_ids = 9;
repeated ObstacleInfo add_obstacles = 6;
uint32 scene_id = 5;
}
message PathfindingPingNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2335;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2335;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message PathfindingEnterSceneReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 scene_id = 12;
repeated uint32 activity_id = 14;
uint32 scene_tag_hash = 15;
uint32 version = 6;
bool is_editor = 11;
repeated ObstacleInfo obstacles = 13;
uint32 polygon_id = 4;
uint32 scene_id = 12;
repeated uint32 activity_id = 14;
uint32 scene_tag_hash = 15;
uint32 version = 6;
bool is_editor = 11;
repeated ObstacleInfo obstacles = 13;
uint32 polygon_id = 4;
}
message PathfindingEnterSceneRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2321;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2321;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
int32 retcode = 9;
}
message GMShowObstacleReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2361;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2361;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GMObstacleInfo {
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
int64 timestamp = 14;
ShapeType shape = 2;
int32 obstacle_id = 13;
MathQuaternion rotation = 3;
Vector center = 8;
Vector3Int extents = 15;
int64 timestamp = 14;
ShapeType shape = 2;
int32 obstacle_id = 13;
MathQuaternion rotation = 3;
Vector center = 8;
Vector3Int extents = 15;
}
message GMShowObstacleRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 5;
repeated GMObstacleInfo obstacles = 6;
int32 retcode = 5;
repeated GMObstacleInfo obstacles = 6;
}
message GMShowNavMeshReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2357;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2357;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
Vector center = 1;
Vector extent = 5;
Vector center = 1;
Vector extent = 5;
}
message PBNavMeshPoly {
enum EdgeType {
INNER = 0;
TILE_BOUND = 1;
TILE_BOUND_UNCONNECT = 2;
TILE_BOUND_OVERIDE = 3;
}
enum EdgeType {
INNER = 0;
TILE_BOUND = 1;
TILE_BOUND_UNCONNECT = 2;
TILE_BOUND_OVERIDE = 3;
}
repeated EdgeType edge_types = 10;
int32 area = 6;
repeated int32 vects = 7;
repeated EdgeType edge_types = 10;
int32 area = 6;
repeated int32 vects = 7;
}
message PBNavMeshTile {
repeated Vector vecs = 4;
repeated PBNavMeshPoly polys = 8;
repeated Vector vecs = 4;
repeated PBNavMeshPoly polys = 8;
}
message GMShowNavMeshRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2400;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2400;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PBNavMeshTile tiles = 11;
int32 retcode = 5;
repeated PBNavMeshTile tiles = 11;
int32 retcode = 5;
}
message PbNavMeshStatsInfo {
int32 authority_ai_in_combat = 10;
int32 no_authority_ai_in_combat = 11;
int32 total_authority_ai = 8;
int32 total_no_authority_ai = 13;
int32 authority_ai_in_combat = 10;
int32 no_authority_ai_in_combat = 11;
int32 total_authority_ai = 8;
int32 total_no_authority_ai = 13;
}
message NavMeshStatsNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2316;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2316;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated PbNavMeshStatsInfo infos = 4;
repeated PbNavMeshStatsInfo infos = 4;
}
File diff suppressed because it is too large Load Diff
+149 -149
View File
@@ -2,210 +2,210 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum PropChangeReason {
PROP_CHANGE_NONE = 0;
PROP_CHANGE_STATUE_RECOVER = 1;
PROP_CHANGE_ENERGY_BALL = 2;
PROP_CHANGE_ABILITY = 3;
PROP_CHANGE_LEVELUP = 4;
PROP_CHANGE_ITEM = 5;
PROP_CHANGE_AVATAR_CARD = 6;
PROP_CHANGE_CITY_LEVELUP = 7;
PROP_CHANGE_AVATAR_UPGRADE = 8;
PROP_CHANGE_AVATAR_PROMOTE = 9;
PROP_CHANGE_PLAYER_ADD_EXP = 10;
PROP_CHANGE_FINISH_QUEST = 11;
PROP_CHANGE_GM = 12;
PROP_CHANGE_MANUAL_ADJUST_WORLD_LEVEL = 13;
PROP_CHANGE_NONE = 0;
PROP_CHANGE_STATUE_RECOVER = 1;
PROP_CHANGE_ENERGY_BALL = 2;
PROP_CHANGE_ABILITY = 3;
PROP_CHANGE_LEVELUP = 4;
PROP_CHANGE_ITEM = 5;
PROP_CHANGE_AVATAR_CARD = 6;
PROP_CHANGE_CITY_LEVELUP = 7;
PROP_CHANGE_AVATAR_UPGRADE = 8;
PROP_CHANGE_AVATAR_PROMOTE = 9;
PROP_CHANGE_PLAYER_ADD_EXP = 10;
PROP_CHANGE_FINISH_QUEST = 11;
PROP_CHANGE_GM = 12;
PROP_CHANGE_MANUAL_ADJUST_WORLD_LEVEL = 13;
}
enum ChangeEnergyReason {
CHANGE_ENERGY_NONE = 0;
CHANGE_ENERGY_SKILL_START = 1;
CHANGE_ENERGY_NONE = 0;
CHANGE_ENERGY_SKILL_START = 1;
}
enum MarkNewType {
MARK_NEW_TYPE_NONE = 0;
MARK_NEW_TYPE_COMBINE = 1;
MARK_NEW_TYPE_FORGE = 2;
MARK_NEW_TYPE_NONE = 0;
MARK_NEW_TYPE_COMBINE = 1;
MARK_NEW_TYPE_FORGE = 2;
}
message EntityPropNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1272;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1272;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, PropValue> prop_map = 1;
uint32 entity_id = 14;
map<uint32, PropValue> prop_map = 1;
uint32 entity_id = 14;
}
message LifeStateChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1298;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1298;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 entity_id = 4;
repeated ServerBuff server_buff_list = 6;
string attack_tag = 7;
uint32 move_reliable_seq = 15;
PlayerDieType die_type = 14;
uint32 life_state = 5;
uint32 source_entity_id = 1;
uint32 entity_id = 4;
repeated ServerBuff server_buff_list = 6;
string attack_tag = 7;
uint32 move_reliable_seq = 15;
PlayerDieType die_type = 14;
uint32 life_state = 5;
uint32 source_entity_id = 1;
}
message EntityFightPropNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 entity_id = 4;
map<uint32, float> fight_prop_map = 8;
uint32 entity_id = 4;
map<uint32, float> fight_prop_map = 8;
}
message EntityFightPropUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, float> fight_prop_map = 15;
uint32 entity_id = 13;
map<uint32, float> fight_prop_map = 15;
uint32 entity_id = 13;
}
message AvatarFightPropNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, float> fight_prop_map = 8;
uint64 avatar_guid = 4;
map<uint32, float> fight_prop_map = 8;
uint64 avatar_guid = 4;
}
message AvatarFightPropUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1221;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1221;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, float> fight_prop_map = 15;
uint64 avatar_guid = 13;
map<uint32, float> fight_prop_map = 15;
uint64 avatar_guid = 13;
}
message EntityFightPropChangeReasonNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1203;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 param_list = 10;
float prop_delta = 1;
ChangHpReason change_hp_reason = 14;
PropChangeReason reason = 6;
uint32 entity_id = 5;
ChangeEnergyReason change_energy_reson = 15;
uint32 prop_type = 13;
repeated uint32 param_list = 10;
float prop_delta = 1;
ChangHpReason change_hp_reason = 14;
PropChangeReason reason = 6;
uint32 entity_id = 5;
ChangeEnergyReason change_energy_reson = 15;
uint32 prop_type = 13;
}
message AvatarLifeStateChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1290;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1290;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 life_state = 13;
string attack_tag = 10;
PlayerDieType die_type = 2;
repeated ServerBuff server_buff_list = 12;
uint32 move_reliable_seq = 5;
uint32 source_entity_id = 3;
uint64 avatar_guid = 11;
uint32 life_state = 13;
string attack_tag = 10;
PlayerDieType die_type = 2;
repeated ServerBuff server_buff_list = 12;
uint32 move_reliable_seq = 5;
uint32 source_entity_id = 3;
uint64 avatar_guid = 11;
}
message AvatarPropChangeReasonNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1273;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1273;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
float old_value = 11;
PropChangeReason reason = 5;
uint32 prop_type = 1;
uint64 avatar_guid = 8;
float cur_value = 15;
float old_value = 11;
PropChangeReason reason = 5;
uint32 prop_type = 1;
uint64 avatar_guid = 8;
float cur_value = 15;
}
message PlayerPropChangeReasonNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1299;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1299;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 prop_type = 6;
float old_value = 12;
PropChangeReason reason = 1;
float cur_value = 11;
uint32 prop_type = 6;
float old_value = 12;
PropChangeReason reason = 1;
float cur_value = 11;
}
message AvatarPropNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1231;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1231;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, int64> prop_map = 14;
uint64 avatar_guid = 15;
map<uint32, int64> prop_map = 14;
uint64 avatar_guid = 15;
}
message MarkNewNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1275;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1275;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 id_list = 7;
uint32 mark_new_type = 11;
repeated uint32 id_list = 7;
uint32 mark_new_type = 11;
}
File diff suppressed because it is too large Load Diff
+112 -112
View File
@@ -2,161 +2,161 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message RechargeReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4126;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
option go_package = "./;proto";
PlayProduct play_product = 10;
ShopCardProduct card_product = 8;
ShopMcoinProduct mcoin_product = 14;
ShopConcertProduct concert_product = 7;
message RechargeReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4126;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
PlayProduct play_product = 10;
ShopCardProduct card_product = 8;
ShopMcoinProduct mcoin_product = 14;
ShopConcertProduct concert_product = 7;
}
message RechargeRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4118;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4118;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 12;
bool is_show_minors_hint = 6;
string product_id = 2;
int32 retcode = 12;
bool is_show_minors_hint = 6;
string product_id = 2;
}
message OrderFinishNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4125;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4125;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 order_id = 3;
uint32 card_product_remain_days = 15;
repeated ItemParam item_list = 9;
uint32 add_mcoin = 7;
string product_id = 6;
uint32 order_id = 3;
uint32 card_product_remain_days = 15;
repeated ItemParam item_list = 9;
uint32 add_mcoin = 7;
string product_id = 6;
}
message CardProductRewardNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4107;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4107;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 hcoin = 6;
string product_id = 14;
uint32 remain_days = 1;
uint32 hcoin = 6;
string product_id = 14;
uint32 remain_days = 1;
}
message ProductPriceTier {
string product_id = 6;
string price_tier = 12;
string product_id = 6;
string price_tier = 12;
}
message ResinCardData {
uint32 remain_reward_days = 3;
uint32 expire_time = 12;
uint32 last_daily_reward_time = 2;
uint32 config_id = 7;
uint32 remain_reward_days = 3;
uint32 expire_time = 12;
uint32 last_daily_reward_time = 2;
uint32 config_id = 7;
}
message PlayerRechargeDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4102;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4102;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 card_product_remain_days = 12;
repeated ProductPriceTier product_price_tier_list = 11;
uint32 card_product_remain_days = 12;
repeated ProductPriceTier product_price_tier_list = 11;
}
message OrderDisplayNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4131;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4131;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 order_id = 1;
uint32 order_id = 1;
}
message ReportTrackingIOInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4129;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4129;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
string rydevicetype = 12;
string deviceid = 1;
string client_tz = 13;
string appid = 14;
string mac = 15;
string rydevicetype = 12;
string deviceid = 1;
string client_tz = 13;
string appid = 14;
string mac = 15;
}
message TakeResinCardDailyRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4122;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4122;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 product_config_id = 14;
uint32 product_config_id = 14;
}
message TakeResinCardDailyRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4144;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4144;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ItemParam item_vec = 6;
int32 retcode = 4;
uint32 product_config_id = 12;
repeated ItemParam item_vec = 6;
int32 retcode = 4;
uint32 product_config_id = 12;
}
message ResinCardDataUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4149;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4149;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 today_start_time = 6;
repeated ResinCardData card_data_list = 2;
uint32 today_start_time = 6;
repeated ResinCardData card_data_list = 2;
}
+61 -61
View File
@@ -2,91 +2,91 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message RegionSearch {
bool is_entered = 13;
uint32 progress = 5;
RegionSearchState state = 2;
uint32 region_search_id = 8;
bool is_entered = 13;
uint32 progress = 5;
RegionSearchState state = 2;
uint32 region_search_id = 8;
}
message RegionSearchInfo {
uint32 id = 5;
repeated RegionSearch region_search_list = 1;
bool is_entered = 7;
uint32 id = 5;
repeated RegionSearch region_search_list = 1;
bool is_entered = 7;
}
message RegionSearchNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5626;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5626;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated RegionSearchInfo region_search_list = 1;
uint32 uid = 8;
repeated RegionSearchInfo region_search_list = 1;
uint32 uid = 8;
}
message RegionSearchChangeRegionNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5618;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5618;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum RegionEvent {
REGION_EVENT_NONE = 0;
REGION_EVENT_ENTER = 1;
REGION_EVENT_LEAVE = 2;
}
enum RegionEvent {
REGION_EVENT_NONE = 0;
REGION_EVENT_ENTER = 1;
REGION_EVENT_LEAVE = 2;
}
RegionEvent event = 1;
uint32 region_id = 10;
RegionEvent event = 1;
uint32 region_id = 10;
}
message TakeRegionSearchRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5625;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5625;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 search_id = 3;
uint32 id = 15;
uint32 search_id = 3;
uint32 id = 15;
}
message TakeRegionSearchRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5607;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5607;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 search_id = 14;
uint32 id = 1;
int32 retcode = 5;
uint32 search_id = 14;
uint32 id = 1;
int32 retcode = 5;
}
message GetRegionSearchReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5602;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5602;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
+36 -36
View File
@@ -2,58 +2,58 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message RegionalPlayVar {
uint32 type = 15;
float max_value = 11;
float value = 3;
float base_value = 10;
uint32 type = 15;
float max_value = 11;
float value = 3;
float base_value = 10;
}
message RegionalPlayInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6276;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6276;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated RegionalPlayVar var_list = 5;
string play_name = 9;
bool is_enabled = 15;
uint32 play_type = 7;
bool is_in_region = 4;
repeated RegionalPlayVar var_list = 5;
string play_name = 9;
bool is_enabled = 15;
uint32 play_type = 7;
bool is_in_region = 4;
}
message DeathZoneInfo {
bool is_open = 9;
uint32 id = 14;
bool is_open = 9;
uint32 id = 14;
}
message DeathZoneInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6268;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6268;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated DeathZoneInfo death_zone_info_list = 8;
repeated DeathZoneInfo death_zone_info_list = 8;
}
message PlayerDeathZoneNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6275;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6275;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cur_death_zone_id = 8;
uint32 cur_death_zone_id = 8;
}
+22 -22
View File
@@ -2,33 +2,33 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message NormalUidOpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5726;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
option go_package = "./;proto";
uint32 duration = 6;
repeated uint32 param_list = 4;
repeated uint32 param_uid_list = 5;
uint32 param_index = 8;
message NormalUidOpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5726;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 duration = 6;
repeated uint32 param_list = 4;
repeated uint32 param_uid_list = 5;
uint32 param_index = 8;
}
message ServerMessageNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5718;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5718;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 index = 1;
uint32 index = 1;
}
+189 -189
View File
@@ -2,275 +2,275 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message CityReputationQuestInfo {
bool is_open = 2;
repeated uint32 taken_parent_quest_reward_list = 12;
repeated uint32 finished_parent_quest_list = 7;
bool is_open = 2;
repeated uint32 taken_parent_quest_reward_list = 12;
repeated uint32 finished_parent_quest_list = 7;
}
message CityReputationRequestInfo {
message RequestInfo {
uint32 request_id = 3;
uint32 quest_id = 9;
bool is_taken_reward = 6;
}
message RequestInfo {
uint32 request_id = 3;
uint32 quest_id = 9;
bool is_taken_reward = 6;
}
bool is_open = 2;
repeated RequestInfo request_info_list = 1;
bool is_open = 2;
repeated RequestInfo request_info_list = 1;
}
message CityReputationExploreInfo {
repeated uint32 taken_explore_reward_list = 2;
uint32 explore_percent = 14;
bool is_open = 15;
repeated uint32 taken_explore_reward_list = 2;
uint32 explore_percent = 14;
bool is_open = 15;
}
message CityReputationHuntInfo {
bool is_open = 6;
uint32 cur_week_finish_num = 15;
bool has_reward = 5;
bool is_open = 6;
uint32 cur_week_finish_num = 15;
bool has_reward = 5;
}
message CityReputationInfo {
uint32 level = 4;
uint32 next_refresh_time = 3;
CityReputationHuntInfo hunt_info = 11;
repeated uint32 taken_level_reward_list = 2;
uint32 total_accept_request_num = 6;
CityReputationRequestInfo request_info = 5;
CityReputationQuestInfo quest_info = 9;
uint32 exp = 13;
CityReputationExploreInfo explore_info = 10;
uint32 level = 4;
uint32 next_refresh_time = 3;
CityReputationHuntInfo hunt_info = 11;
repeated uint32 taken_level_reward_list = 2;
uint32 total_accept_request_num = 6;
CityReputationRequestInfo request_info = 5;
CityReputationQuestInfo quest_info = 9;
uint32 exp = 13;
CityReputationExploreInfo explore_info = 10;
}
message GetCityReputationInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2872;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2872;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 7;
uint32 city_id = 7;
}
message GetCityReputationInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2898;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2898;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 city_id = 1;
int32 retcode = 4;
CityReputationInfo city_reputation_info = 9;
uint32 city_id = 1;
int32 retcode = 4;
CityReputationInfo city_reputation_info = 9;
}
message TakeCityReputationLevelRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2812;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2812;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 level = 11;
uint32 city_id = 1;
uint32 level = 11;
uint32 city_id = 1;
}
message TakeCityReputationLevelRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2835;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 city_id = 15;
int32 retcode = 11;
repeated ItemParam item_list = 13;
uint32 level = 9;
uint32 city_id = 15;
int32 retcode = 11;
repeated ItemParam item_list = 13;
uint32 level = 9;
}
message CityReputationLevelupNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2807;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 city_id = 12;
uint32 level = 15;
uint32 city_id = 12;
uint32 level = 15;
}
message TakeCityReputationParentQuestReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2821;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2821;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 1;
repeated uint32 parent_quest_list = 6;
uint32 city_id = 1;
repeated uint32 parent_quest_list = 6;
}
message TakeCityReputationParentQuestRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2803;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2803;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
int32 retcode = 7;
uint32 city_id = 14;
repeated uint32 parent_quest_list = 9;
repeated ItemParam item_list = 13;
int32 retcode = 7;
uint32 city_id = 14;
repeated uint32 parent_quest_list = 9;
repeated ItemParam item_list = 13;
}
message AcceptCityReputationRequestReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2890;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2890;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 14;
uint32 request_id = 5;
uint32 city_id = 14;
uint32 request_id = 5;
}
message AcceptCityReputationRequestRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2873;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2873;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 request_id = 5;
uint32 city_id = 13;
int32 retcode = 2;
uint32 request_id = 5;
uint32 city_id = 13;
int32 retcode = 2;
}
message CancelCityReputationRequestReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2899;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2899;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 request_id = 10;
uint32 city_id = 6;
uint32 request_id = 10;
uint32 city_id = 6;
}
message CancelCityReputationRequestRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2831;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 city_id = 3;
int32 retcode = 2;
uint32 request_id = 12;
uint32 city_id = 3;
int32 retcode = 2;
uint32 request_id = 12;
}
message GetCityReputationMapInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2875;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2875;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetCityReputationMapInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2848;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
bool is_new_hunting = 10;
bool is_new_request = 2;
repeated uint32 unlock_hunting_city_list = 9;
repeated uint32 reward_city_list = 3;
int32 retcode = 11;
bool is_new_hunting = 10;
bool is_new_request = 2;
repeated uint32 unlock_hunting_city_list = 9;
repeated uint32 reward_city_list = 3;
}
message TakeCityReputationExploreRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2897;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2897;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 city_id = 15;
repeated uint32 explore_id_list = 12;
uint32 city_id = 15;
repeated uint32 explore_id_list = 12;
}
message TakeCityReputationExploreRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2881;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2881;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 explore_id_list = 8;
repeated ItemParam item_list = 12;
int32 retcode = 6;
uint32 city_id = 13;
repeated uint32 explore_id_list = 8;
repeated ItemParam item_list = 12;
int32 retcode = 6;
uint32 city_id = 13;
}
message CityReputationSimpleInfo {
uint32 level = 15;
uint32 city_id = 9;
uint32 level = 15;
uint32 city_id = 9;
}
message CityReputationDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2805;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2805;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated CityReputationSimpleInfo simple_info_list = 7;
repeated CityReputationSimpleInfo simple_info_list = 7;
}
+224 -224
View File
@@ -5,321 +5,321 @@ package proto;
option go_package = "./;proto";
message ReunionSignInInfo {
uint32 sign_in_count = 6;
repeated uint32 reward_day_list = 8;
uint32 config_id = 12;
uint32 last_sign_in_time = 11;
uint32 sign_in_count = 6;
repeated uint32 reward_day_list = 8;
uint32 config_id = 12;
uint32 last_sign_in_time = 11;
}
message ReunionWatcherInfo {
uint32 reward_unlock_time = 12;
uint32 watcher_id = 3;
uint32 total_progress = 4;
uint32 cur_progress = 11;
bool is_taken_reward = 14;
uint32 reward_unlock_time = 12;
uint32 watcher_id = 3;
uint32 total_progress = 4;
uint32 cur_progress = 11;
bool is_taken_reward = 14;
}
message ReunionMissionInfo {
repeated ReunionWatcherInfo cur_day_watcher_list = 3;
uint32 cur_score = 11;
bool is_taken_reward = 8;
repeated bool is_taken_reward_list = 6;
uint32 next_refresh_time = 5;
bool is_finished = 9;
uint32 mission_id = 12;
repeated ReunionWatcherInfo watcher_list = 2;
repeated ReunionWatcherInfo cur_day_watcher_list = 3;
uint32 cur_score = 11;
bool is_taken_reward = 8;
repeated bool is_taken_reward_list = 6;
uint32 next_refresh_time = 5;
bool is_finished = 9;
uint32 mission_id = 12;
repeated ReunionWatcherInfo watcher_list = 2;
}
message ReunionPrivilegeInfo {
uint32 cur_day_count = 7;
uint32 total_count = 10;
uint32 privilege_id = 4;
uint32 cur_day_count = 7;
uint32 total_count = 10;
uint32 privilege_id = 4;
}
message ReunionBriefInfo {
uint32 first_gift_reward_id = 15;
uint32 privilege_id = 5;
uint32 mission_id = 10;
uint32 first_day_start_time = 3;
bool sign_in_has_reward = 2;
uint32 start_time = 7;
bool is_taken_first_gift = 8;
uint32 finish_time = 12;
bool mission_has_reward = 9;
ReunionPrivilegeInfo privilege_info = 14;
string version = 13;
uint32 sign_in_config_id = 6;
uint32 first_gift_reward_id = 15;
uint32 privilege_id = 5;
uint32 mission_id = 10;
uint32 first_day_start_time = 3;
bool sign_in_has_reward = 2;
uint32 start_time = 7;
bool is_taken_first_gift = 8;
uint32 finish_time = 12;
bool mission_has_reward = 9;
ReunionPrivilegeInfo privilege_info = 14;
string version = 13;
uint32 sign_in_config_id = 6;
}
message ReunionBriefInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5076;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5076;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message ReunionBriefInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5068;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5068;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_activate = 13;
int32 retcode = 14;
ReunionBriefInfo reunion_brief_info = 5;
bool is_activate = 13;
int32 retcode = 14;
ReunionBriefInfo reunion_brief_info = 5;
}
message TakeReunionFirstGiftRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5075;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5075;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message TakeReunionFirstGiftRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5057;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5057;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 reward_id = 9;
int32 retcode = 15;
int32 reward_id = 9;
int32 retcode = 15;
}
message GetReunionSignInInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5052;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5052;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 sign_in_config_id = 10;
uint32 sign_in_config_id = 10;
}
message GetReunionSignInInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5081;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5081;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ReunionSignInInfo sign_in_info = 5;
int32 retcode = 15;
ReunionSignInInfo sign_in_info = 5;
int32 retcode = 15;
}
message TakeReunionSignInRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5079;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5079;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 reward_day = 12;
uint32 config_id = 14;
uint32 reward_day = 12;
uint32 config_id = 14;
}
message TakeReunionSignInRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ReunionSignInInfo sign_in_info = 10;
int32 retcode = 5;
ReunionSignInInfo sign_in_info = 10;
int32 retcode = 5;
}
message GetReunionMissionInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5094;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5094;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 mission_id = 14;
uint32 mission_id = 14;
}
message GetReunionMissionInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5099;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5099;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
ReunionMissionInfo mission_info = 14;
int32 retcode = 9;
ReunionMissionInfo mission_info = 14;
}
message TakeReunionWatcherRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5070;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5070;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 watcher_id = 12;
uint32 mission_id = 15;
uint32 watcher_id = 12;
uint32 mission_id = 15;
}
message TakeReunionWatcherRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5095;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5095;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mission_id = 15;
uint32 watcher_id = 9;
int32 retcode = 10;
uint32 mission_id = 15;
uint32 watcher_id = 9;
int32 retcode = 10;
}
message UpdateReunionWatcherNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5091;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5091;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 mission_id = 3;
ReunionWatcherInfo watcher_info = 10;
uint32 mission_id = 3;
ReunionWatcherInfo watcher_info = 10;
}
message TakeReunionMissionRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5092;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5092;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 reward_id = 7;
uint32 reward_index = 4;
uint32 mission_id = 12;
uint32 reward_id = 7;
uint32 reward_index = 4;
uint32 mission_id = 12;
}
message TakeReunionMissionRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5064;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5064;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 reward_index = 12;
int32 retcode = 2;
ReunionMissionInfo mission_info = 9;
uint32 reward_id = 3;
uint32 reward_index = 12;
int32 retcode = 2;
ReunionMissionInfo mission_info = 9;
uint32 reward_id = 3;
}
message GetReunionPrivilegeInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5097;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5097;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 privilege_id = 10;
uint32 privilege_id = 10;
}
message GetReunionPrivilegeInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5087;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5087;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 3;
ReunionPrivilegeInfo privilege_info = 1;
int32 retcode = 3;
ReunionPrivilegeInfo privilege_info = 1;
}
message ReunionSettleNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5073;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5073;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
}
message ReunionActivateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5085;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5085;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_activate = 9;
ReunionBriefInfo reunion_brief_info = 13;
bool is_activate = 9;
ReunionBriefInfo reunion_brief_info = 13;
}
message ReunionPrivilegeChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5098;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5098;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ReunionPrivilegeInfo privilege_info = 13;
ReunionPrivilegeInfo privilege_info = 13;
}
message ReunionDailyRefreshNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5100;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 5100;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ReunionBriefInfo reunion_brief_info = 4;
ReunionBriefInfo reunion_brief_info = 4;
}
+52 -52
View File
@@ -2,85 +2,85 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message PlayerRoutineInfo {
uint32 routine_type = 8;
uint32 finished_num = 15;
uint32 routine_type = 8;
uint32 finished_num = 15;
}
message PlayerRoutineDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3526;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3526;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PlayerRoutineInfo routine_info_list = 11;
repeated PlayerRoutineInfo routine_info_list = 11;
}
message WorldRoutineInfo {
uint32 progress = 4;
bool is_finished = 14;
uint32 finish_progress = 3;
uint32 routine_id = 11;
uint32 progress = 4;
bool is_finished = 14;
uint32 finish_progress = 3;
uint32 routine_id = 11;
}
message WorldRoutineTypeInfo {
uint32 routine_type = 13;
uint32 next_refresh_time = 12;
repeated WorldRoutineInfo world_routine_info_list = 3;
uint32 routine_type = 13;
uint32 next_refresh_time = 12;
repeated WorldRoutineInfo world_routine_info_list = 3;
}
message WorldAllRoutineTypeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3518;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3518;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated WorldRoutineTypeInfo world_routine_type_list = 12;
repeated WorldRoutineTypeInfo world_routine_type_list = 12;
}
message WorldRoutineTypeRefreshNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3525;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3525;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
WorldRoutineTypeInfo world_routine_type = 7;
WorldRoutineTypeInfo world_routine_type = 7;
}
message WorldRoutineChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
WorldRoutineInfo routine_info = 3;
uint32 routine_type = 11;
WorldRoutineInfo routine_info = 3;
uint32 routine_type = 11;
}
message WorldRoutineTypeCloseNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3502;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 3502;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 routine_type = 7;
uint32 routine_type = 7;
}
File diff suppressed because it is too large Load Diff
+197 -197
View File
@@ -2,280 +2,280 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum ScenePlayBattleState {
SCENE_PLAY_BATTLE_NONE = 0;
SCENE_PLAY_BATTLE_INIT = 1;
SCENE_PLAY_BATTLE_PREPARE = 2;
SCENE_PLAY_BATTLE_READY = 3;
SCENE_PLAY_BATTLE_PRESTART = 4;
SCENE_PLAY_BATTLE_START = 5;
SCENE_PLAY_BATTLE_STOP = 6;
SCENE_PLAY_BATTLE_NONE = 0;
SCENE_PLAY_BATTLE_INIT = 1;
SCENE_PLAY_BATTLE_PREPARE = 2;
SCENE_PLAY_BATTLE_READY = 3;
SCENE_PLAY_BATTLE_PRESTART = 4;
SCENE_PLAY_BATTLE_START = 5;
SCENE_PLAY_BATTLE_STOP = 6;
}
message ScenePlayBattleInfo {
uint32 mode = 4;
repeated uint32 progress_stage_list = 3;
uint32 start_time = 10;
uint32 duration = 14;
uint32 play_type = 12;
uint32 play_id = 1;
uint32 prepare_end_time = 7;
uint32 progress = 11;
uint32 state = 8;
uint32 type = 9;
uint32 mode = 4;
repeated uint32 progress_stage_list = 3;
uint32 start_time = 10;
uint32 duration = 14;
uint32 play_type = 12;
uint32 play_id = 1;
uint32 prepare_end_time = 7;
uint32 progress = 11;
uint32 state = 8;
uint32 type = 9;
}
message ScenePlayBattleInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4422;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4422;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
ScenePlayBattleInfo battle_info = 11;
ScenePlayBattleInfo battle_info = 11;
}
message ScenePlayOwnerCheckReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 play_id = 9;
bool is_skip_match = 6;
uint32 play_id = 9;
bool is_skip_match = 6;
}
message ScenePlayOwnerCheckRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4362;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4362;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 param_list = 8;
bool is_skip_match = 1;
uint32 play_id = 9;
uint32 wrong_uid = 5;
int32 retcode = 3;
repeated uint32 param_list = 8;
bool is_skip_match = 1;
uint32 play_id = 9;
uint32 wrong_uid = 5;
int32 retcode = 3;
}
message ScenePlayOwnerStartInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4385;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4385;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_skip_match = 8;
uint32 play_id = 13;
bool is_skip_match = 8;
uint32 play_id = 13;
}
message ScenePlayOwnerStartInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4357;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4357;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_skip_match = 7;
int32 retcode = 15;
uint32 play_id = 11;
bool is_skip_match = 7;
int32 retcode = 15;
uint32 play_id = 11;
}
message ScenePlayOwnerInviteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4371;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4371;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 invite_cd = 14;
uint32 play_id = 5;
bool is_remain_reward = 15;
uint32 invite_cd = 14;
uint32 play_id = 5;
bool is_remain_reward = 15;
}
message ScenePlayGuestReplyInviteReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4353;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4353;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_agree = 15;
uint32 play_id = 6;
bool is_agree = 15;
uint32 play_id = 6;
}
message ScenePlayGuestReplyInviteRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4440;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4440;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 6;
bool is_agree = 2;
uint32 play_id = 8;
int32 retcode = 6;
bool is_agree = 2;
uint32 play_id = 8;
}
message ScenePlayGuestReplyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4423;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4423;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 play_id = 13;
uint32 guest_uid = 12;
bool is_agree = 3;
uint32 play_id = 13;
uint32 guest_uid = 12;
bool is_agree = 3;
}
message ScenePlayInviteResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4449;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4449;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_all_argee = 11;
uint32 play_id = 15;
bool is_all_argee = 11;
uint32 play_id = 15;
}
message ScenePlayInfo {
uint32 entry_id = 15;
uint32 play_id = 11;
uint32 play_type = 3;
bool is_open = 9;
uint32 entry_id = 15;
uint32 play_id = 11;
uint32 play_type = 3;
bool is_open = 9;
}
message ScenePlayInfoListNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4381;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4381;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ScenePlayInfo play_info_list = 6;
repeated ScenePlayInfo play_info_list = 6;
}
message ScenePlayBattleInterruptNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4425;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4425;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 interrupt_state = 6;
uint32 play_id = 5;
uint32 play_type = 1;
uint32 interrupt_state = 6;
uint32 play_id = 5;
uint32 play_type = 1;
}
message ScenePlayBattleSettlePlayerInfo {
repeated ExhibitionDisplayInfo card_list = 14;
ProfilePicture profile_picture = 10;
uint32 head_image = 11;
uint32 statistic_id = 4;
uint32 uid = 1;
int64 param = 5;
string online_id = 12;
string nickname = 15;
repeated ExhibitionDisplayInfo card_list = 14;
ProfilePicture profile_picture = 10;
uint32 head_image = 11;
uint32 statistic_id = 4;
uint32 uid = 1;
int64 param = 5;
string online_id = 12;
string nickname = 15;
}
message ScenePlayBattleSettleRewardInfo {
repeated ItemParam reward_item_list = 4;
uint32 uid = 3;
repeated ItemParam reward_item_list = 4;
uint32 uid = 3;
}
message ScenePlayBattleResultNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4398;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4398;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_win = 1;
uint32 cost_time = 7;
uint32 play_type = 15;
uint32 play_id = 11;
repeated ScenePlayBattleSettlePlayerInfo settle_player_info_list = 4;
repeated ScenePlayBattleSettleRewardInfo settle_reward_info_list = 14;
bool is_win = 1;
uint32 cost_time = 7;
uint32 play_type = 15;
uint32 play_id = 11;
repeated ScenePlayBattleSettlePlayerInfo settle_player_info_list = 4;
repeated ScenePlayBattleSettleRewardInfo settle_reward_info_list = 14;
}
message ScenePlayBattleUidOpNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4447;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4447;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 op = 7;
repeated uint32 param_target_list = 9;
uint32 entity_id = 2;
string param_str = 3;
repeated uint32 uid_list = 6;
uint32 param_index = 11;
uint32 play_type = 8;
uint32 param_duration = 12;
repeated uint32 param_list = 15;
uint32 play_id = 5;
uint32 op = 7;
repeated uint32 param_target_list = 9;
uint32 entity_id = 2;
string param_str = 3;
repeated uint32 uid_list = 6;
uint32 param_index = 11;
uint32 play_type = 8;
uint32 param_duration = 12;
repeated uint32 param_list = 15;
uint32 play_id = 5;
}
message ScenePlayBattleInfoListNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ScenePlayBattleInfo battle_info_list = 12;
repeated ScenePlayBattleInfo battle_info_list = 12;
}
message ScenePlayOutofRegionNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4355;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 4355;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 play_id = 13;
uint32 play_id = 13;
}
+13 -13
View File
@@ -2,24 +2,24 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message ShareCDInfo {
uint32 index = 2;
uint64 cd_start_time = 14;
uint32 share_cd_id = 12;
uint32 index = 2;
uint64 cd_start_time = 14;
uint32 share_cd_id = 12;
}
message AllShareCDDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 9072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 9072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, ShareCDInfo> share_cd_info_map = 2;
map<uint32, ShareCDInfo> share_cd_info_map = 2;
}
+142 -142
View File
@@ -2,200 +2,200 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum ShopGoodsDisableType {
SHOP_GOODS_DISABLE_NONE = 0;
SHOP_GOODS_DISABLE_TALENT_FULL = 1;
SHOP_GOODS_DISABLE_FURNITURE_FORMULA_UNLOCKED = 2;
SHOP_GOODS_DISABLE_COSTUME_UNLOCKED = 3;
SHOP_GOODS_DISABLE_BGM_UNLOCKED = 4;
SHOP_GOODS_DISABLE_GCG_CARD_EXCEED = 5;
SHOP_GOODS_DISABLE_GCG_CARD_FACE_UNLOCKED = 6;
SHOP_GOODS_DISABLE_GCG_CARD_BACK_UNLOCKED = 7;
SHOP_GOODS_DISABLE_GCG_FIELD_UNLOCKED = 8;
SHOP_GOODS_DISABLE_NONE = 0;
SHOP_GOODS_DISABLE_TALENT_FULL = 1;
SHOP_GOODS_DISABLE_FURNITURE_FORMULA_UNLOCKED = 2;
SHOP_GOODS_DISABLE_COSTUME_UNLOCKED = 3;
SHOP_GOODS_DISABLE_BGM_UNLOCKED = 4;
SHOP_GOODS_DISABLE_GCG_CARD_EXCEED = 5;
SHOP_GOODS_DISABLE_GCG_CARD_FACE_UNLOCKED = 6;
SHOP_GOODS_DISABLE_GCG_CARD_BACK_UNLOCKED = 7;
SHOP_GOODS_DISABLE_GCG_FIELD_UNLOCKED = 8;
}
message ShopGoods {
uint32 discount_end_time = 258;
uint32 min_level = 8;
uint32 end_time = 11;
repeated ItemParam cost_item_list = 3;
uint32 secondary_sheet_id = 318;
uint32 hcoin = 1;
uint32 mcoin = 14;
uint32 discount_id = 1998;
uint32 single_limit = 247;
uint32 goods_id = 13;
uint32 next_refresh_time = 7;
uint32 max_level = 4;
uint32 disable_type = 6;
uint32 discount_begin_time = 574;
repeated uint32 pre_goods_id_list = 2;
uint32 begin_time = 5;
uint32 scoin = 15;
uint32 bought_num = 10;
uint32 buy_limit = 12;
ItemParam goods_item = 9;
uint32 discount_end_time = 258;
uint32 min_level = 8;
uint32 end_time = 11;
repeated ItemParam cost_item_list = 3;
uint32 secondary_sheet_id = 318;
uint32 hcoin = 1;
uint32 mcoin = 14;
uint32 discount_id = 1998;
uint32 single_limit = 247;
uint32 goods_id = 13;
uint32 next_refresh_time = 7;
uint32 max_level = 4;
uint32 disable_type = 6;
uint32 discount_begin_time = 574;
repeated uint32 pre_goods_id_list = 2;
uint32 begin_time = 5;
uint32 scoin = 15;
uint32 bought_num = 10;
uint32 buy_limit = 12;
ItemParam goods_item = 9;
}
message Shop {
repeated ShopConcertProduct concert_product_list = 3;
repeated ShopGoods goods_list = 15;
uint32 city_reputation_level = 2;
repeated ShopCardProduct card_product_list = 14;
repeated ShopMcoinProduct mcoin_product_list = 7;
uint32 next_refresh_time = 11;
uint32 city_id = 10;
uint32 shop_type = 13;
repeated ShopConcertProduct concert_product_list = 3;
repeated ShopGoods goods_list = 15;
uint32 city_reputation_level = 2;
repeated ShopCardProduct card_product_list = 14;
repeated ShopMcoinProduct mcoin_product_list = 7;
uint32 next_refresh_time = 11;
uint32 city_id = 10;
uint32 shop_type = 13;
}
message GetShopReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 772;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 772;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 shop_type = 13;
uint32 shop_type = 13;
}
message GetShopRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 798;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 798;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
Shop shop = 11;
int32 retcode = 2;
Shop shop = 11;
int32 retcode = 2;
}
message BuyGoodsReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 712;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 712;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 buy_count = 14;
ShopGoods goods = 15;
uint32 shop_type = 7;
uint32 buy_count = 14;
ShopGoods goods = 15;
uint32 shop_type = 7;
}
message BuyGoodsRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 735;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 735;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 buy_count = 14;
ShopGoods goods = 12;
uint32 shop_type = 11;
int32 retcode = 2;
repeated ShopGoods goods_list = 5;
uint32 buy_count = 14;
ShopGoods goods = 12;
uint32 shop_type = 11;
int32 retcode = 2;
repeated ShopGoods goods_list = 5;
}
message GetShopmallDataReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 707;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 707;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message GetShopmallDataRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 721;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 721;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 shop_type_list = 15;
int32 retcode = 3;
repeated uint32 shop_type_list = 15;
int32 retcode = 3;
}
message ActivityShopSheetInfo {
uint32 end_time = 1;
uint32 begin_time = 12;
uint32 sheet_id = 2;
uint32 end_time = 1;
uint32 begin_time = 12;
uint32 sheet_id = 2;
}
message GetActivityShopSheetInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 703;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 703;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 shop_type = 7;
uint32 shop_type = 7;
}
message GetActivityShopSheetInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 790;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 790;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ActivityShopSheetInfo sheet_info_list = 6;
uint32 shop_type = 8;
int32 retcode = 13;
repeated ActivityShopSheetInfo sheet_info_list = 6;
uint32 shop_type = 8;
int32 retcode = 13;
}
message BuyGoodsParam {
uint32 buy_count = 12;
ShopGoods goods = 13;
uint32 buy_count = 12;
ShopGoods goods = 13;
}
message BatchBuyGoodsReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 773;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 773;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 shop_type = 7;
repeated BuyGoodsParam buy_goods_list = 2;
uint32 shop_type = 7;
repeated BuyGoodsParam buy_goods_list = 2;
}
message BatchBuyGoodsRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 799;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 799;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated ShopGoods goods_list = 9;
int32 retcode = 1;
repeated BuyGoodsParam buy_goods_list = 5;
uint32 shop_type = 14;
repeated ShopGoods goods_list = 9;
int32 retcode = 1;
repeated BuyGoodsParam buy_goods_list = 5;
uint32 shop_type = 14;
}
+106 -106
View File
@@ -2,160 +2,160 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message OpActivityTagBriefInfo {
uint32 config_id = 2;
bool has_reward = 3;
uint32 op_activity_type = 11;
uint32 config_id = 2;
bool has_reward = 3;
uint32 op_activity_type = 11;
}
message OpActivityStateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2572;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 finished_bonus_activity_id_list = 14;
repeated OpActivityTagBriefInfo opened_op_activity_info_list = 13;
repeated uint32 finished_bonus_activity_id_list = 14;
repeated OpActivityTagBriefInfo opened_op_activity_info_list = 13;
}
message SignInData {
uint32 day_count = 14;
repeated ItemParam reward_item_list = 5;
uint32 day_count = 14;
repeated ItemParam reward_item_list = 5;
}
message SignInInfo {
bool is_cond_satisfied = 7;
repeated uint32 reward_day_list = 15;
repeated SignInData signin_data_list = 12;
uint32 config_id = 8;
uint32 sign_in_count = 2;
uint32 schedule_id = 3;
uint32 end_time = 13;
uint32 last_sign_in_time = 6;
uint32 begin_time = 5;
bool is_cond_satisfied = 7;
repeated uint32 reward_day_list = 15;
repeated SignInData signin_data_list = 12;
uint32 config_id = 8;
uint32 sign_in_count = 2;
uint32 schedule_id = 3;
uint32 end_time = 13;
uint32 last_sign_in_time = 6;
uint32 begin_time = 5;
}
message SignInInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2512;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2512;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message SignInInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2535;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated SignInInfo sign_in_info_list = 1;
int32 retcode = 11;
repeated SignInInfo sign_in_info_list = 1;
int32 retcode = 11;
}
message GetSignInRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2507;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 schedule_id = 10;
uint32 reward_day = 3;
uint32 schedule_id = 10;
uint32 reward_day = 3;
}
message GetSignInRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2521;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
SignInInfo sign_in_info = 14;
int32 retcode = 1;
SignInInfo sign_in_info = 14;
}
message BonusActivityInfo {
uint32 bonus_activity_id = 6;
uint32 state = 3;
uint32 bonus_activity_id = 6;
uint32 state = 3;
}
message BonusActivityUpdateNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2575;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2575;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated BonusActivityInfo bonus_activity_info_list = 8;
repeated BonusActivityInfo bonus_activity_info_list = 8;
}
message BonusActivityInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2548;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2548;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message BonusActivityInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2597;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2597;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated BonusActivityInfo bonus_activity_info_list = 2;
int32 retcode = 7;
repeated BonusActivityInfo bonus_activity_info_list = 2;
int32 retcode = 7;
}
message GetBonusActivityRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2581;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2581;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 bonus_activity_id = 14;
uint32 bonus_activity_id = 14;
}
message GetBonusActivityRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2505;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2505;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
BonusActivityInfo bonus_activity_info_list = 4;
int32 retcode = 13;
BonusActivityInfo bonus_activity_info_list = 4;
int32 retcode = 13;
}
+186 -186
View File
@@ -2,260 +2,260 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message UnlockAvatarTalentReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
option go_package = "./;proto";
uint32 talent_id = 13;
uint64 avatar_guid = 3;
message UnlockAvatarTalentReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1072;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 talent_id = 13;
uint64 avatar_guid = 3;
}
message UnlockAvatarTalentRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1098;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1098;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 talent_id = 2;
int32 retcode = 3;
uint64 avatar_guid = 10;
uint32 talent_id = 2;
int32 retcode = 3;
uint64 avatar_guid = 10;
}
message AvatarUnlockTalentNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1012;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1012;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 entity_id = 14;
uint64 avatar_guid = 13;
uint32 talent_id = 10;
uint32 skill_depot_id = 1;
uint32 entity_id = 14;
uint64 avatar_guid = 13;
uint32 talent_id = 10;
uint32 skill_depot_id = 1;
}
message AvatarSkillDepotChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1035;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1035;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 skill_depot_id = 15;
map<uint32, uint32> proud_skill_extra_level_map = 14;
repeated uint32 talent_id_list = 9;
repeated uint32 proud_skill_list = 4;
uint32 core_proud_skill_level = 2;
uint32 entity_id = 7;
uint64 avatar_guid = 12;
map<uint32, uint32> skill_level_map = 3;
uint32 skill_depot_id = 15;
map<uint32, uint32> proud_skill_extra_level_map = 14;
repeated uint32 talent_id_list = 9;
repeated uint32 proud_skill_list = 4;
uint32 core_proud_skill_level = 2;
uint32 entity_id = 7;
uint64 avatar_guid = 12;
map<uint32, uint32> skill_level_map = 3;
}
message BigTalentPointConvertReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1007;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1007;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint64 item_guid_list = 6;
uint64 avatar_guid = 3;
repeated uint64 item_guid_list = 6;
uint64 avatar_guid = 3;
}
message BigTalentPointConvertRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1021;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1021;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint64 avatar_guid = 8;
int32 retcode = 1;
uint64 avatar_guid = 8;
}
message AvatarSkillMaxChargeCountNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1003;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1003;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 skill_id = 6;
uint32 max_charge_count = 11;
uint64 avatar_guid = 7;
uint32 skill_id = 6;
uint32 max_charge_count = 11;
uint64 avatar_guid = 7;
}
message AvatarSkillInfoNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1090;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1090;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, AvatarSkillInfo> skill_map = 11;
uint64 guid = 4;
map<uint32, AvatarSkillInfo> skill_map = 11;
uint64 guid = 4;
}
message ProudSkillUpgradeReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1073;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1073;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint64 avatar_guid = 5;
uint32 old_proud_skill_level = 4;
uint32 proud_skill_id = 14;
uint64 avatar_guid = 5;
uint32 old_proud_skill_level = 4;
uint32 proud_skill_id = 14;
}
message ProudSkillUpgradeRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1099;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1099;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 avatar_guid = 6;
uint32 proud_skill_id = 10;
int32 retcode = 15;
uint64 avatar_guid = 6;
uint32 proud_skill_id = 10;
int32 retcode = 15;
}
message ProudSkillChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1031;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1031;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 avatar_guid = 11;
uint32 entity_id = 4;
uint32 skill_depot_id = 8;
repeated uint32 proud_skill_list = 12;
uint64 avatar_guid = 11;
uint32 entity_id = 4;
uint32 skill_depot_id = 8;
repeated uint32 proud_skill_list = 12;
}
message AvatarSkillUpgradeReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1075;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1075;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint64 avatar_guid = 7;
uint32 old_level = 3;
uint32 avatar_skill_id = 4;
uint64 avatar_guid = 7;
uint32 old_level = 3;
uint32 avatar_skill_id = 4;
}
message AvatarSkillUpgradeRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1048;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1048;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 avatar_guid = 11;
uint32 cur_level = 14;
uint32 avatar_skill_id = 9;
uint32 old_level = 3;
int32 retcode = 4;
uint64 avatar_guid = 11;
uint32 cur_level = 14;
uint32 avatar_skill_id = 9;
uint32 old_level = 3;
int32 retcode = 4;
}
message AvatarSkillChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1097;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1097;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 cur_level = 11;
uint64 avatar_guid = 2;
uint32 entity_id = 7;
uint32 skill_depot_id = 13;
uint32 old_level = 1;
uint32 avatar_skill_id = 6;
uint32 cur_level = 11;
uint64 avatar_guid = 2;
uint32 entity_id = 7;
uint32 skill_depot_id = 13;
uint32 old_level = 1;
uint32 avatar_skill_id = 6;
}
message ProudSkillExtraLevelNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1081;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1081;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 talent_type = 11;
uint32 talent_index = 8;
uint64 avatar_guid = 15;
uint32 extra_level = 3;
uint32 talent_type = 11;
uint32 talent_index = 8;
uint64 avatar_guid = 15;
uint32 extra_level = 3;
}
message CanUseSkillNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1005;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1005;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_can_use_skill = 2;
bool is_can_use_skill = 2;
}
message AvatarTeamResonanceInfo {
repeated uint32 add_team_resonance_id_list = 5;
uint32 entity_id = 11;
uint64 avatar_guid = 3;
repeated uint32 del_team_resonance_id_list = 14;
repeated uint32 add_team_resonance_id_list = 5;
uint32 entity_id = 11;
uint64 avatar_guid = 3;
repeated uint32 del_team_resonance_id_list = 14;
}
message TeamResonanceChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1082;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 1082;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated AvatarTeamResonanceInfo info_list = 1;
repeated AvatarTeamResonanceInfo info_list = 1;
}
File diff suppressed because it is too large Load Diff
+20 -20
View File
@@ -2,33 +2,33 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message AISnapshotEntitySkillCycle {
bool failed = 12;
bool trydoskill = 8;
bool success = 9;
bool selected = 1;
uint32 skill_id = 2;
bool failed = 12;
bool trydoskill = 8;
bool success = 9;
bool selected = 1;
uint32 skill_id = 2;
}
message AISnapshotEntityData {
float tick_time = 5;
uint32 tactic = 2;
repeated AISnapshotEntitySkillCycle finished_skill_cycles = 9;
float moved_distance = 4;
uint32 ai_target_id = 13;
uint32 threat_target_id = 3;
uint32 threat_list_size = 1;
uint32 entity_id = 15;
map<uint32, uint32> hitting_avatars = 7;
float distance_to_player = 11;
uint32 attack_target_id = 10;
float real_time = 14;
float tick_time = 5;
uint32 tactic = 2;
repeated AISnapshotEntitySkillCycle finished_skill_cycles = 9;
float moved_distance = 4;
uint32 ai_target_id = 13;
uint32 threat_target_id = 3;
uint32 threat_list_size = 1;
uint32 entity_id = 15;
map<uint32, uint32> hitting_avatars = 7;
float distance_to_player = 11;
uint32 attack_target_id = 10;
float real_time = 14;
}
message AISnapshotInfo {
repeated AISnapshotEntityData ai_snapshots = 13;
repeated AISnapshotEntityData ai_snapshots = 13;
}
+153 -153
View File
@@ -2,214 +2,214 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message ToTheMoonQueryPathReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6172;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum OptionType {
OPTION_NONE = 0;
OPTION_NORMAL = 1;
}
enum OptionType {
OPTION_NONE = 0;
OPTION_NORMAL = 1;
}
enum AStarMethod {
Classic = 0;
Tendency = 1;
Adaptive = 2;
Inflection = 3;
}
enum AStarMethod {
Classic = 0;
Tendency = 1;
Adaptive = 2;
Inflection = 3;
}
enum FilterType {
All = 0;
Air = 1;
Water = 2;
}
enum FilterType {
All = 0;
Air = 1;
Water = 2;
}
Vector destination_pos = 9;
int32 fuzzy_range = 15;
OptionType query_type = 8;
AStarMethod astar_method = 1;
uint32 scene_id = 6;
int32 query_id = 11;
FilterType filter_type = 3;
bool refined = 13;
bool use_full_neighbor = 5;
Vector source_pos = 10;
Vector destination_pos = 9;
int32 fuzzy_range = 15;
OptionType query_type = 8;
AStarMethod astar_method = 1;
uint32 scene_id = 6;
int32 query_id = 11;
FilterType filter_type = 3;
bool refined = 13;
bool use_full_neighbor = 5;
Vector source_pos = 10;
}
message ToTheMoonQueryPathRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum PathStatusType {
STATUS_FAIL = 0;
STATUS_SUCC = 1;
STATUS_PARTIAL = 2;
}
enum PathStatusType {
STATUS_FAIL = 0;
STATUS_SUCC = 1;
STATUS_PARTIAL = 2;
}
PathStatusType query_status = 7;
repeated int64 index = 3;
repeated Vector corners = 14;
repeated int32 level = 1;
int32 retcode = 8;
int32 query_id = 9;
PathStatusType query_status = 7;
repeated int64 index = 3;
repeated Vector corners = 14;
repeated int32 level = 1;
int32 retcode = 8;
int32 query_id = 9;
}
message ToTheMoonPingNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message ToTheMoonEnterSceneReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6135;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6135;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 version = 14;
uint32 scene_id = 15;
uint32 version = 14;
uint32 scene_id = 15;
}
message ToTheMoonEnterSceneRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6107;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6107;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
int32 retcode = 7;
}
message ToTheMoonObstacleInfo {
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
ShapeType type = 2;
int32 handle_id = 11;
MathQuaternion rotation = 7;
Vector center = 13;
Vector half_extents = 14;
ShapeType type = 2;
int32 handle_id = 11;
MathQuaternion rotation = 7;
Vector center = 13;
Vector half_extents = 14;
}
message ToTheMoonAddObstacleReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6121;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6121;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool use_edge = 12;
ToTheMoonObstacleInfo obstacle = 13;
int32 query_id = 9;
uint32 scene_id = 3;
bool use_edge = 12;
ToTheMoonObstacleInfo obstacle = 13;
int32 query_id = 9;
uint32 scene_id = 3;
}
message DynamicSVONode {
int64 index = 8;
int32 area = 5;
Vector refer_pos = 1;
int64 index = 8;
int32 area = 5;
Vector refer_pos = 1;
}
message DynamicLayerNodes {
int32 level = 10;
repeated DynamicSVONode nodes = 6;
int32 level = 10;
repeated DynamicSVONode nodes = 6;
}
message DynamicNodes {
repeated DynamicLayerNodes nodes = 3;
repeated DynamicLayerNodes nodes = 3;
}
message ToTheMoonAddObstacleRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6103;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6103;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
DynamicNodes dynamic_nodes = 2;
int32 query_id = 13;
int32 retcode = 11;
DynamicNodes dynamic_nodes = 2;
int32 query_id = 13;
int32 retcode = 11;
}
message ToTheMoonRemoveObstacleReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6190;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6190;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum ObstacleType {
Box = 0;
Capsule = 1;
}
enum ObstacleType {
Box = 0;
Capsule = 1;
}
int32 handle = 12;
uint32 scene_id = 10;
int32 query_id = 11;
int32 handle = 12;
uint32 scene_id = 10;
int32 query_id = 11;
}
message ToTheMoonRemoveObstacleRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6173;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6173;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 query_id = 3;
int32 retcode = 14;
DynamicNodes dynamic_nodes = 8;
int32 query_id = 3;
int32 retcode = 14;
DynamicNodes dynamic_nodes = 8;
}
message ToTheMoonObstaclesModifyNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6199;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6199;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated ToTheMoonObstacleInfo add_obstacles = 4;
repeated int32 remove_obstacle_ids = 13;
uint32 scene_id = 15;
bool use_edge = 1;
repeated ToTheMoonObstacleInfo add_obstacles = 4;
repeated int32 remove_obstacle_ids = 13;
uint32 scene_id = 15;
bool use_edge = 1;
}
+248 -248
View File
@@ -2,361 +2,361 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
message TowerTeam {
uint32 tower_team_id = 3;
repeated uint64 avatar_guid_list = 14;
uint32 tower_team_id = 3;
repeated uint64 avatar_guid_list = 14;
}
message TowerLevelRecord {
repeated uint32 satisfied_cond_list = 13;
uint32 level_id = 10;
repeated uint32 satisfied_cond_list = 13;
uint32 level_id = 10;
}
message TowerFloorRecord {
uint32 floor_star_reward_progress = 15;
map<uint32, uint32> passed_level_map = 8;
uint32 floor_id = 12;
repeated TowerLevelRecord passed_level_record_list = 2;
uint32 floor_star_reward_progress = 15;
map<uint32, uint32> passed_level_map = 8;
uint32 floor_id = 12;
repeated TowerLevelRecord passed_level_record_list = 2;
}
message TowerCurLevelRecord {
repeated TowerTeam tower_team_list = 8;
bool is_empty = 6;
repeated uint32 buff_id_list = 4;
bool is_upper_part = 2;
uint32 cur_level_index = 1;
uint32 cur_floor_id = 15;
repeated TowerTeam tower_team_list = 8;
bool is_empty = 6;
repeated uint32 buff_id_list = 4;
bool is_upper_part = 2;
uint32 cur_level_index = 1;
uint32 cur_floor_id = 15;
}
message TowerBriefDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2472;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2472;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 total_star_num = 11;
uint32 last_floor_index = 8;
uint32 schedule_start_time = 15;
uint32 next_schedule_change_time = 6;
bool is_finished_entrance_floor = 14;
uint32 last_level_index = 4;
uint32 tower_schedule_id = 5;
uint32 total_star_num = 11;
uint32 last_floor_index = 8;
uint32 schedule_start_time = 15;
uint32 next_schedule_change_time = 6;
bool is_finished_entrance_floor = 14;
uint32 last_level_index = 4;
uint32 tower_schedule_id = 5;
}
message TowerFloorRecordChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2498;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2498;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_finished_entrance_floor = 11;
repeated TowerFloorRecord tower_floor_record_list = 8;
bool is_finished_entrance_floor = 11;
repeated TowerFloorRecord tower_floor_record_list = 8;
}
message TowerCurLevelRecordChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2412;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
TowerCurLevelRecord cur_level_record = 10;
TowerCurLevelRecord cur_level_record = 10;
}
message TowerDailyRewardProgressChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2435;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 daily_floor_id = 15;
uint32 daily_level_index = 9;
uint32 daily_floor_id = 15;
uint32 daily_level_index = 9;
}
message TowerTeamSelectReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2421;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated TowerTeam tower_team_list = 11;
uint32 floor_id = 10;
repeated TowerTeam tower_team_list = 11;
uint32 floor_id = 10;
}
message TowerTeamSelectRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2403;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 8;
int32 retcode = 8;
}
message TowerAllDataReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2490;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
bool is_interact = 2;
bool is_interact = 2;
}
message TowerMonthlyBrief {
uint32 tower_schedule_id = 15;
uint32 best_floor_index = 6;
uint32 best_level_index = 3;
uint32 total_star_count = 12;
uint32 tower_schedule_id = 15;
uint32 best_floor_index = 6;
uint32 best_level_index = 3;
uint32 total_star_count = 12;
}
message TowerAllDataRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2473;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 tower_schedule_id = 10;
uint32 daily_level_index = 9;
map<uint32, uint32> skip_floor_granted_reward_item_map = 12;
bool is_first_interact = 3;
bool is_finished_entrance_floor = 1;
repeated TowerFloorRecord tower_floor_record_list = 5;
uint32 daily_floor_id = 11;
uint32 commemorative_reward_id = 13;
TowerMonthlyBrief last_schedule_monthly_brief = 1222;
uint32 next_schedule_change_time = 6;
uint32 valid_tower_record_num = 7;
uint32 skip_to_floor_index = 2;
map<uint32, uint32> floor_open_time_map = 4;
TowerCurLevelRecord cur_level_record = 15;
int32 retcode = 8;
uint32 schedule_start_time = 914;
TowerMonthlyBrief monthly_brief = 14;
uint32 tower_schedule_id = 10;
uint32 daily_level_index = 9;
map<uint32, uint32> skip_floor_granted_reward_item_map = 12;
bool is_first_interact = 3;
bool is_finished_entrance_floor = 1;
repeated TowerFloorRecord tower_floor_record_list = 5;
uint32 daily_floor_id = 11;
uint32 commemorative_reward_id = 13;
TowerMonthlyBrief last_schedule_monthly_brief = 1222;
uint32 next_schedule_change_time = 6;
uint32 valid_tower_record_num = 7;
uint32 skip_to_floor_index = 2;
map<uint32, uint32> floor_open_time_map = 4;
TowerCurLevelRecord cur_level_record = 15;
int32 retcode = 8;
uint32 schedule_start_time = 914;
TowerMonthlyBrief monthly_brief = 14;
}
message TowerEnterLevelReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2431;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 enter_point_id = 3;
uint32 enter_point_id = 3;
}
message TowerEnterLevelRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2475;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 tower_buff_id_list = 10;
int32 retcode = 1;
uint32 level_index = 14;
uint32 floor_id = 5;
repeated uint32 tower_buff_id_list = 10;
int32 retcode = 1;
uint32 level_index = 14;
uint32 floor_id = 5;
}
message TowerBuffSelectReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2448;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 tower_buff_id = 5;
uint32 tower_buff_id = 5;
}
message TowerBuffSelectRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2497;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
uint32 tower_buff_id = 13;
int32 retcode = 11;
uint32 tower_buff_id = 13;
}
message TowerSurrenderReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2422;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2422;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message TowerSurrenderRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2465;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2465;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 9;
int32 retcode = 9;
}
message TowerGetFloorStarRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2404;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2404;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 floor_id = 15;
uint32 floor_id = 15;
}
message TowerGetFloorStarRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2493;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2493;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 11;
uint32 floor_id = 9;
int32 retcode = 11;
uint32 floor_id = 9;
}
message TowerLevelEndNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2495;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2495;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum ContinueStateType {
CONTINUE_STATE_CAN_NOT_CONTINUE = 0;
CONTINUE_STATE_CAN_ENTER_NEXT_LEVEL = 1;
CONTINUE_STATE_CAN_ENTER_NEXT_FLOOR = 2;
}
enum ContinueStateType {
CONTINUE_STATE_CAN_NOT_CONTINUE = 0;
CONTINUE_STATE_CAN_ENTER_NEXT_LEVEL = 1;
CONTINUE_STATE_CAN_ENTER_NEXT_FLOOR = 2;
}
uint32 next_floor_id = 4;
repeated ItemParam reward_item_list = 12;
uint32 continue_state = 15;
bool is_success = 5;
repeated uint32 finished_star_cond_list = 6;
uint32 next_floor_id = 4;
repeated ItemParam reward_item_list = 12;
uint32 continue_state = 15;
bool is_success = 5;
repeated uint32 finished_star_cond_list = 6;
}
message TowerLevelStarCondData {
bool is_fail = 15;
uint32 cond_value = 9;
bool is_pause = 13;
uint32 star_cond_index = 6;
bool is_fail = 15;
uint32 cond_value = 9;
bool is_pause = 13;
uint32 star_cond_index = 6;
}
message TowerLevelStarCondNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2406;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2406;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 level_index = 14;
uint32 floor_id = 11;
repeated TowerLevelStarCondData cond_data_list = 9;
uint32 level_index = 14;
uint32 floor_id = 11;
repeated TowerLevelStarCondData cond_data_list = 9;
}
message TowerMiddleLevelChangeTeamNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2434;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2434;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
}
message TowerFightRecordPair {
uint32 avatar_id = 1;
uint32 data = 3;
uint32 avatar_id = 1;
uint32 data = 3;
}
message TowerMonthlyCombatRecord {
TowerFightRecordPair most_kill_avatar_pair = 14;
TowerFightRecordPair most_cast_normal_skill_avatar_pair = 8;
repeated TowerFightRecordPair most_reveal_avatar_list = 6;
TowerFightRecordPair most_cast_energy_skill_avatar_pair = 4;
TowerFightRecordPair highest_dps_avatr_pair = 12;
TowerFightRecordPair most_take_damage_avatar_pair = 9;
TowerFightRecordPair most_kill_avatar_pair = 14;
TowerFightRecordPair most_cast_normal_skill_avatar_pair = 8;
repeated TowerFightRecordPair most_reveal_avatar_list = 6;
TowerFightRecordPair most_cast_energy_skill_avatar_pair = 4;
TowerFightRecordPair highest_dps_avatr_pair = 12;
TowerFightRecordPair most_take_damage_avatar_pair = 9;
}
message TowerMonthlyDetail {
TowerMonthlyCombatRecord monthly_combat_record = 2;
TowerMonthlyBrief monthly_brief = 12;
TowerMonthlyCombatRecord monthly_combat_record = 2;
TowerMonthlyBrief monthly_brief = 12;
}
message TowerRecordHandbookReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2450;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2450;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message TowerRecordHandbookRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2443;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2443;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
repeated TowerMonthlyDetail monthly_detail_list = 14;
int32 retcode = 7;
repeated TowerMonthlyDetail monthly_detail_list = 14;
}
+181 -181
View File
@@ -2,257 +2,257 @@ syntax = "proto3";
package proto;
import "cmd/cmd_social.proto";
import "define.proto";
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_social.proto";
enum UgcType {
UGC_TYPE_NONE = 0;
UGC_TYPE_MUSIC_GAME = 1;
UGC_TYPE_NONE = 0;
UGC_TYPE_MUSIC_GAME = 1;
}
enum GetUgcType {
GET_UGC_NONE = 0;
GET_UGC_TYPE_MINE = 1;
GET_UGC_TYPE_PUBLISH = 2;
GET_UGC_NONE = 0;
GET_UGC_TYPE_MINE = 1;
GET_UGC_TYPE_PUBLISH = 2;
}
enum RecordUsage {
UGC_RECORD_USAGE_NONE = 0;
UGC_RECORD_USAGE_IMPORT = 1;
UGC_RECORD_USAGE_PLAY = 2;
UGC_RECORD_USAGE_TRIAL = 3;
UGC_RECORD_USAGE_COMPARE = 4;
UGC_RECORD_USAGE_NONE = 0;
UGC_RECORD_USAGE_IMPORT = 1;
UGC_RECORD_USAGE_PLAY = 2;
UGC_RECORD_USAGE_TRIAL = 3;
UGC_RECORD_USAGE_COMPARE = 4;
}
message UgcMusicNote {
uint32 start_time = 12;
uint32 end_time = 5;
uint32 start_time = 12;
uint32 end_time = 5;
}
message UgcMusicTrack {
repeated UgcMusicNote music_note_list = 6;
repeated UgcMusicNote music_note_list = 6;
}
message UgcMusicRecord {
repeated UgcMusicTrack music_track_list = 4;
uint32 music_id = 13;
repeated UgcMusicTrack music_track_list = 4;
uint32 music_id = 13;
}
message UgcMusicBriefInfo {
uint64 import_from_ugc_guid = 5;
bool is_published = 8;
bool is_played = 1;
uint32 music_id = 2;
uint32 save_page_type = 1182;
uint32 save_idx = 12;
string creator_nickname = 10;
uint32 version = 15;
uint32 save_time = 3;
repeated uint32 after_note_list = 1002;
repeated uint32 before_note_list = 982;
bool is_psn_platform = 9;
uint32 time_line_edit_time = 1822;
bool is_changed_after_publish = 11;
uint32 publish_time = 13;
uint32 max_score = 14;
uint32 real_time_edit_time = 576;
uint32 note_count = 7;
uint64 ugc_guid = 4;
uint32 self_max_score = 6;
uint64 import_from_ugc_guid = 5;
bool is_published = 8;
bool is_played = 1;
uint32 music_id = 2;
uint32 save_page_type = 1182;
uint32 save_idx = 12;
string creator_nickname = 10;
uint32 version = 15;
uint32 save_time = 3;
repeated uint32 after_note_list = 1002;
repeated uint32 before_note_list = 982;
bool is_psn_platform = 9;
uint32 time_line_edit_time = 1822;
bool is_changed_after_publish = 11;
uint32 publish_time = 13;
uint32 max_score = 14;
uint32 real_time_edit_time = 576;
uint32 note_count = 7;
uint64 ugc_guid = 4;
uint32 self_max_score = 6;
}
message GetUgcReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6326;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6326;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
UgcType ugc_type = 8;
uint64 ugc_guid = 5;
RecordUsage ugc_record_usage = 6;
bool is_require_brief = 11;
GetUgcType get_ugc_type = 13;
UgcType ugc_type = 8;
uint64 ugc_guid = 5;
RecordUsage ugc_record_usage = 6;
bool is_require_brief = 11;
GetUgcType get_ugc_type = 13;
}
message GetUgcRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6318;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6318;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 ugc_guid = 15;
UgcType ugc_type = 10;
int32 retcode = 2;
RecordUsage ugc_record_usage = 14;
oneof record {
UgcMusicRecord music_record = 4;
}
oneof brief {
UgcMusicBriefInfo music_brief_info = 1819;
}
uint64 ugc_guid = 15;
UgcType ugc_type = 10;
int32 retcode = 2;
RecordUsage ugc_record_usage = 14;
oneof record {
UgcMusicRecord music_record = 4;
}
oneof brief {
UgcMusicBriefInfo music_brief_info = 1819;
}
}
message GetUgcBriefInfoReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6325;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6325;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint64 ugc_guid = 7;
UgcType ugc_type = 10;
uint64 ugc_guid = 7;
UgcType ugc_type = 10;
}
message GetUgcBriefInfoRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6307;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 ugc_guid = 3;
UgcType ugc_type = 11;
int32 retcode = 4;
oneof brief {
UgcMusicBriefInfo music_brief_info = 2;
}
uint64 ugc_guid = 3;
UgcType ugc_type = 11;
int32 retcode = 4;
oneof brief {
UgcMusicBriefInfo music_brief_info = 2;
}
}
message SaveUgcReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6329;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
UgcType ugc_type = 11;
oneof record {
UgcMusicRecord music_record = 2;
}
oneof brief {
UgcMusicBriefInfo music_brief_info = 1488;
}
UgcType ugc_type = 11;
oneof record {
UgcMusicRecord music_record = 2;
}
oneof brief {
UgcMusicBriefInfo music_brief_info = 1488;
}
}
message SaveUgcRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6322;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6322;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 15;
uint64 ugc_guid = 8;
UgcType ugc_type = 1;
int32 retcode = 15;
uint64 ugc_guid = 8;
UgcType ugc_type = 1;
}
message PublishUgcReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6344;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6344;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
UgcType ugc_type = 7;
uint64 ugc_guid = 12;
UgcType ugc_type = 7;
uint64 ugc_guid = 12;
}
message PublishUgcRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6349;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6349;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint64 ugc_guid = 14;
int32 retcode = 15;
UgcType ugc_type = 13;
uint64 ugc_guid = 14;
int32 retcode = 15;
UgcType ugc_type = 13;
}
message CheckUgcUpdateReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6320;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6320;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
UgcType ugc_type = 13;
UgcType ugc_type = 13;
}
message CheckUgcUpdateRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6345;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6345;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint64 update_ugc_guid_list = 15;
int32 retcode = 10;
UgcType ugc_type = 12;
repeated uint64 update_ugc_guid_list = 15;
int32 retcode = 10;
UgcType ugc_type = 12;
}
message UgcNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6341;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6341;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
bool is_ugc_publish_ban = 12;
bool is_ugc_publish_feature_closed = 8;
bool is_ugc_feature_closed = 15;
bool is_ugc_publish_ban = 12;
bool is_ugc_publish_feature_closed = 8;
bool is_ugc_feature_closed = 15;
}
message CheckUgcStateReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6342;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6342;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
}
message CheckUgcStateRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6314;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 6314;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 7;
int32 retcode = 7;
}
+107 -107
View File
@@ -5,158 +5,158 @@ package proto;
option go_package = "./;proto";
enum PushTipsState {
PUSH_TIPS_STATE_NONE = 0;
PUSH_TIPS_STATE_START = 1;
PUSH_TIPS_STATE_READ = 2;
PUSH_TIPS_STATE_FINISH = 3;
PUSH_TIPS_STATE_NONE = 0;
PUSH_TIPS_STATE_START = 1;
PUSH_TIPS_STATE_READ = 2;
PUSH_TIPS_STATE_FINISH = 3;
}
message WatcherAllDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2272;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2272;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 watcher_list = 4;
repeated uint32 watcher_list = 4;
}
message WatcherChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2298;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2298;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated uint32 removed_watcher_list = 2;
repeated uint32 new_watcher_list = 15;
repeated uint32 removed_watcher_list = 2;
repeated uint32 new_watcher_list = 15;
}
message WatcherEventNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2212;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 add_progress = 6;
uint32 watcher_id = 9;
uint32 add_progress = 6;
uint32 watcher_id = 9;
}
message WatcherEventTypeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2235;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 param_list = 14;
uint32 add_progress = 15;
uint32 watcher_trigger_type = 11;
repeated uint32 param_list = 14;
uint32 add_progress = 15;
uint32 watcher_trigger_type = 11;
}
message WatcherEventStageNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2207;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 add_progress = 4;
uint32 stage = 2;
uint32 watcher_id = 12;
uint32 add_progress = 4;
uint32 stage = 2;
uint32 watcher_id = 12;
}
message PushTipsData {
uint32 push_tips_id = 13;
uint32 state = 4;
uint32 push_tips_id = 13;
uint32 state = 4;
}
message PushTipsAllDataNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2222;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PushTipsData push_tips_list = 4;
repeated PushTipsData push_tips_list = 4;
}
message PushTipsChangeNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2265;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2265;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
repeated PushTipsData push_tips_list = 9;
repeated PushTipsData push_tips_list = 9;
}
message PushTipsReadFinishReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2204;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2204;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 push_tips_id = 11;
uint32 push_tips_id = 11;
}
message PushTipsReadFinishRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2293;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2293;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
uint32 push_tips_id = 3;
int32 retcode = 9;
uint32 push_tips_id = 3;
int32 retcode = 9;
}
message GetPushTipsRewardReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2227;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2227;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
repeated uint32 push_tips_id_list = 4;
repeated uint32 push_tips_id_list = 4;
}
message GetPushTipsRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2294;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 2294;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 10;
repeated uint32 push_tips_id_list = 9;
int32 retcode = 10;
repeated uint32 push_tips_id_list = 9;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+15 -15
View File
@@ -5,25 +5,25 @@ package proto;
option go_package = "./;proto";
enum SceneSurfaceMaterial {
Invalid = 0;
Grass = 1;
Dirt = 2;
Rock = 3;
Snow = 4;
Water = 5;
Tile = 6;
Sand = 7;
Invalid = 0;
Grass = 1;
Dirt = 2;
Rock = 3;
Snow = 4;
Water = 5;
Tile = 6;
Sand = 7;
}
message MapInfo {
int32 minx = 1;
int32 maxx = 2;
int32 minz = 3;
int32 maxz = 4;
repeated CellInfo cells = 5;
int32 minx = 1;
int32 maxx = 2;
int32 minz = 3;
int32 maxz = 4;
repeated CellInfo cells = 5;
}
message CellInfo {
SceneSurfaceMaterial type = 1;
int32 y = 2;
SceneSurfaceMaterial type = 1;
int32 y = 2;
}
@@ -3,7 +3,7 @@ syntax = "proto3";
package proto_log;
enum ClientActionType {
CLIENT_ACTION_NONE = 0;
CLIENT_ACTION_LOGIN = 1;
CLIENT_ACTION_PING = 2;
CLIENT_ACTION_NONE = 0;
CLIENT_ACTION_LOGIN = 1;
CLIENT_ACTION_PING = 2;
}
@@ -3,22 +3,22 @@ syntax = "proto3";
package proto_log;
message ClientLogBodyLogin {
string action_type = 1;
string action_result = 2;
uint32 action_time = 3;
string xg = 4;
uint32 signal_level = 5;
string dns = 6;
string action_type = 1;
string action_result = 2;
uint32 action_time = 3;
string xg = 4;
uint32 signal_level = 5;
string dns = 6;
}
message ClientLogBodyPing {
string xg = 1;
uint32 signal_level = 2;
uint32 ping = 3;
string servertype = 4;
string serverip = 5;
string serverport = 6;
uint32 pcount = 7;
uint32 plost = 8;
string dns = 9;
string xg = 1;
uint32 signal_level = 2;
uint32 ping = 3;
string servertype = 4;
string serverip = 5;
string serverport = 6;
uint32 pcount = 7;
uint32 plost = 8;
string dns = 9;
}
@@ -3,18 +3,18 @@ syntax = "proto3";
package proto_log;
message ClientLogHead {
string event_time = 1;
string log_serial_number = 2;
uint32 action_id = 3;
string action_name = 4;
string upload_ip = 5;
string product_id = 6;
string channel_id = 7;
string region_name = 8;
string game_version = 9;
string device_type = 10;
string device_uuid = 11;
string mac_addr = 12;
string account_name = 13;
string account_uuid = 14;
string event_time = 1;
string log_serial_number = 2;
uint32 action_id = 3;
string action_name = 4;
string upload_ip = 5;
string product_id = 6;
string channel_id = 7;
string region_name = 8;
string game_version = 9;
string device_type = 10;
string device_uuid = 11;
string mac_addr = 12;
string account_name = 13;
string account_uuid = 14;
}
+38 -38
View File
@@ -5,47 +5,47 @@ package proto;
option go_package = "./;proto";
message PacketHead {
uint32 packet_id = 1;
uint32 rpc_id = 2;
uint32 client_sequence_id = 3;
uint32 enet_channel_id = 4;
uint32 enet_is_reliable = 5;
uint64 sent_ms = 6;
uint32 user_id = 11;
uint32 user_ip = 12;
uint32 user_session_id = 13;
uint32 home_user_id = 14;
uint64 recv_time_ms = 21;
uint32 rpc_begin_time_ms = 22;
map<uint32, uint32> ext_map = 23;
uint32 sender_app_id = 24;
uint32 sender_load = 25;
bytes span_context_str = 26;
uint32 source_service = 31;
uint32 target_service = 32;
map<uint32, uint32> service_app_id_map = 33;
bool is_set_game_thread = 34;
uint32 game_thread_index = 35;
bool is_set_multi_thread = 36;
uint32 multi_thread_index = 37;
uint32 packet_id = 1;
uint32 rpc_id = 2;
uint32 client_sequence_id = 3;
uint32 enet_channel_id = 4;
uint32 enet_is_reliable = 5;
uint64 sent_ms = 6;
uint32 user_id = 11;
uint32 user_ip = 12;
uint32 user_session_id = 13;
uint32 home_user_id = 14;
uint64 recv_time_ms = 21;
uint32 rpc_begin_time_ms = 22;
map<uint32, uint32> ext_map = 23;
uint32 sender_app_id = 24;
uint32 sender_load = 25;
bytes span_context_str = 26;
uint32 source_service = 31;
uint32 target_service = 32;
map<uint32, uint32> service_app_id_map = 33;
bool is_set_game_thread = 34;
uint32 game_thread_index = 35;
bool is_set_multi_thread = 36;
uint32 multi_thread_index = 37;
}
message DebugNotify {
enum Enum {
option allow_alias = true;
ZERO = 0;
CMD_ID = 101;
TARGET_SERVICE = 101;
ENET_CHANNEL_ID = 2;
ENET_IS_RELIABLE = 1;
}
enum Enum {
option allow_alias = true;
ZERO = 0;
CMD_ID = 101;
TARGET_SERVICE = 101;
ENET_CHANNEL_ID = 2;
ENET_IS_RELIABLE = 1;
}
enum Retcode {
SUCC = 0;
FAIL = 1;
}
enum Retcode {
SUCC = 0;
FAIL = 1;
}
uint32 id = 1;
string name = 2;
Retcode retcode = 3;
uint32 id = 1;
string name = 2;
Retcode retcode = 3;
}
File diff suppressed because it is too large Load Diff
+30 -30
View File
@@ -5,55 +5,55 @@ package ToTheMoonProto;
option go_package = "./;proto";
message Pos {
float x = 1;
float y = 2;
float z = 3;
float x = 1;
float y = 2;
float z = 3;
}
message SVONodeProto {
int32 area = 1;
int64 mortonIndex = 2;
int64 parent = 3;
int64 children = 4;
int32 childNum = 5;
repeated int64 neighbors = 6;
repeated int32 neighborsLevel = 7;
repeated int64 planarNeighbors = 8;
repeated int32 planarNeighborsLevel = 9;
repeated int64 diagonalNeighbors = 10;
repeated int32 diagonalNeighborsLevel = 11;
int32 area = 1;
int64 mortonIndex = 2;
int64 parent = 3;
int64 children = 4;
int32 childNum = 5;
repeated int64 neighbors = 6;
repeated int32 neighborsLevel = 7;
repeated int64 planarNeighbors = 8;
repeated int32 planarNeighborsLevel = 9;
repeated int64 diagonalNeighbors = 10;
repeated int32 diagonalNeighborsLevel = 11;
}
message SVOLayerProto {
int32 level = 1;
repeated SVONodeProto nodeData = 2;
int32 level = 1;
repeated SVONodeProto nodeData = 2;
}
message SVOStructureProto {
Pos basePos = 1;
repeated SVOLayerProto layerData = 2;
repeated int32 totalIndex = 3;
Pos basePos = 1;
repeated SVOLayerProto layerData = 2;
repeated int32 totalIndex = 3;
}
message SVOBlockProto {
SVOStructureProto svo = 1;
int32 sceneId = 2;
repeated int32 blockIndex = 3;
SVOStructureProto svo = 1;
int32 sceneId = 2;
repeated int32 blockIndex = 3;
}
message SVOWorldProto {
repeated SVOBlockProto blocks = 1;
float side_length = 2;
int32 sceneId = 3;
repeated SVOBlockProto blocks = 1;
float side_length = 2;
int32 sceneId = 3;
}
message SVONodeWrapperProto {
SVONodeProto svoNode = 1;
int32 level = 2;
SVONodeProto svoNode = 1;
int32 level = 2;
}
message SVONodePathProto {
Pos start = 1;
Pos end = 2;
repeated SVONodeWrapperProto svoNodes = 3;
Pos start = 1;
Pos end = 2;
repeated SVONodeWrapperProto svoNodes = 3;
}
+89 -89
View File
@@ -2,150 +2,150 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "server_only/bin_common.server.proto";
option go_package = "./;proto";
message BlossomChestBin {
uint32 blossom_chest_id = 1;
uint32 drop_id = 2;
fixed32 dead_time = 3;
repeated uint32 qualify_uid_list = 4;
repeated uint32 remain_uid_list = 5;
uint32 item_limit_type = 6;
uint32 refresh_id = 7;
uint32 blossom_chest_id = 1;
uint32 drop_id = 2;
fixed32 dead_time = 3;
repeated uint32 qualify_uid_list = 4;
repeated uint32 remain_uid_list = 5;
uint32 item_limit_type = 6;
uint32 refresh_id = 7;
}
message GadgetPlatformBin {
uint32 route_id = 1;
int32 point_index = 2;
bool is_started = 3;
uint32 point_id = 4;
uint32 moving_platform_type = 5;
uint32 route_id = 1;
int32 point_index = 2;
bool is_started = 3;
uint32 point_id = 4;
uint32 moving_platform_type = 5;
}
message BossChestBin {
repeated uint32 remain_uid_list = 1;
fixed32 dead_time = 2;
uint32 dead_level = 3;
repeated uint32 qualify_uid_list = 4;
repeated uint32 remain_uid_list = 1;
fixed32 dead_time = 2;
uint32 dead_level = 3;
repeated uint32 qualify_uid_list = 4;
}
message ChallengeRecordBin {
uint32 challenge_index = 1;
uint32 challenge_id = 2;
uint32 challenge_record_type = 3;
uint32 best_value = 4;
uint32 challenge_index = 1;
uint32 challenge_id = 2;
uint32 challenge_record_type = 3;
uint32 best_value = 4;
}
message BossDieInfoBin {
repeated uint32 surround_uid_list = 1;
fixed32 dead_time = 2;
uint32 dead_level = 3;
repeated uint32 surround_uid_list = 1;
fixed32 dead_time = 2;
uint32 dead_level = 3;
}
message GroupTriggerBin {
uint32 trigger_count = 1;
uint32 config_id = 2;
uint32 trigger_count = 1;
uint32 config_id = 2;
}
message GeneralRewardBin {
uint32 drop_id = 1;
uint32 reward_id = 2;
uint32 drop_num = 3;
map<uint32, uint32> drop_map = 4;
uint32 drop_id = 1;
uint32 reward_id = 2;
uint32 drop_num = 3;
map<uint32, uint32> drop_map = 4;
}
message GadgetGeneralRewardBin {
uint32 resin = 2;
uint32 dead_time = 3;
repeated uint32 remain_uid_list = 5;
map<uint32, GeneralRewardBin> qualify_info_map = 7;
uint32 destroy_cd = 8;
uint32 item_limit_type = 9;
ItemParamBin item_param = 10;
repeated uint32 open_state_list = 11;
uint32 resin = 2;
uint32 dead_time = 3;
repeated uint32 remain_uid_list = 5;
map<uint32, GeneralRewardBin> qualify_info_map = 7;
uint32 destroy_cd = 8;
uint32 item_limit_type = 9;
ItemParamBin item_param = 10;
repeated uint32 open_state_list = 11;
}
message FishStockBin {
uint32 stock_type = 1;
uint32 gen_fish_num = 2;
uint32 max_num = 3;
uint32 stock_type = 1;
uint32 gen_fish_num = 2;
uint32 max_num = 3;
}
message GadgetFishPoolBin {
repeated FishStockBin fish_stock_list = 1;
uint32 today_fish_num = 2;
uint32 last_refresh_today_fish_time = 3;
map<uint32, uint32> cached_fish_map = 4;
repeated FishStockBin fish_stock_list = 1;
uint32 today_fish_num = 2;
uint32 last_refresh_today_fish_time = 3;
map<uint32, uint32> cached_fish_map = 4;
}
message CustomGadgetNodeInfoBin {
int32 parent_index = 1;
uint32 config_id = 2;
string slot_identifier = 3;
int32 parent_index = 1;
uint32 config_id = 2;
string slot_identifier = 3;
}
message CustomGadgetTreeInfoBin {
repeated CustomGadgetNodeInfoBin node_list = 1;
repeated CustomGadgetNodeInfoBin node_list = 1;
}
message GadgetWorktopBin {
repeated uint32 option_list = 1;
repeated uint32 option_list = 1;
}
message GroupGadgetBin {
uint32 gadget_state = 1;
bool is_enable_interact = 2;
uint32 gadget_talk_state = 3;
oneof component {
GadgetPlatformBin platform = 101;
BossChestBin boss_chest = 102;
BlossomChestBin blossom_chest = 103;
GadgetGeneralRewardBin general_reward = 104;
GadgetFishPoolBin fish_pool = 105;
CustomGadgetTreeInfoBin custom_gadget_tree_info = 106;
GadgetWorktopBin worktop = 107;
}
uint32 gadget_state = 1;
bool is_enable_interact = 2;
uint32 gadget_talk_state = 3;
oneof component {
GadgetPlatformBin platform = 101;
BossChestBin boss_chest = 102;
BlossomChestBin blossom_chest = 103;
GadgetGeneralRewardBin general_reward = 104;
GadgetFishPoolBin fish_pool = 105;
CustomGadgetTreeInfoBin custom_gadget_tree_info = 106;
GadgetWorktopBin worktop = 107;
}
}
message GroupMonsterBin {
uint32 dropped_hp_percent = 1;
uint32 dropped_hp_percent = 1;
}
message GroupGatherBin {
uint32 config_id = 1;
fixed32 last_refresh_time = 2;
uint32 config_id = 1;
fixed32 last_refresh_time = 2;
}
message GroupRefreshTimeBin {
uint32 save_type = 1;
fixed32 last_refresh_time = 2;
uint32 save_type = 1;
fixed32 last_refresh_time = 2;
}
message GroupBin {
map<uint32, GroupMonsterBin> monster_map = 1;
repeated uint32 del_monster_list = 2;
map<uint32, GroupGadgetBin> gadget_map = 3;
repeated uint32 del_gadget_list = 4;
map<string, GroupTriggerBin> trigger_map = 5;
map<string, GroupVariableBin> variable_map = 6;
uint32 suite_index = 7;
repeated uint32 show_cutscene_chest_list = 8;
repeated ChallengeRecordBin challenge_record_list = 9;
uint32 revise_level = 10;
fixed32 last_refresh_time = 11;
uint32 target_suite_index = 12;
map<uint32, BossDieInfoBin> boss_die_info_map = 13;
repeated GroupGatherBin gather_refresh_time_list = 14;
bool is_replaceable = 15;
uint32 replaceable_version = 16;
repeated GroupTriggerBin trigger_list = 17;
repeated GroupRefreshTimeBin group_refresh_list = 18;
repeated GroupVariableConfigIdBin variable_config_id_bin_list = 19;
map<uint32, GroupMonsterBin> monster_map = 1;
repeated uint32 del_monster_list = 2;
map<uint32, GroupGadgetBin> gadget_map = 3;
repeated uint32 del_gadget_list = 4;
map<string, GroupTriggerBin> trigger_map = 5;
map<string, GroupVariableBin> variable_map = 6;
uint32 suite_index = 7;
repeated uint32 show_cutscene_chest_list = 8;
repeated ChallengeRecordBin challenge_record_list = 9;
uint32 revise_level = 10;
fixed32 last_refresh_time = 11;
uint32 target_suite_index = 12;
map<uint32, BossDieInfoBin> boss_die_info_map = 13;
repeated GroupGatherBin gather_refresh_time_list = 14;
bool is_replaceable = 15;
uint32 replaceable_version = 16;
repeated GroupTriggerBin trigger_list = 17;
repeated GroupRefreshTimeBin group_refresh_list = 18;
repeated GroupVariableConfigIdBin variable_config_id_bin_list = 19;
}
message BlockBin {
map<uint32, bytes> group_map = 1;
map<uint32, GroupProductBin> group_product_map = 2;
map<uint32, bytes> group_map = 1;
map<uint32, GroupProductBin> group_product_map = 2;
}
+170 -170
View File
@@ -2,321 +2,321 @@ syntax = "proto3";
package proto;
import "define.proto";
import "server_only/bin_common.server.proto";
option go_package = "./;proto";
import "server_only/bin_common.server.proto";
import "define.proto";
message HomeBasicCompBin {
uint64 trans_no_count = 1;
uint64 exp = 4;
uint32 level = 5;
string owner_nick_name = 6;
uint32 total_home_time = 7;
uint64 home_time_ms = 8;
uint64 trans_no_count = 1;
uint64 exp = 4;
uint32 level = 5;
string owner_nick_name = 6;
uint32 total_home_time = 7;
uint64 home_time_ms = 8;
}
message HomeFurnitureBin {
uint32 furniture_id = 1;
VectorBin spawn_pos = 3;
VectorBin spawn_rot = 4;
int32 parent_furniture_index = 7;
uint32 guid = 8;
uint32 version = 9;
uint32 furniture_id = 1;
VectorBin spawn_pos = 3;
VectorBin spawn_rot = 4;
int32 parent_furniture_index = 7;
uint32 guid = 8;
uint32 version = 9;
}
message HomeFurnitureSuiteBin {
uint32 suite_id = 1;
VectorBin spawn_pos = 2;
repeated int32 included_furniture_index_list = 3;
uint32 guid = 4;
bool is_allow_summon = 5;
uint32 suite_id = 1;
VectorBin spawn_pos = 2;
repeated int32 included_furniture_index_list = 3;
uint32 guid = 4;
bool is_allow_summon = 5;
}
message HomeNpcBin {
uint32 avatar_id = 1;
VectorBin spawn_pos = 2;
VectorBin spawn_rot = 3;
uint32 costume_id = 4;
uint32 avatar_id = 1;
VectorBin spawn_pos = 2;
VectorBin spawn_rot = 3;
uint32 costume_id = 4;
}
message HomeAnimalBin {
uint32 furniture_id = 1;
VectorBin spawn_pos = 2;
VectorBin spawn_rot = 3;
uint32 furniture_id = 1;
VectorBin spawn_pos = 2;
VectorBin spawn_rot = 3;
}
message HomeBlockSubFieldBin {
VectorBin spawn_pos = 1;
VectorBin spawn_rot = 2;
VectorBin spawn_pos = 1;
VectorBin spawn_rot = 2;
}
message HomeBlockFieldBin {
uint32 guid = 1;
uint32 furniture_id = 2;
VectorBin spawn_pos = 3;
VectorBin spawn_rot = 4;
repeated HomeBlockSubFieldBin sub_field_list = 5;
uint32 guid = 1;
uint32 furniture_id = 2;
VectorBin spawn_pos = 3;
VectorBin spawn_rot = 4;
repeated HomeBlockSubFieldBin sub_field_list = 5;
}
message HomeFurnitureGroupBin {
uint32 group_furniture_index = 1;
repeated HomeFurnitureBin virtual_furniure_list = 2;
uint32 group_furniture_index = 1;
repeated HomeFurnitureBin virtual_furniure_list = 2;
}
message HomeFurnitureCustomSuiteBin {
VectorBin spawn_pos = 1;
repeated int32 included_furniture_index_list = 2;
uint32 guid = 3;
VectorBin spawn_pos = 1;
repeated int32 included_furniture_index_list = 2;
uint32 guid = 3;
}
message HomeBlockBin {
uint32 block_id = 1;
repeated HomeFurnitureBin persistent_furniture_list = 2;
repeated HomeFurnitureBin deploy_furniure_list = 3;
repeated HomeNpcBin deploy_npc_list = 4;
repeated HomeFurnitureSuiteBin furniture_suite_list = 5;
repeated HomeAnimalBin deploy_animal_list = 6;
bool is_unlocked = 7;
repeated HomeBlockFieldBin deploy_field_list = 8;
repeated HomeFurnitureGroupBin deploy_furniture_group_list = 9;
repeated HomeFurnitureCustomSuiteBin furniture_custom_suite_list = 10;
uint32 block_id = 1;
repeated HomeFurnitureBin persistent_furniture_list = 2;
repeated HomeFurnitureBin deploy_furniure_list = 3;
repeated HomeNpcBin deploy_npc_list = 4;
repeated HomeFurnitureSuiteBin furniture_suite_list = 5;
repeated HomeAnimalBin deploy_animal_list = 6;
bool is_unlocked = 7;
repeated HomeBlockFieldBin deploy_field_list = 8;
repeated HomeFurnitureGroupBin deploy_furniture_group_list = 9;
repeated HomeFurnitureCustomSuiteBin furniture_custom_suite_list = 10;
}
message HomeSceneBin {
uint32 scene_id = 1;
SceneBin scene_bin = 2;
repeated HomeBlockBin block_bin_list = 3;
bool is_set_born_pos = 4;
VectorBin born_pos = 5;
VectorBin born_rot = 6;
repeated HomeFurnitureBin door_list = 7;
repeated HomeFurnitureBin stair_list = 8;
HomeFurnitureBin main_house = 9;
VectorBin djinn_pos = 10;
uint32 tmp_version = 12;
fixed32 save_time = 13;
uint32 bgm_id = 14;
uint32 scene_id = 1;
SceneBin scene_bin = 2;
repeated HomeBlockBin block_bin_list = 3;
bool is_set_born_pos = 4;
VectorBin born_pos = 5;
VectorBin born_rot = 6;
repeated HomeFurnitureBin door_list = 7;
repeated HomeFurnitureBin stair_list = 8;
HomeFurnitureBin main_house = 9;
VectorBin djinn_pos = 10;
uint32 tmp_version = 12;
fixed32 save_time = 13;
uint32 bgm_id = 14;
}
message HomeModuleBin {
uint32 module_id = 1;
uint32 cur_room_scene_id = 2;
repeated HomeSceneBin scene_bin_list = 3;
uint32 module_id = 1;
uint32 cur_room_scene_id = 2;
repeated HomeSceneBin scene_bin_list = 3;
}
message HomeSceneCompBin {
uint32 cur_module_id = 1;
repeated HomeModuleBin module_bin_list = 2;
uint32 cur_module_id = 1;
repeated HomeModuleBin module_bin_list = 2;
}
message HomeOfflineMsgExeBin {
HomeOfflineMsgBin msg = 1;
uint32 exe_times = 2;
HomeOfflineMsgBin msg = 1;
uint32 exe_times = 2;
}
message HomeOfflineMsgCompBin {
uint32 index = 1;
repeated HomeOfflineMsgExeBin next_offline_msg_list = 2;
uint32 index = 1;
repeated HomeOfflineMsgExeBin next_offline_msg_list = 2;
}
message HomeFurnitureMakeBin {
repeated FurnitureMakeSlotsBin furniture_make_slots_bin_list = 1;
repeated FurnitureMakeSlotsBin furniture_make_slots_bin_list = 1;
}
message HomeLimitedShopPoolRecordBin {
uint32 pool_id = 1;
repeated uint32 goods_id_list = 2;
uint32 pool_id = 1;
repeated uint32 goods_id_list = 2;
}
message HomeLimitedShopGoodsInfoBin {
uint32 goods_id = 1;
uint32 buy_num = 2;
uint32 goods_id = 1;
uint32 buy_num = 2;
}
message HomeLimitedShopNPCPosBin {
uint32 module_id = 1;
uint32 scene_id = 4;
uint32 block_id = 5;
uint32 index = 6;
uint32 module_id = 1;
uint32 scene_id = 4;
uint32 block_id = 5;
uint32 index = 6;
}
message HomeLimitedShopBin {
uint32 last_refresh_time = 1;
repeated HomeLimitedShopPoolRecordBin pool_record_bin_list = 3;
repeated HomeLimitedShopGoodsInfoBin goods_info_bin_list = 4;
repeated HomeLimitedShopNPCPosBin npc_pos_bin_list = 5;
uint32 last_refresh_time = 1;
repeated HomeLimitedShopPoolRecordBin pool_record_bin_list = 3;
repeated HomeLimitedShopGoodsInfoBin goods_info_bin_list = 4;
repeated HomeLimitedShopNPCPosBin npc_pos_bin_list = 5;
}
message HomePlantSubFieldBin {
uint32 index = 1;
uint32 seed_id = 2;
uint32 grow_time = 3;
uint32 last_update_time = 4;
repeated uint32 gather_index_list = 5;
uint32 home_gather_id = 6;
uint32 index = 1;
uint32 seed_id = 2;
uint32 grow_time = 3;
uint32 last_update_time = 4;
repeated uint32 gather_index_list = 5;
uint32 home_gather_id = 6;
}
message HomePlantFieldBin {
uint32 module_id = 1;
uint32 scene_id = 2;
uint32 guid = 3;
uint32 furniture_id = 4;
repeated HomePlantSubFieldBin sub_field_bin_list = 5;
uint32 module_id = 1;
uint32 scene_id = 2;
uint32 guid = 3;
uint32 furniture_id = 4;
repeated HomePlantSubFieldBin sub_field_bin_list = 5;
}
message HomePlantBin {
repeated HomePlantFieldBin field_bin_list = 1;
repeated HomePlantFieldBin field_bin_list = 1;
}
message HomeFishpondFarmingBin {
uint32 scene_id = 1;
uint32 fishpond_guid = 2;
uint32 furniture_id = 3;
repeated uint32 fish_id_list = 4;
uint32 scene_id = 1;
uint32 fishpond_guid = 2;
uint32 furniture_id = 3;
repeated uint32 fish_id_list = 4;
}
message HomeScenePointFishFarmingBin {
uint32 scene_id = 1;
uint32 local_entity_id = 2;
repeated uint32 fish_id_list = 4;
uint32 scene_id = 1;
uint32 local_entity_id = 2;
repeated uint32 fish_id_list = 4;
}
message HomeModuleFishFarmingBin {
uint32 module_id = 1;
repeated HomeFishpondFarmingBin fishpond_farming_bin_list = 2;
repeated HomeScenePointFishFarmingBin scene_point_fish_farming_bin_list = 3;
uint32 module_id = 1;
repeated HomeFishpondFarmingBin fishpond_farming_bin_list = 2;
repeated HomeScenePointFishFarmingBin scene_point_fish_farming_bin_list = 3;
}
message HomeFishFarmingBin {
repeated HomeModuleFishFarmingBin module_fish_farming_bin_list = 1;
repeated HomeModuleFishFarmingBin module_fish_farming_bin_list = 1;
}
message HomeCustomFurnitureNodeInfoBin {
int32 parent_index = 1;
uint32 furniture_id = 2;
string slot_identifier = 3;
int32 parent_index = 1;
uint32 furniture_id = 2;
string slot_identifier = 3;
}
message HomeOneCustomFurnitureBin {
uint32 scene_id = 1;
uint32 guid = 2;
uint32 furniture_id = 3;
repeated HomeCustomFurnitureNodeInfoBin sub_furniture_list = 4;
uint32 scene_id = 1;
uint32 guid = 2;
uint32 furniture_id = 3;
repeated HomeCustomFurnitureNodeInfoBin sub_furniture_list = 4;
}
message HomeModuleCustomFurnitureBin {
uint32 module_id = 1;
repeated HomeOneCustomFurnitureBin custom_furniture_bin_list = 2;
uint32 module_id = 1;
repeated HomeOneCustomFurnitureBin custom_furniture_bin_list = 2;
}
message HomeCustomFurnitureBin {
repeated HomeModuleCustomFurnitureBin module_custom_furniture_bin_list = 1;
repeated HomeModuleCustomFurnitureBin module_custom_furniture_bin_list = 1;
}
message HomeOnePictureFrameBin {
uint32 scene_id = 1;
uint32 guid = 2;
uint32 furniture_id = 3;
uint32 picture_id = 4;
uint32 scene_id = 1;
uint32 guid = 2;
uint32 furniture_id = 3;
uint32 picture_id = 4;
}
message HomeModulePictureFrameBin {
uint32 module_id = 1;
repeated HomeOnePictureFrameBin picture_frame_bin_list = 2;
uint32 module_id = 1;
repeated HomeOnePictureFrameBin picture_frame_bin_list = 2;
}
message HomePictureFrameBin {
repeated HomeModulePictureFrameBin module_picture_frame_bin_list = 1;
repeated HomeModulePictureFrameBin module_picture_frame_bin_list = 1;
}
message HomeGroupPlayerInfoBin {
uint32 uid = 1;
string nickname = 2;
uint32 player_level = 3;
ProfilePictureBin profile_picture = 4;
string online_id = 5;
string psn_id = 6;
uint32 uid = 1;
string nickname = 2;
uint32 player_level = 3;
ProfilePictureBin profile_picture = 4;
string online_id = 5;
string psn_id = 6;
}
message HomeRacingGalleryRecordBin {
uint32 use_time = 1;
HomeGroupPlayerInfoBin player_info = 2;
uint32 timestamp = 3;
uint32 use_time = 1;
HomeGroupPlayerInfoBin player_info = 2;
uint32 timestamp = 3;
}
message HomeRacingRecordBin {
repeated HomeRacingGalleryRecordBin record_list = 1;
repeated HomeRacingGalleryRecordBin record_list = 1;
}
message HomeBalloonGalleryRecordBin {
uint32 score = 1;
uint32 hit_count = 2;
HomeGroupPlayerInfoBin player_info = 3;
uint32 timestamp = 4;
uint32 score = 1;
uint32 hit_count = 2;
HomeGroupPlayerInfoBin player_info = 3;
uint32 timestamp = 4;
}
message HomeBalloonRecordBin {
repeated HomeBalloonGalleryRecordBin record_list = 1;
repeated HomeBalloonGalleryRecordBin record_list = 1;
}
message HomeStakePlayRecordBin {
uint32 timestamp = 1;
repeated HomeGroupPlayerInfoBin engaged_player_info_list = 2;
uint32 timestamp = 1;
repeated HomeGroupPlayerInfoBin engaged_player_info_list = 2;
}
message HomeStakeRecordBin {
repeated HomeStakePlayRecordBin record_list = 1;
repeated HomeStakePlayRecordBin record_list = 1;
}
message HomeSeekFurniturePlayerScoreBin {
HomeGroupPlayerInfoBin player_info = 1;
uint32 score = 2;
HomeGroupPlayerInfoBin player_info = 1;
uint32 score = 2;
}
message HomeSeekFurnitureOneRecordBin {
uint32 timestamp = 1;
repeated HomeSeekFurniturePlayerScoreBin engaged_player_score_list = 2;
uint32 timestamp = 1;
repeated HomeSeekFurniturePlayerScoreBin engaged_player_score_list = 2;
}
message HomeSeekFurnitureAllRecordBin {
repeated HomeSeekFurnitureOneRecordBin record_list = 1;
repeated HomeSeekFurnitureOneRecordBin record_list = 1;
}
message HomeGroupRecordBin {
oneof detail {
HomeRacingRecordBin racing_gallery_info_bin = 11;
HomeBalloonRecordBin balloon_gallery_info_bin = 12;
HomeStakeRecordBin stake_play_info_bin = 13;
HomeSeekFurnitureAllRecordBin seek_furniture_play_info_bin = 14;
}
oneof detail {
HomeRacingRecordBin racing_gallery_info_bin = 11;
HomeBalloonRecordBin balloon_gallery_info_bin = 12;
HomeStakeRecordBin stake_play_info_bin = 13;
HomeSeekFurnitureAllRecordBin seek_furniture_play_info_bin = 14;
}
}
message HomeGroupRecordCompBin {
map<uint32, HomeGroupRecordBin> group_record_map_bin = 1;
map<uint32, HomeGroupRecordBin> group_record_map_bin = 1;
}
message HomeBlueprintCompBin {
bool is_allow_friend_copy = 1;
bool is_allow_friend_copy = 1;
}
message HomeDataBin {
HomeBasicCompBin basic_bin = 1;
HomeSceneCompBin scene_bin = 2;
HomeOfflineMsgCompBin offline_msg_bin = 3;
HomeFurnitureMakeBin furniture_make_bin = 4;
HomeLimitedShopBin limited_shop_bin = 5;
HomePlantBin plant_bin = 6;
HomeFishFarmingBin fish_farming_bin = 7;
HomeCustomFurnitureBin custom_furniture_bin = 8;
HomePictureFrameBin picture_frame_bin = 9;
HomeGroupRecordCompBin group_record_bin = 10;
HomeBlueprintCompBin blueprint_bin = 11;
HomeBasicCompBin basic_bin = 1;
HomeSceneCompBin scene_bin = 2;
HomeOfflineMsgCompBin offline_msg_bin = 3;
HomeFurnitureMakeBin furniture_make_bin = 4;
HomeLimitedShopBin limited_shop_bin = 5;
HomePlantBin plant_bin = 6;
HomeFishFarmingBin fish_farming_bin = 7;
HomeCustomFurnitureBin custom_furniture_bin = 8;
HomePictureFrameBin picture_frame_bin = 9;
HomeGroupRecordCompBin group_record_bin = 10;
HomeBlueprintCompBin blueprint_bin = 11;
}
message HomeData {
uint32 uid = 1;
uint32 data_version = 2;
bytes bin_data = 3;
int32 block_end_time = 4;
uint32 uid = 1;
uint32 data_version = 2;
bytes bin_data = 3;
int32 block_end_time = 4;
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -5,125 +5,125 @@ package proto;
option go_package = "./;proto";
message SeaLampPlayerContributionNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10672;
}
enum CmdId {
NONE = 0;
CMD_ID = 10672;
}
uint32 total_contribution = 1;
uint32 add_progress = 2;
uint32 total_contribution = 1;
uint32 add_progress = 2;
}
message SeaLampProgressNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10698;
}
enum CmdId {
NONE = 0;
CMD_ID = 10698;
}
uint32 schedule_id = 1;
uint32 progress = 2;
bool is_finished = 3;
bool is_changed_by_muip = 4;
uint32 schedule_id = 1;
uint32 progress = 2;
bool is_finished = 3;
bool is_changed_by_muip = 4;
}
message SeaLampBroadcastNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10612;
}
enum CmdId {
NONE = 0;
CMD_ID = 10612;
}
uint32 schedule_id = 1;
uint32 last_phase = 2;
uint32 phase = 3;
uint32 progress = 4;
bool is_changed_by_muip = 5;
uint32 schedule_id = 1;
uint32 last_phase = 2;
uint32 phase = 3;
uint32 progress = 4;
bool is_changed_by_muip = 5;
}
message SeaLampSetProgressByMuipReq {
enum CmdId {
NONE = 0;
CMD_ID = 10635;
}
enum CmdId {
NONE = 0;
CMD_ID = 10635;
}
uint32 progress = 1;
uint32 progress = 1;
}
message SeaLampSetProgressByMuipRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10607;
}
enum CmdId {
NONE = 0;
CMD_ID = 10607;
}
int32 retcode = 1;
uint32 old_progress = 2;
uint32 new_progress = 3;
uint32 factor = 4;
int32 retcode = 1;
uint32 old_progress = 2;
uint32 new_progress = 3;
uint32 factor = 4;
}
message SeaLampProgressImplementNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10621;
}
enum CmdId {
NONE = 0;
CMD_ID = 10621;
}
SeaLampProgressNotify msg = 1;
SeaLampProgressNotify msg = 1;
}
message SeaLampClearProgressByGmNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10603;
}
enum CmdId {
NONE = 0;
CMD_ID = 10603;
}
}
message SeaLampAddProgressByMuipReq {
enum CmdId {
NONE = 0;
CMD_ID = 10690;
}
enum CmdId {
NONE = 0;
CMD_ID = 10690;
}
uint32 add_progress = 1;
uint32 add_progress = 1;
}
message SeaLampAddProgressByMuipRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10673;
}
enum CmdId {
NONE = 0;
CMD_ID = 10673;
}
int32 retcode = 1;
uint32 old_progress = 2;
uint32 new_progress = 3;
uint32 factor = 4;
int32 retcode = 1;
uint32 old_progress = 2;
uint32 new_progress = 3;
uint32 factor = 4;
}
message SeaLampActivityDataMuip {
uint32 progress = 1;
uint32 phase_id = 2;
uint32 factor = 3;
uint32 progress = 1;
uint32 phase_id = 2;
uint32 factor = 3;
}
message GetActivityDataByMuipReq {
enum CmdId {
NONE = 0;
CMD_ID = 10699;
}
enum CmdId {
NONE = 0;
CMD_ID = 10699;
}
uint32 activity_id = 1;
uint32 activity_id = 1;
}
message GetActivityDataByMuipRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10631;
}
enum CmdId {
NONE = 0;
CMD_ID = 10631;
}
int32 retcode = 1;
uint32 activity_id = 2;
uint32 schedule_id = 3;
bool is_started = 4;
bool is_finished = 5;
oneof detail {
SeaLampActivityDataMuip sea_lamp_data = 10;
}
int32 retcode = 1;
uint32 activity_id = 2;
uint32 schedule_id = 3;
bool is_started = 4;
bool is_finished = 5;
oneof detail {
SeaLampActivityDataMuip sea_lamp_data = 10;
}
}
@@ -2,368 +2,368 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
import "cmd/cmd_gcg_common.proto";
import "cmd/cmd_gcg.proto";
import "cmd/cmd_gcg_common.proto";
import "define.proto";
import "server_only/cmd_match.server.proto";
option go_package = "./;proto";
enum GCGStatisticSpecifyItemType {
SPECIFY_INIT = 0;
DIE_CHARACTER_NUM = 1;
ALIVE_CHARACTER_HP_SUM = 2;
BEING_DAMAGE_SUM = 3;
BEING_HEAL_SUM = 4;
SHIELD_REDUCE_SUM = 5;
REST_ENERGY = 6;
REST_THINK_REST_VIRTUAL_DICE_SUM = 7;
REST_DISCARD_INTENTION_SUM = 8;
REST_DISCARD_INTENTION_DAMAGE_SUM = 9;
ELEMENT_REACTION_TIMES = 10;
ONE_HIT_DAMAGE_VEC = 11;
PLAY_CARD_TIMES = 12;
SUMMON_TIMES = 13;
SKILL_TAG_Q_TIMES = 14;
ONE_OPERATION_KILL_COUNT_VEC = 15;
CHARACTER_DIE_TIMES = 16;
BEING_DAMAGE_OVERFLOW_SUM = 17;
SPECIFY_INIT = 0;
DIE_CHARACTER_NUM = 1;
ALIVE_CHARACTER_HP_SUM = 2;
BEING_DAMAGE_SUM = 3;
BEING_HEAL_SUM = 4;
SHIELD_REDUCE_SUM = 5;
REST_ENERGY = 6;
REST_THINK_REST_VIRTUAL_DICE_SUM = 7;
REST_DISCARD_INTENTION_SUM = 8;
REST_DISCARD_INTENTION_DAMAGE_SUM = 9;
ELEMENT_REACTION_TIMES = 10;
ONE_HIT_DAMAGE_VEC = 11;
PLAY_CARD_TIMES = 12;
SUMMON_TIMES = 13;
SKILL_TAG_Q_TIMES = 14;
ONE_OPERATION_KILL_COUNT_VEC = 15;
CHARACTER_DIE_TIMES = 16;
BEING_DAMAGE_OVERFLOW_SUM = 17;
}
enum GCGStatisticCommonItemType {
COMMON_INIT = 0;
CONTROLLER_A_WIN = 1;
ROUND_NUM = 2;
WINNER_REST_DICE = 3;
PHASE_MAIN_TIME_USE = 4;
COMMON_INIT = 0;
CONTROLLER_A_WIN = 1;
ROUND_NUM = 2;
WINNER_REST_DICE = 3;
PHASE_MAIN_TIME_USE = 4;
}
message ServerGCGVerify {
uint32 game_uid = 1;
uint32 verify_code = 2;
uint32 app_id = 3;
uint32 thread_index = 4;
uint32 game_uid = 1;
uint32 verify_code = 2;
uint32 app_id = 3;
uint32 thread_index = 4;
}
message ServerGCGOperationReq {
enum CmdId {
NONE = 0;
CMD_ID = 12436;
}
enum CmdId {
NONE = 0;
CMD_ID = 12436;
}
uint32 uid = 1;
GCGOperation op = 2;
uint32 op_seq = 3;
uint32 uid = 1;
GCGOperation op = 2;
uint32 op_seq = 3;
}
message ServerGCGOperationRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12407;
}
enum CmdId {
NONE = 0;
CMD_ID = 12407;
}
int32 retcode = 1;
uint32 op_seq = 2;
int32 retcode = 1;
uint32 op_seq = 2;
}
message ServerGCGAskDuelReq {
enum CmdId {
NONE = 0;
CMD_ID = 12457;
}
enum CmdId {
NONE = 0;
CMD_ID = 12457;
}
uint32 uid = 1;
uint32 uid = 1;
}
message ServerGCGNewGameInfoNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12360;
}
enum CmdId {
NONE = 0;
CMD_ID = 12360;
}
uint32 app_id = 1;
uint32 thread_index = 2;
GCGGameBriefData game_brief_data = 3;
uint32 create_time = 4;
uint32 try_create_time = 5;
uint32 app_id = 1;
uint32 thread_index = 2;
GCGGameBriefData game_brief_data = 3;
uint32 create_time = 4;
uint32 try_create_time = 5;
}
message ServerGCGGMCommandReq {
enum CmdId {
NONE = 0;
CMD_ID = 12373;
}
enum CmdId {
NONE = 0;
CMD_ID = 12373;
}
repeated string msg_list = 1;
repeated string msg_list = 1;
}
message ServerGCGGMCommandRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12338;
}
enum CmdId {
NONE = 0;
CMD_ID = 12338;
}
int32 retcode = 1;
string ret_msg = 2;
string ret_extra_content = 3;
int32 retcode = 1;
string ret_msg = 2;
string ret_extra_content = 3;
}
message ServerGCGInitFinishReq {
enum CmdId {
NONE = 0;
CMD_ID = 12334;
}
enum CmdId {
NONE = 0;
CMD_ID = 12334;
}
int32 retcode = 1;
int32 retcode = 1;
}
message ServerGCGSyncReq {
enum CmdId {
NONE = 0;
CMD_ID = 12456;
}
enum CmdId {
NONE = 0;
CMD_ID = 12456;
}
uint32 game_uid = 1;
uint32 verify_code = 2;
bool is_login = 3;
uint32 game_uid = 1;
uint32 verify_code = 2;
bool is_login = 3;
}
message ServerGCGSyncRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12328;
}
enum CmdId {
NONE = 0;
CMD_ID = 12328;
}
int32 retcode = 1;
uint32 game_uid = 2;
uint32 verify_code = 3;
uint32 app_id = 4;
uint32 thread_index = 5;
bool is_login = 6;
int32 retcode = 1;
uint32 game_uid = 2;
uint32 verify_code = 3;
uint32 app_id = 4;
uint32 thread_index = 5;
bool is_login = 6;
}
message GCGPlayerData {
OnlinePlayerInfo player_info = 1;
GCGDuelExtra duel_extra = 2;
OnlinePlayerInfo player_info = 1;
GCGDuelExtra duel_extra = 2;
}
message ServerGCGCreateSingleGameReq {
enum CmdId {
NONE = 0;
CMD_ID = 12489;
}
enum CmdId {
NONE = 0;
CMD_ID = 12489;
}
uint32 game_id = 1;
GCGGameBusinessType business_type = 2;
GCGPlayerData player_data = 3;
repeated uint32 custom_param_list = 4;
uint32 try_create_time = 5;
uint32 game_id = 1;
GCGGameBusinessType business_type = 2;
GCGPlayerData player_data = 3;
repeated uint32 custom_param_list = 4;
uint32 try_create_time = 5;
}
message ServerGCGCreateSingleGameRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12308;
}
enum CmdId {
NONE = 0;
CMD_ID = 12308;
}
int32 retcode = 1;
uint32 game_id = 2;
int32 retcode = 1;
uint32 game_id = 2;
}
message ServerGCGGiveUpGameReq {
enum CmdId {
NONE = 0;
CMD_ID = 12499;
}
enum CmdId {
NONE = 0;
CMD_ID = 12499;
}
uint32 game_uid = 1;
uint32 game_id = 2;
uint32 verify_code = 3;
GCGGameBusinessType business_type = 4;
uint32 game_uid = 1;
uint32 game_id = 2;
uint32 verify_code = 3;
GCGGameBusinessType business_type = 4;
}
message ServerGCGGiveUpGameRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12492;
}
enum CmdId {
NONE = 0;
CMD_ID = 12492;
}
int32 retcode = 1;
uint32 game_uid = 2;
uint32 game_id = 3;
uint32 verify_code = 4;
uint32 app_id = 5;
uint32 thread_index = 6;
int32 retcode = 1;
uint32 game_uid = 2;
uint32 game_id = 3;
uint32 verify_code = 4;
uint32 app_id = 5;
uint32 thread_index = 6;
}
message ServerGCGSkillPreviewAskReq {
enum CmdId {
NONE = 0;
CMD_ID = 12319;
}
enum CmdId {
NONE = 0;
CMD_ID = 12319;
}
uint32 uid = 1;
uint32 uid = 1;
}
message ServerGCGSkillPreviewAskRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12477;
}
enum CmdId {
NONE = 0;
CMD_ID = 12477;
}
int32 retcode = 1;
int32 retcode = 1;
}
message ServerGCGCreateMultiGameReq {
enum CmdId {
NONE = 0;
CMD_ID = 12476;
}
enum CmdId {
NONE = 0;
CMD_ID = 12476;
}
uint32 game_id = 1;
GCGGameBusinessType business_type = 2;
GCGPlayerData player_data_1 = 3;
GCGPlayerData player_data_2 = 4;
uint32 try_create_time = 5;
uint32 game_id = 1;
GCGGameBusinessType business_type = 2;
GCGPlayerData player_data_1 = 3;
GCGPlayerData player_data_2 = 4;
uint32 try_create_time = 5;
}
message ServerGCGCreateMultiGameRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12490;
}
enum CmdId {
NONE = 0;
CMD_ID = 12490;
}
int32 retcode = 1;
uint32 game_id = 2;
int32 retcode = 1;
uint32 game_id = 2;
}
message ServerGCGAddBothAITaskReq {
enum CmdId {
NONE = 0;
CMD_ID = 12423;
}
enum CmdId {
NONE = 0;
CMD_ID = 12423;
}
uint64 task_id = 1;
uint32 subtask_id = 2;
uint32 game_type = 3;
uint32 level_id = 4;
uint32 card_group1_id = 5;
uint32 card_group2_id = 6;
uint64 task_id = 1;
uint32 subtask_id = 2;
uint32 game_type = 3;
uint32 level_id = 4;
uint32 card_group1_id = 5;
uint32 card_group2_id = 6;
}
message ServerGCGAddBothAITaskRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12439;
}
enum CmdId {
NONE = 0;
CMD_ID = 12439;
}
int32 retcode = 1;
uint32 task_id = 2;
uint32 subtask_id = 3;
int32 retcode = 1;
uint32 task_id = 2;
uint32 subtask_id = 3;
}
message GCGMatchPlayerInfo {
MatchPlayer match_player = 1;
GCGDuelExtra gcg_duel_extra = 2;
MatchPlayer match_player = 1;
GCGDuelExtra gcg_duel_extra = 2;
}
message ServerGCGCreateMatchGameNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12497;
}
enum CmdId {
NONE = 0;
CMD_ID = 12497;
}
uint32 match_id = 1;
repeated GCGMatchPlayerInfo gcg_match_player_list = 2;
uint32 try_create_time = 3;
uint32 match_id = 1;
repeated GCGMatchPlayerInfo gcg_match_player_list = 2;
uint32 try_create_time = 3;
}
message ServerGCGCreateMatchAIGameNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12392;
}
enum CmdId {
NONE = 0;
CMD_ID = 12392;
}
uint32 match_id = 1;
repeated GCGMatchPlayerInfo gcg_match_player_list = 2;
OnlinePlayerInfo ai_info = 3;
uint32 try_create_time = 4;
uint32 match_id = 1;
repeated GCGMatchPlayerInfo gcg_match_player_list = 2;
OnlinePlayerInfo ai_info = 3;
uint32 try_create_time = 4;
}
message ServerGCGMatchFinishNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12329;
}
enum CmdId {
NONE = 0;
CMD_ID = 12329;
}
}
message ServerGCGBackToDuelReq {
enum CmdId {
NONE = 0;
CMD_ID = 12455;
}
enum CmdId {
NONE = 0;
CMD_ID = 12455;
}
uint32 game_uid = 1;
uint32 verify_code = 2;
uint32 client_data_version = 3;
uint32 game_uid = 1;
uint32 verify_code = 2;
uint32 client_data_version = 3;
}
message ServerGCGBackToDuelRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12309;
}
enum CmdId {
NONE = 0;
CMD_ID = 12309;
}
int32 retcode = 1;
uint32 game_uid = 2;
uint32 verify_code = 3;
uint32 app_id = 4;
uint32 thread_index = 5;
uint32 client_data_version = 6;
int32 retcode = 1;
uint32 game_uid = 2;
uint32 verify_code = 3;
uint32 app_id = 4;
uint32 thread_index = 5;
uint32 client_data_version = 6;
}
message ServerGCGMessagePackNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12463;
}
enum CmdId {
NONE = 0;
CMD_ID = 12463;
}
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
repeated GCGMessagePack msg_pack_list = 3;
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
repeated GCGMessagePack msg_pack_list = 3;
}
message ServerGCGHeartBeatNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12405;
}
enum CmdId {
NONE = 0;
CMD_ID = 12405;
}
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
}
message ServerGCGSkillPreviewNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12414;
}
enum CmdId {
NONE = 0;
CMD_ID = 12414;
}
ServerGCGVerify verify = 1;
uint32 controller_id = 2;
uint32 onstage_card_guid = 3;
repeated GCGSkillPreviewInfo skill_preview_list = 4;
repeated GCGChangeOnstageInfo change_onstage_preview_list = 5;
repeated GCGSkillPreviewPlayCardInfo play_card_list = 6;
ServerGCGVerify verify = 1;
uint32 controller_id = 2;
uint32 onstage_card_guid = 3;
repeated GCGSkillPreviewInfo skill_preview_list = 4;
repeated GCGChangeOnstageInfo change_onstage_preview_list = 5;
repeated GCGSkillPreviewPlayCardInfo play_card_list = 6;
}
message ServerGCGChallengeUpdateNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12332;
}
enum CmdId {
NONE = 0;
CMD_ID = 12332;
}
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
GCGDuelChallenge challenge = 3;
ServerGCGVerify verify = 1;
uint32 server_seq = 2;
GCGDuelChallenge challenge = 3;
}
@@ -2,356 +2,356 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
import "server_only/bin.home.proto";
import "server_only/bin_common.server.proto";
import "server_only/redis_data.proto";
import "define.proto";
option go_package = "./;proto";
enum HomeGetBlueprintBriefReason {
HOME_GET_BLUEPRINT_BRIEF_REASON_NONE = 0;
HOME_GET_BLUEPRINT_BRIEF_REASON_FETCH = 1;
HOME_GET_BLUEPRINT_BRIEF_REASON_SEARCH = 2;
HOME_GET_BLUEPRINT_BRIEF_REASON_NONE = 0;
HOME_GET_BLUEPRINT_BRIEF_REASON_FETCH = 1;
HOME_GET_BLUEPRINT_BRIEF_REASON_SEARCH = 2;
}
message GetHomeDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12072;
}
enum CmdId {
NONE = 0;
CMD_ID = 12072;
}
uint32 home_uid = 1;
uint64 load_rand = 2;
uint32 home_uid = 1;
uint64 load_rand = 2;
}
message GetHomeDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12098;
}
enum CmdId {
NONE = 0;
CMD_ID = 12098;
}
int32 retcode = 1;
uint32 home_uid = 2;
uint32 data_version = 3;
uint32 is_new_home = 4;
HomeData home_data = 5;
uint64 load_rand = 6;
int32 retcode = 1;
uint32 home_uid = 2;
uint32 data_version = 3;
uint32 is_new_home = 4;
HomeData home_data = 5;
uint64 load_rand = 6;
}
message SaveHomeDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12012;
}
enum CmdId {
NONE = 0;
CMD_ID = 12012;
}
HomeData home_data = 1;
HomeData home_data = 1;
}
message SaveHomeDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12035;
}
enum CmdId {
NONE = 0;
CMD_ID = 12035;
}
int32 retcode = 1;
uint32 data_version = 2;
int32 retcode = 1;
uint32 data_version = 2;
}
message ServerTryEnterHomeReq {
enum CmdId {
NONE = 0;
CMD_ID = 12007;
}
enum CmdId {
NONE = 0;
CMD_ID = 12007;
}
uint32 source_uid = 1;
uint32 source_app_id = 2;
uint64 cur_load_rand = 3;
uint32 owner_init_home_module_id = 4;
uint32 try_times = 5;
uint32 source_thread_index = 6;
uint32 source_uid = 1;
uint32 source_app_id = 2;
uint64 cur_load_rand = 3;
uint32 owner_init_home_module_id = 4;
uint32 try_times = 5;
uint32 source_thread_index = 6;
}
message ServerTryEnterHomeRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12021;
}
enum CmdId {
NONE = 0;
CMD_ID = 12021;
}
int32 retcode = 1;
uint32 target_home_uid = 2;
uint32 target_app_id = 3;
uint32 target_thread_index = 4;
int32 retcode = 1;
uint32 target_home_uid = 2;
uint32 target_app_id = 3;
uint32 target_thread_index = 4;
}
message ServerBlockHomeNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12003;
}
enum CmdId {
NONE = 0;
CMD_ID = 12003;
}
bool is_unlock = 1;
uint32 end_time = 2;
bool is_unlock = 1;
uint32 end_time = 2;
}
message ServerGetFriendEnterHomeOptionReq {
enum CmdId {
NONE = 0;
CMD_ID = 12090;
}
enum CmdId {
NONE = 0;
CMD_ID = 12090;
}
uint32 target_uid = 1;
uint32 target_uid = 1;
}
message ServerGetFriendEnterHomeOptionRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12073;
}
enum CmdId {
NONE = 0;
CMD_ID = 12073;
}
int32 retcode = 1;
uint32 target_uid = 2;
FriendEnterHomeOption friend_enter_home_option = 3;
bool is_online = 4;
bool is_home_avaliable = 5;
bool is_only_mp_with_ps_player = 6;
uint32 last_save_time = 7;
uint32 prior_check_time = 8;
bool is_home_in_audit = 9;
int32 retcode = 1;
uint32 target_uid = 2;
FriendEnterHomeOption friend_enter_home_option = 3;
bool is_online = 4;
bool is_home_avaliable = 5;
bool is_only_mp_with_ps_player = 6;
uint32 last_save_time = 7;
uint32 prior_check_time = 8;
bool is_home_in_audit = 9;
}
message HomeOnlineStatusInfo {
enum StatusType {
ONLINE = 0;
OFFLINE = 1;
}
enum StatusType {
ONLINE = 0;
OFFLINE = 1;
}
uint32 home_uid = 1;
StatusType online_status = 2;
uint32 home_uid = 1;
StatusType online_status = 2;
}
message HomeOnlineStatusNotify {
enum Enum {
NONE = 0;
CMD_ID = 12099;
}
enum Enum {
NONE = 0;
CMD_ID = 12099;
}
repeated HomeOnlineStatusInfo home_info_list = 1;
repeated HomeOnlineStatusInfo home_info_list = 1;
}
message SendHomeOfflineMsgReq {
enum CmdId {
NONE = 0;
CMD_ID = 12031;
}
enum CmdId {
NONE = 0;
CMD_ID = 12031;
}
HomeOfflineMsgBin msg = 1;
HomeOfflineMsgBin msg = 1;
}
message SendHomeOfflineMsgRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12075;
}
enum CmdId {
NONE = 0;
CMD_ID = 12075;
}
int32 retcode = 1;
string ticket = 2;
int32 retcode = 1;
string ticket = 2;
}
message NewHomeOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12048;
}
enum CmdId {
NONE = 0;
CMD_ID = 12048;
}
}
message GetHomeOfflineMsgReq {
enum CmdId {
NONE = 0;
CMD_ID = 12097;
}
enum CmdId {
NONE = 0;
CMD_ID = 12097;
}
uint32 index = 1;
uint32 index = 1;
}
message GetHomeOfflineMsgRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12081;
}
enum CmdId {
NONE = 0;
CMD_ID = 12081;
}
int32 retcode = 1;
uint32 last_index = 2;
repeated HomeOfflineMsgBin offline_msg_list = 3;
int32 retcode = 1;
uint32 last_index = 2;
repeated HomeOfflineMsgBin offline_msg_list = 3;
}
message RemoveHomeOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12005;
}
enum CmdId {
NONE = 0;
CMD_ID = 12005;
}
uint32 index = 1;
uint32 index = 1;
}
message ClearHomeOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12082;
}
enum CmdId {
NONE = 0;
CMD_ID = 12082;
}
}
message ServerHomeGetOnlineStatusReq {
enum CmdId {
NONE = 0;
CMD_ID = 12047;
}
enum CmdId {
NONE = 0;
CMD_ID = 12047;
}
}
message ServerHomeGetOnlineStatusRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12039;
}
enum CmdId {
NONE = 0;
CMD_ID = 12039;
}
int32 retcode = 1;
bool is_online = 2;
repeated OnlinePlayerInfo player_info_list = 3;
int32 retcode = 1;
bool is_online = 2;
repeated OnlinePlayerInfo player_info_list = 3;
}
message ServerHomeKickPlayerReq {
enum CmdId {
NONE = 0;
CMD_ID = 12053;
}
enum CmdId {
NONE = 0;
CMD_ID = 12053;
}
bool is_kick_all = 1;
uint32 target_uid = 2;
bool is_kick_all = 1;
uint32 target_uid = 2;
}
message ServerHomeKickPlayerRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12022;
}
enum CmdId {
NONE = 0;
CMD_ID = 12022;
}
int32 retcode = 1;
bool is_kick_all = 2;
uint32 target_uid = 3;
int32 retcode = 1;
bool is_kick_all = 2;
uint32 target_uid = 3;
}
message ServerHomeGetBlueprintBriefDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12065;
}
enum CmdId {
NONE = 0;
CMD_ID = 12065;
}
HomeGetBlueprintBriefReason reason = 1;
repeated string share_code_list = 2;
HomeGetBlueprintBriefReason reason = 1;
repeated string share_code_list = 2;
}
message ServerHomeGetBlueprintBriefDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12004;
}
enum CmdId {
NONE = 0;
CMD_ID = 12004;
}
int32 retcode = 1;
HomeGetBlueprintBriefReason reason = 2;
repeated string share_code_list = 3;
repeated HomeBlueprintBriefRedisData brief_data_list = 4;
int32 retcode = 1;
HomeGetBlueprintBriefReason reason = 2;
repeated string share_code_list = 3;
repeated HomeBlueprintBriefRedisData brief_data_list = 4;
}
message ServerHomeUpdateBlueprintBriefDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12093;
}
enum CmdId {
NONE = 0;
CMD_ID = 12093;
}
uint32 slot_id = 1;
HomeBlueprintBriefRedisData brief_data = 2;
uint32 slot_id = 1;
HomeBlueprintBriefRedisData brief_data = 2;
}
message ServerHomeUpdateBlueprintBriefDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12027;
}
enum CmdId {
NONE = 0;
CMD_ID = 12027;
}
int32 retcode = 1;
uint32 slot_id = 2;
HomeBlueprintBriefRedisData brief_data = 3;
int32 retcode = 1;
uint32 slot_id = 2;
HomeBlueprintBriefRedisData brief_data = 3;
}
message ServerHomeGetBlueprintDetailDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12094;
}
enum CmdId {
NONE = 0;
CMD_ID = 12094;
}
string share_code = 1;
uint32 share_owner_uid = 2;
string share_code = 1;
uint32 share_owner_uid = 2;
}
message ServerHomeGetBlueprintDetailDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12088;
}
enum CmdId {
NONE = 0;
CMD_ID = 12088;
}
int32 retcode = 1;
uint32 share_owner_uid = 2;
HomeBlueprintDetailRedisData detail_data = 3;
int32 retcode = 1;
uint32 share_owner_uid = 2;
HomeBlueprintDetailRedisData detail_data = 3;
}
message ServerHomeSaveBlueprintDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12026;
}
enum CmdId {
NONE = 0;
CMD_ID = 12026;
}
uint32 slot_id = 1;
HomeBlueprintBriefRedisData brief_data = 2;
HomeBlueprintDetailRedisData detail_data = 3;
uint32 slot_id = 1;
HomeBlueprintBriefRedisData brief_data = 2;
HomeBlueprintDetailRedisData detail_data = 3;
}
message ServerHomeSaveBlueprintDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12063;
}
enum CmdId {
NONE = 0;
CMD_ID = 12063;
}
int32 retcode = 1;
uint32 slot_id = 2;
HomeBlueprintBriefRedisData brief_data = 3;
int32 retcode = 1;
uint32 slot_id = 2;
HomeBlueprintBriefRedisData brief_data = 3;
}
message ServerHomeDeleteBlueprintDataReq {
enum CmdId {
NONE = 0;
CMD_ID = 12095;
}
enum CmdId {
NONE = 0;
CMD_ID = 12095;
}
uint32 slot_id = 1;
string share_code = 2;
uint32 slot_id = 1;
string share_code = 2;
}
message ServerHomeDeleteBlueprintDataRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12006;
}
enum CmdId {
NONE = 0;
CMD_ID = 12006;
}
int32 retcode = 1;
uint32 slot_id = 2;
string share_code = 3;
int32 retcode = 1;
uint32 slot_id = 2;
string share_code = 3;
}
message ServerHomeBlueprintCacheInvalidNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12034;
}
enum CmdId {
NONE = 0;
CMD_ID = 12034;
}
string share_code = 1;
string share_code = 1;
}
@@ -5,164 +5,164 @@ package proto;
option go_package = "./;proto";
enum CmdIdConfig {
CMD_MISC_BEGIN = 0;
CMD_MISC_END = 100;
CMD_PLAYER_BEGIN = 101;
CMD_PLAYER_END = 200;
CMD_SCENE_BEGIN_1 = 201;
CMD_SCENE_END_1 = 300;
CMD_SCENE_BEGIN_2 = 3001;
CMD_SCENE_END_2 = 3500;
CMD_FIGHT_BEGIN = 301;
CMD_FIGHT_END = 400;
CMD_QUEST_BEGIN = 401;
CMD_QUEST_END = 500;
CMD_NPC_BEGIN = 501;
CMD_NPC_END = 600;
CMD_ITEM_BEGIN = 601;
CMD_ITEM_END = 700;
CMD_SHOP_BEGIN = 701;
CMD_SHOP_END = 800;
CMD_GADGET_BEGIN = 801;
CMD_GADGET_END = 900;
CMD_DUNGEON_BEGIN = 901;
CMD_DUNGEON_END = 1000;
CMD_SKILL_BEGIN = 1001;
CMD_SKILL_END = 1100;
CMD_ABILITY_BEGIN = 1101;
CMD_ABILITY_END = 1200;
CMD_PROPERTY_BEGIN = 1201;
CMD_PROPERTY_END = 1300;
CMD_MONSTER_BEGIN = 1301;
CMD_MONSTER_END = 1400;
CMD_MAIL_BEGIN = 1401;
CMD_MAIL_END = 1500;
CMD_GACHA_BEGIN = 1501;
CMD_GACHA_END = 1600;
CMD_AVATAR_BEGIN = 1601;
CMD_AVATAR_END = 1800;
CMD_MP_BEGIN = 1801;
CMD_MP_END = 1850;
CMD_INVESTIGATION_BEGIN = 1901;
CMD_INVESTIGATION_END = 1930;
CMD_COOP_BEGIN = 1951;
CMD_COOP_END = 2000;
CMD_ACTIVITY_BEGIN_1 = 2001;
CMD_ACTIVITY_END_1 = 2200;
CMD_ACTIVITY_BEGIN_2 = 8001;
CMD_ACTIVITY_END_2 = 9000;
CMD_ACTIVITY_BEGIN_3 = 20001;
CMD_ACTIVITY_END_3 = 25000;
CMD_WATCHER_BEGIN = 2201;
CMD_WATCHER_END = 2300;
CMD_PATHFINDING_BEGIN = 2301;
CMD_PATHFINDING_END = 2400;
CMD_TOWER_BEGIN = 2401;
CMD_TOWER_END = 2500;
CMD_SIGN_IN_BEGIN = 2501;
CMD_SIGN_IN_END = 2600;
CMD_BATTLE_PASS_BEGIN = 2601;
CMD_BATTLE_PASS_END = 2650;
CMD_ACHIEVEMENT_BEGIN = 2651;
CMD_ACHIEVEMENT_END = 2700;
CMD_BLOSSOM_BEGIN = 2701;
CMD_BLOSSOM_END = 2800;
CMD_REPUTATION_BEGIN = 2801;
CMD_REPUTATION_END = 2900;
CMD_OFFERING_BEGIN = 2901;
CMD_OFFERING_END = 2925;
CMD_ROUTINE_BEGIN = 3501;
CMD_ROUTINE_END = 3550;
CMD_MECHANICUS_BEGIN = 3901;
CMD_MECHANICUS_END = 4000;
CMD_SOCIAL_BEGIN = 4001;
CMD_SOCIAL_END = 4100;
CMD_RECHARGE_BEGIN = 4101;
CMD_RECHARGE_END = 4150;
CMD_MATCH_BEGIN = 4151;
CMD_MATCH_END = 4200;
CMD_CODEX_BEGIN = 4201;
CMD_CODEX_END = 4210;
CMD_STAT_BEGIN = 4211;
CMD_STAT_END = 4250;
CMD_WIDGET_BEGIN_1 = 4251;
CMD_WIDGET_END_1 = 4300;
CMD_WIDGET_BEGIN_2 = 5900;
CMD_WIDGET_END_2 = 6100;
CMD_HUNTING_BEGIN = 4301;
CMD_HUNTING_END = 4350;
CMD_SCENE_PLAY_BEGIN = 4351;
CMD_SCENE_PLAY_END = 4450;
CMD_HOME_BEGIN = 4451;
CMD_HOME_END = 4900;
CMD_CHAT_BEGIN = 4951;
CMD_CHAT_END = 5050;
CMD_REUNION_BEGIN = 5051;
CMD_REUNION_END = 5100;
CMD_OP_ACTIVITY_BEGIN = 5101;
CMD_OP_ACTIVITY_END = 5200;
CMD_MIRACLE_RING_BEGIN = 5201;
CMD_MIRACLE_RING_END = 5250;
CMD_MULTISTAGE_PLAY_BEGIN_1 = 5301;
CMD_MULTISTAGE_PLAY_END_1 = 5400;
CMD_MULTISTAGE_PLAY_BEGIN_2 = 6401;
CMD_MULTISTAGE_PLAY_END_2 = 6600;
CMD_DRAFT_BEGIN = 5401;
CMD_DRAFT_END = 5500;
CMD_GALLERY_BEGIN = 5501;
CMD_GALLERY_END = 5600;
CMD_REGION_SEARCH_BEGIN = 5601;
CMD_REGION_SEARCH_END = 5650;
CMD_H5_ACTIVITY_BEGIN = 5651;
CMD_H5_ACTIVITY_END = 5700;
CMD_REMINDER_BEGIN = 5701;
CMD_REMINDER_END = 5750;
CMD_GROUP_LINK_BEGIN = 5751;
CMD_GROUP_LINK_END = 5800;
CMD_FISH_BEGIN = 5801;
CMD_FISH_END = 5850;
CMD_TOTHEMOON_BEGIN = 6101;
CMD_TOTHEMOON_END = 6200;
CMD_CUSTOM_DUNGEON_BEGIN = 6201;
CMD_CUSTOM_DUNGEON_END = 6250;
CMD_REGIONAL_PLAY_BEGIN = 6251;
CMD_REGIONAL_PLAY_END = 6300;
CMD_UGC_BEGIN = 6301;
CMD_UGC_END = 6350;
CMD_ARANARA_COLLECTION_BEGIN = 6351;
CMD_ARANARA_COLLECTION_END = 6400;
CMD_GCG_BEGIN = 7001;
CMD_GCG_END = 8000;
CMD_SHARE_CD_BEGIN = 9001;
CMD_SHARE_CD_END = 9100;
CMD_MISC_SERVER_BEGIN = 10001;
CMD_MISC_SERVER_END = 10100;
CMD_PLAYER_SERVER_BEGIN = 10101;
CMD_PLAYER_SERVER_END = 10200;
CMD_MUIP_SERVER_BEGIN = 10201;
CMD_MUIP_SERVER_END = 10300;
CMD_MAIL_SERVER_BEGIN = 10301;
CMD_MAIL_SERVER_END = 10400;
CMD_MP_SERVER_BEGIN = 10401;
CMD_MP_SERVER_END = 10500;
CMD_ACTIVITY_SERVER_BEGIN = 10601;
CMD_ACTIVITY_SERVER_END = 10700;
CMD_RECHARGE_SERVER_BEGIN = 10701;
CMD_RECHARGE_SERVER_END = 10750;
CMD_SOCIAL_SERVER_BEGIN_1 = 10801;
CMD_SOCIAL_SERVER_END_1 = 10900;
CMD_SOCIAL_SERVER_BEGIN_2 = 10951;
CMD_SOCIAL_SERVER_END_2 = 11000;
CMD_MATCH_SERVER_BEGIN = 10901;
CMD_MATCH_SERVER_END = 10950;
CMD_HOME_SERVER_BEGIN = 12001;
CMD_HOME_SERVER_END = 12100;
CMD_OFFLINE_OP_SERVER_BEGIN = 12201;
CMD_OFFLINE_OP_SERVER_END = 12250;
CMD_SECURITY_SERVER_BEGIN = 12251;
CMD_SECURITY_SERVER_END = 12300;
CMD_GCG_SERVER_BEGIN = 12301;
CMD_GCG_SERVER_END = 12500;
CMD_REDIS_OP_BEGIN = 11001;
CMD_REDIS_OP_END = 12000;
CMD_MISC_BEGIN = 0;
CMD_MISC_END = 100;
CMD_PLAYER_BEGIN = 101;
CMD_PLAYER_END = 200;
CMD_SCENE_BEGIN_1 = 201;
CMD_SCENE_END_1 = 300;
CMD_SCENE_BEGIN_2 = 3001;
CMD_SCENE_END_2 = 3500;
CMD_FIGHT_BEGIN = 301;
CMD_FIGHT_END = 400;
CMD_QUEST_BEGIN = 401;
CMD_QUEST_END = 500;
CMD_NPC_BEGIN = 501;
CMD_NPC_END = 600;
CMD_ITEM_BEGIN = 601;
CMD_ITEM_END = 700;
CMD_SHOP_BEGIN = 701;
CMD_SHOP_END = 800;
CMD_GADGET_BEGIN = 801;
CMD_GADGET_END = 900;
CMD_DUNGEON_BEGIN = 901;
CMD_DUNGEON_END = 1000;
CMD_SKILL_BEGIN = 1001;
CMD_SKILL_END = 1100;
CMD_ABILITY_BEGIN = 1101;
CMD_ABILITY_END = 1200;
CMD_PROPERTY_BEGIN = 1201;
CMD_PROPERTY_END = 1300;
CMD_MONSTER_BEGIN = 1301;
CMD_MONSTER_END = 1400;
CMD_MAIL_BEGIN = 1401;
CMD_MAIL_END = 1500;
CMD_GACHA_BEGIN = 1501;
CMD_GACHA_END = 1600;
CMD_AVATAR_BEGIN = 1601;
CMD_AVATAR_END = 1800;
CMD_MP_BEGIN = 1801;
CMD_MP_END = 1850;
CMD_INVESTIGATION_BEGIN = 1901;
CMD_INVESTIGATION_END = 1930;
CMD_COOP_BEGIN = 1951;
CMD_COOP_END = 2000;
CMD_ACTIVITY_BEGIN_1 = 2001;
CMD_ACTIVITY_END_1 = 2200;
CMD_ACTIVITY_BEGIN_2 = 8001;
CMD_ACTIVITY_END_2 = 9000;
CMD_ACTIVITY_BEGIN_3 = 20001;
CMD_ACTIVITY_END_3 = 25000;
CMD_WATCHER_BEGIN = 2201;
CMD_WATCHER_END = 2300;
CMD_PATHFINDING_BEGIN = 2301;
CMD_PATHFINDING_END = 2400;
CMD_TOWER_BEGIN = 2401;
CMD_TOWER_END = 2500;
CMD_SIGN_IN_BEGIN = 2501;
CMD_SIGN_IN_END = 2600;
CMD_BATTLE_PASS_BEGIN = 2601;
CMD_BATTLE_PASS_END = 2650;
CMD_ACHIEVEMENT_BEGIN = 2651;
CMD_ACHIEVEMENT_END = 2700;
CMD_BLOSSOM_BEGIN = 2701;
CMD_BLOSSOM_END = 2800;
CMD_REPUTATION_BEGIN = 2801;
CMD_REPUTATION_END = 2900;
CMD_OFFERING_BEGIN = 2901;
CMD_OFFERING_END = 2925;
CMD_ROUTINE_BEGIN = 3501;
CMD_ROUTINE_END = 3550;
CMD_MECHANICUS_BEGIN = 3901;
CMD_MECHANICUS_END = 4000;
CMD_SOCIAL_BEGIN = 4001;
CMD_SOCIAL_END = 4100;
CMD_RECHARGE_BEGIN = 4101;
CMD_RECHARGE_END = 4150;
CMD_MATCH_BEGIN = 4151;
CMD_MATCH_END = 4200;
CMD_CODEX_BEGIN = 4201;
CMD_CODEX_END = 4210;
CMD_STAT_BEGIN = 4211;
CMD_STAT_END = 4250;
CMD_WIDGET_BEGIN_1 = 4251;
CMD_WIDGET_END_1 = 4300;
CMD_WIDGET_BEGIN_2 = 5900;
CMD_WIDGET_END_2 = 6100;
CMD_HUNTING_BEGIN = 4301;
CMD_HUNTING_END = 4350;
CMD_SCENE_PLAY_BEGIN = 4351;
CMD_SCENE_PLAY_END = 4450;
CMD_HOME_BEGIN = 4451;
CMD_HOME_END = 4900;
CMD_CHAT_BEGIN = 4951;
CMD_CHAT_END = 5050;
CMD_REUNION_BEGIN = 5051;
CMD_REUNION_END = 5100;
CMD_OP_ACTIVITY_BEGIN = 5101;
CMD_OP_ACTIVITY_END = 5200;
CMD_MIRACLE_RING_BEGIN = 5201;
CMD_MIRACLE_RING_END = 5250;
CMD_MULTISTAGE_PLAY_BEGIN_1 = 5301;
CMD_MULTISTAGE_PLAY_END_1 = 5400;
CMD_MULTISTAGE_PLAY_BEGIN_2 = 6401;
CMD_MULTISTAGE_PLAY_END_2 = 6600;
CMD_DRAFT_BEGIN = 5401;
CMD_DRAFT_END = 5500;
CMD_GALLERY_BEGIN = 5501;
CMD_GALLERY_END = 5600;
CMD_REGION_SEARCH_BEGIN = 5601;
CMD_REGION_SEARCH_END = 5650;
CMD_H5_ACTIVITY_BEGIN = 5651;
CMD_H5_ACTIVITY_END = 5700;
CMD_REMINDER_BEGIN = 5701;
CMD_REMINDER_END = 5750;
CMD_GROUP_LINK_BEGIN = 5751;
CMD_GROUP_LINK_END = 5800;
CMD_FISH_BEGIN = 5801;
CMD_FISH_END = 5850;
CMD_TOTHEMOON_BEGIN = 6101;
CMD_TOTHEMOON_END = 6200;
CMD_CUSTOM_DUNGEON_BEGIN = 6201;
CMD_CUSTOM_DUNGEON_END = 6250;
CMD_REGIONAL_PLAY_BEGIN = 6251;
CMD_REGIONAL_PLAY_END = 6300;
CMD_UGC_BEGIN = 6301;
CMD_UGC_END = 6350;
CMD_ARANARA_COLLECTION_BEGIN = 6351;
CMD_ARANARA_COLLECTION_END = 6400;
CMD_GCG_BEGIN = 7001;
CMD_GCG_END = 8000;
CMD_SHARE_CD_BEGIN = 9001;
CMD_SHARE_CD_END = 9100;
CMD_MISC_SERVER_BEGIN = 10001;
CMD_MISC_SERVER_END = 10100;
CMD_PLAYER_SERVER_BEGIN = 10101;
CMD_PLAYER_SERVER_END = 10200;
CMD_MUIP_SERVER_BEGIN = 10201;
CMD_MUIP_SERVER_END = 10300;
CMD_MAIL_SERVER_BEGIN = 10301;
CMD_MAIL_SERVER_END = 10400;
CMD_MP_SERVER_BEGIN = 10401;
CMD_MP_SERVER_END = 10500;
CMD_ACTIVITY_SERVER_BEGIN = 10601;
CMD_ACTIVITY_SERVER_END = 10700;
CMD_RECHARGE_SERVER_BEGIN = 10701;
CMD_RECHARGE_SERVER_END = 10750;
CMD_SOCIAL_SERVER_BEGIN_1 = 10801;
CMD_SOCIAL_SERVER_END_1 = 10900;
CMD_SOCIAL_SERVER_BEGIN_2 = 10951;
CMD_SOCIAL_SERVER_END_2 = 11000;
CMD_MATCH_SERVER_BEGIN = 10901;
CMD_MATCH_SERVER_END = 10950;
CMD_HOME_SERVER_BEGIN = 12001;
CMD_HOME_SERVER_END = 12100;
CMD_OFFLINE_OP_SERVER_BEGIN = 12201;
CMD_OFFLINE_OP_SERVER_END = 12250;
CMD_SECURITY_SERVER_BEGIN = 12251;
CMD_SECURITY_SERVER_END = 12300;
CMD_GCG_SERVER_BEGIN = 12301;
CMD_GCG_SERVER_END = 12500;
CMD_REDIS_OP_BEGIN = 11001;
CMD_REDIS_OP_END = 12000;
}
@@ -2,230 +2,230 @@ syntax = "proto3";
package proto;
import "server_only/bin_common.server.proto";
import "server_only/enum.server.proto";
import "server_only/redis_data.proto";
option go_package = "./;proto";
import "server_only/bin_common.server.proto";
import "server_only/redis_data.proto";
import "server_only/enum.server.proto";
message AddRedisMailReq {
enum CmdId {
NONE = 0;
CMD_ID = 10372;
}
enum CmdId {
NONE = 0;
CMD_ID = 10372;
}
MailAddOpType op_type = 1;
MailBin mail_bin = 2;
string ticket = 3;
string transaction = 4;
MailAddOpType op_type = 1;
MailBin mail_bin = 2;
string ticket = 3;
string transaction = 4;
}
message AddRedisMailRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10398;
}
enum CmdId {
NONE = 0;
CMD_ID = 10398;
}
int32 retcode = 1;
MailAddOpType op_type = 2;
string ticket = 3;
string transaction = 4;
int32 retcode = 1;
MailAddOpType op_type = 2;
string ticket = 3;
string transaction = 4;
}
message DelRedisMailReq {
enum CmdId {
NONE = 0;
CMD_ID = 10312;
}
enum CmdId {
NONE = 0;
CMD_ID = 10312;
}
MailDelOpType op_type = 1;
repeated uint32 mail_id_list = 2;
repeated string ticket_list = 3;
MailDelOpType op_type = 1;
repeated uint32 mail_id_list = 2;
repeated string ticket_list = 3;
}
message DelRedisMailRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10335;
}
enum CmdId {
NONE = 0;
CMD_ID = 10335;
}
int32 retcode = 1;
MailDelOpType op_type = 2;
repeated uint32 mail_id_list = 3;
int32 retcode = 1;
MailDelOpType op_type = 2;
repeated uint32 mail_id_list = 3;
}
message GetRedisMailReq {
enum CmdId {
NONE = 0;
CMD_ID = 10307;
}
enum CmdId {
NONE = 0;
CMD_ID = 10307;
}
MailGetOPType op_type = 1;
MailGetType get_type = 2;
repeated uint32 mail_id_list = 3;
bool is_collectible_mail_transfered = 4;
MailGetOPType op_type = 1;
MailGetType get_type = 2;
repeated uint32 mail_id_list = 3;
bool is_collectible_mail_transfered = 4;
}
message GetRedisMailRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10321;
}
enum CmdId {
NONE = 0;
CMD_ID = 10321;
}
int32 retcode = 1;
repeated bytes mail_str_list = 2;
MailGetOPType op_type = 3;
bool is_truncated = 4;
MailGetType get_type = 5;
bool is_collectible_mail_transfered = 6;
string transaction = 7;
uint32 page_index = 8;
uint32 total_page_count = 9;
int32 retcode = 1;
repeated bytes mail_str_list = 2;
MailGetOPType op_type = 3;
bool is_truncated = 4;
MailGetType get_type = 5;
bool is_collectible_mail_transfered = 6;
string transaction = 7;
uint32 page_index = 8;
uint32 total_page_count = 9;
}
message RedisMailChangeNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10303;
}
enum CmdId {
NONE = 0;
CMD_ID = 10303;
}
repeated MailRedisData update_mail_list = 1;
repeated uint32 del_mail_id_list = 2;
repeated MailRedisData update_mail_list = 1;
repeated uint32 del_mail_id_list = 2;
}
message SendOfflineMsgReq {
enum CmdId {
NONE = 0;
CMD_ID = 10390;
}
enum CmdId {
NONE = 0;
CMD_ID = 10390;
}
OfflineMsgBin msg = 1;
OfflineMsgBin msg = 1;
}
message SendOfflineMsgRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10373;
}
enum CmdId {
NONE = 0;
CMD_ID = 10373;
}
int32 retcode = 1;
string ticket = 2;
int32 retcode = 1;
string ticket = 2;
}
message NewOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10399;
}
enum CmdId {
NONE = 0;
CMD_ID = 10399;
}
}
message GetOfflineMsgReq {
enum CmdId {
NONE = 0;
CMD_ID = 10331;
}
enum CmdId {
NONE = 0;
CMD_ID = 10331;
}
uint32 index = 1;
bool is_login = 2;
uint32 index = 1;
bool is_login = 2;
}
message GetOfflineMsgRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10375;
}
enum CmdId {
NONE = 0;
CMD_ID = 10375;
}
int32 retcode = 1;
uint32 last_index = 2;
repeated OfflineMsgBin offline_msg_list = 3;
bool is_login = 4;
int32 retcode = 1;
uint32 last_index = 2;
repeated OfflineMsgBin offline_msg_list = 3;
bool is_login = 4;
}
message RemoveOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10348;
}
enum CmdId {
NONE = 0;
CMD_ID = 10348;
}
uint32 index = 1;
uint32 index = 1;
}
message ClearOfflineMsgNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10397;
}
enum CmdId {
NONE = 0;
CMD_ID = 10397;
}
}
message UpdateRedisMailReq {
enum CmdId {
NONE = 0;
CMD_ID = 10381;
}
enum CmdId {
NONE = 0;
CMD_ID = 10381;
}
MailUpdateOpType op_type = 1;
repeated uint32 mail_id_list = 2;
MailUpdateOpType op_type = 1;
repeated uint32 mail_id_list = 2;
}
message UpdateRedisMailRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10305;
}
enum CmdId {
NONE = 0;
CMD_ID = 10305;
}
int32 retcode = 1;
MailUpdateOpType op_type = 2;
repeated uint32 mail_id_list = 3;
int32 retcode = 1;
MailUpdateOpType op_type = 2;
repeated uint32 mail_id_list = 3;
}
message GetRedisMailTransactionStatusReq {
enum CmdId {
NONE = 0;
CMD_ID = 10382;
}
enum CmdId {
NONE = 0;
CMD_ID = 10382;
}
repeated string transaction_list = 2;
repeated string transaction_list = 2;
}
message GetRedisMailTransactionStatusRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10347;
}
enum CmdId {
NONE = 0;
CMD_ID = 10347;
}
int32 retcode = 1;
map<string, bool> transaction_status_map = 2;
int32 retcode = 1;
map<string, bool> transaction_status_map = 2;
}
message ClearUpRedisMailNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10339;
}
enum CmdId {
NONE = 0;
CMD_ID = 10339;
}
}
message CleanRedisMailNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10353;
}
enum CmdId {
NONE = 0;
CMD_ID = 10353;
}
}
message ResendRedisMailReq {
enum CmdId {
NONE = 0;
CMD_ID = 10322;
}
enum CmdId {
NONE = 0;
CMD_ID = 10322;
}
map<string, MailBin> mail_bin_map = 1;
map<string, MailBin> mail_bin_map = 1;
}
message ResendRedisMailRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10365;
}
enum CmdId {
NONE = 0;
CMD_ID = 10365;
}
int32 retcode = 1;
map<string, bool> resend_status_map = 2;
int32 retcode = 1;
map<string, bool> resend_status_map = 2;
}
@@ -2,259 +2,259 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
import "server_only/enum.server.proto";
option go_package = "./;proto";
message MatchPlayer {
uint32 uid = 1;
string nickname = 2;
uint32 player_level = 3;
uint32 world_level = 4;
uint32 platform_type = 5;
bool is_only_match_with_ps_player = 6;
repeated uint32 blacklist_uid_list = 7;
OnlinePlayerInfo player_info = 8;
uint32 hide_and_seek_hider_count = 9;
repeated uint32 hide_and_seek_chosen_map_list = 10;
uint32 uid = 1;
string nickname = 2;
uint32 player_level = 3;
uint32 world_level = 4;
uint32 platform_type = 5;
bool is_only_match_with_ps_player = 6;
repeated uint32 blacklist_uid_list = 7;
OnlinePlayerInfo player_info = 8;
uint32 hide_and_seek_hider_count = 9;
repeated uint32 hide_and_seek_chosen_map_list = 10;
}
message MatchUnit {
repeated MatchPlayer match_player_list = 1;
uint32 unit_id = 2;
repeated MatchPlayer match_player_list = 1;
uint32 unit_id = 2;
}
message AddMatchUnitReq {
enum CmdId {
NONE = 0;
CMD_ID = 10926;
}
enum CmdId {
NONE = 0;
CMD_ID = 10926;
}
MatchType match_type = 1;
MatchUnit match_unit = 2;
MatchIdentity expect_identity = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
uint32 match_id = 14;
repeated uint32 match_param_list = 15;
oneof detail {
GCGDuelExtra gcg_duel_extra = 21;
}
MatchType match_type = 1;
MatchUnit match_unit = 2;
MatchIdentity expect_identity = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
uint32 match_id = 14;
repeated uint32 match_param_list = 15;
oneof detail {
GCGDuelExtra gcg_duel_extra = 21;
}
}
message AddMatchUnitRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10918;
}
enum CmdId {
NONE = 0;
CMD_ID = 10918;
}
int32 retcode = 1;
MatchType match_type = 2;
MatchUnit match_unit = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
int32 retcode = 1;
MatchType match_type = 2;
MatchUnit match_unit = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
}
message MatchStartNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10925;
}
enum CmdId {
NONE = 0;
CMD_ID = 10925;
}
MatchType match_type = 1;
uint32 match_begin_time = 2;
uint32 estimate_match_cost_time = 3;
bool is_rematch = 4;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
uint32 match_id = 14;
repeated uint32 match_param_list = 15;
MatchType match_type = 1;
uint32 match_begin_time = 2;
uint32 estimate_match_cost_time = 3;
bool is_rematch = 4;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
uint32 match_id = 14;
repeated uint32 match_param_list = 15;
}
message RemoveMatchUnitReq {
enum CmdId {
NONE = 0;
CMD_ID = 10907;
}
enum CmdId {
NONE = 0;
CMD_ID = 10907;
}
MatchType match_type = 1;
uint32 unit_id = 2;
MatchUnitRemoveOpType op_type = 3;
MatchType match_type = 1;
uint32 unit_id = 2;
MatchUnitRemoveOpType op_type = 3;
}
message RemoveMatchUnitRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10902;
}
enum CmdId {
NONE = 0;
CMD_ID = 10902;
}
int32 retcode = 1;
MatchType match_type = 2;
uint32 unit_id = 3;
MatchUnitRemoveOpType op_type = 4;
int32 retcode = 1;
MatchType match_type = 2;
uint32 unit_id = 3;
MatchUnitRemoveOpType op_type = 4;
}
message MatchUnitRemovedNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10931;
}
enum CmdId {
NONE = 0;
CMD_ID = 10931;
}
MatchType match_type = 1;
MatchReason reason = 2;
MatchType match_type = 1;
MatchReason reason = 2;
}
message GuestUnitMatchSuccNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10929;
}
enum CmdId {
NONE = 0;
CMD_ID = 10929;
}
uint32 host_unit_id = 1;
uint32 confirm_end_time = 2;
uint32 match_type = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
uint32 host_unit_id = 1;
uint32 confirm_end_time = 2;
uint32 match_type = 3;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_tag = 13;
}
message ConfirmGuestUnitReq {
enum CmdId {
NONE = 0;
CMD_ID = 10922;
}
enum CmdId {
NONE = 0;
CMD_ID = 10922;
}
MatchType match_type = 1;
uint32 unit_id = 2;
bool is_agreed = 3;
uint32 match_id = 4;
MatchType match_type = 1;
uint32 unit_id = 2;
bool is_agreed = 3;
uint32 match_id = 4;
}
message ConfirmGuestUnitRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10944;
}
enum CmdId {
NONE = 0;
CMD_ID = 10944;
}
int32 retcode = 1;
MatchType match_type = 2;
uint32 unit_id = 3;
bool is_agreed = 4;
uint32 match_id = 5;
int32 retcode = 1;
MatchType match_type = 2;
uint32 unit_id = 3;
bool is_agreed = 4;
uint32 match_id = 5;
}
message MatchPlayerJoinNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10949;
}
enum CmdId {
NONE = 0;
CMD_ID = 10949;
}
MatchType match_type = 1;
uint32 unit_id = 2;
MatchPlayer match_player = 3;
MatchType match_type = 1;
uint32 unit_id = 2;
MatchPlayer match_player = 3;
}
message MatchPlayerQuitNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10920;
}
enum CmdId {
NONE = 0;
CMD_ID = 10920;
}
MatchType match_type = 1;
uint32 unit_id = 2;
uint32 player_uid = 3;
MatchType match_type = 1;
uint32 unit_id = 2;
uint32 player_uid = 3;
}
message GuestUnitAgreedResultNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10945;
}
enum CmdId {
NONE = 0;
CMD_ID = 10945;
}
enum Reason {
SUCC = 0;
HOST_UNIT_QUIT = 1;
}
enum Reason {
SUCC = 0;
HOST_UNIT_QUIT = 1;
}
MatchType match_type = 1;
uint32 host_unit_id = 2;
Reason reason = 3;
MatchType match_type = 1;
uint32 host_unit_id = 2;
Reason reason = 3;
}
message HostUnitMatchSuccNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10941;
}
enum CmdId {
NONE = 0;
CMD_ID = 10941;
}
uint32 match_type = 1;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_difficult_level = 13;
uint32 match_type = 1;
uint32 dungeon_id = 11;
uint32 mp_play_id = 12;
uint32 mechanicus_difficult_level = 13;
}
message SyncMatchUnitReq {
enum CmdId {
NONE = 0;
CMD_ID = 10942;
}
enum CmdId {
NONE = 0;
CMD_ID = 10942;
}
MatchType match_type = 1;
MatchUnit match_unit = 2;
MatchType match_type = 1;
MatchUnit match_unit = 2;
}
message SyncMatchUnitRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10914;
}
enum CmdId {
NONE = 0;
CMD_ID = 10914;
}
int32 retcode = 1;
int32 retcode = 1;
}
message MatchserverWorkloadInfoNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10947;
}
enum CmdId {
NONE = 0;
CMD_ID = 10947;
}
uint32 match_unit_num = 1;
map<uint32, uint32> match_unit_map = 2;
uint32 match_unit_num = 1;
map<uint32, uint32> match_unit_map = 2;
}
message MatchPlayerUpdateNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10937;
}
enum CmdId {
NONE = 0;
CMD_ID = 10937;
}
MatchType match_type = 1;
uint32 unit_id = 2;
MatchPlayer match_player = 3;
MatchType match_type = 1;
uint32 unit_id = 2;
MatchPlayer match_player = 3;
}
message MatchIdentityNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10923;
}
enum CmdId {
NONE = 0;
CMD_ID = 10923;
}
MatchType match_type = 1;
MatchIdentity match_identity = 2;
MatchType match_type = 1;
MatchIdentity match_identity = 2;
}
message GeneralMatchFinishNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10935;
}
enum CmdId {
NONE = 0;
CMD_ID = 10935;
}
MatchType match_type = 1;
uint32 match_id = 2;
uint32 match_param = 3;
repeated MatchPlayer match_player_list = 4;
MatchType match_type = 1;
uint32 match_id = 2;
uint32 match_param = 3;
repeated MatchPlayer match_player_list = 4;
}
@@ -2,174 +2,174 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
import "server_only/config.server.proto";
option go_package = "./;proto";
message StopServerConfigNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10072;
}
enum CmdId {
NONE = 0;
CMD_ID = 10072;
}
}
message NodeserverConnectedAndRegisteredNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10098;
}
enum CmdId {
NONE = 0;
CMD_ID = 10098;
}
uint32 nodeserver_id = 1;
uint32 nodeserver_id = 1;
}
message MultiPlayerMsg {
enum CmdId {
NONE = 0;
CMD_ID = 10012;
}
enum CmdId {
NONE = 0;
CMD_ID = 10012;
}
repeated uint32 uid_list = 1;
bytes proto_bin = 2;
repeated uint32 uid_list = 1;
bytes proto_bin = 2;
}
message AddGateserverNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10035;
}
enum CmdId {
NONE = 0;
CMD_ID = 10035;
}
uint32 listen_port = 1;
uint32 outer_ip = 2;
bool use_domain_name = 3;
string domain_name = 4;
uint32 listen_port = 1;
uint32 outer_ip = 2;
bool use_domain_name = 3;
string domain_name = 4;
}
message RegisterServiceNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10007;
}
enum CmdId {
NONE = 0;
CMD_ID = 10007;
}
repeated ServiceType service_type_list = 1;
repeated ServiceType service_type_list = 1;
}
message PlayerTransferNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10021;
}
enum CmdId {
NONE = 0;
CMD_ID = 10021;
}
uint32 transfer_uid = 1;
uint32 target_uid = 2;
uint32 target_home_owner_uid = 3;
uint32 target_home_gameserver_id = 4;
uint32 target_home_param = 5;
uint32 transfer_uid = 1;
uint32 target_uid = 2;
uint32 target_home_owner_uid = 3;
uint32 target_home_gameserver_id = 4;
uint32 target_home_param = 5;
}
message PacketCountInfo {
uint32 cmd_id = 1;
uint32 count = 2;
uint32 cmd_id = 1;
uint32 count = 2;
}
message PacketFreqencyExceedNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10003;
}
enum CmdId {
NONE = 0;
CMD_ID = 10003;
}
uint32 packet_count = 1;
uint32 interval = 2;
repeated PacketCountInfo packet_count_list = 3;
uint32 packet_count = 1;
uint32 interval = 2;
repeated PacketCountInfo packet_count_list = 3;
}
message SceneAsyncLoadGroupBatchNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10090;
}
enum CmdId {
NONE = 0;
CMD_ID = 10090;
}
}
message CrcVersionConfig {
repeated string client_version_list = 1;
repeated string client_version_list = 1;
}
message ClientVersionSyncNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10073;
}
enum CmdId {
NONE = 0;
CMD_ID = 10073;
}
DataVersionConfig data_version_config = 1;
map<uint32, ResVersionConfig> res_version_config_map = 2;
map<uint32, CrcVersionConfig> crc_version_config_map = 3;
map<uint32, ResVersionConfig> next_res_version_config_map = 4;
DataVersionConfig data_version_config = 1;
map<uint32, ResVersionConfig> res_version_config_map = 2;
map<uint32, CrcVersionConfig> crc_version_config_map = 3;
map<uint32, ResVersionConfig> next_res_version_config_map = 4;
}
message RegisterServiceSuccessNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10099;
}
enum CmdId {
NONE = 0;
CMD_ID = 10099;
}
}
message ReloadConfigNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10031;
}
enum CmdId {
NONE = 0;
CMD_ID = 10031;
}
}
message MultiserverServiceTypeNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10075;
}
enum CmdId {
NONE = 0;
CMD_ID = 10075;
}
repeated ServiceType service_type_list = 1;
repeated ServiceType service_type_list = 1;
}
message MatchServiceStopNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10048;
}
enum CmdId {
NONE = 0;
CMD_ID = 10048;
}
uint32 server_id = 1;
uint32 server_id = 1;
}
message MatchServiceStopImplementNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10097;
}
enum CmdId {
NONE = 0;
CMD_ID = 10097;
}
MatchServiceStopNotify msg = 1;
MatchServiceStopNotify msg = 1;
}
message ServerBlockPlayerMpNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10081;
}
enum CmdId {
NONE = 0;
CMD_ID = 10081;
}
bool is_unlock = 1;
uint32 end_time = 2;
bool is_unlock = 1;
uint32 end_time = 2;
}
message ServerBlockPlayerChatNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10005;
}
enum CmdId {
NONE = 0;
CMD_ID = 10005;
}
bool is_unlock = 1;
uint32 end_time = 2;
bool is_unlock = 1;
uint32 end_time = 2;
}
message ServerCheckSegmentCrcNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10082;
}
enum CmdId {
NONE = 0;
CMD_ID = 10082;
}
}
@@ -2,69 +2,69 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
message UpdateMpStatusNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10472;
}
option go_package = "./;proto";
uint32 uid = 1;
bool is_only_mp_with_ps_player = 2;
PlatformType platform_type = 3;
OnlinePlayerInfo online_player_info = 4;
message UpdateMpStatusNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10472;
}
uint32 uid = 1;
bool is_only_mp_with_ps_player = 2;
PlatformType platform_type = 3;
OnlinePlayerInfo online_player_info = 4;
}
message DelMpStatusNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10498;
}
enum CmdId {
NONE = 0;
CMD_ID = 10498;
}
uint32 uid = 1;
uint32 uid = 1;
}
message GetPlayerMpStatusListReq {
enum CmdId {
NONE = 0;
CMD_ID = 10412;
}
enum CmdId {
NONE = 0;
CMD_ID = 10412;
}
}
message GetPlayerMpStatusListRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10435;
}
enum CmdId {
NONE = 0;
CMD_ID = 10435;
}
int32 retcode = 1;
repeated OnlinePlayerInfo player_list = 2;
int32 retcode = 1;
repeated OnlinePlayerInfo player_list = 2;
}
message GetPlayerMpStatusInfoReq {
enum CmdId {
NONE = 0;
CMD_ID = 10407;
}
enum CmdId {
NONE = 0;
CMD_ID = 10407;
}
bool is_online_id = 1;
oneof player_id {
uint32 target_uid = 2;
string online_id = 3;
string psn_id = 4;
}
bool is_online_id = 1;
oneof player_id {
uint32 target_uid = 2;
string online_id = 3;
string psn_id = 4;
}
}
message GetPlayerMpStatusInfoRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10421;
}
enum CmdId {
NONE = 0;
CMD_ID = 10421;
}
int32 retcode = 1;
uint32 target_uid = 2;
OnlinePlayerInfo target_player_info = 3;
int32 retcode = 1;
uint32 target_uid = 2;
OnlinePlayerInfo target_player_info = 3;
}
@@ -2,370 +2,370 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "define.proto";
option go_package = "./;proto";
enum PlayerMemDataType {
MEM_DATA_BASIC = 0;
MEM_DATA_H5_ACTIVITY = 1;
MEM_DATA_BASIC = 0;
MEM_DATA_H5_ACTIVITY = 1;
}
message OnlinePlayerNumReq {
enum CmdId {
NONE = 0;
CMD_ID = 10272;
}
enum CmdId {
NONE = 0;
CMD_ID = 10272;
}
}
message OnlinePlayerNumRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10298;
}
enum CmdId {
NONE = 0;
CMD_ID = 10298;
}
int32 retcode = 1;
uint32 online_player_num = 2;
map<uint32, uint32> gameserver_player_num_map = 3;
uint32 online_player_num_except_sub_account = 4;
int32 retcode = 1;
uint32 online_player_num = 2;
map<uint32, uint32> gameserver_player_num_map = 3;
uint32 online_player_num_except_sub_account = 4;
}
message KickoutPlayerNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10212;
}
enum CmdId {
NONE = 0;
CMD_ID = 10212;
}
uint32 reason = 1;
uint32 reason = 1;
}
message CheckOnlinePlayerReq {
enum CmdId {
NONE = 0;
CMD_ID = 10235;
}
enum CmdId {
NONE = 0;
CMD_ID = 10235;
}
uint32 gameserver_id = 1;
uint32 ns_gameserver_id = 2;
uint32 gameserver_id = 1;
uint32 ns_gameserver_id = 2;
}
message CheckOnlinePlayerRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10207;
}
enum CmdId {
NONE = 0;
CMD_ID = 10207;
}
message NodeStatus {
uint32 gameserver_id = 1;
uint32 nodeserver_id = 2;
}
message NodeStatus {
uint32 gameserver_id = 1;
uint32 nodeserver_id = 2;
}
message GameStatus {
uint32 gameserver_id = 1;
uint32 login_time = 2;
uint64 login_rand = 3;
bool is_wait_save = 4;
}
message GameStatus {
uint32 gameserver_id = 1;
uint32 login_time = 2;
uint64 login_rand = 3;
bool is_wait_save = 4;
}
int32 retcode = 1;
NodeStatus node_status = 2;
GameStatus game_status = 3;
int32 retcode = 1;
NodeStatus node_status = 2;
GameStatus game_status = 3;
}
message PlayerCombatForceReq {
enum CmdId {
NONE = 0;
CMD_ID = 10221;
}
enum CmdId {
NONE = 0;
CMD_ID = 10221;
}
}
message PlayerCombatForceRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10203;
}
enum CmdId {
NONE = 0;
CMD_ID = 10203;
}
int32 retcode = 1;
float player_combat_force = 2;
map<uint32, float> player_combat_force_map = 3;
int32 retcode = 1;
float player_combat_force = 2;
map<uint32, float> player_combat_force_map = 3;
}
message CheckGameVersionReq {
enum CmdId {
NONE = 0;
CMD_ID = 10290;
}
enum CmdId {
NONE = 0;
CMD_ID = 10290;
}
uint32 server_version = 1;
uint32 client_version = 2;
uint32 client_silence_version = 3;
map<uint32, uint32> res_version_map = 4;
map<uint32, uint32> next_res_version_map = 5;
uint32 server_version = 1;
uint32 client_version = 2;
uint32 client_silence_version = 3;
map<uint32, uint32> res_version_map = 4;
map<uint32, uint32> next_res_version_map = 5;
}
message GameVersionResult {
uint32 version = 1;
uint32 wrong_num = 2;
repeated uint32 wrong_name_list = 3;
uint32 version = 1;
uint32 wrong_num = 2;
repeated uint32 wrong_name_list = 3;
}
message CheckGameVersionRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10273;
}
enum CmdId {
NONE = 0;
CMD_ID = 10273;
}
int32 retcode = 1;
uint32 total_game = 2;
GameVersionResult server_version_result = 3;
GameVersionResult client_version_result = 4;
GameVersionResult client_silence_version_result = 5;
map<uint32, GameVersionResult> res_version_result_map = 6;
map<uint32, GameVersionResult> next_res_version_result_map = 7;
int32 retcode = 1;
uint32 total_game = 2;
GameVersionResult server_version_result = 3;
GameVersionResult client_version_result = 4;
GameVersionResult client_silence_version_result = 5;
map<uint32, GameVersionResult> res_version_result_map = 6;
map<uint32, GameVersionResult> next_res_version_result_map = 7;
}
message PlatformPlayerNumReq {
enum CmdId {
NONE = 0;
CMD_ID = 10299;
}
enum CmdId {
NONE = 0;
CMD_ID = 10299;
}
}
message PlatformPlayerNumRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10231;
}
enum CmdId {
NONE = 0;
CMD_ID = 10231;
}
int32 retcode = 1;
uint32 online_player_num = 2;
map<uint32, uint32> platform_player_num_map = 3;
int32 retcode = 1;
uint32 online_player_num = 2;
map<uint32, uint32> platform_player_num_map = 3;
}
message PlayerMemBasicData {
string nickname = 1;
uint32 level = 2;
uint32 exp = 3;
uint32 scoin = 4;
uint32 hcoin = 5;
uint32 last_login = 6;
ProfilePicture profile_picture = 7;
fixed32 register_time = 8;
uint32 gender_type = 9;
string nickname = 1;
uint32 level = 2;
uint32 exp = 3;
uint32 scoin = 4;
uint32 hcoin = 5;
uint32 last_login = 6;
ProfilePicture profile_picture = 7;
fixed32 register_time = 8;
uint32 gender_type = 9;
}
message PlayerMemH5AcitivityWatcherData {
uint32 h5_activity_watcher_id = 1;
uint32 progress = 2;
uint32 h5_activity_watcher_id = 1;
uint32 progress = 2;
}
message PlayerMemH5ActivityData {
uint32 h5_schedule_id = 1;
uint32 h5_activity_id = 2;
uint32 last_refresh_time = 3;
repeated uint32 finished_h5_activity_watcher_list = 4;
repeated uint32 unaccept_h5_activity_watcher_list = 5;
repeated PlayerMemH5AcitivityWatcherData h5_activity_watcher_list = 6;
uint32 h5_schedule_id = 1;
uint32 h5_activity_id = 2;
uint32 last_refresh_time = 3;
repeated uint32 finished_h5_activity_watcher_list = 4;
repeated uint32 unaccept_h5_activity_watcher_list = 5;
repeated PlayerMemH5AcitivityWatcherData h5_activity_watcher_list = 6;
}
message PlayerMemH5ActivityDataResult {
map<uint32, int32> retcode_map = 1;
repeated PlayerMemH5ActivityData h5_activity_data_list = 2;
map<uint32, int32> retcode_map = 1;
repeated PlayerMemH5ActivityData h5_activity_data_list = 2;
}
message QueryPlayerMemDataByMuipReq {
enum CmdId {
NONE = 0;
CMD_ID = 10275;
}
enum CmdId {
NONE = 0;
CMD_ID = 10275;
}
uint32 data_type = 1;
repeated uint32 param_list = 2;
uint32 data_type = 1;
repeated uint32 param_list = 2;
}
message QueryPlayerMemDataByMuipRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10248;
}
enum CmdId {
NONE = 0;
CMD_ID = 10248;
}
int32 retcode = 1;
oneof detail {
PlayerMemBasicData basic_data = 2;
PlayerMemH5ActivityDataResult h5_activity_data_result = 3;
}
int32 retcode = 1;
oneof detail {
PlayerMemBasicData basic_data = 2;
PlayerMemH5ActivityDataResult h5_activity_data_result = 3;
}
}
message BindGmUidNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10297;
}
enum CmdId {
NONE = 0;
CMD_ID = 10297;
}
uint32 gm_uid = 1;
uint32 player_uid = 2;
uint32 gm_uid = 1;
uint32 player_uid = 2;
}
message UnbindGmUidNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10281;
}
enum CmdId {
NONE = 0;
CMD_ID = 10281;
}
uint32 gm_uid = 1;
uint32 gm_uid = 1;
}
message GetBindGmUidReq {
enum CmdId {
NONE = 0;
CMD_ID = 10205;
}
enum CmdId {
NONE = 0;
CMD_ID = 10205;
}
}
message GetBindGmUidRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10282;
}
enum CmdId {
NONE = 0;
CMD_ID = 10282;
}
int32 retcode = 1;
map<uint32, uint32> gm_uid_map = 2;
int32 retcode = 1;
map<uint32, uint32> gm_uid_map = 2;
}
message PlatformAntiAddictNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10247;
}
enum CmdId {
NONE = 0;
CMD_ID = 10247;
}
int32 msg_type = 2;
string msg = 3;
string level = 4;
int32 msg_type = 2;
string msg = 3;
string level = 4;
}
message PlayerLoginPerSecondReq {
enum CmdId {
NONE = 0;
CMD_ID = 10239;
}
enum CmdId {
NONE = 0;
CMD_ID = 10239;
}
}
message PlayerLoginPerSecondRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10253;
}
enum CmdId {
NONE = 0;
CMD_ID = 10253;
}
int32 retcode = 1;
uint32 player_login_per_second = 2;
int32 retcode = 1;
uint32 player_login_per_second = 2;
}
message FineGrainedPlayerNumReq {
enum CmdId {
NONE = 0;
CMD_ID = 10222;
}
enum CmdId {
NONE = 0;
CMD_ID = 10222;
}
}
message FineGrainedPlayerNumRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10265;
}
enum CmdId {
NONE = 0;
CMD_ID = 10265;
}
int32 retcode = 1;
uint32 online_player_num = 2;
map<string, uint32> fine_grained_player_num_map = 3;
int32 retcode = 1;
uint32 online_player_num = 2;
map<string, uint32> fine_grained_player_num_map = 3;
}
message CheckGameCrcVersionReq {
enum CmdId {
NONE = 0;
CMD_ID = 10204;
}
enum CmdId {
NONE = 0;
CMD_ID = 10204;
}
uint32 platform = 1;
string client_version_str = 2;
uint32 platform = 1;
string client_version_str = 2;
}
message CheckGameCrcVersionRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10293;
}
enum CmdId {
NONE = 0;
CMD_ID = 10293;
}
int32 retcode = 1;
uint32 total_game = 2;
uint32 platform = 3;
string client_version_str = 4;
uint32 wrong_num = 5;
repeated uint32 wrong_name_list = 6;
int32 retcode = 1;
uint32 total_game = 2;
uint32 platform = 3;
string client_version_str = 4;
uint32 wrong_num = 5;
repeated uint32 wrong_name_list = 6;
}
message UpdateRedPointByMuipNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10227;
}
enum CmdId {
NONE = 0;
CMD_ID = 10227;
}
repeated RedPointData red_point_list = 1;
repeated RedPointData red_point_list = 1;
}
message SendConcertProductReq {
enum CmdId {
NONE = 0;
CMD_ID = 10294;
}
enum CmdId {
NONE = 0;
CMD_ID = 10294;
}
string ticket = 1;
uint32 config_id = 2;
string ticket = 1;
uint32 config_id = 2;
}
message SendConcertProductRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10288;
}
enum CmdId {
NONE = 0;
CMD_ID = 10288;
}
int32 retcode = 1;
string ticket = 2;
uint32 config_id = 3;
int32 retcode = 1;
string ticket = 2;
uint32 config_id = 3;
}
message QueryConcertProductInfoReq {
enum CmdId {
NONE = 0;
CMD_ID = 10226;
}
enum CmdId {
NONE = 0;
CMD_ID = 10226;
}
uint32 config_id = 1;
uint32 config_id = 1;
}
message QueryConcertProductInfoRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10263;
}
enum CmdId {
NONE = 0;
CMD_ID = 10263;
}
int32 retcode = 1;
uint32 config_id = 2;
uint32 obtain_count = 3;
uint32 obtain_limit = 4;
int32 retcode = 1;
uint32 config_id = 2;
uint32 obtain_count = 3;
uint32 obtain_limit = 4;
}
message PlayerMpModeReq {
enum CmdId {
NONE = 0;
CMD_ID = 10295;
}
enum CmdId {
NONE = 0;
CMD_ID = 10295;
}
}
message PlayerMpModeRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10206;
}
enum CmdId {
NONE = 0;
CMD_ID = 10206;
}
int32 retcode = 1;
bool is_mp_mode = 2;
int32 retcode = 1;
bool is_mp_mode = 2;
}
@@ -2,133 +2,133 @@ syntax = "proto3";
package proto;
option go_package = "./;proto";
import "server_only/bin_common.server.proto";
option go_package = "./;proto";
message OfflineOpDefaultContext {
uint32 tag = 1;
uint32 tag = 1;
}
message OfflineOpPlantFlowerActivityGiveFlowerContext {
uint32 uid = 1;
map<uint32, uint32> flower_num_map = 2;
uint32 uid = 1;
map<uint32, uint32> flower_num_map = 2;
}
message GCGSettleContext {
uint32 uid = 1;
uint32 game_id = 2;
uint32 game_uid = 3;
uint32 uid = 1;
uint32 game_id = 2;
uint32 game_uid = 3;
}
message OfflineOpContext {
oneof context {
OfflineOpDefaultContext default_context = 1;
OfflineOpPlantFlowerActivityGiveFlowerContext plant_flower_give_flower_context = 2;
}
oneof context {
OfflineOpDefaultContext default_context = 1;
OfflineOpPlantFlowerActivityGiveFlowerContext plant_flower_give_flower_context = 2;
}
}
message OfflineOpData {
OfflineOpBin bin = 1;
OfflineOpContext context = 2;
uint32 max_length = 3;
OfflineOpBin bin = 1;
OfflineOpContext context = 2;
uint32 max_length = 3;
}
message SendOfflineOpReq {
enum CmdId {
NONE = 0;
CMD_ID = 12226;
}
enum CmdId {
NONE = 0;
CMD_ID = 12226;
}
uint32 uid = 1;
fixed32 time = 2;
OfflineOpType op_type = 3;
OfflineOpData op_data = 4;
uint32 uid = 1;
fixed32 time = 2;
OfflineOpType op_type = 3;
OfflineOpData op_data = 4;
}
message SendOfflineOpRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12218;
}
enum CmdId {
NONE = 0;
CMD_ID = 12218;
}
int32 retcode = 1;
uint32 index = 2;
OfflineOpType op_type = 3;
OfflineOpContext context = 4;
int32 retcode = 1;
uint32 index = 2;
OfflineOpType op_type = 3;
OfflineOpContext context = 4;
}
message GetOfflineOpReq {
enum CmdId {
NONE = 0;
CMD_ID = 12225;
}
enum CmdId {
NONE = 0;
CMD_ID = 12225;
}
OfflineOpType op_type = 1;
uint32 index = 2;
OfflineOpType op_type = 1;
uint32 index = 2;
}
message GetOfflineOpRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12207;
}
enum CmdId {
NONE = 0;
CMD_ID = 12207;
}
int32 retcode = 1;
repeated bytes bin_str_list = 2;
int32 retcode = 1;
repeated bytes bin_str_list = 2;
}
message NewOfflineOpNotify {
enum CmdId {
NONE = 0;
CMD_ID = 12202;
}
enum CmdId {
NONE = 0;
CMD_ID = 12202;
}
OfflineOpType op_type = 1;
uint32 index = 2;
OfflineOpType op_type = 1;
uint32 index = 2;
}
message RemoveOfflineOpReq {
enum CmdId {
NONE = 0;
CMD_ID = 12231;
}
enum CmdId {
NONE = 0;
CMD_ID = 12231;
}
OfflineOpType op_type = 1;
uint32 index = 2;
OfflineOpType op_type = 1;
uint32 index = 2;
}
message RemoveOfflineOpRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12229;
}
enum CmdId {
NONE = 0;
CMD_ID = 12229;
}
int32 retcode = 1;
OfflineOpType op_type = 2;
uint32 index = 3;
int32 retcode = 1;
OfflineOpType op_type = 2;
uint32 index = 3;
}
message SendGCGOfflineOpReq {
enum CmdId {
NONE = 0;
CMD_ID = 12222;
}
enum CmdId {
NONE = 0;
CMD_ID = 12222;
}
uint32 uid = 1;
fixed32 time = 2;
OfflineOpType op_type = 3;
OfflineOpData op_data = 4;
uint32 uid = 1;
fixed32 time = 2;
OfflineOpType op_type = 3;
OfflineOpData op_data = 4;
}
message SendGCGOfflineOpRsp {
enum CmdId {
NONE = 0;
CMD_ID = 12244;
}
enum CmdId {
NONE = 0;
CMD_ID = 12244;
}
int32 retcode = 1;
uint32 index = 2;
OfflineOpType op_type = 3;
OfflineOpContext context = 4;
int32 retcode = 1;
uint32 index = 2;
OfflineOpType op_type = 3;
OfflineOpContext context = 4;
}
@@ -2,143 +2,143 @@ syntax = "proto3";
package proto;
import "define.proto";
import "server_only/bin.server.proto";
option go_package = "./;proto";
import "server_only/bin.server.proto";
import "define.proto";
message SavePlayerDataReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10198;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
PlayerData player_data = 1;
uint32 save_stat_id = 2;
PlayerData player_data = 1;
uint32 save_stat_id = 2;
}
message SavePlayerDataRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10112;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
uint32 data_version = 2;
uint32 save_stat_id = 3;
int32 retcode = 1;
uint32 data_version = 2;
uint32 save_stat_id = 3;
}
message PlayerOnlineStatusInfo {
enum StatusType {
ONLINE = 0;
OFFLINE = 1;
}
enum StatusType {
ONLINE = 0;
OFFLINE = 1;
}
uint32 uid = 1;
uint32 platform_type = 2;
StatusType online_status = 3;
bool is_sub_account = 4;
string country_code = 5;
uint32 uid = 1;
uint32 platform_type = 2;
StatusType online_status = 3;
bool is_sub_account = 4;
string country_code = 5;
}
message PlayerOnlineStatusNotify {
enum Enum {
NONE = 0;
CMD_ID = 10135;
}
enum Enum {
NONE = 0;
CMD_ID = 10135;
}
repeated PlayerOnlineStatusInfo player_info_list = 1;
repeated PlayerOnlineStatusInfo player_info_list = 1;
}
message ServiceDisconnectNotify {
enum Enum {
NONE = 0;
CMD_ID = 10103;
}
enum Enum {
NONE = 0;
CMD_ID = 10103;
}
ServiceType type = 1;
uint32 ip = 2;
ServiceType type = 1;
uint32 ip = 2;
}
message PlayerDisconnectNotify {
enum Enum {
NONE = 0;
CMD_ID = 10190;
}
enum Enum {
NONE = 0;
CMD_ID = 10190;
}
uint32 data = 1;
uint32 data = 1;
}
message DisconnectClientNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10173;
}
enum CmdId {
NONE = 0;
CMD_ID = 10173;
}
uint32 data = 1;
uint32 data = 1;
}
message SysCreateGroupReq {
enum CmdId {
NONE = 0;
CMD_ID = 10199;
}
enum CmdId {
NONE = 0;
CMD_ID = 10199;
}
}
message SaveBlockDataReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10131;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10131;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
map<uint32, BlockInfo> block_info_map = 1;
map<uint32, BlockInfo> block_info_map = 1;
}
message SaveBlockDataRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10175;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 10175;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
}
int32 retcode = 1;
map<uint32, uint32> block_succ_save_map = 2;
int32 retcode = 1;
map<uint32, uint32> block_succ_save_map = 2;
}
message SavePlayerExtraBinDataNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10148;
}
enum CmdId {
NONE = 0;
CMD_ID = 10148;
}
uint32 uid = 1;
bytes player_extra_bin_data = 2;
uint32 uid = 1;
bytes player_extra_bin_data = 2;
}
message SysSavePlayerNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10197;
}
enum CmdId {
NONE = 0;
CMD_ID = 10197;
}
}
message PlayerLoginBlockInfoNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10181;
}
enum CmdId {
NONE = 0;
CMD_ID = 10181;
}
uint64 login_rand = 1;
map<uint32, BlockInfo> block_info_map = 2;
uint64 login_rand = 1;
map<uint32, BlockInfo> block_info_map = 2;
}
@@ -5,94 +5,94 @@ package proto;
option go_package = "./;proto";
message Order {
uint32 id = 1;
uint32 uid = 2;
string product_id = 3;
string product_name = 4;
uint32 product_num = 5;
uint32 coin_num = 6;
string total_fee = 7;
string currency = 8;
string price_tier = 9;
string trade_no = 10;
uint32 trade_time = 11;
uint32 channel_id = 12;
string channel_order_no = 13;
string pay_plat = 14;
string extend = 15;
uint32 create_time = 16;
string bonus = 17;
uint32 bonus_num = 18;
uint32 vip_point_num = 19;
string pay_type = 20;
string pay_vendor = 21;
string client_type = 22;
string device = 23;
string client_ip = 24;
uint32 id = 1;
uint32 uid = 2;
string product_id = 3;
string product_name = 4;
uint32 product_num = 5;
uint32 coin_num = 6;
string total_fee = 7;
string currency = 8;
string price_tier = 9;
string trade_no = 10;
uint32 trade_time = 11;
uint32 channel_id = 12;
string channel_order_no = 13;
string pay_plat = 14;
string extend = 15;
uint32 create_time = 16;
string bonus = 17;
uint32 bonus_num = 18;
uint32 vip_point_num = 19;
string pay_type = 20;
string pay_vendor = 21;
string client_type = 22;
string device = 23;
string client_ip = 24;
}
message RechargeOrderNotify {
enum CmdId {
NONE = 0;
CMD_ID = 10726;
}
enum CmdId {
NONE = 0;
CMD_ID = 10726;
}
Order order = 1;
Order order = 1;
}
message MarkOrderFinishedReq {
enum CmdId {
NONE = 0;
CMD_ID = 10718;
}
enum CmdId {
NONE = 0;
CMD_ID = 10718;
}
uint32 order_id = 1;
uint32 finish_time = 2;
bool is_retry = 3;
uint32 order_id = 1;
uint32 finish_time = 2;
bool is_retry = 3;
}
message MarkOrderFinishedRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10725;
}
enum CmdId {
NONE = 0;
CMD_ID = 10725;
}
int32 retcode = 1;
uint32 order_id = 2;
int32 retcode = 1;
uint32 order_id = 2;
}
message GetUnfinishedOrderReq {
enum CmdId {
NONE = 0;
CMD_ID = 10707;
}
enum CmdId {
NONE = 0;
CMD_ID = 10707;
}
}
message GetUnfinishedOrderRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10702;
}
enum CmdId {
NONE = 0;
CMD_ID = 10702;
}
int32 retcode = 1;
repeated Order order_list = 2;
int32 retcode = 1;
repeated Order order_list = 2;
}
message GetSpecificUnfinishedReq {
enum CmdId {
NONE = 0;
CMD_ID = 10731;
}
enum CmdId {
NONE = 0;
CMD_ID = 10731;
}
uint32 order_id = 1;
uint32 order_id = 1;
}
message GetSpecificUnfinishedRsp {
enum CmdId {
NONE = 0;
CMD_ID = 10729;
}
enum CmdId {
NONE = 0;
CMD_ID = 10729;
}
int32 retcode = 1;
Order order = 2;
int32 retcode = 1;
Order order = 2;
}
@@ -5,44 +5,44 @@ package proto_security;
option go_package = "./;proto";
enum Platform {
Unkown = 0;
IOS = 1;
Android = 2;
PC = 3;
WEB = 4;
WAP = 5;
PS = 6;
Nintendo = 7;
CloudAndroid = 8;
CloudPC = 9;
CloudIOS = 10;
PS5 = 11;
Unkown = 0;
IOS = 1;
Android = 2;
PC = 3;
WEB = 4;
WAP = 5;
PS = 6;
Nintendo = 7;
CloudAndroid = 8;
CloudPC = 9;
CloudIOS = 10;
PS5 = 11;
}
message GameLoginNotifyRequest {
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
}
message GameLogoutNotifyRequest {
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
}
message GameHeartBeatInfo {
repeated uint32 uid = 1;
repeated uint32 uid = 1;
}
message GameHeartBeatNotifyRequest {
map<uint32, GameHeartBeatInfo> platform_uid_list = 1;
string region = 2;
string biz_game = 3;
map<uint32, GameHeartBeatInfo> platform_uid_list = 1;
string region = 2;
string biz_game = 3;
}
File diff suppressed because it is too large Load Diff
@@ -5,106 +5,106 @@ package proto;
option go_package = "./;proto";
message Timestamp {
int64 seconds = 1;
int32 nanos = 2;
int64 seconds = 1;
int32 nanos = 2;
}
message StopServerConfig {
Timestamp begin_time = 1;
Timestamp end_time = 2;
string url = 3;
uint32 text_id = 4;
uint32 content_text_id = 5;
Timestamp begin_time = 1;
Timestamp end_time = 2;
string url = 3;
uint32 text_id = 4;
uint32 content_text_id = 5;
}
message StopRegisterConfig {
Timestamp begin_time = 1;
Timestamp end_time = 2;
uint32 max_player_num = 3;
Timestamp begin_time = 1;
Timestamp end_time = 2;
uint32 max_player_num = 3;
}
message ForceUpdateConfig {
string url = 1;
uint32 text_id = 2;
string url = 1;
uint32 text_id = 2;
}
message DateTimeIntervalConfig {
Timestamp begin_time = 1;
Timestamp end_time = 2;
uint32 text_id = 3;
Timestamp begin_time = 1;
Timestamp end_time = 2;
uint32 text_id = 3;
}
message DataVersionConfig {
enum DataVersionType {
SERVER = 0;
CLIENT = 1;
CLIENT_SILENCE = 2;
}
enum DataVersionType {
SERVER = 0;
CLIENT = 1;
CLIENT_SILENCE = 2;
}
uint32 server = 1;
uint32 client = 2;
uint32 client_silence = 3;
map<string, string> client_md5 = 4;
map<uint32, string> client_platform_md5 = 5;
map<string, string> client_silence_md5 = 6;
map<uint32, string> client_silence_platform_md5 = 7;
string client_version_suffix = 8;
string client_silence_version_suffix = 9;
bool relogin = 10;
bool mp_relogin = 11;
bool gcg_forbid_relogin = 12;
uint32 server = 1;
uint32 client = 2;
uint32 client_silence = 3;
map<string, string> client_md5 = 4;
map<uint32, string> client_platform_md5 = 5;
map<string, string> client_silence_md5 = 6;
map<uint32, string> client_silence_platform_md5 = 7;
string client_version_suffix = 8;
string client_silence_version_suffix = 9;
bool relogin = 10;
bool mp_relogin = 11;
bool gcg_forbid_relogin = 12;
}
message SdkAccountReqConfig {
uint32 app_id = 1;
uint32 channel_id = 2;
string open_id = 3;
string combo_token = 4;
string sign = 5;
string region = 6;
uint32 app_id = 1;
uint32 channel_id = 2;
string open_id = 3;
string combo_token = 4;
string sign = 5;
string region = 6;
}
message GachaUpConfig {
uint32 item_parent_type = 1;
uint32 prob = 2;
repeated uint32 item_list = 3;
uint32 item_parent_type = 1;
uint32 prob = 2;
repeated uint32 item_list = 3;
}
message DbGachaUpConfig {
repeated GachaUpConfig gacha_up_list = 1;
repeated GachaUpConfig gacha_up_list = 1;
}
message DbGachaRuleConfig {
repeated uint32 gacha_rule_list = 1;
repeated uint32 gacha_rule_list = 1;
}
message AntiCheatConfig {
bool is_segment_crc_valid = 1;
bool is_segment_crc_valid = 1;
}
message GameplayRecommendationSkillConfig {
repeated uint32 skill_id_list = 1;
repeated uint32 skill_id_list = 1;
}
message GameplayRecommendationReliquaryMainPropConfig {
uint32 main_prop_id = 1;
uint32 permillage = 2;
uint32 main_prop_id = 1;
uint32 permillage = 2;
}
message GameplayRecommendationReliquaryConfig {
repeated GameplayRecommendationReliquaryMainPropConfig main_prop_config_list = 1;
repeated GameplayRecommendationReliquaryMainPropConfig main_prop_config_list = 1;
}
message GameplayRecommendationReliquaryMapConfig {
map<uint32, GameplayRecommendationReliquaryConfig> reliquary_config_map = 1;
map<uint32, GameplayRecommendationReliquaryConfig> reliquary_config_map = 1;
}
message GameplayRecommendationAvatarConfig {
map<uint32, GameplayRecommendationSkillConfig> skill_config_map = 1;
map<uint32, GameplayRecommendationReliquaryConfig> reliquary_config_map = 2;
map<uint32, GameplayRecommendationReliquaryMapConfig> element_reliquary_config_map = 3;
map<uint32, GameplayRecommendationSkillConfig> skill_config_map = 1;
map<uint32, GameplayRecommendationReliquaryConfig> reliquary_config_map = 2;
map<uint32, GameplayRecommendationReliquaryMapConfig> element_reliquary_config_map = 3;
}
message GameplayRecommendationConfig {
map<uint32, GameplayRecommendationAvatarConfig> avatar_config_map = 1;
map<uint32, GameplayRecommendationAvatarConfig> avatar_config_map = 1;
}
File diff suppressed because it is too large Load Diff
@@ -3,46 +3,46 @@ syntax = "proto3";
package proto_log;
enum AntiCheatActionType {
ANTI_CHEAT_ACTION_NONE = 0;
ANTI_CHEAT_ACTION_AI_HASH = 1;
ANTI_CHEAT_ACTION_MTP = 2;
ANTI_CHEAT_ACTION_CHECKSUM_INVALID = 3;
ANTI_CHEAT_SKILL_CD_WRONG = 4;
ANTI_CHEAT_ACTION_MOVE_SPEED_OVER_LIMIT = 5;
ANTI_CHEAT_ACTION_ANTI_OFFLINE_RESULT = 6;
ANTI_CHEAT_ACTION_ELITE_MONSTER_ABNORMAL_DIE = 7;
ANTI_CHEAT_ACTION_ABILITY_HASH = 8;
ANTI_CHEAT_ACTION_EQUIP_AFFIX_CD_WRONG = 9;
ANTI_CHEAT_ACTION_REPORT = 10;
ANTI_CHEAT_ACTION_SEGMENT_CRC_CHECK_FAIL = 11;
ANTI_CHEAT_ACTION_MONSTER_DIE = 12;
ANTI_CHEAT_ACTION_USE_NOT_ALLOWED_SKILL = 13;
ANTI_CHEAT_ACTION_CLIENT_SPEED_UP_TIME = 14;
ANTI_CHEAT_ACTION_COMBAT_HASH = 15;
ANTI_CHEAT_ACTION_GADGET_INTERACT_BEYOND_DISTANCE = 16;
ANTI_CHEAT_ACTION_SAFE_FLOAT_EXCEPTION = 17;
ANTI_CHEAT_ACTION_ENVIRONMENT_ERROR = 18;
ANTI_CHEAT_ACTION_SCENE_TIME_MOVE_SPEED_OVER_LIMIT = 20;
ANTI_CHEAT_ACTION_DAMAGE_OVER_LIMIT = 21;
ANTI_CHEAT_ACTION_CLIENT_REPORT_MOVE_SPEED_OVER_LIMIT = 22;
ANTI_CHEAT_ACTION_AVATAR_EXCEL_HASH = 23;
ANTI_CHEAT_ACTION_CLIENT_LOADING_COSTUME_VERIFICATION = 24;
ANTI_CHEAT_ACTION_QIANDAOGUA_CHECK_FAIL = 25;
ANTI_CHEAT_ACTION_MOUSE_MACRO_CLIENT_REPORT = 26;
ANTI_CHEAT_ACTION_CLIENT_TICK_TIME_CHECK_FAIL = 27;
ANTI_CHEAT_ACTION_CLIENT_SGV_CHECK_FAIL = 28;
ANTI_CHEAT_ACTION_STAMINA_CHECK_FAIL = 29;
ANTI_CHEAT_ACTION_CLIENT_FIGHT_REPORT = 30;
ANTI_CHEAT_ACTION_CLIENT_PROTO_ERROR = 31;
ANTI_CHEAT_ACTION_UNION_EXCEED_FREQ = 32;
ANTI_CHEAT_ACTION_RELIQUARY_UPGRADE_ERROR = 33;
ANTI_CHEAT_ACTION_PACKET_COST_TIME_EXCEED_LIMIT = 34;
ANTI_CHEAT_ACTION_RECV_PACKET_FREQ_EXCEED_LIMIT = 35;
ANTI_CHEAT_ACTION_SINGLE_PACKET_FREQ_EXCEED_LIMIT = 36;
ANTI_CHEAT_ACTION_GADGET_INTERACT_BEYOND_CHECK_DISTANCE = 37;
ANTI_CHEAT_ACTION_LUA_SHELL_CLIENT_NOTIFY_TIMEOUT = 38;
ANTI_CHEAT_ACTION_PACKET_COST_TIME_PERCENT_EXCEED_LIMIT = 39;
ANTI_CHEAT_ACTION_SECURITY_LIBRARY_MD5_ERROR = 40;
ANTI_CHEAT_ACTION_AVATAR_ATTACK_AVATAR_DAMAGE = 41;
ANTI_CHEAT_ACTION_FORBID_LOGIN = 42;
ANTI_CHEAT_ACTION_NONE = 0;
ANTI_CHEAT_ACTION_AI_HASH = 1;
ANTI_CHEAT_ACTION_MTP = 2;
ANTI_CHEAT_ACTION_CHECKSUM_INVALID = 3;
ANTI_CHEAT_SKILL_CD_WRONG = 4;
ANTI_CHEAT_ACTION_MOVE_SPEED_OVER_LIMIT = 5;
ANTI_CHEAT_ACTION_ANTI_OFFLINE_RESULT = 6;
ANTI_CHEAT_ACTION_ELITE_MONSTER_ABNORMAL_DIE = 7;
ANTI_CHEAT_ACTION_ABILITY_HASH = 8;
ANTI_CHEAT_ACTION_EQUIP_AFFIX_CD_WRONG = 9;
ANTI_CHEAT_ACTION_REPORT = 10;
ANTI_CHEAT_ACTION_SEGMENT_CRC_CHECK_FAIL = 11;
ANTI_CHEAT_ACTION_MONSTER_DIE = 12;
ANTI_CHEAT_ACTION_USE_NOT_ALLOWED_SKILL = 13;
ANTI_CHEAT_ACTION_CLIENT_SPEED_UP_TIME = 14;
ANTI_CHEAT_ACTION_COMBAT_HASH = 15;
ANTI_CHEAT_ACTION_GADGET_INTERACT_BEYOND_DISTANCE = 16;
ANTI_CHEAT_ACTION_SAFE_FLOAT_EXCEPTION = 17;
ANTI_CHEAT_ACTION_ENVIRONMENT_ERROR = 18;
ANTI_CHEAT_ACTION_SCENE_TIME_MOVE_SPEED_OVER_LIMIT = 20;
ANTI_CHEAT_ACTION_DAMAGE_OVER_LIMIT = 21;
ANTI_CHEAT_ACTION_CLIENT_REPORT_MOVE_SPEED_OVER_LIMIT = 22;
ANTI_CHEAT_ACTION_AVATAR_EXCEL_HASH = 23;
ANTI_CHEAT_ACTION_CLIENT_LOADING_COSTUME_VERIFICATION = 24;
ANTI_CHEAT_ACTION_QIANDAOGUA_CHECK_FAIL = 25;
ANTI_CHEAT_ACTION_MOUSE_MACRO_CLIENT_REPORT = 26;
ANTI_CHEAT_ACTION_CLIENT_TICK_TIME_CHECK_FAIL = 27;
ANTI_CHEAT_ACTION_CLIENT_SGV_CHECK_FAIL = 28;
ANTI_CHEAT_ACTION_STAMINA_CHECK_FAIL = 29;
ANTI_CHEAT_ACTION_CLIENT_FIGHT_REPORT = 30;
ANTI_CHEAT_ACTION_CLIENT_PROTO_ERROR = 31;
ANTI_CHEAT_ACTION_UNION_EXCEED_FREQ = 32;
ANTI_CHEAT_ACTION_RELIQUARY_UPGRADE_ERROR = 33;
ANTI_CHEAT_ACTION_PACKET_COST_TIME_EXCEED_LIMIT = 34;
ANTI_CHEAT_ACTION_RECV_PACKET_FREQ_EXCEED_LIMIT = 35;
ANTI_CHEAT_ACTION_SINGLE_PACKET_FREQ_EXCEED_LIMIT = 36;
ANTI_CHEAT_ACTION_GADGET_INTERACT_BEYOND_CHECK_DISTANCE = 37;
ANTI_CHEAT_ACTION_LUA_SHELL_CLIENT_NOTIFY_TIMEOUT = 38;
ANTI_CHEAT_ACTION_PACKET_COST_TIME_PERCENT_EXCEED_LIMIT = 39;
ANTI_CHEAT_ACTION_SECURITY_LIBRARY_MD5_ERROR = 40;
ANTI_CHEAT_ACTION_AVATAR_ATTACK_AVATAR_DAMAGE = 41;
ANTI_CHEAT_ACTION_FORBID_LOGIN = 42;
}
@@ -5,458 +5,458 @@ package proto_log;
import "server_only/log/player/player_body_custom.proto";
enum AntiOfflineResultType {
ANTI_OFFLINE_RESULT_NONE = 0;
ANTI_OFFLINE_RESULT_SUCC = 1;
ANTI_OFFLINE_RESULT_EMPTY = 2;
ANTI_OFFLINE_RESULT_DECRYPT_FAIL = 3;
ANTI_OFFLINE_RESULT_VERIFY_FAIL = 4;
ANTI_OFFLINE_RESULT_NONE = 0;
ANTI_OFFLINE_RESULT_SUCC = 1;
ANTI_OFFLINE_RESULT_EMPTY = 2;
ANTI_OFFLINE_RESULT_DECRYPT_FAIL = 3;
ANTI_OFFLINE_RESULT_VERIFY_FAIL = 4;
}
enum ForbidLoginReason {
FORBID_LOGIN_NONE = 0;
FORBID_LOGIN_CHECKSUM = 1;
FORBID_LOGIN_ANTI_OFFLINE = 2;
FORBID_LOGIN_ENVIRONMENT_ERROR_CODE = 3;
FORBID_LOGIN_SECURITY_LIBRARY = 4;
FORBID_LOGIN_NONE = 0;
FORBID_LOGIN_CHECKSUM = 1;
FORBID_LOGIN_ANTI_OFFLINE = 2;
FORBID_LOGIN_ENVIRONMENT_ERROR_CODE = 3;
FORBID_LOGIN_SECURITY_LIBRARY = 4;
}
message SecurityChannelLog {
uint32 uid = 1;
int32 ret = 2;
uint64 expect_salt = 3;
uint64 actual_salt = 4;
string trans_no = 5;
string report = 6;
uint32 uid = 1;
int32 ret = 2;
uint64 expect_salt = 3;
uint64 actual_salt = 4;
string trans_no = 5;
string report = 6;
}
message AntiCheatBodyAIHash {
uint32 monster_id = 1;
int32 client_hash_value = 2;
int32 server_hash_value = 3;
uint32 monster_id = 1;
int32 client_hash_value = 2;
int32 server_hash_value = 3;
}
message AntiCheatBodyMTP {
string report_type = 1;
uint32 report_value = 2;
string report_type = 1;
uint32 report_value = 2;
}
message AntiCheatBodyChecksumInvalid {
string system_version = 1;
string device_uuid = 2;
string cloud_client_ip = 3;
string platform = 4;
uint32 account_type = 5;
string client_version = 6;
string device_name = 7;
string checksum = 8;
uint32 channel_id = 9;
uint32 sub_channel_id = 10;
string system_version = 1;
string device_uuid = 2;
string cloud_client_ip = 3;
string platform = 4;
uint32 account_type = 5;
string client_version = 6;
string device_name = 7;
string checksum = 8;
uint32 channel_id = 9;
uint32 sub_channel_id = 10;
}
message AntiCheatBodySkillCdWrong {
uint32 avatar_id = 1;
uint32 skill_id = 2;
float skill_cd = 3;
float skill_pass_time = 4;
uint32 max_charge_count = 5;
uint32 cd_list_len = 6;
string ability_name = 7;
string modifier_name = 8;
EntityLog source_entity = 9;
EntityLog target_entity = 10;
uint32 from_player_uid = 11;
uint32 avatar_id = 1;
uint32 skill_id = 2;
float skill_cd = 3;
float skill_pass_time = 4;
uint32 max_charge_count = 5;
uint32 cd_list_len = 6;
string ability_name = 7;
string modifier_name = 8;
EntityLog source_entity = 9;
EntityLog target_entity = 10;
uint32 from_player_uid = 11;
}
message AntiCheatBodyMoveSpeedOverLimit {
enum MoveType {
MOVE_NORMAL = 0;
MOVE_DASH = 1;
MOVE_SWIM = 2;
MOVE_FLY = 3;
MOVE_POWER_FLY = 4;
MOVE_SKIFF_DASH = 5;
MOVE_SKIFF_POWER_DASH = 6;
}
enum MoveType {
MOVE_NORMAL = 0;
MOVE_DASH = 1;
MOVE_SWIM = 2;
MOVE_FLY = 3;
MOVE_POWER_FLY = 4;
MOVE_SKIFF_DASH = 5;
MOVE_SKIFF_POWER_DASH = 6;
}
uint32 avatar_id = 1;
uint32 move_type = 2;
float move_speed = 3;
float move_speed_limit = 4;
float pre_x = 5;
float pre_y = 6;
float pre_z = 7;
float cur_x = 8;
float cur_y = 9;
float cur_z = 10;
uint32 is_only_record_move_count = 11;
uint32 last_refresh_force_move_time = 12;
uint32 force_drag_move_count = 13;
uint32 total_move_count = 14;
uint32 is_kicked_out = 15;
uint32 is_draged_back = 16;
uint32 motion_state = 17;
uint32 record_time = 18;
uint32 record_count = 19;
uint32 avatar_id = 1;
uint32 move_type = 2;
float move_speed = 3;
float move_speed_limit = 4;
float pre_x = 5;
float pre_y = 6;
float pre_z = 7;
float cur_x = 8;
float cur_y = 9;
float cur_z = 10;
uint32 is_only_record_move_count = 11;
uint32 last_refresh_force_move_time = 12;
uint32 force_drag_move_count = 13;
uint32 total_move_count = 14;
uint32 is_kicked_out = 15;
uint32 is_draged_back = 16;
uint32 motion_state = 17;
uint32 record_time = 18;
uint32 record_count = 19;
}
message AntiCheatBodySceneTimeMoveSpeedOverLimit {
uint32 avatar_id = 1;
float move_speed = 2;
float move_speed_limit = 3;
float pre_x = 4;
float pre_y = 5;
float pre_z = 6;
float cur_x = 7;
float cur_y = 8;
float cur_z = 9;
uint32 is_kicked_out = 10;
uint32 is_draged_back = 11;
uint32 motion_state = 12;
uint32 record_scene_time = 13;
uint32 record_time = 14;
uint32 record_count = 15;
uint32 avatar_id = 1;
float move_speed = 2;
float move_speed_limit = 3;
float pre_x = 4;
float pre_y = 5;
float pre_z = 6;
float cur_x = 7;
float cur_y = 8;
float cur_z = 9;
uint32 is_kicked_out = 10;
uint32 is_draged_back = 11;
uint32 motion_state = 12;
uint32 record_scene_time = 13;
uint32 record_time = 14;
uint32 record_count = 15;
}
message AntiCheatBodyAntiOfflineResult {
uint32 result_type = 1;
int32 check_result = 2;
int32 verify_result = 3;
uint32 old_security_level = 4;
uint32 cur_security_level = 5;
uint32 succ_num = 6;
uint32 empty_num = 7;
uint32 decrypt_fail_num = 8;
uint32 verify_fail_num = 9;
uint32 cur_succ_num = 10;
uint32 cur_fail_num = 11;
uint32 account_type = 12;
string account_uid = 13;
uint32 platform_type = 14;
string client_version = 15;
string system_version = 16;
string device_name = 17;
string device_uuid = 18;
uint32 is_editor = 19;
uint32 language_type = 20;
string platform = 21;
string device_info = 22;
uint32 is_guest = 23;
uint32 cloud_client_ip = 24;
string online_id = 25;
string player_login_req_str = 26;
string get_player_token_rsp_str = 27;
uint32 is_in_whitelist = 28;
string psn_id = 29;
uint32 result_type = 1;
int32 check_result = 2;
int32 verify_result = 3;
uint32 old_security_level = 4;
uint32 cur_security_level = 5;
uint32 succ_num = 6;
uint32 empty_num = 7;
uint32 decrypt_fail_num = 8;
uint32 verify_fail_num = 9;
uint32 cur_succ_num = 10;
uint32 cur_fail_num = 11;
uint32 account_type = 12;
string account_uid = 13;
uint32 platform_type = 14;
string client_version = 15;
string system_version = 16;
string device_name = 17;
string device_uuid = 18;
uint32 is_editor = 19;
uint32 language_type = 20;
string platform = 21;
string device_info = 22;
uint32 is_guest = 23;
uint32 cloud_client_ip = 24;
string online_id = 25;
string player_login_req_str = 26;
string get_player_token_rsp_str = 27;
uint32 is_in_whitelist = 28;
string psn_id = 29;
}
message AntiCheatBodyEliteMonsterAbnormalDie {
uint32 scene_id = 1;
EntityLog monster_log = 2;
uint32 reason = 3;
string combat_transaction = 4;
uint32 scene_id = 1;
EntityLog monster_log = 2;
uint32 reason = 3;
string combat_transaction = 4;
}
message AntiCheatBodyAbilityHash {
uint32 entity_type = 1;
uint32 id = 2;
uint32 group_id = 3;
uint32 config_id = 4;
int32 client_hash_value = 5;
int32 server_hash_value = 6;
repeated string ability_name_list = 7;
int32 prev_server_hash_value = 8;
uint32 entity_id = 9;
uint32 job_id = 10;
uint32 entity_type = 1;
uint32 id = 2;
uint32 group_id = 3;
uint32 config_id = 4;
int32 client_hash_value = 5;
int32 server_hash_value = 6;
repeated string ability_name_list = 7;
int32 prev_server_hash_value = 8;
uint32 entity_id = 9;
uint32 job_id = 10;
}
message AntiCheatBodyEquipAffixCdWrong {
uint32 avatar_id = 1;
uint32 affix_id = 2;
uint32 affix_cd = 3;
uint32 affix_pass_time = 4;
uint32 avatar_id = 1;
uint32 affix_id = 2;
uint32 affix_cd = 3;
uint32 affix_pass_time = 4;
}
message AntiCheatBodyPlayerReport {
uint32 target_uid = 1;
uint32 report_type = 2;
string report_reason = 3;
uint32 reporter_language = 4;
uint32 target_home_module_id = 5;
string target_home_module_name = 6;
uint32 target_uid = 1;
uint32 report_type = 2;
string report_reason = 3;
uint32 reporter_language = 4;
uint32 target_home_module_id = 5;
string target_home_module_name = 6;
}
message AntiCheatBodySegmentCrcCheckFail {
uint32 crc_module_type = 1;
uint32 offset = 2;
uint32 size = 3;
string crc = 4;
string client_version = 6;
uint32 channel_id = 7;
uint32 sub_channel_id = 8;
uint32 crc_module_type = 1;
uint32 offset = 2;
uint32 size = 3;
string crc = 4;
string client_version = 6;
uint32 channel_id = 7;
uint32 sub_channel_id = 8;
}
message AntiCheatBodyMonsterDie {
uint32 scene_id = 1;
EntityLog monster_log = 2;
uint32 reason = 3;
repeated uint32 forbid_die_types = 4;
string combat_transaction = 5;
uint32 scene_id = 1;
EntityLog monster_log = 2;
uint32 reason = 3;
repeated uint32 forbid_die_types = 4;
string combat_transaction = 5;
}
message AntiCheatBodyUseNotAllowedSkill {
uint32 avatar_id = 1;
uint32 skill_id = 2;
uint32 last_used_skill_id = 3;
string ability_name = 4;
string modifier_name = 5;
EntityLog source_entity = 6;
EntityLog target_entity = 7;
uint32 from_player_uid = 8;
uint32 avatar_id = 1;
uint32 skill_id = 2;
uint32 last_used_skill_id = 3;
string ability_name = 4;
string modifier_name = 5;
EntityLog source_entity = 6;
EntityLog target_entity = 7;
uint32 from_player_uid = 8;
}
message AntiCheatBodyClientSpeedUpTime {
uint64 last_sent_ms = 1;
float last_unity_engine_time = 2;
uint64 sent_ms = 3;
float unity_engine_time = 4;
float timescale = 5;
float timescale_limit = 6;
uint64 last_sent_ms = 1;
float last_unity_engine_time = 2;
uint64 sent_ms = 3;
float unity_engine_time = 4;
float timescale = 5;
float timescale_limit = 6;
}
message AntiCheatBodyCombatHash {
EntityLog entity_log = 1;
int32 client_hash_value = 2;
int32 server_hash_value = 3;
EntityLog entity_log = 1;
int32 client_hash_value = 2;
int32 server_hash_value = 3;
}
message AntiCheatBodyGadgetInteractBeyondDistance {
EntityLog gadget_entity = 1;
uint32 avatar_id = 2;
PositionLog avatar_position = 3;
uint32 gadget_entity_id = 4;
uint32 op_type = 5;
uint32 resin_cost_type = 6;
float distance = 7;
float check_distance = 8;
uint32 record_time = 9;
uint32 record_count = 10;
EntityLog gadget_entity = 1;
uint32 avatar_id = 2;
PositionLog avatar_position = 3;
uint32 gadget_entity_id = 4;
uint32 op_type = 5;
uint32 resin_cost_type = 6;
float distance = 7;
float check_distance = 8;
uint32 record_time = 9;
uint32 record_count = 10;
}
message AntiCheatBodySafeFloatException {
string report_type = 1;
string report_value = 2;
string report_type = 1;
string report_value = 2;
}
message AntiCheatBodyEnvironmentError {
string code_str = 1;
bool is_kick = 2;
string player_login_req_str = 3;
string code_str = 1;
bool is_kick = 2;
string player_login_req_str = 3;
}
message AntiCheatBodyDamageOverLimit {
AttackEntityLog attack_entity = 1;
AttackEntityLog defense_entity = 2;
string attack_tag = 3;
string ability_name = 4;
string modifier_name = 5;
float damage_percentage = 6;
float damage_percentage_ratio = 7;
float damage_extra = 8;
float damage = 9;
float critical_hurt = 10;
float amplify_ratio = 11;
AttackEntityLog attack_entity = 1;
AttackEntityLog defense_entity = 2;
string attack_tag = 3;
string ability_name = 4;
string modifier_name = 5;
float damage_percentage = 6;
float damage_percentage_ratio = 7;
float damage_extra = 8;
float damage = 9;
float critical_hurt = 10;
float amplify_ratio = 11;
}
message BriefMotionLog {
uint32 brief_motion_state = 1;
uint32 brief_speed = 2;
uint32 brief_motion_state = 1;
uint32 brief_speed = 2;
}
message AntiCheatBodyClientReportMoveSpeedOverLimit {
repeated BriefMotionLog brief_motion_list = 1;
PositionLog pos = 2;
uint32 motion_state = 3;
repeated uint32 brief_motion_state_list = 4;
repeated uint32 brief_speed_list = 5;
uint32 brief_motion_state = 6;
uint32 brief_speed = 7;
uint32 brief_acc = 8;
repeated BriefMotionLog brief_motion_list = 1;
PositionLog pos = 2;
uint32 motion_state = 3;
repeated uint32 brief_motion_state_list = 4;
repeated uint32 brief_speed_list = 5;
uint32 brief_motion_state = 6;
uint32 brief_speed = 7;
uint32 brief_acc = 8;
}
message AntiCheatBodyAvatarExcelHash {
uint32 avatar_id = 1;
string hash_str = 2;
int32 server_hash = 3;
int32 client_hash = 4;
uint32 avatar_id = 1;
string hash_str = 2;
int32 server_hash = 3;
int32 client_hash = 4;
}
message AntiCheatBodyClientLoadingCostumeVerification {
uint32 uid = 1;
uint64 guid = 2;
uint32 avatar_type = 3;
uint32 avatar_id = 4;
uint32 costume_id = 5;
uint32 cur_costume_id = 6;
bool is_has_costume = 7;
uint64 prefab_hash = 8;
uint64 server_hash = 9;
uint32 uid = 1;
uint64 guid = 2;
uint32 avatar_type = 3;
uint32 avatar_id = 4;
uint32 costume_id = 5;
uint32 cur_costume_id = 6;
bool is_has_costume = 7;
uint64 prefab_hash = 8;
uint64 server_hash = 9;
}
message AntiCheatBodyQiandaoguaCheckFail {
uint32 attack_count = 1;
uint32 frame_num = 2;
uint32 attack_id = 3;
EntityLog source_entity = 4;
EntityLog target_entity = 5;
uint32 gadget_damage_action_idx = 7;
string anim_event_id = 8;
string ability_name = 9;
string modifier_name = 10;
int32 local_id = 11;
string attack_tag = 12;
EntityLog ability_owner = 13;
uint32 attack_count = 1;
uint32 frame_num = 2;
uint32 attack_id = 3;
EntityLog source_entity = 4;
EntityLog target_entity = 5;
uint32 gadget_damage_action_idx = 7;
string anim_event_id = 8;
string ability_name = 9;
string modifier_name = 10;
int32 local_id = 11;
string attack_tag = 12;
EntityLog ability_owner = 13;
}
message AntiCheatBodyMouseMacroClientReport {
uint32 param = 1;
uint32 param = 1;
}
message AntiCheatBodyClientTickTimeCheckFail {
uint64 pivot_client_time = 1;
uint64 pivot_unix_time = 2;
uint64 client_total_tick_time = 3;
uint64 unix_time = 4;
uint64 total_tick_max_delay_time = 5;
int64 delta_server_time = 6;
int64 delta_client_time = 7;
uint64 pivot_client_time = 1;
uint64 pivot_unix_time = 2;
uint64 client_total_tick_time = 3;
uint64 unix_time = 4;
uint64 total_tick_max_delay_time = 5;
int64 delta_server_time = 6;
int64 delta_client_time = 7;
}
message AntiCheatBodyClientSgvCheckFail {
EntityLog entity_log = 1;
uint32 entity_id = 2;
string sgv = 3;
uint32 last_enable_time = 4;
uint32 timeout_seconds = 5;
EntityLog entity_log = 1;
uint32 entity_id = 2;
string sgv = 3;
uint32 last_enable_time = 4;
uint32 timeout_seconds = 5;
}
message AntiCheatBodyStaminaCheckFail {
EntityLog entity_log = 1;
int32 stamina = 2;
uint32 change_type = 3;
uint32 motion_state = 4;
uint32 skill_id = 5;
string ability_name = 6;
string modifier_name = 7;
int32 local_id = 8;
uint32 prop_change_reason = 9;
EntityLog entity_log = 1;
int32 stamina = 2;
uint32 change_type = 3;
uint32 motion_state = 4;
uint32 skill_id = 5;
string ability_name = 6;
string modifier_name = 7;
int32 local_id = 8;
uint32 prop_change_reason = 9;
}
message AntiCheatBodyClientFightReport {
uint32 cheat_type = 1;
uint32 cheat_count = 2;
uint32 cheat_type = 1;
uint32 cheat_count = 2;
}
message AntiCheatBodyClientProtoError {
uint32 proto_error_type = 1;
uint32 proto_error_type = 1;
}
message AntiCheatBodyUnionExceedFreq {
uint32 union_notify_freq = 1;
uint32 combat_notify_freq = 2;
uint32 sub_total_union_freq = 3;
uint32 cheat_count = 4;
bool is_kick = 5;
uint32 union_notify_freq = 1;
uint32 combat_notify_freq = 2;
uint32 sub_total_union_freq = 3;
uint32 cheat_count = 4;
bool is_kick = 5;
}
message AntiCheatBodyReliquaryUpgradeError {
uint64 guid = 1;
uint32 item_id = 2;
uint32 level = 3;
uint64 guid = 1;
uint32 item_id = 2;
uint32 level = 3;
}
message AntiCheatBodyPacketCostTimeExceedLimit {
uint32 cmd_id = 1;
string cmd_name = 2;
int32 retcode = 3;
uint32 packet_cost_time_us = 4;
uint32 cost_time_limit_us = 5;
uint32 cmd_id = 1;
string cmd_name = 2;
int32 retcode = 3;
uint32 packet_cost_time_us = 4;
uint32 cost_time_limit_us = 5;
}
message PacketCountInfoLog {
uint32 cmd_id = 1;
string cmd_name = 2;
uint32 cmd_count = 3;
uint32 cmd_id = 1;
string cmd_name = 2;
uint32 cmd_count = 3;
}
message AntiCheatBodyRecvPacketFreqExceedLimit {
uint32 packet_count = 1;
uint32 time_interval_ms = 2;
repeated PacketCountInfoLog packet_list = 3;
uint32 packet_recv_max_count = 4;
uint32 packet_recv_check_interval_ms = 5;
uint32 packet_count = 1;
uint32 time_interval_ms = 2;
repeated PacketCountInfoLog packet_list = 3;
uint32 packet_recv_max_count = 4;
uint32 packet_recv_check_interval_ms = 5;
}
message AntiCheatBodySinglePacketFreqExceedLimit {
uint32 cmd_id = 1;
string cmd_name = 2;
uint32 packet_count = 3;
uint32 time_interval_ms = 4;
float config_freq_limit = 5;
uint32 cmd_id = 1;
string cmd_name = 2;
uint32 packet_count = 3;
uint32 time_interval_ms = 4;
float config_freq_limit = 5;
}
message AntiCheatBodyGadgetInteractBeyondCheckDistance {
float min_distance = 1;
float max_distance = 2;
float check_distance = 3;
uint32 record_time = 4;
uint32 record_count = 5;
float min_distance = 1;
float max_distance = 2;
float check_distance = 3;
uint32 record_time = 4;
uint32 record_count = 5;
}
message AntiCheatBodyLuaShellClientNotifyTimeout {
uint32 use_type = 1;
uint32 lua_shell_id = 2;
bool is_kick = 3;
string check_json_key = 4;
uint32 use_type = 1;
uint32 lua_shell_id = 2;
bool is_kick = 3;
string check_json_key = 4;
}
message AntiCheatBodyPacketCostTimePercentExceedLimit {
uint64 check_interval_ms = 1;
uint64 config_check_interval_ms = 2;
uint64 config_cost_time_percent = 3;
uint64 accumulate_packet_cost_time_ms = 4;
uint32 config_is_enable_kick = 5;
uint32 config_kick_time_percent = 6;
bool is_kick = 7;
uint32 trigger_kick_count = 8;
uint64 check_interval_ms = 1;
uint64 config_check_interval_ms = 2;
uint64 config_cost_time_percent = 3;
uint64 accumulate_packet_cost_time_ms = 4;
uint32 config_is_enable_kick = 5;
uint32 config_kick_time_percent = 6;
bool is_kick = 7;
uint32 trigger_kick_count = 8;
}
message AntiCheatBodySecurityLibraryMd5Error {
enum CheckResultType {
RESULT_NONE = 0;
RESULT_INVALID_VERSION = 1;
RESULT_VERSION_DISABLED = 2;
RESULT_INVALID_MD5 = 3;
}
enum CheckResultType {
RESULT_NONE = 0;
RESULT_INVALID_VERSION = 1;
RESULT_VERSION_DISABLED = 2;
RESULT_INVALID_MD5 = 3;
}
int32 check_result = 1;
bool is_kick = 2;
string report_version_str = 3;
string report_md5_str = 4;
int32 check_result = 1;
bool is_kick = 2;
string report_version_str = 3;
string report_md5_str = 4;
}
message AntiCheatBodyAvatarAttackAvatarDamage {
AttackEntityLog attack_entity = 1;
AttackEntityLog defense_entity = 2;
string attack_tag = 3;
string ability_name = 4;
string modifier_name = 5;
uint32 target_type = 6;
string anim_event_id = 7;
float client_damage = 8;
float ori_server_damage = 9;
float final_server_damage = 10;
AttackEntityLog attack_entity = 1;
AttackEntityLog defense_entity = 2;
string attack_tag = 3;
string ability_name = 4;
string modifier_name = 5;
uint32 target_type = 6;
string anim_event_id = 7;
float client_damage = 8;
float ori_server_damage = 9;
float final_server_damage = 10;
}
message AntiCheatBodyForbidLogin {
uint32 reason = 1;
uint32 reason = 1;
}
@@ -3,16 +3,16 @@ syntax = "proto3";
package proto_log;
message AntiCheatLogHead {
string time = 1;
uint32 action_id = 2;
string region_name = 3;
string game_version = 4;
uint32 uid = 5;
uint32 level = 6;
uint64 vip_point = 7;
uint32 vip_level = 8;
bool is_in_mp = 9;
repeated uint32 mp_teammate_list = 10;
uint32 scene_id = 11;
uint32 tag = 12;
string time = 1;
uint32 action_id = 2;
string region_name = 3;
string game_version = 4;
uint32 uid = 5;
uint32 level = 6;
uint64 vip_point = 7;
uint32 vip_level = 8;
bool is_in_mp = 9;
repeated uint32 mp_teammate_list = 10;
uint32 scene_id = 11;
uint32 tag = 12;
}
@@ -3,8 +3,8 @@ syntax = "proto3";
package proto_log;
enum GCGStatActionType {
GCG_STAT_ACTION_NONE = 0;
GCG_STAT_ACTION_DUEL_START = 1;
GCG_STAT_ACTION_DUEL_END = 2;
GCG_STAT_ACTION_DUEL_REPLAY = 3;
GCG_STAT_ACTION_NONE = 0;
GCG_STAT_ACTION_DUEL_START = 1;
GCG_STAT_ACTION_DUEL_END = 2;
GCG_STAT_ACTION_DUEL_REPLAY = 3;
}
@@ -3,71 +3,71 @@ syntax = "proto3";
package proto_log;
enum GCGOperationType {
GCG_OPERATION_TYPE_NONE = 0;
GCG_OPERATION_TYPE_DRAW = 1;
GCG_OPERATION_TYPE_REDRAW = 2;
GCG_OPERATION_TYPE_SELECT_ON_STAGE = 3;
GCG_OPERATION_TYPE_ROLL = 4;
GCG_OPERATION_TYPE_PLAY_CARD = 5;
GCG_OPERATION_TYPE_ATTACK = 6;
GCG_OPERATION_TYPE_REBOOT = 7;
GCG_OPERATION_TYPE_PASS = 8;
GCG_OPERATION_TYPE_REACTION = 9;
GCG_OPERATION_TYPE_NONE = 0;
GCG_OPERATION_TYPE_DRAW = 1;
GCG_OPERATION_TYPE_REDRAW = 2;
GCG_OPERATION_TYPE_SELECT_ON_STAGE = 3;
GCG_OPERATION_TYPE_ROLL = 4;
GCG_OPERATION_TYPE_PLAY_CARD = 5;
GCG_OPERATION_TYPE_ATTACK = 6;
GCG_OPERATION_TYPE_REBOOT = 7;
GCG_OPERATION_TYPE_PASS = 8;
GCG_OPERATION_TYPE_REACTION = 9;
}
message GCGLogBodyDuelStart {
uint32 type = 1;
uint32 level_id = 2;
uint32 type = 1;
uint32 level_id = 2;
}
message GCGUseTime {
uint32 round = 1;
uint32 use_time = 2;
uint32 round = 1;
uint32 use_time = 2;
}
message GCGControllerInfo {
uint32 uid = 1;
uint32 controller_id = 2;
uint32 level = 3;
uint32 mmr = 4;
uint32 uid = 1;
uint32 controller_id = 2;
uint32 level = 3;
uint32 mmr = 4;
}
message GCGControllerDeckInfo {
uint32 controller_id = 1;
repeated uint32 card_id_list = 2;
uint32 controller_id = 1;
repeated uint32 card_id_list = 2;
}
message GCGCharacterInfo {
uint32 card_id = 1;
uint32 hp = 2;
uint32 card_id = 1;
uint32 hp = 2;
}
message GCGControllerCharactersInfo {
uint32 controller_id = 1;
repeated GCGCharacterInfo character_info_list = 2;
uint32 controller_id = 1;
repeated GCGCharacterInfo character_info_list = 2;
}
message GCGOperationData {
uint32 operation_type = 1;
uint32 controller_id = 2;
uint32 round = 3;
uint32 param1 = 4;
repeated uint32 paramlist = 5;
uint32 operation_type = 1;
uint32 controller_id = 2;
uint32 round = 3;
uint32 param1 = 4;
repeated uint32 paramlist = 5;
}
message GCGLogBodyDuelEnd {
uint32 type = 1;
uint32 level_id = 2;
uint32 total_use_time = 3;
repeated GCGUseTime use_time_list = 4;
uint32 winner = 5;
uint32 reason = 6;
repeated GCGControllerInfo controller_info_list = 7;
repeated GCGControllerDeckInfo controller_deck_info_list = 8;
repeated GCGControllerCharactersInfo controller_character_info_map = 9;
repeated GCGOperationData operation_data_list = 10;
uint32 type = 1;
uint32 level_id = 2;
uint32 total_use_time = 3;
repeated GCGUseTime use_time_list = 4;
uint32 winner = 5;
uint32 reason = 6;
repeated GCGControllerInfo controller_info_list = 7;
repeated GCGControllerDeckInfo controller_deck_info_list = 8;
repeated GCGControllerCharactersInfo controller_character_info_map = 9;
repeated GCGOperationData operation_data_list = 10;
}
message GCGLogBodyDuelReplay {
string replay_json_str = 1;
string replay_json_str = 1;
}
@@ -3,10 +3,10 @@ syntax = "proto3";
package proto_log;
message GCGLogHead {
string time = 1;
string trans_no = 2;
uint32 action_id = 3;
string action_name = 4;
uint32 sub_action_id = 5;
string sub_action_name = 6;
string time = 1;
string trans_no = 2;
uint32 action_id = 3;
string action_name = 4;
uint32 sub_action_id = 5;
string sub_action_name = 6;
}
@@ -3,6 +3,6 @@ syntax = "proto3";
package proto_log;
enum MailActionType {
MAIL_ACTION_NONE = 0;
MAIL_ACTION_COMMON = 1;
MAIL_ACTION_NONE = 0;
MAIL_ACTION_COMMON = 1;
}
@@ -3,77 +3,77 @@ syntax = "proto3";
package proto_log;
enum MailOpType {
MAIL_OP_NONE = 0;
MAIL_OP_ADD = 1;
MAIL_OP_DEL = 2;
MAIL_OP_READ = 3;
MAIL_OP_TAKE_ATTACHMENT = 4;
MAIL_OP_STAR = 5;
MAIL_OP_UNSTAR = 6;
MAIL_OP_SET_COLLECT_STATE = 7;
MAIL_OP_NONE = 0;
MAIL_OP_ADD = 1;
MAIL_OP_DEL = 2;
MAIL_OP_READ = 3;
MAIL_OP_TAKE_ATTACHMENT = 4;
MAIL_OP_STAR = 5;
MAIL_OP_UNSTAR = 6;
MAIL_OP_SET_COLLECT_STATE = 7;
}
enum MailOpReason {
MAIL_REASON_NONE = 0;
MAIL_REASON_BY_GAME = 1;
MAIL_REASON_BY_MUIP = 2;
MAIL_REASON_BY_CLIENT = 3;
MAIL_REASON_FULL = 4;
MAIL_REASON_COLLECTED_FULL = 5;
MAIL_REASON_NONE = 0;
MAIL_REASON_BY_GAME = 1;
MAIL_REASON_BY_MUIP = 2;
MAIL_REASON_BY_CLIENT = 3;
MAIL_REASON_FULL = 4;
MAIL_REASON_COLLECTED_FULL = 5;
}
enum MailSourceType {
MAIL_SOURCE_NONE = 0;
MAIL_SOURCE_PLATFORM = 1;
MAIL_SOURCE_LOGIN_REWARD = 2;
MAIL_SOURCE_TOWER = 3;
MAIL_SOURCE_BAG_OVERFLOW = 4;
MAIL_SOURCE_CARD_PRODUCT = 5;
MAIL_SOURCE_BATTLE_PASS_FINISH_SCHEDULE = 6;
MAIL_SOURCE_REBATE = 7;
MAIL_SOURCE_BIRTHDAY_BENEFIT = 8;
MAIL_SOURCE_CDKEY = 9;
MAIL_SOURCE_RECHARGE_PACKAGE = 10;
MAIL_SOURCE_RECHARGE_CARD_REMIND = 11;
MAIL_SOURCE_ACTIVITY_COND = 12;
MAIL_SOURCE_BATTLE_PASS_NOTIFY = 13;
MAIL_SOURCE_RECHARGE_GOOGLE_GIFT_CARD = 14;
MAIL_SOURCE_GM = 15;
MAIL_SOURCE_SEND_CONCERT_PRODUCT_BY_MUIP = 16;
MAIL_SOURCE_RECHARGE_APPLE_GIFT_CARD = 17;
MAIL_SOURCE_RECHARGE_PSN_COMPENSATION = 18;
MAIL_SOURCE_QUESTIONNAIRE = 19;
MAIL_SOURCE_AVATAR_RENAME_AUDIT_FAILED = 20;
MAIL_SOURCE_AVATAR_RENAME_RESET = 21;
MAIL_SOURCE_NONE = 0;
MAIL_SOURCE_PLATFORM = 1;
MAIL_SOURCE_LOGIN_REWARD = 2;
MAIL_SOURCE_TOWER = 3;
MAIL_SOURCE_BAG_OVERFLOW = 4;
MAIL_SOURCE_CARD_PRODUCT = 5;
MAIL_SOURCE_BATTLE_PASS_FINISH_SCHEDULE = 6;
MAIL_SOURCE_REBATE = 7;
MAIL_SOURCE_BIRTHDAY_BENEFIT = 8;
MAIL_SOURCE_CDKEY = 9;
MAIL_SOURCE_RECHARGE_PACKAGE = 10;
MAIL_SOURCE_RECHARGE_CARD_REMIND = 11;
MAIL_SOURCE_ACTIVITY_COND = 12;
MAIL_SOURCE_BATTLE_PASS_NOTIFY = 13;
MAIL_SOURCE_RECHARGE_GOOGLE_GIFT_CARD = 14;
MAIL_SOURCE_GM = 15;
MAIL_SOURCE_SEND_CONCERT_PRODUCT_BY_MUIP = 16;
MAIL_SOURCE_RECHARGE_APPLE_GIFT_CARD = 17;
MAIL_SOURCE_RECHARGE_PSN_COMPENSATION = 18;
MAIL_SOURCE_QUESTIONNAIRE = 19;
MAIL_SOURCE_AVATAR_RENAME_AUDIT_FAILED = 20;
MAIL_SOURCE_AVATAR_RENAME_RESET = 21;
}
message MailItem {
uint32 item_id = 1;
uint32 item_count = 2;
uint32 level = 3;
uint32 promote_level = 4;
uint32 item_id = 1;
uint32 item_count = 2;
uint32 level = 3;
uint32 promote_level = 4;
}
message MailLogBodyCommon {
uint32 op_type = 1;
uint32 op_reason = 2;
uint32 uid = 3;
uint32 mail_id = 4;
string title = 5;
string content = 6;
string sender = 7;
uint32 send_time = 8;
uint32 expire_time = 9;
repeated MailItem item_list = 10;
uint32 importance = 11;
uint32 config_id = 12;
repeated string argument_list = 13;
uint32 reason_type = 14;
uint32 item_limit_type = 15;
uint32 source_type = 16;
string tag = 17;
bool is_read = 18;
bool is_attachment_got = 19;
bool is_star = 20;
uint32 collect_state = 21;
uint32 op_type = 1;
uint32 op_reason = 2;
uint32 uid = 3;
uint32 mail_id = 4;
string title = 5;
string content = 6;
string sender = 7;
uint32 send_time = 8;
uint32 expire_time = 9;
repeated MailItem item_list = 10;
uint32 importance = 11;
uint32 config_id = 12;
repeated string argument_list = 13;
uint32 reason_type = 14;
uint32 item_limit_type = 15;
uint32 source_type = 16;
string tag = 17;
bool is_read = 18;
bool is_attachment_got = 19;
bool is_star = 20;
uint32 collect_state = 21;
}
@@ -3,9 +3,9 @@ syntax = "proto3";
package proto_log;
message MailLogHead {
string time = 1;
uint32 action_id = 2;
string action_name = 3;
uint32 sub_action_id = 4;
string sub_action_name = 5;
string time = 1;
uint32 action_id = 2;
string action_name = 3;
uint32 sub_action_id = 4;
string sub_action_name = 5;
}

Some files were not shown because too many files have changed in this diff Show More