mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
44 lines
1.9 KiB
Python
44 lines
1.9 KiB
Python
import random
|
|
|
|
from dcs.vehicles import AirDefence
|
|
|
|
from gen.sam.group_generator import AntiAirGroupGenerator
|
|
|
|
|
|
class SA10Generator(AntiAirGroupGenerator):
|
|
"""
|
|
This generate a SA-10 group
|
|
"""
|
|
|
|
def generate(self):
|
|
# Command Post
|
|
self.add_unit(AirDefence.SAM_SA_10_S_300PS_CP_54K6, "CP", self.position.x, self.position.y, self.heading)
|
|
|
|
# Search Radar
|
|
self.add_unit(AirDefence.SAM_SA_10_S_300PS_SR_5N66M, "SR", self.position.x, self.position.y, self.heading)
|
|
|
|
# Search radar for missiles (optionnal)
|
|
self.add_unit(AirDefence.SAM_SA_10_S_300PS_SR_64H6E, "SR", self.position.x, self.position.y, self.heading)
|
|
|
|
# 2 different launcher type (C & D)
|
|
num_launchers = random.randint(6, 8)
|
|
positions = self.get_circular_position(num_launchers, launcher_distance=120, coverage=360)
|
|
for i, position in enumerate(positions):
|
|
if i%2 == 0:
|
|
self.add_unit(AirDefence.SAM_SA_10_S_300PS_LN_5P85C, "LN#" + str(i), position[0], position[1], position[2])
|
|
else:
|
|
self.add_unit(AirDefence.SAM_SA_10_S_300PS_LN_5P85D, "LN#" + str(i), position[0], position[1], position[2])
|
|
|
|
# Then let's add short range protection to this high value site
|
|
# Sa-13 Strela are great for that
|
|
num_launchers = random.randint(2, 4)
|
|
positions = self.get_circular_position(num_launchers, launcher_distance=300, coverage=360)
|
|
for i, position in enumerate(positions):
|
|
self.add_unit(AirDefence.SAM_SA_13_Strela_10M3_9A35M3, "IR#" + str(i), position[0], position[1], position[2])
|
|
|
|
# And even some AA
|
|
num_launchers = random.randint(6, 8)
|
|
positions = self.get_circular_position(num_launchers, launcher_distance=350, coverage=360)
|
|
for i, position in enumerate(positions):
|
|
self.add_unit(AirDefence.AAA_ZU_23_Emplacement, "AA#" + str(i), position[0], position[1], position[2])
|