xdh
2019-03-02 0f297a5b66b91751d8342624db871efeca7ed94e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/python
# -*- coding: GBK -*-
#-------------------------------------------------------------------------------
#
#-------------------------------------------------------------------------------
#
##@package GM.Commands.SetEquipPartPlusLV
#
# @todo:ÉèÖÃ×°±¸²¿Î»¹«¹²Ç¿»¯µÈ¼¶
# @author hxp
# @date 2015-12-15
# @version 1.0
#
# ÏêϸÃèÊö: ÉèÖÃ×°±¸²¿Î»¹«¹²Ç¿»¯µÈ¼¶
#
#---------------------------------------------------------------------
"""Version = 2015-12-15 17:00"""
#---------------------------------------------------------------------
import Operate_EquipPlus
import IPY_GameWorld
import ChConfig
import ChEquip
import GameWorld
import ItemCommon
 
#---------------------------------------------------------------------
#Âß¼­ÊµÏÖ
## GMÃüÁîÖ´ÐÐÈë¿Ú
#  @param curPlayer µ±Ç°Íæ¼Ò
#  @param cmdList ²ÎÊýÁбí [packType, index, starLV]
#  @return None
#  @remarks º¯ÊýÏêϸ˵Ã÷.
def OnExec(curPlayer, cmdList):
    if not cmdList:
        __GMHelpAnswer(curPlayer)
        return
    
    if len(cmdList) == 1:
        setStarLV = cmdList[0]
        for pType, indexList in ChConfig.Pack_EquipPart_CanPlusStar.items():
            for i in indexList:
                curPack = curPlayer.GetItemManager().GetPack(pType)
                curEquip = curPack.GetAt(i)
                ChEquip.SetEquipPartPlusLV(curPlayer, pType, i, curEquip, setStarLV)
                ChEquip.SetEquipPartProficiency(curPlayer, pType, i, 0)
            Operate_EquipPlus.DoLogic_OnEquipPartStarLVChange(curPlayer, pType)
        ChEquip.NotifyEquipPartPlusLV(curPlayer)
        GameWorld.DebugAnswer(curPlayer, "ÉèÖÃËùÓв¿Î»Ç¿»¯µÈ¼¶Îª: %s" % setStarLV)
        return
    
    if len(cmdList) != 3:
        __GMHelpAnswer(curPlayer, "²ÎÊý´íÎó£¡")
        return
    
    packType, index, starLV = cmdList
    if packType not in ChConfig.Pack_EquipPart_CanPlusStar:
        __GMHelpAnswer(curPlayer, "packType²»´æÔÚ£¡")
        return
    
    if index not in ChConfig.Pack_EquipPart_CanPlusStar[packType]:
        __GMHelpAnswer(curPlayer, "indexË÷Òý²»´æÔÚ£¡")
        return
    
    curPack = curPlayer.GetItemManager().GetPack(packType)
    curEquip = curPack.GetAt(index)
 
    maxStarLV = ItemCommon.GetItemMaxPlusLV(curEquip)
    starLV = min(starLV, maxStarLV)
    ChEquip.SetEquipPartPlusLV(curPlayer, packType, index, curEquip, starLV)
    ChEquip.SetEquipPartProficiency(curPlayer, packType, index, 0)
    Operate_EquipPlus.DoLogic_OnEquipPartStarLVChange(curPlayer, packType)
    return
 
 
def __GMHelpAnswer(curPlayer, errorMsg=""):
    if errorMsg:
        GameWorld.DebugAnswer(curPlayer, "%s" % errorMsg)
    
    packTypeStrDict = {
                       IPY_GameWorld.rptEquip:"×°±¸±³°ü",
                       IPY_GameWorld.rptHorseEquip:"×øÆï×°±¸±³°ü",
                       }
    
#===============================================================================
#    indexStrDict = {
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retMask):"Í·¿ø",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retClothes):"Ò·þ",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retArm):"»¤ÊÖ",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retTrousers):"¿ã×Ó",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retShoes):"Ь×Ó",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retNeck):"ÏîÁ´",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retRingLeft):"×ó½äÖ¸",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retRingRight):"ÓÒ½äÖ¸",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, ShareDefine.retWeapon):"ÓÒÊÖÎäÆ÷",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, ShareDefine.retWeapon2):"×óÊÖÎäÆ÷",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retAmulet):"»¤·û",
#                    "%s_%s" % (IPY_GameWorld.rptEquip, IPY_GameWorld.retBelt):"Ñü´ø",
#                    }
#===============================================================================
    
    #===========================================================================
    # GameWorld.DebugAnswer(curPlayer, "SetEquipPartPlusLV ²ÎÊý[packType, index, starLV]")
    # for pType, indexList in ChConfig.Pack_EquipPart_CanPlusStar.items():
    #    GameWorld.DebugAnswer(curPlayer, "    packType=%s(%s)ʱ" % (pType, packTypeStrDict.get(pType, "")))
    #    indexStr = "index="
    #    for i in indexList:
    #        indexStr += "%s(%s)," % (i, indexStrDict.get("%s_%s" % (pType, i), ""))
    #    GameWorld.DebugAnswer(curPlayer, "        %s" % indexStr)
    #    
    # GameWorld.DebugAnswer(curPlayer, "    SetEquipPartPlusLV Ç¿»¯µÈ¼¶ ¿ÉÖØÖÃËùÓв¿Î»Îª¶ÔÓ¦µÄÇ¿»¯µÈ¼¶")
    # GameWorld.DebugAnswer(curPlayer, "------------------------------")
    #===========================================================================
    return