diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-04 20:16:42 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-04 20:16:42 +0200 |
commit | 268e080ec1b11e75309c3b134e16cf6ea7004ac6 (patch) | |
tree | 6cf54c91b4575494f1f2c2feb7790aadae817eb7 /proto/bot_api.proto | |
parent | bbed87755419f97b0ee8967617af0c6573c168af (diff) | |
parent | 7a3b801f58752a78b65e3e7e7b998b6479f980f7 (diff) | |
download | planetwars.dev-268e080ec1b11e75309c3b134e16cf6ea7004ac6.tar.xz planetwars.dev-268e080ec1b11e75309c3b134e16cf6ea7004ac6.zip |
Merge branch 'bot-api' into next
Diffstat (limited to 'proto/bot_api.proto')
-rw-r--r-- | proto/bot_api.proto | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/proto/bot_api.proto b/proto/bot_api.proto new file mode 100644 index 0000000..08839f0 --- /dev/null +++ b/proto/bot_api.proto @@ -0,0 +1,36 @@ +syntax = "proto3"; + +package grpc.planetwars.bot_api; + +message Hello { + string hello_message = 1; +} + +message HelloResponse { + string response = 1; +} + +message PlayerRequest { + int32 request_id = 1; + bytes content = 2; +} + +message PlayerRequestResponse { + int32 request_id = 1; + bytes content = 2; +} + +message MatchRequest { + string opponent_name = 1; +} + +message CreatedMatch { + int32 match_id = 1; + string player_key = 2; +} + +service BotApiService { + rpc CreateMatch(MatchRequest) returns (CreatedMatch); + // server sends requests to the player, player responds + rpc ConnectBot(stream PlayerRequestResponse) returns (stream PlayerRequest); +} |