push.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package nameRoute
  2. const (
  3. PushGameMail_List = "game.mail.listPush" // 推送 邮件列表
  4. PushGameMail_New = "game.mail.newPush" // 推送 新邮件
  5. PushGameMail_Delete = "game.mail.deletePush" // 推送 删除邮件列表
  6. PushLeagueMail_List = "map.league.mailListPush" // 推送 联盟邮件列表
  7. PushLeagueMail_New = "map.league.mailNewPush" // 推送 联盟邮件新增
  8. PushLeagueMail_Del = "map.league.mailDelPush" // 推送 联盟邮件删除
  9. PushLeagueMail_Top = "map.league.mailTopPush" // 推送 联盟邮件置顶
  10. )
  11. const (
  12. PushGamePlayer_Reward = "game.player.rewardPush" // 推送 奖励
  13. PushGamePlayer_HeroList = "game.player.heroListPush" // 推送 英雄列表
  14. PushGamePlayer_HeroChange = "game.player.heroChangePush" // 推送 英雄变更
  15. PushGamePlayer_HeroDel = "game.player.heroDelPush" // 推送 英雄删除
  16. PushGamePlayer_EquipList = "game.player.equipListPush" // 推送 装备列表
  17. PushGamePlayer_EquipChange = "game.player.equipChangePush" // 推送 装备变更
  18. PushGamePlayer_EquipDel = "game.player.equipDelPush" // 推送 装备删除
  19. PushGamePlayer_SkillList = "game.player.skillListPush" // 推送 技能列表
  20. PushGamePlayer_ItemList = "game.player.itemListPush" // 推送 道具列表
  21. PushGamePlayer_ItemChange = "game.player.itemChangePush" // 推送 道具变更
  22. PushGamePlayer_ItemMedicineUse = "game.player.itemMedicineChangePush" // 推送 药品使用情况
  23. PushGamePlayer_Quests = "game.player.questsPush" // 推送 任务列表
  24. PushGamePlayer_Recruit = "game.player.recruitPush" // 推送 招募
  25. PushGamePlayer_Lineup = "game.player.lineupPush" // 推送 阵容列表
  26. PushGamePlayer_LineupChange = "game.player.lineupChangePush" // 推送 阵容变更
  27. PushGamePlayer_Lord = "game.player.lordPush" // 推送 领主信息
  28. PushGamePlayer_HeroBookList = "game.player.heroBookListPush" // 推送 图鉴列表
  29. PushGamePlayer_HeroBookChange = "game.player.heroBookChangePush" // 推送 图鉴变更
  30. PushGamePlayer_Chapter = "game.player.chapterPush" // 推送 探险信息
  31. PushGamePlayer_ChapterLevel = "game.player.chapterLevelPush" // 推送 探险关卡信息
  32. PushGamePlayer_ShopList = "game.player.shopPush" // 推送 商店列表
  33. PushGamePlayer_ShopChangeList = "game.player.shopChangePush" // 推送 更新商店列表
  34. PushGamePlayer_LordShow = "game.player.lordShowPush" // 推送 外显列表推送
  35. PushGamePlayer_LordShowAdd = "game.player.lordShowAddPush" // 推送 外显新增推送
  36. PushGamePlayer_LordShowChange = "game.player.lordShowChangePush" // 推送 外显变更推送
  37. PushGamePlayer_LordShowExpire = "game.player.lordShowExpirePush" // 推送 外显过期推送
  38. PushGamePlayer_ExchangeInfo = "game.player.exchangeInfoPush" // 推送 玩家交易所信息
  39. PushGamePlayer_MainQuest = "game.player.mainQuestsPush" // 推送 游戏主线信息
  40. PushGamePlayer_VipInfo = "game.player.vipInfoPush" // 推送 玩家vip信息
  41. PushGamePlayer_ChargeData = "game.player.chargeDataPush" // 推送 玩家充值数据
  42. )
  43. const (
  44. PushMapPusher_ObjectUpdate = "map.pusher.objectUpdate" // 推送 地图对象更新
  45. PushMapPusher_ObjectDel = "map.pusher.objectDel" // 推送 地图对象删除
  46. PushMapPusher_MarchState = "map.pusher.marchState" // 推送 行军状态更新
  47. PushMapPusher_PlayerUpdate = "map.pusher.playerUpdate" // 推送 玩家信息更新
  48. PushMapPusher_LeagueUpdate = "map.pusher.leagueUpdate" // 推送 联盟信息更新
  49. PushMapPusher_Battle = "map.pusher.battle" // 推送 地图战斗信息
  50. PushMapPusher_TowerUpdate = "map.pusher.towerUpdate" // 推送 灯塔全量更新
  51. PushMapPusher_MapUIMarchState = "map.pusher.mapUIMarchState" // 推送 地图ui层-行军状态推送
  52. )
  53. const (
  54. PushMapPlayer_Team = "map.player.teamPush" // 推送 英雄部队
  55. PushMapPlayer_TeamChange = "map.player.teamChangePush" // 推送 英雄部队变更
  56. PushMapPlayer_TeamTroopReturn = "map.player.teamTroopReturnPush" // 推送 部队兵力返还
  57. PushMapPlayer_FacilityList = "map.player.facilityListPush" // 推送 建筑列表
  58. PushMapPlayer_FacilityFinish = "map.player.facilityFinishPush" // 推送 建筑升级完成列表
  59. PushMapPlayer_FacilityAttrChange = "map.player.facilityAttrChangePush" // 推送 城建属性变更
  60. PushMapPlayer_ReportNew = "map.player.reportNewPush" // 推送新战报
  61. PushMapPlayer_HeroList = "map.player.heroListPush" // 推送 英雄列表
  62. PushMapPlayer_HeroChange = "map.player.heroChangePush" // 推送 英雄变更
  63. PushMapPlayer_HeroState = "map.player.heroStatePush" // 推送 英雄状态
  64. PushMapPlayer_Conscript = "map.player.conscriptPush" // 推送 征兵信息
  65. PushMapPlayer_Quests = "map.player.questsPush" // 推送 任务列表
  66. PushMapPlayer_QuestsLeague = "map.player.questsLeaguePush" // 推送 已领取联盟任务列表
  67. PushMapPlayer_StorageList = "map.player.storageListPush" // 推送 背包列表
  68. PushMapPlayer_StoragChange = "map.player.storageChangePush" // 推送 背包变更
  69. PushMapPlayer_ResDefendRecover = "map.player.resDefendRecoverPush" // 推送 资源防守恢复
  70. PushMapPlayer_MapMark = "map.player.mapMarkPush" // 推送 地图标记列表
  71. PushMapPlayer_ShopList = "map.player.shopPush" // 推送 地图商店列表
  72. PushMapPlayer_ShopChangeList = "map.player.shopChangePush" // 推送 更新地图商店列表
  73. PushMapPlayer_LeagueQuit = "map.player.leagueQuitPush" // 推送 离开联盟通知
  74. PushMapPlayer_PrestigeChange = "map.player.prestigeChangePush" // 推送 声望变更推送
  75. PushMapPlayer_TeamOutsideTroops = "map.player.teamOutsideTroopsPush" // 推送 部队城外征兵变更
  76. PushMapPlayer_SiegeResult = "map.player.siegeResultPush" // 推送 攻城结果
  77. PushMapPlayer_MainQuest = "map.player.mainQuestsPush" // 推送 地图主线信息
  78. PushMapPlayer_MainCityShow = "map.player.mainCityShowPush" // 推送 主城外观列表
  79. PushMapPlayer_MainCityShowChange = "map.player.mainCityShowChangePush" // 推送 主城外观变更
  80. PushMapPlayer_OwnerMapObjects = "map.player.ownerMapObjectsPush" // 推送 地图对象列表
  81. PushMapPlayer_OwnerMapObjectAdd = "map.player.ownerMapObjectAddPush" // 推送 地图对象新增
  82. PushMapPlayer_OwnerMapObjectDel = "map.player.ownerMapObjectDelPush" // 推送 地图对象删除
  83. PushMapPlayer_OwnerMapObjectUpdate = "map.player.ownerMapObjectUpdatePush" // 推送 地图对象更新
  84. PushMapPlayer_SignIn = "map.player.dailySignInPush" // 推送 签到数据
  85. PushMapPlayer_ScoutList = "map.player.mapScoutListPush" // 推送 侦察队列
  86. PushMapPlayer_ScoutChange = "map.player.mapScoutChangePush" // 推送 侦察变更队列
  87. PushMapPlayer_Reborn = "map.player.rebornPush" // 推送 重新出生(被击飞)
  88. PushMapPlayer_MapUICastlesPush = "map.player.mapUICastlesPush" // 推送 地图ui层-系统城
  89. PushMapPlayer_MapUIMarchsPush = "map.player.mapUIMarchsPush" // 推送 地图ui层-行军对象列表
  90. )
  91. const (
  92. PushChat_MsgList = "chat.chatRoom.chatMsgListPush" // 推送 聊天室消息列表
  93. PushChat_Delete = "chat.chatRoom.chatDelPush" // 推送 聊删除某一条消息
  94. PushGamePlayer_ChatData = "game.player.chatDataPush" // 推送 聊天数据
  95. PushGamePlayer_ChatGroupLeave = "game.player.chatGroupLeavePush" // 推送 聊天群组解散或者被踢出
  96. PushGamePlayer_ChatGroupInvite = "game.player.groupInvitePush" // 推送 聊天群组邀请新消息
  97. PushGamePlayer_ChatPrivateNew = "game.player.chatPrivateNewPush" // 推送 私聊新消息
  98. PushGamePlayer_ChatRoomUpdate = "game.player.chatRoomUpdatePush" // 推送 聊天室更新
  99. PushGamePlayer_ChatSystemNew = "game.player.chatSystemNewPush" // 推送 系统消息
  100. PushGamePlayer_Marquee = "game.player.marqueePush" // 推送 跑马灯
  101. )
  102. const (
  103. PushMarquee_List = "game.marquee.listPush" // 推送 跑马灯列表
  104. PushMarquee_Del = "game.marquee.delPush" // 推送 跑马灯删除
  105. PushMarquee_Change = "game.marquee.changePush" // 推送 跑马灯变更
  106. )
  107. const (
  108. PushGamePlayer_FriendInviteNewPush = "game.player.friendInviteNewPush" // 推送 好友申请新消息
  109. PushGamePlayer_FirendNew = "game.player.friendNewPush" // 推送 新的好友
  110. PushGamePlayer_FirendDel = "game.player.friendDelPush" // 推送 删除一个好友
  111. PushGamePlayer_FriendAddBack = "game.player.friendAddBackPush" // 推送 好友添加结果的返回
  112. PushGamePlayer_FriendConfirmBack = "game.player.friendConfirmBackPush" // 推送 好友申请确认结果的返回
  113. )
  114. const (
  115. PushLeague_Info = "map.league.infoPush" // 推送 联盟信息
  116. PushLeague_AddApply = "map.league.addApplyPush" // 推送 申请加入联盟通知
  117. PushLeague_JobInfo = "map.league.permissionPush" // 推送 玩家职位信息推送
  118. PushLeague_JobChange = "map.league.permissionChangePush" // 推送 玩家职位/权限变更通知
  119. PushLeague_AttrChange = "map.league.attrChangePush" // 推送 联盟属性变更
  120. PushMapLeague_AssembleUpdate = "map.league.assembleUpdatePush" // 推送 集结更新
  121. PushMapLeague_Residence = "map.league.residencePush" // 推送 驻地列表推送
  122. PushMapLeague_ResidenceChange = "map.league.residenceChangePush" // 推送 驻地迁入推送
  123. PushMapLeague_ResidenceRemove = "map.league.residenceRemovePush" // 推送 驻地迁出推送
  124. PushMapLeague_MapMark = "map.league.mapMarkPush" // 推送 地图标记推送
  125. PushMapLeague_MapMarkDel = "map.league.mapMarkDelPush" // 推送 地图标记删除
  126. PushMapLeague_MapMarkChange = "map.league.mapMarkChangePush" // 推送 地图标记新增/变更
  127. PushMapLeague_BuildList = "map.league.buildListPush" // 推送 联盟建筑列表
  128. PushMapLeague_BuildUpdate = "map.league.buildUpdatePush" // 推送 联盟建筑更新
  129. PushMapLeague_Quests = "map.league.questsPush" // 推送 联盟任务列表
  130. PushMapLeague_DiplomacyApplyChange = "map.league.diplomacyApplyChangePush" // 推送 新增/删除外交申请推送
  131. PushMapLeague_UmengChange = "map.league.umengChangePush" // 推送 友盟新增/删除推送
  132. PushMapLeague_UnionChange = "map.league.unionChangePush" // 推送 联邦变更推送
  133. PushMapLeague_UmengRelieve = "map.league.umengRelievePush" // 推送 友盟关系解除
  134. PushMapLeague_UnionRelieve = "map.league.unionRelievePush" // 推送 联邦关系解除
  135. PushMapLeague_WarUpdate = "map.league.warUpdatePush" // 推送 联盟战争更新
  136. )