have weapongroups to yaml
parent
c02d7b2a34
commit
6c793f5b48
|
@ -3,44 +3,91 @@ import yaml
|
||||||
import pprint
|
import pprint
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
pp = pprint.PrettyPrinter(indent=2)
|
pp = pprint.PrettyPrinter(indent=4)
|
||||||
conn = sqlite3.connect('../../pf2.db')
|
conn = sqlite3.connect('../../pf2.db')
|
||||||
conn.row_factory = sqlite3.Row
|
conn.row_factory = sqlite3.Row
|
||||||
|
|
||||||
|
# DO WEAPON GROUPS
|
||||||
|
|
||||||
q = """
|
q = """
|
||||||
SELECT
|
SELECT
|
||||||
price_gp,
|
sources_pages,
|
||||||
dice_size,
|
|
||||||
bulk,
|
|
||||||
hands,
|
|
||||||
range,
|
|
||||||
reload,
|
|
||||||
name,
|
name,
|
||||||
descr,
|
descr
|
||||||
(SELECT name FROM actions) as action_name -- use this as template for subqueries
|
FROM weapongroups
|
||||||
FROM weapons;
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
c.execute(q)
|
c.execute(q)
|
||||||
data = [dict(row) for row in c.fetchall()]
|
data = [dict(row) for row in c.fetchall()]
|
||||||
for i in data:
|
|
||||||
# handle empty bulk entries to match the abbr field in bulks.yaml
|
|
||||||
if i['bulk'] == '':
|
|
||||||
i['bulk'] = '-'
|
|
||||||
# convert gp prices to cp prices to avoid float issues
|
|
||||||
if i['price_gp'] == '':
|
|
||||||
i['price_gp'] = '0'
|
|
||||||
i['price_cp'] = int(float(i['price_gp']) * 100)
|
|
||||||
del i['price_gp']
|
|
||||||
|
|
||||||
pp.pprint(data)
|
pp.pprint(data)
|
||||||
|
|
||||||
fdata = {'weapons': data}
|
# "source": [
|
||||||
final = yaml.safe_dump(fdata, allow_unicode=True)
|
# {
|
||||||
with open('tmp-weapons.yaml', 'w') as f:
|
# 'abbr': 'CRB',
|
||||||
|
# 'page_start': int(i['sources_pages']),
|
||||||
|
# 'page_stop': int(i['sources_pages'])
|
||||||
|
# },
|
||||||
|
|
||||||
|
wgdata = []
|
||||||
|
for i in data:
|
||||||
|
res = {
|
||||||
|
'name': i['name'],
|
||||||
|
'descr': i['descr'],
|
||||||
|
'source': [
|
||||||
|
{
|
||||||
|
'abbr': 'CRB',
|
||||||
|
'page_start': int(i['sources_pages']),
|
||||||
|
'page_stop': int(i['sources_pages'])
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
wgdata.append(res)
|
||||||
|
|
||||||
|
pp.pprint(wgdata)
|
||||||
|
finalwgdata = {'weapongroups': wgdata}
|
||||||
|
pp.pprint(finalwgdata)
|
||||||
|
|
||||||
|
final = yaml.safe_dump(finalwgdata, allow_unicode=True)
|
||||||
|
with open('tmp-weapongroups.yaml', 'w') as f:
|
||||||
f.write(final)
|
f.write(final)
|
||||||
|
|
||||||
|
# DO WEAPONS
|
||||||
|
|
||||||
|
# q = """
|
||||||
|
# SELECT
|
||||||
|
# price_gp,
|
||||||
|
# dice_size,
|
||||||
|
# bulk,
|
||||||
|
# hands,
|
||||||
|
# range,
|
||||||
|
# reload,
|
||||||
|
# name,
|
||||||
|
# descr,
|
||||||
|
# (SELECT name FROM actions) as action_name -- use this as template for subqueries
|
||||||
|
# FROM weapons;
|
||||||
|
# """
|
||||||
|
|
||||||
|
# c = conn.cursor()
|
||||||
|
# c.execute(q)
|
||||||
|
# data = [dict(row) for row in c.fetchall()]
|
||||||
|
# for i in data:
|
||||||
|
# # handle empty bulk entries to match the abbr field in bulks.yaml
|
||||||
|
# if i['bulk'] == '':
|
||||||
|
# i['bulk'] = '-'
|
||||||
|
# # convert gp prices to cp prices to avoid float issues
|
||||||
|
# if i['price_gp'] == '':
|
||||||
|
# i['price_gp'] = '0'
|
||||||
|
# i['price_cp'] = int(float(i['price_gp']) * 100)
|
||||||
|
# del i['price_gp']
|
||||||
|
|
||||||
|
# pp.pprint(data)
|
||||||
|
|
||||||
|
# fdata = {'weapons': data}
|
||||||
|
# final = yaml.safe_dump(fdata, allow_unicode=True)
|
||||||
|
# with open('tmp-weapons.yaml', 'w') as f:
|
||||||
|
# f.write(final)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
@ -0,0 +1,91 @@
|
||||||
|
weapongroups:
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Axe
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 283
|
||||||
|
page_stop: 283
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Bomb
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Bow
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Brawling
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Club
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Dart
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Flail
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Hammer
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Knife
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Pick
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Polearm
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Shield
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Sling
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Spear
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
||||||
|
- descr: TODO descr from pg 283-84
|
||||||
|
name: Sword
|
||||||
|
source:
|
||||||
|
- abbr: CRB
|
||||||
|
page_start: 284
|
||||||
|
page_stop: 284
|
Loading…
Reference in New Issue