mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-03-01 00:35:36 +08:00
完善客户端协议
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package proto;
|
||||
|
||||
option go_package = "./;proto";
|
||||
|
||||
import "define.proto";
|
||||
|
||||
message AranaraCollectionSuite {
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
message CataLogFinishedGlobalWatcherAllDataNotify {
|
||||
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;
|
||||
}
|
||||
|
||||
message CataLogNewFinishedGlobalWatcherNotify {
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user