new web index, refactor, data fixes

This commit is contained in:
Bryce Allen
2015-05-20 11:05:32 -05:00
parent 9bad89b0af
commit f6fa342ac4
12 changed files with 341 additions and 151 deletions

View File

@@ -7,7 +7,7 @@ import json
import _pathfix
from mhapi.db import MHDB
from mhapi.model import ModelJSONEncoder
from mhapi.model import ModelJSONEncoder, get_costs
def parse_args(argv):
@@ -23,36 +23,6 @@ def parse_args(argv):
return parser.parse_args(argv)
def get_costs(db, weapon):
"""
Get a list of alternative ways of making a weapon, as a list of dicts
containing item counts. The dicts also contain special keys _zenny
for the total zenny needed, and _path for a list of weapons that
make up the upgrade path.
"""
costs = []
if weapon.parent_id:
parent_weapon = db.get_weapon(weapon.parent_id, True)
costs = get_costs(db, parent_weapon)
for cost in costs:
for item in weapon.upgrade_components:
if item.type == "Weapon":
continue
if item.name not in cost["components"]:
cost["components"][item.name] = 0
cost["components"][item.name] += item.quantity
cost["zenny"] += weapon.upgrade_cost
cost["path"] += [weapon]
if weapon.creation_cost:
create_cost = dict(zenny=weapon.creation_cost,
path=[weapon],
components={})
for item in weapon.create_components:
create_cost["components"][item.name] = item.quantity
costs = [create_cost] + costs
return costs
if __name__ == '__main__':
args = parse_args(None)