| | |
| | | # BYTE Type; //类型 TBillboardType
|
| | | # DWORD StartIndex; //查看的起始名次索引, 默认0
|
| | | # BYTE WatchCnt; //查看条数,默认20,最大不超过100
|
| | | # BYTE IsWatchSelf; //是否查看自己名次前后,默认10条数据
|
| | | # DWORD WatchID; //查看指定ID名次前后,如玩家ID、家族ID等
|
| | | #};
|
| | | def Client_PYWatchBillboard(index, clientData, tick):
|
| | |
|
| | |
| | | packType = clientData.Type
|
| | | startIndex = clientData.StartIndex
|
| | | watchCnt = clientData.WatchCnt
|
| | | isWatchSelf = clientData.IsWatchSelf
|
| | | if not __CheckWatchCD(curPlayer, packType, tick):
|
| | | return
|
| | | watchID = clientData.WatchID
|
| | | #if not __CheckWatchCD(curPlayer, packType, tick):
|
| | | # return
|
| | |
|
| | | Sync_BillboardEx(curPlayer, packType, isWatchSelf, startIndex, watchCnt)
|
| | | Sync_BillboardEx(curPlayer, packType, watchID, startIndex, watchCnt)
|
| | | return
|
| | |
|
| | | def Sync_BillboardEx(curPlayer, bbType, isWatchSelf=False, startIndex=0, watchCnt=20):
|
| | | def Sync_BillboardEx(curPlayer, bbType, watchID=0, startIndex=0, watchCnt=20):
|
| | | if bbType < 0 or bbType >= ShareDefine.Def_BT_Max:
|
| | | return
|
| | |
|
| | |
| | | GameWorld.ErrLog("找不到排行榜数据!bbType=%s" % (bbType))
|
| | | return
|
| | |
|
| | | playerID = curPlayer.GetPlayerID()
|
| | | #playerID = curPlayer.GetPlayerID()
|
| | | count = billBoard.GetCount()
|
| | | endIndex = 0
|
| | | # 查看自己前后名次
|
| | | if isWatchSelf:
|
| | | playerIndex = billBoard.IndexOfByID(playerID)
|
| | | if watchID:
|
| | | playerIndex = billBoard.IndexOfByID(watchID)
|
| | | if playerIndex != -1:
|
| | | # 前5后4,首尾补足10条记录
|
| | | endIndex = min(playerIndex + 5, count)
|
| | |
| | |
|
| | | billBoardData = ChPyNetSendPack.tagPYBillboardData()
|
| | | billBoardData.Clear()
|
| | | billBoardData.IsWatchSelf = isWatchSelf
|
| | | billBoardData.WatchID = watchID
|
| | | billBoardData.Type = bbType
|
| | | billBoardData.Billboard = []
|
| | | for index in xrange(startIndex, endIndex):
|