mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
operation_ids give us better function names when generating the typescript API from the openapi.json. BaseModel.Config.title does the same for type names. Response models (or 204 status codes) need to be explicit or the API will be declared as returning any.
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
from fastapi import APIRouter, Depends, HTTPException, status
|
|
|
|
from game import Game
|
|
from game.server import GameContext
|
|
from .models import MapZonesJs, ThreatZoneContainerJs, ThreatZonesJs, UnculledZoneJs
|
|
from ..leaflet import ShapelyUtil
|
|
|
|
router: APIRouter = APIRouter(prefix="/map-zones")
|
|
|
|
|
|
@router.get("/terrain", operation_id="get_terrain_zones", response_model=MapZonesJs)
|
|
def get_terrain(game: Game = Depends(GameContext.require)) -> MapZonesJs:
|
|
zones = game.theater.landmap
|
|
if zones is None:
|
|
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
|
|
|
|
return MapZonesJs(
|
|
inclusion=ShapelyUtil.polys_to_leaflet(zones.inclusion_zones, game.theater),
|
|
exclusion=ShapelyUtil.polys_to_leaflet(zones.exclusion_zones, game.theater),
|
|
sea=ShapelyUtil.polys_to_leaflet(zones.sea_zones, game.theater),
|
|
)
|
|
|
|
|
|
@router.get(
|
|
"/unculled", operation_id="list_unculled_zones", response_model=list[UnculledZoneJs]
|
|
)
|
|
def get_unculled_zones(
|
|
game: Game = Depends(GameContext.require),
|
|
) -> list[UnculledZoneJs]:
|
|
return [
|
|
UnculledZoneJs(
|
|
position=zone.latlng(), radius=game.settings.perf_culling_distance * 1000
|
|
)
|
|
for zone in game.get_culling_zones()
|
|
]
|
|
|
|
|
|
@router.get(
|
|
"/threats", operation_id="get_threat_zones", response_model=ThreatZoneContainerJs
|
|
)
|
|
def get_threat_zones(
|
|
game: Game = Depends(GameContext.require),
|
|
) -> ThreatZoneContainerJs:
|
|
return ThreatZoneContainerJs(
|
|
blue=ThreatZonesJs.from_zones(game.threat_zone_for(player=True), game.theater),
|
|
red=ThreatZonesJs.from_zones(game.threat_zone_for(player=False), game.theater),
|
|
)
|