mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
from typing import List, Type
|
|
|
|
from dcs.task import CAP, CAS, Task
|
|
|
|
from game import db
|
|
from game.operation.frontlineattack import FrontlineAttackOperation
|
|
from .event import Event
|
|
from ..debriefing import Debriefing
|
|
|
|
|
|
class FrontlineAttackEvent(Event):
|
|
|
|
@property
|
|
def tasks(self) -> List[Type[Task]]:
|
|
if self.is_player_attacking:
|
|
return [CAS, CAP]
|
|
else:
|
|
return [CAP]
|
|
|
|
@property
|
|
def global_cp_available(self) -> bool:
|
|
return True
|
|
|
|
def __str__(self):
|
|
return "Frontline attack"
|
|
|
|
def is_successfull(self, debriefing: Debriefing):
|
|
attackers_success = True
|
|
if self.from_cp.captured:
|
|
return attackers_success
|
|
else:
|
|
return not attackers_success
|
|
|
|
def commit(self, debriefing: Debriefing):
|
|
super(FrontlineAttackEvent, self).commit(debriefing)
|
|
|
|
def skip(self):
|
|
if self.to_cp.captured:
|
|
self.to_cp.base.affect_strength(-0.1)
|
|
|
|
def player_attacking(self, flights: db.TaskForceDict):
|
|
assert self.departure_cp is not None
|
|
op = FrontlineAttackOperation(game=self.game,
|
|
attacker_name=self.attacker_name,
|
|
defender_name=self.defender_name,
|
|
from_cp=self.from_cp,
|
|
departure_cp=self.departure_cp,
|
|
to_cp=self.to_cp)
|
|
self.operation = op
|