condition.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. package core
  2. import (
  3. "call_center/call/rpc/internal/interaction"
  4. "call_center/call/rpc/internal/role"
  5. "call_center/call/rpc/pb"
  6. "errors"
  7. "log"
  8. )
  9. type Condition struct {
  10. }
  11. func (sel *Condition) OnPlayerConnect(server *Server, stream interface{}) (*role.Player, error) {
  12. /*
  13. 玩家连接
  14. */
  15. id := server.MakeId(&stream)
  16. cmd := server.QuickBuildCmdMsg(pb.ECommand_ON_PLAYER_CONNECT, 0, id)
  17. err := server.CmdToClient(stream, cmd)
  18. if err != nil {
  19. return nil, err
  20. }
  21. // record
  22. player := server.ConnPlayer(id, stream)
  23. // 推送当前排队信息
  24. server.WaitQueueLenUpdate([]interface{}{player})
  25. log.Println("<Condition.OnPlayerConnect> stream id:", id)
  26. return player, err
  27. }
  28. func (sel *Condition) OnPlayerDisConnect(server *Server, id string, reason pb.ErrorReason) {
  29. /*
  30. 玩家断开
  31. */
  32. /*
  33. 通知相关
  34. */
  35. cmd := server.QuickBuildCmdMsg(pb.ECommand_ON_PLAYER_DISCONNECT, int32(reason), id)
  36. // 通知玩家离线
  37. player := server.GetPlayer(id)
  38. pStream := player.Stream
  39. if pStream != nil {
  40. err := server.CmdToClient(pStream, cmd)
  41. if err != nil {
  42. log.Printf("<Condition.OnPlayerDisConnect> server.CmdToClient err:%s, id:%s", err, id)
  43. }
  44. }
  45. //如果有对应客服,通知客服玩家离线
  46. service := server.GetServiceByPlayerId(id)
  47. if service != nil && reason != pb.ErrorReason_SERVICE_HEART_BEAT_FAILED {
  48. err := server.CmdToService(service.Stream, cmd)
  49. if err != nil {
  50. log.Printf("<Condition.OnPlayerDisConnect> server.GetService err:%s, id:%s", err, id)
  51. }
  52. // 推送玩家挂断列表
  53. idInfo := pb.IdInfo{GameId: player.GameId, Id: player.Id}
  54. service.HangUpList = append(service.HangUpList, &idInfo)
  55. server.PushHangUpList(service)
  56. }
  57. // 清除玩家记录
  58. server.DisConnPlayer(id)
  59. log.Printf("<Condition.OnPlayerDisConnect> End, id: %s, reason:%d", id, reason)
  60. }
  61. func (sel *Condition) OnServiceConnect(serviceId string, server *Server, stream interface{}, db interaction.InterDb) (*role.Service, error) {
  62. /*
  63. 客服连接
  64. */
  65. id := server.MakeId(&stream)
  66. if serviceId != "" {
  67. id = serviceId
  68. }
  69. cmd := server.QuickBuildCmdMsg(pb.ECommand_ON_SERVICE_CONNECT, 0, id)
  70. err := server.CmdToService(stream, cmd)
  71. if err != nil {
  72. return nil, err
  73. }
  74. // 日志record
  75. service := server.ConnService(id, stream)
  76. // 玩家等待队列通知
  77. server.WaitQueueInfoUpdate(server.waitQueue.GetAll(), []interface{}{service})
  78. // 挂断列表历史记录
  79. recordList := db.GetChatRecord(id)
  80. if recordList != nil {
  81. service.InitHandUpList(recordList)
  82. server.PushHangUpList(service)
  83. }
  84. log.Println("<Condition.OnServiceConnect> id:", id)
  85. return service, nil
  86. }
  87. func (sel *Condition) OnServiceDisConnect(server *Server, id string, errCode pb.ErrorReason) {
  88. /*
  89. 客服断开
  90. */
  91. // 踢出对接中的玩家
  92. {
  93. pidList := server.GetPlayersByServiceId(id)
  94. for _, pid := range pidList {
  95. server.KickPlayer(pid.(string), int32(errCode))
  96. }
  97. }
  98. connPIds := server.DisConnService(id)
  99. for _, pcId := range connPIds {
  100. stream := server.GetPlayerStream(pcId.(string))
  101. if stream == nil {
  102. continue
  103. }
  104. cmd := server.QuickBuildCmdMsg(pb.ECommand_ON_SERVICE_DISCONNECT, int32(errCode), id)
  105. err := server.CmdToClient(stream, cmd)
  106. if err != nil {
  107. continue
  108. }
  109. }
  110. log.Println("<Condition.OnServiceDisConnect> id: ", id)
  111. }
  112. func (sel *Condition) OnPlayerEnterWaitQueue(server *Server, player *role.Player) {
  113. /*
  114. 玩家加入等待队列
  115. */
  116. server.AddWaitQueue(player)
  117. // 更新队列信息to客服
  118. waitPlayers := server.waitQueue.GetAll()
  119. noticeService := server.GetAllService()
  120. server.WaitQueueInfoUpdate(waitPlayers, noticeService)
  121. // 更新排队人数to玩家
  122. queueLen := server.waitQueue.Len()
  123. server.WaitQueueLenUpdate(waitPlayers)
  124. log.Printf("<Condition.OnPlayerEnterWaitQueue> id: %s, queueLen:%d", player.Id, queueLen)
  125. }
  126. func (sel *Condition) OnPlayerQuitWaitQueue(server *Server, player *role.Player) interface{} {
  127. /*
  128. 玩家移除等待队列
  129. */
  130. res := server.RemoveWaitQueue(player)
  131. if res != nil {
  132. // 更新队列信息to客服
  133. waitPlayers := server.waitQueue.GetAll()
  134. noticeService := server.GetAllService()
  135. server.WaitQueueInfoUpdate(waitPlayers, noticeService)
  136. // 更新当前排队人数to玩家
  137. server.WaitQueueLenUpdate(waitPlayers)
  138. }
  139. log.Printf("<Condition.OnPlayerQuitWaitQueue> id:%s, queueLen:%d ", player.Id, server.waitQueue.Len())
  140. return res
  141. }
  142. func (sel *Condition) OnConfirmConn(server *Server, sId string, pId string) error {
  143. /*
  144. 确认分配玩家到对应客服
  145. */
  146. // 建立连接
  147. ok := server.ConfirmService(sId, pId)
  148. if ok != true {
  149. return errors.New("ConfirmService failed")
  150. }
  151. // 通知客服
  152. var cmd = new(pb.CommandMsg)
  153. cmd.CmdType = pb.ECommand_ON_PLAYER_RECEIVE_REPLY
  154. cmd.CmdStr = pId
  155. stream := server.GetServiceStream(sId)
  156. err := server.CmdToService(stream, cmd)
  157. if err != nil {
  158. log.Println("<Condition.OnConfirmConn> CmdToService err:", err)
  159. }
  160. // 通知玩家
  161. cmd.CmdStr = sId
  162. stream = server.GetPlayerStream(pId)
  163. err = server.CmdToClient(stream, cmd)
  164. if err != nil {
  165. log.Println("<Condition.OnConfirmConn> CmdToClient err:", err)
  166. }
  167. return nil
  168. }