communication.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package core
  2. import (
  3. "call_center/call/rpc/internal/role"
  4. "call_center/call/rpc/pb"
  5. "log"
  6. )
  7. type Communication struct {
  8. }
  9. func (sel *Communication) _protoToClient(stream interface{}, proto *pb.ClientMsgRes) error {
  10. var err error
  11. ss := stream.(pb.Call_ClientLoginServer)
  12. err = ss.Send(proto)
  13. if err != nil {
  14. log.Println("<_protoToClient> error: ", err)
  15. return err
  16. }
  17. return nil
  18. }
  19. func (sel *Communication) _protoToService(stream interface{}, proto *pb.ServiceMsgRes) error {
  20. var err error
  21. ss := stream.(pb.Call_ServiceLoginServer)
  22. err = ss.Send(proto)
  23. if err != nil {
  24. log.Println("<_protoToService> error: ", err)
  25. return err
  26. }
  27. return nil
  28. }
  29. func (sel *Communication) QuickBuildCmdMsg(cmdType interface{}, val int32, str string) *pb.CommandMsg {
  30. var cmd = new(pb.CommandMsg)
  31. cmd.CmdType = cmdType.(pb.ECommand)
  32. cmd.CmdVal = val
  33. cmd.CmdStr = str
  34. return cmd
  35. }
  36. func (sel *Communication) CmdToService(stream interface{}, cmd *pb.CommandMsg) error {
  37. var res = new(pb.ServiceMsgRes)
  38. res.Cmd = append(res.Cmd, cmd)
  39. if cmd.CmdType != pb.ECommand_MSG_HEART_BEAT {
  40. log.Println("[DEBUG]<CmdToService> type:", cmd.CmdType, " cmd:", cmd)
  41. }
  42. return sel._protoToService(stream, res)
  43. }
  44. func (sel *Communication) CmdToClient(stream interface{}, cmd *pb.CommandMsg) error {
  45. var res = new(pb.ClientMsgRes)
  46. res.Cmd = append(res.Cmd, cmd)
  47. if cmd.CmdType != pb.ECommand_MSG_HEART_BEAT {
  48. log.Println("[DEBUG]<CmdToClient> type:", cmd)
  49. }
  50. return sel._protoToClient(stream, res)
  51. }
  52. func (sel *Communication) CmdBroadcastService(arrayService []interface{}, cmd *pb.CommandMsg) {
  53. for _, pInst := range arrayService {
  54. service := pInst.(*role.Service)
  55. stream := service.Stream
  56. err := sel.CmdToService(stream, cmd)
  57. if err != nil {
  58. log.Println("<Communication.CmdBroadcastService> send failed, id:", service.Id, "error:", err)
  59. continue
  60. }
  61. }
  62. }
  63. func (sel *Communication) CmdBroadcastClient(arrayPlayer []interface{}, cmd *pb.CommandMsg) {
  64. for _, pInst := range arrayPlayer {
  65. player := pInst.(*role.Player)
  66. stream := player.Stream
  67. err := sel.CmdToClient(stream, cmd)
  68. if err != nil {
  69. log.Println("<Communication.MsgBroadcastClient> send failed, id:", player.Id, "error:", err)
  70. continue
  71. }
  72. }
  73. }
  74. func (sel *Communication) MsgToClient(stream interface{}, content string, sendId string) error {
  75. var proto = new(pb.ClientMsgRes)
  76. var cmd = new(pb.CommandMsg)
  77. cmd.CmdType = pb.ECommand_SEND_MSG
  78. cmd.Buff = &pb.CommandMsg_ChatMsg{ChatMsg: &pb.ChatMsg{Input: content, ClientId: sendId}}
  79. proto.Cmd = append(proto.Cmd, cmd)
  80. return sel._protoToClient(stream, proto)
  81. }
  82. func (sel *Communication) MsgToService(stream interface{}, content string, sendId string) error {
  83. var proto = new(pb.ServiceMsgRes)
  84. var cmd = new(pb.CommandMsg)
  85. cmd.CmdType = pb.ECommand_SEND_MSG
  86. cmd.Buff = &pb.CommandMsg_ChatMsg{ChatMsg: &pb.ChatMsg{Input: content, ClientId: sendId}}
  87. proto.Cmd = append(proto.Cmd, cmd)
  88. return sel._protoToService(stream, proto)
  89. }
  90. func (sel *Communication) ServiceHeartBeat(stream interface{}) error {
  91. cmd := sel.QuickBuildCmdMsg(pb.ECommand_MSG_HEART_BEAT, 0, "")
  92. return sel.CmdToService(stream, cmd)
  93. }
  94. func (sel *Communication) PlayerHeartBeat(player *role.Player) error {
  95. var err error
  96. stream := player.Stream
  97. cmd := sel.QuickBuildCmdMsg(pb.ECommand_MSG_HEART_BEAT, 0, "")
  98. err = sel.CmdToClient(stream, cmd)
  99. if err != nil {
  100. return err
  101. }
  102. return err
  103. }
  104. func (sel *Communication) WaitQueueInfoUpdate(waitPlayers, noticedService []interface{}) {
  105. if len(noticedService) == 0 {
  106. return
  107. }
  108. cmdMsg := new(pb.CommandMsg)
  109. arrayIdInfo := pb.CommandMsg_ArrayIdInfo{ArrayIdInfo: &pb.ArrayIdInfo{}}
  110. for _, pInst := range waitPlayers {
  111. player := pInst.(*role.Player)
  112. arrayIdInfo.ArrayIdInfo.IdInfos = append(arrayIdInfo.ArrayIdInfo.IdInfos, &pb.IdInfo{Id: player.Id, GameId: player.GameId})
  113. }
  114. cmdMsg.Buff = &arrayIdInfo
  115. cmdMsg.CmdType = pb.ECommand_ON_PLAYER_WAIT_QUEUE_INFO
  116. sel.CmdBroadcastService(noticedService, cmdMsg)
  117. }
  118. func (sel *Communication) WaitQueueLenUpdate(waitPlayers []interface{}) {
  119. if len(waitPlayers) == 0 {
  120. return
  121. }
  122. cmdMsg := new(pb.CommandMsg)
  123. cmdMsg.CmdType = pb.ECommand_ON_PLAYER_WAIT_QUEUE_LEN
  124. for idx, pInst := range waitPlayers {
  125. cmdMsg.CmdVal = int32(idx)
  126. player := pInst.(*role.Player)
  127. stream := player.Stream
  128. err := sel.CmdToClient(stream, cmdMsg)
  129. if err != nil {
  130. log.Println("<Communication.WaitQueueLenUpdate> error: ", err)
  131. continue
  132. }
  133. }
  134. }
  135. func (sel *Communication) PushHangUpList(service *role.Service) {
  136. hangUpCmd := sel.QuickBuildCmdMsg(pb.ECommand_ON_SERVICE_HANG_UP_LIST, 0, "")
  137. arrayIdInfo := pb.CommandMsg_ArrayIdInfo{ArrayIdInfo: &pb.ArrayIdInfo{}}
  138. arrayIdInfo.ArrayIdInfo.IdInfos = service.HangUpList
  139. hangUpCmd.Buff = &arrayIdInfo
  140. err := sel.CmdToService(service.Stream, hangUpCmd)
  141. if err != nil {
  142. log.Println("<Communication.PushHangUpList>, err:", err, " serviceId:", service.Id)
  143. }
  144. }