mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
* Roadbase and ground spawn support Implemented support for roadbases and ground spawn slots at airfields and FOBs. The ground spawn slots can be inserted in campaigns by placing either an A-10A or an AJS37 at a runway or ramp. This will cause an invisible FARP, an ammo dump and a fuel dump to be placed (behind the slot in case of A-10A, to the side in case of AJS37) in the generated campaigns. The ground spawn slot can be used by human controlled aircraft in generated missions. Also allowed the use of the four-slot FARP and the single helipad in campaigns, in addition to the invisible FARP. The first waypoint of the placed aircraft will be the center of a Remove Statics trigger zone (which might or might not work in multiplayer due to a DCS limitation). Also implemented three new options in settings: - AI fixed-wing aircraft can use roadbases / bases with only ground spawns - This setting will allow the AI to use the roadbases for flights and transfers. AI flights will air-start from these bases, since the AI in DCS is not currently able to take off from ground spawns. - Spawn trucks at ground spawns in airbases instead of FARP statics - Spawn trucks at ground spawns in roadbases instead of FARP statics - These settings will replace the FARP statics with refueler and ammo trucks at roadbases. Enabling them might have a negative performance impact. * Modified calculate_parking_slots() so it now takes into account also helicopter slots on FARPs and also ground start slots (but only if the aircraft is flyable or the "AI fixed-wing aircraft can use roadbases / bases with only ground spawns" option is enabled in settings). * Improved the way parking slots are communicated on the basemenu window. * Refactored helipad and ground spawn appends to static methods _add_helipad and _add_ground_spawn in mizcampaignloader.py Added missing changelog entries. Fixed tgogenerator.py imports. Cleaned up ParkingType() construction. * Added test_control_point_parking for testing that the correct number of parking slots are returned for control point in test_controlpoint.py * Added test_parking_type_from_squadron to test the correct ParkingType object is returned for a squadron of Viggens in test_controlpoint.py * Added test_parking_type_from_aircraft to test the correct ParkingType object is returned for Viggen aircraft type in test_controlpoint.py --------- Co-authored-by: Raffson <Raffson@users.noreply.github.com>
193 lines
6.1 KiB
Python
193 lines
6.1 KiB
Python
from abc import abstractmethod
|
|
from typing import TypeVar, Generic, Any
|
|
|
|
from game import Game
|
|
from game.coalition import Coalition
|
|
from game.dcs.aircrafttype import AircraftType
|
|
from game.dcs.groundunittype import GroundUnitType
|
|
from game.dcs.unittype import UnitType
|
|
from game.squadrons import Squadron
|
|
from game.theater import ControlPoint, ParkingType
|
|
|
|
ItemType = TypeVar("ItemType")
|
|
|
|
|
|
class TransactionError(RuntimeError):
|
|
def __init__(self, message: str) -> None:
|
|
super().__init__(message)
|
|
|
|
|
|
class PurchaseAdapter(Generic[ItemType]):
|
|
def __init__(self, coalition: Coalition) -> None:
|
|
self.coalition = coalition
|
|
|
|
def buy(self, item: ItemType, quantity: int) -> None:
|
|
for _ in range(quantity):
|
|
if self.has_pending_sales(item):
|
|
self.do_cancel_sale(item)
|
|
elif self.can_buy(item):
|
|
self.do_purchase(item)
|
|
else:
|
|
raise TransactionError(f"Cannot buy more {item}")
|
|
self.coalition.adjust_budget(-self.price_of(item))
|
|
|
|
def sell(self, item: ItemType, quantity: int) -> None:
|
|
for _ in range(quantity):
|
|
if self.has_pending_orders(item):
|
|
self.do_cancel_purchase(item)
|
|
elif self.can_sell(item):
|
|
self.do_sale(item)
|
|
else:
|
|
raise TransactionError(f"Cannot sell more {item}")
|
|
self.coalition.adjust_budget(self.price_of(item))
|
|
|
|
def has_pending_orders(self, item: ItemType) -> bool:
|
|
return self.pending_delivery_quantity(item) > 0
|
|
|
|
def has_pending_sales(self, item: ItemType) -> bool:
|
|
return self.pending_delivery_quantity(item) < 0
|
|
|
|
@abstractmethod
|
|
def current_quantity_of(self, item: ItemType) -> int:
|
|
...
|
|
|
|
@abstractmethod
|
|
def pending_delivery_quantity(self, item: ItemType) -> int:
|
|
...
|
|
|
|
def expected_quantity_next_turn(self, item: ItemType) -> int:
|
|
return self.current_quantity_of(item) + self.pending_delivery_quantity(item)
|
|
|
|
def can_buy(self, item: ItemType) -> bool:
|
|
return self.coalition.budget >= self.price_of(item)
|
|
|
|
def can_sell_or_cancel(self, item: ItemType) -> bool:
|
|
return self.can_sell(item) or self.has_pending_orders(item)
|
|
|
|
@abstractmethod
|
|
def can_sell(self, item: ItemType) -> bool:
|
|
...
|
|
|
|
@abstractmethod
|
|
def do_purchase(self, item: ItemType) -> None:
|
|
...
|
|
|
|
@abstractmethod
|
|
def do_cancel_purchase(self, item: ItemType) -> None:
|
|
...
|
|
|
|
@abstractmethod
|
|
def do_sale(self, item: ItemType) -> None:
|
|
...
|
|
|
|
@abstractmethod
|
|
def do_cancel_sale(self, item: ItemType) -> None:
|
|
...
|
|
|
|
@abstractmethod
|
|
def price_of(self, item: ItemType) -> int:
|
|
...
|
|
|
|
@abstractmethod
|
|
def name_of(self, item: ItemType, multiline: bool = False) -> str:
|
|
...
|
|
|
|
@abstractmethod
|
|
def unit_type_of(self, item: ItemType) -> UnitType[Any]:
|
|
...
|
|
|
|
|
|
class AircraftPurchaseAdapter(PurchaseAdapter[Squadron]):
|
|
def __init__(self, control_point: ControlPoint) -> None:
|
|
super().__init__(control_point.coalition)
|
|
self.control_point = control_point
|
|
|
|
def pending_delivery_quantity(self, item: Squadron) -> int:
|
|
return item.pending_deliveries
|
|
|
|
def current_quantity_of(self, item: Squadron) -> int:
|
|
return item.owned_aircraft
|
|
|
|
def can_buy(self, item: Squadron) -> bool:
|
|
parking_type = ParkingType().from_squadron(item)
|
|
unclaimed_parking = self.control_point.unclaimed_parking(parking_type)
|
|
return (
|
|
super().can_buy(item)
|
|
and unclaimed_parking > 0
|
|
and item.has_aircraft_capacity_for(1)
|
|
)
|
|
|
|
def can_sell(self, item: Squadron) -> bool:
|
|
return item.untasked_aircraft > 0
|
|
|
|
def do_purchase(self, item: Squadron) -> None:
|
|
item.pending_deliveries += 1
|
|
|
|
def do_cancel_purchase(self, item: Squadron) -> None:
|
|
item.pending_deliveries -= 1
|
|
|
|
def do_sale(self, item: Squadron) -> None:
|
|
item.untasked_aircraft -= 1
|
|
item.pending_deliveries -= 1
|
|
|
|
def do_cancel_sale(self, item: Squadron) -> None:
|
|
item.untasked_aircraft += 1
|
|
item.pending_deliveries += 1
|
|
|
|
def price_of(self, item: Squadron) -> int:
|
|
return item.aircraft.price
|
|
|
|
def name_of(self, item: Squadron, multiline: bool = False) -> str:
|
|
if multiline:
|
|
separator = "<br />"
|
|
else:
|
|
separator = " "
|
|
return separator.join([item.aircraft.name, str(item)])
|
|
|
|
def unit_type_of(self, item: Squadron) -> AircraftType:
|
|
return item.aircraft
|
|
|
|
|
|
class GroundUnitPurchaseAdapter(PurchaseAdapter[GroundUnitType]):
|
|
def __init__(
|
|
self, control_point: ControlPoint, coalition: Coalition, game: Game
|
|
) -> None:
|
|
super().__init__(coalition)
|
|
self.control_point = control_point
|
|
self.game = game
|
|
|
|
def pending_delivery_quantity(self, item: GroundUnitType) -> int:
|
|
return self.control_point.ground_unit_orders.pending_orders(item)
|
|
|
|
def current_quantity_of(self, item: GroundUnitType) -> int:
|
|
return self.control_point.base.total_units_of_type(item)
|
|
|
|
def can_buy(self, item: GroundUnitType) -> bool:
|
|
return super().can_buy(item) and self.control_point.has_ground_unit_source(
|
|
self.game
|
|
)
|
|
|
|
def can_sell(self, item: GroundUnitType) -> bool:
|
|
return False
|
|
|
|
def do_purchase(self, item: GroundUnitType) -> None:
|
|
self.control_point.ground_unit_orders.order({item: 1})
|
|
|
|
def do_cancel_purchase(self, item: GroundUnitType) -> None:
|
|
self.control_point.ground_unit_orders.sell({item: 1})
|
|
|
|
def do_sale(self, item: GroundUnitType) -> None:
|
|
raise TransactionError("Sale of ground units not allowed")
|
|
|
|
def do_cancel_sale(self, item: GroundUnitType) -> None:
|
|
raise TransactionError("Sale of ground units not allowed")
|
|
|
|
def price_of(self, item: GroundUnitType) -> int:
|
|
return item.price
|
|
|
|
def name_of(self, item: GroundUnitType, multiline: bool = False) -> str:
|
|
return f"{item}"
|
|
|
|
def unit_type_of(self, item: GroundUnitType) -> GroundUnitType:
|
|
return item
|