| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- from __future__ import annotations
- import collections
- import sys
- import typing
- import cache
- import integration
- def main() -> None:
- code = sys.argv[1]
- company: Company = cache.get('https://rest.fnar.net/company/code/' + code)
- planets = {cp['PlanetName'] for cp in company['Planets']}
- cogc_planets: dict[str, list[str]] = collections.defaultdict(list)
- for planet, cogc in iter_planet_cogc():
- if planet['PlanetName'] in planets:
- print(planet['PlanetName'], cogc, sep='\t\t')
- if cogc is not None:
- cogc_planets[cogc].append(planet['PlanetName'])
- buildings: typing.Sequence[Building] = cache.get('https://rest.fnar.net/building/allbuildings', expiry=cache.ONE_DAY)
- experts: dict[str, str] = {}
- for building in buildings:
- for recipe in building['Recipes']:
- for output in recipe['Outputs']:
- experts[output['CommodityTicker']] = building['Expertise']
- print()
- company_report = integration.pmmg_monthly_report()[company['CompanyId']]
- for mat, production in company_report.items():
- expertise = experts.get(mat)
- print(f'{mat:3} {production["amount"]:8,.0f} {expertise or '':19}',
- ', '.join(cogc_planets.get(expertise, []))) # pyright: ignore[reportArgumentType, reportCallIssue]
- def iter_planet_cogc() -> typing.Iterator[tuple[Planet, Expertise | None]]:
- all_planets: typing.Collection[Planet] = cache.get('https://universemap.taiyibureau.de/planet_data.json',
- expiry=cache.ONE_DAY)
- for planet in all_planets:
- cogc = None
- if len(cogcs := planet['COGCPrograms']) > 1:
- cogcs.sort(key=lambda c: c['StartEpochMs'], reverse=True)
- cogc = cogcs[1]['ProgramType']
- if cogc is not None:
- cogc = cogc.removeprefix('ADVERTISING_')
- yield planet, typing.cast(Expertise | None, cogc)
- Expertise = typing.Literal['AGRICULTURE', 'CHEMISTRY', 'CONSTRUCTION', 'ELECTRONICS', 'FOOD_INDUSTRIES',
- 'FUEL_REFINING', 'MANUFACTURING', 'METALLURGY', 'RESOURCE_EXTRACTION']
- class Company(typing.TypedDict):
- CompanyId: str
- Planets: typing.Sequence[CompanyPlanet]
- class CompanyPlanet(typing.TypedDict):
- PlanetNaturalId: str
- PlanetName: str
- class Planet(typing.TypedDict):
- PlanetId: str
- PlanetName: str
- COGCPrograms: list[PlanetCOGC]
- class PlanetCOGC(typing.TypedDict):
- ProgramType: str | None
- StartEpochMs: float
- class Building(typing.TypedDict):
- Recipes: typing.Sequence[BuildingRecipe]
- Expertise: str
- class BuildingRecipe(typing.TypedDict):
- Outputs: typing.Sequence[BuildingMat]
- class BuildingMat(typing.TypedDict):
- CommodityTicker: str
- Amount: int
- if __name__ == '__main__':
- main()
|