From 388823edfe6308cba6f76ca6dc4f20022c5cb2be Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 30 六月 2025 19:03:50 +0800 Subject: [PATCH] 10431 【英文】看广告获得限时代金券 --- ServerPython/CoreServerGroup/GameServer/Script/GM/GMShell.py | 98 ++++++++++++++++++++++++++++++++++--------------- 1 files changed, 68 insertions(+), 30 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/GMShell.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/GMShell.py index 8378604..a9dfa02 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/GM/GMShell.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/GMShell.py @@ -19,9 +19,11 @@ import GameWorld import Commands import IPY_GameServer -import MergeChildMsg +import CrossRealmMsg +import PyGameData import traceback import GMCommon +import ShareDefine import os #--------------------------------------------------------------------- g_broadCastList = [] @@ -69,13 +71,13 @@ try: gmCmd = IPY_GameServer.IPY_GGMCmd() inputStr = gmCmd.GetMsg() - list = inputStr.split() - if len(list) == 0: + alist = inputStr.split() + if len(alist) == 0: return curPlayer = GameWorld.GetPlayerManager().GetPlayerByIndex(index) - callFunName = list[0] + callFunName = alist[0] # 特殊的命令不验证GM等级,在MapServer已验证账号 if callFunName.startswith("@"): callFunName = "GMS_%s" % (callFunName[1:].capitalize()) @@ -85,15 +87,23 @@ GameWorld.Log("###使用GM命令 = %s错误,玩家不是GM"%(callFunName), curPlayer.GetPlayerID()) return - #非跨服服务器下使用跨服专属GM命令,则发送到跨服 - if not GameWorld.IsMergeServer(): + #把剩余参数转换为整型 + for i in range(0, len(alist)): + if i == 0: + continue + value = GameWorld.ToIntDef(alist[i], None) + if value == None: + #GameWorld.DebugAnswer(curPlayer, "参数错误, 参数%s必须为纯数字!" % (i + 1)) + continue + alist[i] = value + + #非跨服服务器下使用跨服GM命令,则发送到跨服 + if not GameWorld.IsCrossServer(): callFunc = GameWorld.GetExecFunc(Commands, "%s.%s"%(callFunName, "OnGetMergeParam")) if callFunc != None: extendParamList = callFunc(curPlayer) - list.extend(extendParamList) - MergeChildMsg.SendMergerChildToCenterStringData(ChConfig.Def_SendGMCMD, list) - return - + CrossRealmMsg.SendMsgToCrossServer(ShareDefine.ClientServerMsg_GMCMD, alist + extendParamList) + callFunc = GameWorld.GetExecFunc(Commands, "%s.%s"%(callFunName, "OnExec")) if callFunc == None: #没有此命令 @@ -101,26 +111,16 @@ GameWorld.DebugAnswer(curPlayer, 'no cmd !!!') return - #删除命令,只将参数传入 - del list[0] - #把剩余参数转换为整型 - for i in range(0, len(list)): - if i == 0 and callFunName in ["testMail", "SetPlayerDBGSEvent"]: - continue - value = GameWorld.ToIntDef(list[i], None) - if value == None: - GameWorld.DebugAnswer(curPlayer, "参数错误, 参数%s必须为纯数字!" % (i + 1)) - return - list[i] = value - - callFunc(curPlayer,list) + callFunc(curPlayer, alist[1:]) except BaseException: GameWorld.DebugAnswer(curPlayer, "执行GM命令错误, 请查看GameServer日志!") errorMsg = str(traceback.format_exc()) GameWorld.ErrLog('GM命令错误 - > %s'%(errorMsg) , curPlayer.GetPlayerID()) - if GameWorld.GetGameWorld().GetDebugLevel(): - raise BaseException(errorMsg) + #======================================================================= + # if GameWorld.GetGameWorld().GetDebugLevel(): + # raise BaseException(errorMsg) + #======================================================================= return #--------------------------------------------------------------------- #=============================================================================== @@ -205,11 +205,8 @@ callFunc(orderId, cmdDict) except BaseException: - GameWorld.Log('GM命令错误 - > %s'%(traceback.format_exc())) - GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_GMGSEntranceFail) - if GameWorld.GetGameWorld().GetDebugLevel(): - raise BaseException(str(traceback.format_exc())) + GameWorld.RaiseException('GM命令错误\r\n%s'%(traceback.format_exc())) return return @@ -244,7 +241,7 @@ return cmdDict ## 收到子服务器发送的GM命令 -def ClientServer_SendGMCMD(cmdMsgList, tick): +def ClientServerMsg_GMCMD(cmdMsgList, tick): if len(cmdMsgList) == 0: return @@ -258,3 +255,44 @@ #只将实际参数传入 callFunc(cmdMsgList[1:], tick) return + +def AddOfflinePlayerGMTInfo(orderId, queryType, playerFind, gmCmdDict): + # 玩家不在线,先记录,等玩家上线后处理,开关服后无效 + key = (queryType, playerFind) + ctgInfoList = PyGameData.g_gmtOfflinePlayerInfo.get(key, []) + ctgInfoList.append(gmCmdDict) + PyGameData.g_gmtOfflinePlayerInfo[key] = ctgInfoList + GameWorld.Log("离线玩家添加GMT: g_gmtOfflinePlayerInfo=%s" % str(PyGameData.g_gmtOfflinePlayerInfo)) + GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success, "玩家不在线,将在上线后自动处理") + return + +def OnPlayerLogin(curPlayer): + gmtList = [] + nameKey = (ChConfig.queryType_sqtPlayerByName, curPlayer.GetName()) + if nameKey in PyGameData.g_gmtOfflinePlayerInfo: + gmtList += PyGameData.g_gmtOfflinePlayerInfo.pop(nameKey) + + accIDKey = (ChConfig.queryType_sqtPlayerByAccID, curPlayer.GetAccID()) + if accIDKey in PyGameData.g_gmtOfflinePlayerInfo: + gmtList += PyGameData.g_gmtOfflinePlayerInfo.pop(accIDKey) + + if not gmtList: + return + + tagMapID = curPlayer.GetRealMapID() + GameWorld.Log("离线玩家上线GMT: tagMapID=%s, %s" % (tagMapID, gmtList), curPlayer.GetPlayerID()) + if not tagMapID: + return + + for gmCmdDict in gmtList: + pack_type = gmCmdDict.get("pack_type") + if not pack_type: + continue + + callFunc = GameWorld.GetExecFunc(Commands, "%s.%s"%(pack_type, "OnOfflineGMTInfo")) + if callFunc: + GameWorld.Log("玩家上线执行GMT: %s, tagMapID=%s, %s" % (pack_type, tagMapID, gmCmdDict), curPlayer.GetPlayerID()) + callFunc(curPlayer, tagMapID, gmCmdDict) + + return + -- Gitblit v1.8.0