打开/关闭菜单
1683
2.2万
6537
11.8万
舰R百科
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

舰R百科是靠无数志愿编辑者持续地建设更新完善的。编辑非常简单,无需代码知识,请勇于更新页面!
编辑入门 | 资助百科 | 留言讨论页 | 微博@舰R百科 | 百科编辑讨论Q群:366818861

用户:SegFault:修订间差异

758次编辑加入
无编辑摘要
无编辑摘要
 
(未显示同一用户的4个中间版本)
第1行: 第1行:
<pre><nowiki>
<pre>
from urllib.request import urlopen
from urllib.request import urlopen
import json
import json


def getShipName(ship):
url = 'http://login.jianniang.com/index/getInitConfigs'
 
countryNames = [ '', '日本', '德国', '英国', '美国', '意大利', '法国', '苏联', '中国' ]
shipTypeNames = [ '', '航空母舰', '轻型航空母舰', '装甲航母', '战列舰', '航空战列舰', '战列巡洋舰', '重巡洋舰', \
        'CAV', 'CLT', '轻巡洋舰', '浅水重炮舰', '驱逐舰', 'SSV', '潜艇', '重炮潜艇', '补给舰' ]
rangeNames = [ '', '短', '中', '长', '超长' ]
coreNames = { 10441:'驱逐', 10341:'巡洋', 10241:'战列', 10141:'航母', 10541:'潜艇' }
 
remodelPostfix = '·改'
canNotEquip = '不可装备'
noEquipt = '无'
aquire = '获得'
day = '白天'
night = '夜间'
formation = '阵型'
attack = '攻击'
nightAttack = '夜战'
damaged = '中破'
vow = '誓约'
desc = '简介'
 
def getShipName(ship, allShips):
     name = ship['title'].strip()
     name = ship['title'].strip()
     idx = int(ship['shipIndex'])
     idx = int(ship['shipIndex'])
     if idx < 1000 or name in [ '重庆', '奥希金斯', '信赖', '萝德尼' ]:
     if idx < 1000:
         return name
         return name
     elif idx < 2000:
 
         return name + '·改'
     orig = [ s for s in allShips if int(s['shipIndex']) == idx % 1000 ][0]
     else:
    if name == orig['title'].strip():
        return name + '(特殊)'
         name += remodelPostfix
     return name


def getShipAttr(ship, allShips, equipts):
def getShipAttr(ship, allShips, equipts):
第22行: 第44行:
             cap[i] = ship['capacityInit'][i]
             cap[i] = ship['capacityInit'][i]


     eq = [ '不可装备' ] * 4
     eq = [ canNotEquip ] * 4
     n = len(ship['equipment'])
     n = len(ship['equipment'])
     for i in range(n):
     for i in range(n):
         eq[i] = [ e['title'] for e in equipts if e['cid'] == ship['equipment'][i] ][0]
         eq[i] = [ e['title'] for e in equipts if e['cid'] == ship['equipment'][i] ][0]
     for i in range(n, ship['equipmentNum']):
     for i in range(n, ship['equipmentNum']):
         eq[i] = '无'
         eq[i] = noEquipt
 
    t = [ '', '日本', '德国', '英国', '美国', '意大利', '法国', '苏联', '中国', '???' ]
    country = t[int(ship['country'])]
    t = { '戈本':'土耳其', '德·鲁伊特':'荷兰', '苏赫巴托尔':'蒙古', '奥希金斯':'智利', '吸血鬼':'英国', '海达人':'加拿大', '奥丁':'冰岛' }
    if ship['title'] in t:
        country = t[ship['title']]


     ret = "ships['%s'] = {\n    " % getShipName(ship)
     ret = "ships['%s'] = {\n    " % getShipName(ship, allShips)


     ret += "index=%s, " % int(ship['shipIndex'])
     ret += "index=%s, " % int(ship['shipIndex'])
     ret += "rarity=%s, " % ship['star']
     ret += "rarity=%s, " % ship['star']
    t = [ '', '航空母舰', '轻型航空母舰', '装甲航母', '战列舰', 'BBV', '战列巡洋舰', '航空战列舰', \
 
            'CAV', 'CLT', '轻巡洋舰', '浅水重炮舰', '驱逐舰', 'SSV', '潜艇', '重炮潜艇', '补给舰' ]
     ret += "type='%s', " % shipTypeNames[ship['type']]
     ret += "type='%s', " % t[ship['type']]
     if int(ship['country']) < 9:
     ret += "country='%s', " % country
        ret += "country='%s', " % countryNames[int(ship['country'])]
     ret += "class='%s', " % ship['classNo']
     ret += "class='%s', " % ship['classNo']


第57行: 第73行:
     ret += "speed=%s, " % ship['speed']
     ret += "speed=%s, " % ship['speed']
     ret += "luck=%s, " % ship['luck']
     ret += "luck=%s, " % ship['luck']
    t = [ '', '短', '中', '长', '超长' ]
     ret += "range='%s', " % rangeNames[ship['range']]
     ret += "range='%s', " % t[ship['range']]


     ret = ret[:-1] + '\n    '
     ret = ret[:-1] + '\n    '
第103行: 第118行:


         ret = ret[:-1] + '\n    '
         ret = ret[:-1] + '\n    '
         ret += "mod='%s', " % getShipName(t[0])
         ret += "mod='%s', " % getShipName(t[0], allShips)
         ret += "modLv=%s, " % ship['evoLevel']
         ret += "modLv=%s, " % ship['evoLevel']
        t = { 10441:'驱逐', 10341:'巡洋', 10241:'战列', 10141:'航母', 10541:'潜艇' }
         ret += "coreType='%s', " % coreNames[ship['evoNeedItemCid']]
         ret += "coreType='%s', " % t[ship['evoNeedItemCid']]
         ret += "coreNum=%s, " % ship['evoNeedResource'][str(ship['evoNeedItemCid'])]
         ret += "coreNum=%s, " % ship['evoNeedResource'][str(ship['evoNeedItemCid'])]
         ret += "mFuel=%s, " % mod['2']
         ret += "mFuel=%s, " % mod['2']
第115行: 第129行:
     return ret[:-2] + '\n}\n'
     return ret[:-2] + '\n}\n'


 
def getDialogue(ship, allShips):
def getDialogue(ship):
     name = getShipName(ship, allShips)
     name = getShipName(ship)
     ret = "ships['" + name + "']['" + aquire + "'] = '" + ship['getDialogue'].strip() + "'\n"
     ret = "text['" + name + "']= { }\n"
    ret += "text['" + name + "']['获得'] = '" + ship['getDialogue'].strip() + "'\n"
     if ship['mainDialogue'] and ship['mainDialogue'][0]:
     if ship['mainDialogue'] and ship['mainDialogue'][0]:
         ret += "text['" + name + "']['白天1'] = '" + ship['mainDialogue'][0].strip() + "'\n"
         ret += "ships['" + name + "']['" + day + "1'] = '" + ship['mainDialogue'][0].strip() + "'\n"
         ret += "text['" + name + "']['白天2'] = '" + ship['mainDialogue'][1].strip() + "'\n"
         ret += "ships['" + name + "']['" + day + "2'] = '" + ship['mainDialogue'][1].strip() + "'\n"
         ret += "text['" + name + "']['白天3'] = '" + ship['mainDialogue'][2].strip() + "'\n"
         ret += "ships['" + name + "']['" + day + "3'] = '" + ship['mainDialogue'][2].strip() + "'\n"
     if ship['mainDialogue'] and ship['mainDialogue'][6]:
     if ship['mainDialogue'] and ship['mainDialogue'][6] != ship['mainDialogue'][0]:
         ret += "text['" + name + "']['夜间1'] = '" + ship['mainDialogue'][6].strip() + "'\n"
         ret += "ships['" + name + "']['" + night + "1'] = '" + ship['mainDialogue'][6].strip() + "'\n"
         ret += "text['" + name + "']['夜间2'] = '" + ship['mainDialogue'][7].strip() + "'\n"
         ret += "ships['" + name + "']['" + night + "2'] = '" + ship['mainDialogue'][7].strip() + "'\n"
         ret += "text['" + name + "']['夜间3'] = '" + ship['mainDialogue'][8].strip() + "'\n"
         ret += "ships['" + name + "']['" + night + "3'] = '" + ship['mainDialogue'][8].strip() + "'\n"
     if ship['formationDialogue']:
     if ship['formationDialogue']:
         ret += "text['" + name + "']['阵型'] = '" + ship['formationDialogue'].strip() + "'\n"
         ret += "ships['" + name + "']['" + formation + "'] = '" + ship['formationDialogue'].strip() + "'\n"
     if ship['atkDialogue']:
     if ship['atkDialogue']:
         ret += "text['" + name + "']['攻击'] = '" + ship['atkDialogue'].strip() + "'\n"
         ret += "ships['" + name + "']['" + attack + "'] = '" + ship['atkDialogue'].strip() + "'\n"
     if ship['nightAtkDialogue']:
     if ship['nightAtkDialogue']:
         ret += "text['" + name + "']['夜战'] = '" + ship['nightAtkDialogue'].strip() + "'\n"
         ret += "ships['" + name + "']['" + nightAttack + "'] = '" + ship['nightAtkDialogue'].strip() + "'\n"
     if ship['breakDialogue']:
     if ship['breakDialogue']:
         ret += "text['" + name + "']['中破'] = '" + ship['breakDialogue'].strip() + "'\n"
         ret += "ships['" + name + "']['" + damaged + "'] = '" + ship['breakDialogue'].strip() + "'\n"
     ret += "text['" + name + "']['誓约'] = '" + ship['vow'].strip() + "'\n"
     ret += "ships['" + name + "']['" + vow + "'] = '" + ship['vow'].strip() + "'\n"
     ret += "text['" + name + "']['简介'] = '" + ship['desc'].strip() + "'\n"
     ret += "ships['" + name + "']['" + desc + "'] = '" + ship['desc'].strip() + "'\n"


     return ret + '\n'
     return ret + '\n'
第159行: 第171行:
     return ret + ' }'
     return ret + ' }'


def printShips(data):
def parse(data):
     ships = [ s for s in data['shipCard'] if int(s['npc']) == 0 ]
     f = open('data.lua', 'w')
    f.write('local equipts = { }\nlocal ships = { }\n\n')


     f = open('台词.txt', 'w')
     # equipment attributes
     f.write('text = { }\n\n')
     f.write('-' * 100 + '\n\n')
     for s in ships:
     for equipt in data['shipEquipmnt']:
         f.write(getDialogue(s))
        #if equipt['picId'] == 998: continue
    f.write('return text')
        if equipt['title'] == '喵' or equipt['title'] == '': continue
    f.close()
         f.write(getEquiptAttr(equipt))
        f.write('\n')


    # ship attributes
    f.write('\n' + '-' * 100 + '\n\n')
     ships = [ s for s in data['shipCard'] if int(s['npc']) == 0 and int(s['shipIndex']) < 2000 ]
     ships = [ s for s in data['shipCard'] if int(s['npc']) == 0 and int(s['shipIndex']) < 2000 ]
    f = open('属性.txt', 'w')
    f.write('ships = { }\n\n')
     for s in ships:
     for s in ships:
         f.write(getShipAttr(s, ships, data['shipEquipmnt']))
         f.write(getShipAttr(s, ships, data['shipEquipmnt']))
         f.write('\n')
         f.write('\n')
    f.write('return ships')
    f.close()


     f = open('装备.txt', 'w')
     # dialogue
     f.write('equipts = { }\n\n')
     f.write('-' * 100 + '\n\n')
     for equipt in data['shipEquipmnt']:
     for s in ships:
        if equipt['picId'] == 998: continue
         f.write(getDialogue(s, ships))
        if equipt['title'] == '喵': continue
 
         f.write(getEquiptAttr(equipt))
    f.write('-' * 100 + '\n\n')
        f.write('\n')
     f.write('return { equipts=equipts, ships=ships }')
     f.write('\nreturn equipts')
     f.close()
     f.close()


def download():
def download():
     j = urlopen('http://login.jianniang.com/index/getInitConfigs').read().decode('utf-8')
     j = urlopen(url).read().decode('utf-8')
     return json.loads(j)
     return json.loads(j)


def run():
if __name__ == '__main__':
     data = download()
     data = download()
     printShips(data)
     parse(data)
</nowiki></pre>
</pre>