123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- syntax = "proto3";
- package ET;
- import 'Player.proto';
- message HttpGetRouterResponse
- {
- repeated string Realms = 1;
- repeated string Routers = 2;
- }
- message RouterSync
- {
- uint32 ConnectId = 1;
- string Address = 2;
- }
- message C2M_TestRequest
- {
- int32 RpcId = 1;
- string request = 2;
- }
- message M2C_TestResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- string response = 4;
- }
- message Actor_TransferRequest
- {
- int32 RpcId = 1;
- int32 MapIndex = 2;
- }
- message Actor_TransferResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message C2G_EnterMap
- {
- int32 RpcId = 1;
- int64 InstanceId = 2;
- }
- message G2C_EnterMap
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 MapInstanceId = 4;
- }
- message C2G_EnterSceneReady
- {
- int32 RpcId = 1;
- }
- message G2C_EnterSceneReady
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message MoveInfo
- {
- repeated Unity.Mathematics.float3 Points = 1;
- Unity.Mathematics.quaternion Rotation = 2;
- int32 TurnSpeed = 3;
- }
- message UnitInfo
- {
- int64 UnitId = 1;
- int32 ConfigId = 2;
- int32 Type = 3;
- Unity.Mathematics.float3 Position = 4;
- Unity.Mathematics.float3 Forward = 5;
- map<int32, int64> KV = 6;
- MoveInfo MoveInfo = 7;
- }
- message M2C_CreateUnits
- {
- repeated UnitInfo Units = 1;
- }
- message M2C_CreateMyUnit
- {
- UnitInfo Unit = 1;
- }
- message M2C_StartSceneChange
- {
- int64 SceneInstanceId = 1;
- string SceneName = 2;
- }
- message M2C_RemoveUnits
- {
- repeated int64 Units = 2;
- }
- message C2M_PathfindingResult
- {
- int32 RpcId = 1;
- Unity.Mathematics.float3 Position = 2;
- }
- message M2C_PathfindingResult
- {
- int64 Id = 1;
- Unity.Mathematics.float3 Position = 2;
- repeated Unity.Mathematics.float3 Points = 3;
- }
- message C2M_Stop
- {
- int32 RpcId = 1;
- }
- message M2C_Stop
- {
- int32 Error = 1;
- int64 Id = 2;
- Unity.Mathematics.float3 Position = 3;
- Unity.Mathematics.quaternion Rotation = 4;
- }
- message C2G_Ping
- {
- int32 RpcId = 1;
- }
- message G2C_Ping
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 Time = 4;
- }
- message G2C_Test
- {
- }
- message C2M_Reload
- {
- int32 RpcId = 1;
- string Account = 2;
- string Password = 3;
- }
- message M2C_Reload
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message C2R_Login
- {
- int32 RpcId = 1;
- string RoomId = 2;
- }
- message R2C_Login
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- string Token = 4;
-
- repeated string Address = 5;
- }
- message C2G_LoginGame
- {
- int32 RpcId = 1;
- string Token = 2;
- }
- message G2C_LoginGame
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- PlayerBasic Player = 4;
- }
- message C2G_CreatePlayer
- {
- int32 RpcId = 1;
- int64 UserId = 2;
- string Name = 3;
- int32 Pro = 4;
- int32 Sex = 5;
- }
- message G2C_CreatePlayer
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- Player Player = 4;
- }
- message C2G_BindPlayer
- {
- int32 RpcId = 1;
- int64 PlayerId = 2;
- }
- message G2C_BindPlayer
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- Player Player = 4;
- }
- message C2G_AddUnitsToMap
- {
- int32 RpcId = 1;
- int32 UnitId = 2;
- int32 Force = 3;
- string Flag = 4;
- int32 X = 5;
- int32 Y = 6;
- }
- message G2C_AddUnitsToMap
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message C2G_RemoveUnit
- {
- int32 RpcId = 1;
- int32 UnitId = 2;
- }
- message G2C_RemoveUnit
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message C2G_TriggrBattleFunction
- {
- int32 RpcId = 1;
- int32 TriggerID = 2;
- int32 Value1 = 3;
- int32 Value2 = 4;
- int32 Value3 = 5;
- int32 Value4 = 6;
- int32 Value5 = 7;
- int32 Value6 = 8;
- }
- message G2C_TriggrBattleFunction
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message RankInfo
- {
- string Name = 1;
- int32 Value = 2;
- int32 Ranking = 3;
- }
- message G2C_RankNotify
- {
- repeated RankInfo InfoList = 1;
- }
- message G2C_TestHotfixMessage
- {
- string Info = 1;
- }
- message C2M_TestRobotCase
- {
- int32 RpcId = 1;
- int32 N = 2;
- }
- message M2C_TestRobotCase
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int32 N = 4;
- }
- message C2G_Benchmark
- {
- int32 RpcId = 1;
- }
- message G2C_Benchmark
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message R2C_Disconnect
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message HttpDouyinApiCallbackResponse
- {
- int32 Error = 1;
- string Message = 2;
- }
- message HttpGetVersionResponse
- {
- int32 Error = 1;
- string Message = 2;
- int64 Version = 3;
- string Url = 4;
- }
- message C2G_BattleNotify
- {
- int32 RpcId = 1;
- string Message = 2;
- }
- message G2C_BattleNotify
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
|