message.proto 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. syntax = "proto3";
  2. package pb;
  3. option go_package = "/pb";
  4. import "commands.proto";
  5. /*
  6. 聊天信息
  7. */
  8. message ChatMsg {
  9. string client_id = 1; // 接收者id
  10. string input = 2; // 输入内容
  11. }
  12. /*
  13. 玩家基本信息
  14. */
  15. message IdInfo {
  16. string id = 1; // id
  17. int32 game_id = 2; // game id
  18. }
  19. message ArrayIdInfo {
  20. repeated IdInfo id_infos = 1;
  21. }
  22. /*
  23. 聊天记录
  24. */
  25. message ChatLog {
  26. string content = 3; // 聊天内容
  27. int64 time_stamp = 4; // 时间戳
  28. int32 game_id = 5; // 游戏id
  29. bool from_player = 6; // 是否是玩家发言
  30. }
  31. message ArrayChatLog {
  32. repeated ChatLog data_list = 1;
  33. }
  34. /*
  35. 命令消息
  36. */
  37. message CommandMsg {
  38. ECommand cmd_type = 1; // 命令类型
  39. int32 cmd_val = 2; // 通用val
  40. string cmd_str = 3; // 通用str
  41. oneof buff {
  42. ChatMsg chat_msg = 4;
  43. IdInfo id_info = 5;
  44. ArrayIdInfo array_id_info = 6;
  45. ArrayChatLog array_chat_log = 7;
  46. }
  47. }