Fixed culling display and added setting to include/exclude carriers from culling area.

This commit is contained in:
Khopa
2020-11-21 17:01:50 +01:00
parent 799b0fae94
commit fcf45554ef
4 changed files with 22 additions and 4 deletions

View File

@@ -84,7 +84,8 @@ class Game:
self.ground_planners: Dict[int, GroundPlanner] = {}
self.informations = []
self.informations.append(Information("Game Start", "-" * 40, 0))
self.__culling_points = self.compute_conflicts_position()
self.__culling_points: List[Point] = []
self.compute_conflicts_position()
self.__destroyed_units: List[str] = []
self.savepath = ""
self.budget = PLAYER_BUDGET_INITIAL
@@ -239,7 +240,7 @@ class Game:
self.aircraft_inventory.set_from_control_point(cp)
# Plan flights & combat for next turn
self.__culling_points = self.compute_conflicts_position()
self.compute_conflicts_position()
self.ground_planners = {}
self.blue_ato.clear()
self.red_ato.clear()
@@ -364,6 +365,14 @@ class Game:
points.append(front_line.control_point_a.position)
points.append(front_line.control_point_b.position)
# If do_not_cull_carrier is enabled, add carriers as culling point
print("------")
print(self.settings.perf_do_not_cull_carrier)
if self.settings.perf_do_not_cull_carrier:
for cp in self.theater.controlpoints:
if cp.is_carrier or cp.is_lha:
points.append(cp.position)
# If there is no conflict take the center point between the two nearest opposing bases
if len(points) == 0:
cpoint = None
@@ -387,7 +396,7 @@ class Game:
if len(points) == 0:
points.append(Point(0, 0))
return points
self.__culling_points = points
def add_destroyed_units(self, data):
pos = Point(data["x"], data["z"])

View File

@@ -39,6 +39,7 @@ class Settings:
# Performance culling
perf_culling: bool = False
perf_culling_distance: int = 100
perf_do_not_cull_carrier = True
# LUA Plugins system
plugins: Dict[str, bool] = field(default_factory=dict)