From ad46a0c520f5b6e8e432c97bb2416e80a5b6eceb Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 19 一月 2019 00:42:20 +0800
Subject: [PATCH] 5722 【后端】【1.5】跨服BOSS开发(跨服PK重复领取赛季奖励防范)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCustomRefresh.py |  164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 164 insertions(+), 0 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCustomRefresh.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCustomRefresh.py
index 6aa5ef7..a86f294 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCustomRefresh.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCustomRefresh.py
@@ -25,6 +25,7 @@
 import FBLogic
 
 import random
+import time
 #---------------------------------------------------------------------
 
 ## 所有npc刷新
@@ -389,6 +390,9 @@
     '''非分流地图boss只在一线刷
        分流地图boss每条线都刷新,其他分流线路boss在没人打的情况下同生同死
     '''
+    if GameWorld.IsCrossServer():
+        __DoRefreshWorldBossCrossServer(npcRefresh, tick)
+        return
     mapID = GameWorld.GetMap().GetMapID()
     refreshMark = npcRefresh.GetRefreshMark()
     lineID = GameWorld.GetGameWorld().GetLineID()
@@ -530,6 +534,83 @@
 #    return False
 
 #===================================================================================================
+
+def __DoRefreshWorldBossCrossServer(npcRefresh, tick):
+    ## 跨服服务器刷boss
+    
+    mapID = GameWorld.GetGameWorld().GetMapID() # dataMapID
+    if mapID not in ChConfig.Def_CrossMapIDList:
+        return
+    
+    refreshMark = npcRefresh.GetRefreshMark()
+    lineID = GameWorld.GetGameWorld().GetLineID()
+    bossIpyData = IpyGameDataPY.GetIpyGameDataByCondition('BOSSInfo', {'RefreshMark':refreshMark, 'MapID':mapID}, isLogNone=False)
+    if not bossIpyData:
+        return
+    
+    stoneNPCID = bossIpyData.GetStoneNPCID()
+    bossID = bossIpyData.GetNPCID()
+    if not bossID and not stoneNPCID:
+        return
+    
+    if mapID not in ChConfig.Def_CrossZoneTableName:
+        return
+    tableName = ChConfig.Def_CrossZoneTableName[mapID]
+    realMapID = GameWorld.GetGameWorld().GetRealMapID()
+    copyMapID = GameWorld.GetGameWorld().GetCopyMapID()
+    zoneIpyData = IpyGameDataPY.GetIpyGameDataNotLog(tableName, realMapID, mapID, copyMapID)
+    if not zoneIpyData:
+        return
+    zoneID = zoneIpyData.GetZoneID()
+    
+    gameFB = GameWorld.GetGameFB()
+    bosskey = ShareDefine.Def_Notify_WorldKey_GameWorldBossRebornCross % (zoneID, bossID)
+    rebornBossState = GameWorld.GetGameWorld().GetGameWorldDictByKey(bosskey)
+    curNPC = None
+    if npcRefresh.GetCount() > 0:
+        curNPC = npcRefresh.GetAt(0)
+        
+    # 复活状态
+    if rebornBossState:
+        if curNPC:
+            if curNPC.GetNPCID() == bossID:
+                return
+            #去掉非bossNPC
+            NPCCommon.SetDeadEx(curNPC)
+            
+    # 死亡状态
+    else:
+        if curNPC:
+            if curNPC.GetNPCID() == stoneNPCID:
+                return
+            #去掉非墓碑NPC
+            NPCCommon.SetDeadEx(curNPC)
+            
+        # 延迟刷墓碑
+        bossDeadTick = gameFB.GetGameFBDictByKey(ChConfig.Map_NPC_WorldBossDeadTick % bossID)
+        bossStoneDelayTime = IpyGameDataPY.GetFuncCfg('BossStoneDelayTime')
+        if tick - bossDeadTick <= bossStoneDelayTime:
+            return
+        gameFB.SetGameFBDict(ChConfig.Map_NPC_WorldBossDeadTick % bossID, tick)
+        
+    rebornNPCID = bossID if rebornBossState else stoneNPCID
+    if not rebornNPCID:
+        return
+    rebornTickKey = ChConfig.Map_NPC_WorldBossLastReBornTick % rebornNPCID
+    lastRebornTick = gameFB.GetGameFBDictByKey(rebornTickKey)
+    if tick - lastRebornTick <= 50 * 1000:
+        GameWorld.DebugLog("CrossBossRefresh mapID=%s,realMapID=%s,copyMapID=%s,refreshMark=%s,rebornNPCID=%s,tick=%s,lastRebornTick=%s 不重复刷新!" 
+                           % (mapID, realMapID, copyMapID, refreshMark, rebornNPCID, tick, lastRebornTick))
+        return
+    
+    npcRefresh.Refresh(rebornNPCID, ChConfig.Def_SuperBossAngryCount, 1, False)
+    #初始化NPC
+    __InitNewBornNPC(npcRefresh, tick)
+    gameFB.SetGameFBDict(rebornTickKey, tick)
+    
+    GameWorld.DebugLog("CrossBossRefresh mapID=%s,realMapID=%s,copyMapID=%s,refreshMark=%s,rebornNPCID=%s,OK!" 
+                       % (mapID, realMapID, copyMapID, refreshMark, rebornNPCID), lineID)
+    return
 
 ################################ 通用刷怪逻辑 ####################################
 def GetNPCRefreshCountList(refreshID):
@@ -819,3 +900,86 @@
 
 ################################################################################
 
+def ProcessMapRandomRefreshNPC(gameWorld, tick):
+    ''' 地图自定义随机刷怪,支持多点随机刷多种怪,标试点不可重复,支持跨服地图
+            注意:同个虚拟线路中,标试点不可重复!标试点不可重复!标试点不可重复!
+    '''
+    mapID = gameWorld.GetMapID()
+    # {mapID:{编号:[[多个NPCID], [多个标试点], 单个点最大数量, 所有点总数量, 刷怪间隔秒], ...}, ...}
+    randRefreshNPCDict = IpyGameDataPY.GetFuncEvalCfg("RandomRefreshNPC", 1, {})
+    if mapID not in randRefreshNPCDict:
+        return
+    mapRandRefreshNPCDict = randRefreshNPCDict[mapID]
+    
+    #copyMapID = gameWorld.GetCopyMapID()
+    
+    gameFB = GameWorld.GetGameFB()
+    lastCheckTick = gameFB.GetGameFBDictByKey(ChConfig.Def_RMark_RandomRefreshNPCTick)
+    if lastCheckTick and tick - lastCheckTick < 1000:
+        return
+    gameFB.SetGameFBDict(ChConfig.Def_RMark_RandomRefreshNPCTick, tick)
+    
+    curTime = int(time.time())
+    refreshNumList = []
+    for num, refreshInfo in mapRandRefreshNPCDict.items():
+        refreshCD = refreshInfo[-1]
+        numLastTime = gameFB.GetGameFBDictByKey(ChConfig.Def_RMark_RandomRefreshNPCNumTime % num)
+        if numLastTime and curTime - numLastTime < refreshCD:
+            continue
+        gameFB.SetGameFBDict(ChConfig.Def_RMark_RandomRefreshNPCNumTime % num, curTime)
+        refreshNumList.append(num)
+        
+    if not refreshNumList:
+        #GameWorld.DebugLog("没有需要刷怪的", copyMapID)
+        return
+    npcCountDict = {}  # 标识点对应NPC数量
+    rMarkNPCRefreshDict = {} # 标试点对应标试点实例 {标试点:IPY_CustomNPCRefresh, ...}
+    gameNPC = GameWorld.GetNPCManager()
+    for i in xrange(gameNPC.GetCustomNPCRefreshCount()):
+        npcRefresh = gameNPC.GetCustomNPCRefreshAt(i)
+        npcCount = npcRefresh.GetCount()
+        #if not npcCount: # 因为要记录刷怪点实例,所以0的不屏蔽
+        #    continue
+        rMark = npcRefresh.GetRefreshMark()
+        npcCountDict[rMark] = npcCountDict.get(rMark, 0) + npcCount
+        rMarkNPCRefreshDict[rMark] = npcRefresh
+        
+    #GameWorld.DebugLog("npcCountDict=%s" % npcCountDict, copyMapID)
+    for num in refreshNumList:
+        npcIDList, markList, maxCount, totalMaxCount = mapRandRefreshNPCDict[num][:-1]
+        
+        curTotalCount = 0
+        for rMark in markList:
+            curTotalCount += npcCountDict.get(rMark, 0)
+            
+        refreshCount = totalMaxCount - curTotalCount
+        
+        #GameWorld.DebugLog("    num=%s,markList=%s,curTotalCount=%s,totalMaxCount=%s,refreshCount=%s" 
+        #                   % (num, markList, curTotalCount, totalMaxCount, refreshCount), copyMapID)
+        if refreshCount <= 0:
+            continue
+        
+        random.shuffle(markList) # 随机打乱顺序
+        #GameWorld.DebugLog("    markList=%s" % markList, copyMapID)
+        for rMark in markList:
+            if rMark not in rMarkNPCRefreshDict:
+                #GameWorld.DebugLog("        标试点不存在: rMark=%s" % rMark, copyMapID)
+                continue
+            if refreshCount <= 0:
+                #GameWorld.DebugLog("        不需要刷怪了: rMark=%s" % rMark, copyMapID)
+                break
+            curCount = npcCountDict.get(rMark, 0)
+            if curCount >= maxCount:
+                #GameWorld.DebugLog("        该点已经达到单点最大数: rMark=%s" % rMark, copyMapID)
+                continue
+            needRefreshCount = min(refreshCount, maxCount - curCount)
+            refreshCount -= needRefreshCount
+            npcID = npcIDList[0] if len(npcIDList) == 1 else random.choice(npcIDList)
+            
+            #GameWorld.DebugLog("        刷怪: rMark=%s,needRefreshCount=%s,还需=%s" % (rMark, needRefreshCount, refreshCount), copyMapID)
+            npcRefresh = rMarkNPCRefreshDict[rMark]
+            npcRefresh.Refresh(npcID, ChConfig.Def_NormalNPCAngryCount, needRefreshCount, False)
+            __InitNewBornNPC(npcRefresh , tick)
+            
+    return
+

--
Gitblit v1.8.0