mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-29 11:03:18 +00:00
Fix: Entered herta shop on the way to exit
This commit is contained in:
parent
9b6b9edde8
commit
c217fb0fb9
@ -16,6 +16,8 @@ from tasks.map.resource.const import diff_to_180_180
|
|||||||
|
|
||||||
|
|
||||||
class MapControl(Combat, AimDetectorMixin):
|
class MapControl(Combat, AimDetectorMixin):
|
||||||
|
waypoint: Waypoint
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def minimap(self) -> Minimap:
|
def minimap(self) -> Minimap:
|
||||||
return Minimap()
|
return Minimap()
|
||||||
@ -116,6 +118,7 @@ class MapControl(Combat, AimDetectorMixin):
|
|||||||
"""
|
"""
|
||||||
logger.hr('Goto', level=2)
|
logger.hr('Goto', level=2)
|
||||||
logger.info(f'Goto {waypoint}')
|
logger.info(f'Goto {waypoint}')
|
||||||
|
self.waypoint = waypoint
|
||||||
self.device.stuck_record_clear()
|
self.device.stuck_record_clear()
|
||||||
self.device.click_record_clear()
|
self.device.click_record_clear()
|
||||||
|
|
||||||
@ -214,7 +217,6 @@ class MapControl(Combat, AimDetectorMixin):
|
|||||||
return result
|
return result
|
||||||
else:
|
else:
|
||||||
near_queue.append(near)
|
near_queue.append(near)
|
||||||
logger.info(near_queue)
|
|
||||||
if np.mean(near_queue) < 0.6:
|
if np.mean(near_queue) < 0.6:
|
||||||
waypoint.unexpected_confirm.reset()
|
waypoint.unexpected_confirm.reset()
|
||||||
|
|
||||||
|
@ -191,6 +191,7 @@ class RouteBase(RouteBase_, RogueUI, RogueExit):
|
|||||||
|
|
||||||
if self.handle_popup_confirm():
|
if self.handle_popup_confirm():
|
||||||
return False
|
return False
|
||||||
|
if self.minimap.position_diff(self.waypoint.position) < 7:
|
||||||
if self.handle_combat_interact():
|
if self.handle_combat_interact():
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@ -244,6 +245,7 @@ class RouteBase(RouteBase_, RogueUI, RogueExit):
|
|||||||
end_point = waypoints[-1]
|
end_point = waypoints[-1]
|
||||||
end_point.end_rotation = end_rotation
|
end_point.end_rotation = end_rotation
|
||||||
end_point.endpoint_threshold = 1.5
|
end_point.endpoint_threshold = 1.5
|
||||||
|
end_point.end_rotation_threshold = 10
|
||||||
result = self.goto(*waypoints)
|
result = self.goto(*waypoints)
|
||||||
|
|
||||||
# TODO: Domain exit detection
|
# TODO: Domain exit detection
|
||||||
|
Loading…
Reference in New Issue
Block a user