| | |
| | | # @date 2017-05-26
|
| | | # @version 1.0
|
| | | #
|
| | | # 详细描述: 媒体卡
|
| | | # 详细描述: 奖励由邮件发放,这里只做不可领取提示
|
| | | #
|
| | | #-------------------------------------------------------------------------------
|
| | | #"""Version = 2017-05-26 14:00"""
|
| | |
| | | import GMCommon
|
| | | import GameWorld
|
| | | import ChConfig
|
| | | import PlayerControl
|
| | | #---------------------------------------------------------------------
|
| | |
|
| | | ## 执行逻辑
|
| | |
| | | def OnExec(orderId, gmCmdDict):
|
| | | queryType = gmCmdDict.get(GMCommon.Def_GMKey_QueryType, '')
|
| | | playerFind = gmCmdDict.get(GMCommon.Def_GMKey_PlayerFind, '')
|
| | | cardType = GameWorld.ToIntDef(gmCmdDict.get('cardType', ''))
|
| | | cardCode = gmCmdDict.get('cardCode', '')
|
| | | cardState = GameWorld.ToIntDef(gmCmdDict.get('cardState', ''))
|
| | | notifyMsg = gmCmdDict.get('notifyMsg', '')
|
| | |
|
| | | if queryType == GMCommon.Def_GMKey_PlayerAccID:
|
| | | queryType = ChConfig.queryType_sqtPlayerByAccID
|
| | |
| | | GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
|
| | | return
|
| | |
|
| | | sendCMD = [cardType, cardCode, cardState]
|
| | | GMCommon.GMTool_MapServer_Query(queryType, orderId, playerFind, gmCmdDict, 'GMTMediaCard', sendCMD)
|
| | | return
|
| | | playerManager = GameWorld.GetPlayerManager()
|
| | | #目标玩家
|
| | | tagPlayer = None
|
| | | |
| | | if queryType == ChConfig.queryType_sqtPlayerByAccID:
|
| | | tagPlayer = playerManager.FindPlayerByAccID(playerFind)
|
| | |
|
| | | if not tagPlayer:
|
| | | GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success)
|
| | | return
|
| | | |
| | | PlayerControl.NotifyCode(tagPlayer, notifyMsg)
|
| | | return GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success)
|
| | |
|
| | |
|
| | |
|
| | |
| | | # @return "True" or "False" or ""
|
| | | # @remarks 函数详细说明.
|
| | | def DoLogic(query_Type, query_ID, packCMDList, tick):
|
| | | curPlayer = GameWorld.GetPlayerManager().FindPlayerByID(query_ID)
|
| | | if not curPlayer or curPlayer.IsEmpty():
|
| | | return |
| | | cardType, cardCode, cardState = packCMDList
|
| | | GameWorld.Log("GMT_MediaCard, cardType=%s,cardCode=%s,cardState=%s" |
| | | % (cardType, cardCode, cardState), curPlayer.GetPlayerID())
|
| | | PlayerNewGuyCard.OnGMTGiveMediaCardAwardItem(curPlayer, cardType, cardCode, cardState)
|
| | | #流向, 可使用时才记录使用记录流向
|
| | | if cardState == 1:
|
| | | drMsg = {"cardType":cardType, "cardCode":cardCode, "cardState":cardState}
|
| | | DataRecordPack.DR_ToolGMOperate(query_ID, curPlayer.GetPlayerName(), curPlayer.GetAccID(), 'GMT_MediaCard', drMsg)
|
| | | #===========================================================================
|
| | | # curPlayer = GameWorld.GetPlayerManager().FindPlayerByID(query_ID)
|
| | | # if not curPlayer or curPlayer.IsEmpty():
|
| | | # return |
| | | # cardType, cardCode, cardState = packCMDList
|
| | | # GameWorld.Log("GMT_MediaCard, cardType=%s,cardCode=%s,cardState=%s" |
| | | # % (cardType, cardCode, cardState), curPlayer.GetPlayerID())
|
| | | # PlayerNewGuyCard.OnGMTGiveMediaCardAwardItem(curPlayer, cardType, cardCode, cardState)
|
| | | # #流向, 可使用时才记录使用记录流向
|
| | | # if cardState == 1:
|
| | | # drMsg = {"cardType":cardType, "cardCode":cardCode, "cardState":cardState}
|
| | | # DataRecordPack.DR_ToolGMOperate(query_ID, curPlayer.GetPlayerName(), curPlayer.GetAccID(), 'GMT_MediaCard', drMsg)
|
| | | #===========================================================================
|
| | | return
|
| | |
|
| | | #---------------------------------------------------------------------
|