2023-10-04 03:15:14 +00:00
|
|
|
from tasks.map.control.waypoint import Waypoint
|
|
|
|
from tasks.map.keywords.plane import Herta_SupplyZone
|
|
|
|
from tasks.rogue.route.base import RouteBase
|
|
|
|
|
|
|
|
|
|
|
|
class Route(RouteBase):
|
|
|
|
|
2023-10-05 11:32:47 +00:00
|
|
|
def Herta_SupplyZone_F2Rogue_X209Y112(self):
|
2023-10-04 03:15:14 +00:00
|
|
|
"""
|
2023-11-18 18:07:09 +00:00
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| -------------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((219.6, 112.8)), | 96.7 | 91 |
|
|
|
|
| item | Waypoint((227.4, 105.1)), | 67.2 | 61 |
|
|
|
|
| enemy | Waypoint((264.2, 114.1)), | 101.1 | 98 |
|
|
|
|
| exit_ | Waypoint((266.7, 113.7)), | 60.8 | 91 |
|
|
|
|
| exit1_X269Y105 | Waypoint((269.7, 105.7)), | 101.1 | 91 |
|
|
|
|
| exit2_X273Y119 | Waypoint((273.0, 119.2)), | 101.1 | 91 |
|
2023-10-04 03:15:14 +00:00
|
|
|
"""
|
2023-10-05 11:32:47 +00:00
|
|
|
self.map_init(plane=Herta_SupplyZone, floor="F2Rogue", position=(209.6, 112.8))
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((269.7, 105.7)), right_door=Waypoint((273.0, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
item = Waypoint((227.4, 105.1))
|
2023-10-05 11:32:47 +00:00
|
|
|
enemy = Waypoint((264.2, 114.1))
|
|
|
|
# ===== End of generated waypoints =====
|
|
|
|
|
|
|
|
"""
|
|
|
|
Notes:
|
2023-11-13 08:21:25 +00:00
|
|
|
Herta_SupplyZone_F2Rogue_X209Y112 is the same as Herta_SupplyZone_F2Rogue_X219Y112 to handle detection errors
|
2023-10-20 14:24:30 +00:00
|
|
|
"""
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((270.7, 105.7)), right_door=Waypoint((270.7, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
self.clear_item(item)
|
2023-10-20 14:24:30 +00:00
|
|
|
self.clear_enemy(enemy)
|
|
|
|
|
|
|
|
def Herta_SupplyZone_F2Rogue_X215Y112(self):
|
|
|
|
"""
|
2023-11-18 18:07:09 +00:00
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| -------------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((219.6, 112.8)), | 96.7 | 91 |
|
|
|
|
| item | Waypoint((227.4, 105.1)), | 67.2 | 61 |
|
|
|
|
| enemy | Waypoint((264.2, 114.1)), | 101.1 | 98 |
|
|
|
|
| exit_ | Waypoint((266.7, 113.7)), | 60.8 | 91 |
|
|
|
|
| exit1_X269Y105 | Waypoint((269.7, 105.7)), | 101.1 | 91 |
|
|
|
|
| exit2_X273Y119 | Waypoint((273.0, 119.2)), | 101.1 | 91 |
|
2023-10-20 14:24:30 +00:00
|
|
|
"""
|
|
|
|
self.map_init(plane=Herta_SupplyZone, floor="F2Rogue", position=(215.6, 112.8))
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((269.7, 105.7)), right_door=Waypoint((273.0, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
item = Waypoint((227.4, 105.1))
|
2023-10-20 14:24:30 +00:00
|
|
|
enemy = Waypoint((264.2, 114.1))
|
|
|
|
# ===== End of generated waypoints =====
|
|
|
|
|
|
|
|
"""
|
|
|
|
Notes:
|
2023-11-13 08:21:25 +00:00
|
|
|
Herta_SupplyZone_F2Rogue_X215Y112 is the same as Herta_SupplyZone_F2Rogue_X219Y112 to handle detection errors
|
2023-10-05 11:32:47 +00:00
|
|
|
"""
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((270.7, 105.7)), right_door=Waypoint((270.7, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
self.clear_item(item)
|
2023-10-05 11:32:47 +00:00
|
|
|
self.clear_enemy(enemy)
|
|
|
|
|
|
|
|
def Herta_SupplyZone_F2Rogue_X219Y112(self):
|
|
|
|
"""
|
2023-11-18 18:07:09 +00:00
|
|
|
| Waypoint | Position | Direction | Rotation |
|
|
|
|
| -------------- | ------------------------- | --------- | -------- |
|
|
|
|
| spawn | Waypoint((219.6, 112.8)), | 96.7 | 91 |
|
|
|
|
| item | Waypoint((227.4, 105.1)), | 67.2 | 61 |
|
|
|
|
| enemy | Waypoint((264.2, 114.1)), | 101.1 | 98 |
|
|
|
|
| exit_ | Waypoint((266.7, 113.7)), | 60.8 | 91 |
|
|
|
|
| exit1_X269Y105 | Waypoint((269.7, 105.7)), | 101.1 | 91 |
|
|
|
|
| exit2_X273Y119 | Waypoint((273.0, 119.2)), | 101.1 | 91 |
|
2023-10-05 11:32:47 +00:00
|
|
|
"""
|
2023-10-04 03:15:14 +00:00
|
|
|
self.map_init(plane=Herta_SupplyZone, floor="F2Rogue", position=(219.6, 112.8))
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((269.7, 105.7)), right_door=Waypoint((273.0, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
item = Waypoint((227.4, 105.1))
|
2023-10-04 03:15:14 +00:00
|
|
|
enemy = Waypoint((264.2, 114.1))
|
|
|
|
# ===== End of generated waypoints =====
|
|
|
|
|
2023-11-18 18:07:09 +00:00
|
|
|
self.register_domain_exit(
|
|
|
|
Waypoint((266.7, 113.7)), end_rotation=91,
|
|
|
|
left_door=Waypoint((270.7, 105.7)), right_door=Waypoint((270.7, 119.2)))
|
2023-11-13 08:21:25 +00:00
|
|
|
self.clear_item(item)
|
2023-10-04 03:15:14 +00:00
|
|
|
self.clear_enemy(enemy)
|