mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 07:28:21 +08:00
AlasGG
This commit is contained in:
71
module/combat/combat_manual.py
Normal file
71
module/combat/combat_manual.py
Normal file
@@ -0,0 +1,71 @@
|
||||
from module.base.base import ModuleBase
|
||||
from module.combat.assets import *
|
||||
|
||||
|
||||
class CombatManual(ModuleBase):
|
||||
auto_mode_checked = False
|
||||
auto_mode_switched = False
|
||||
manual_executed = False
|
||||
|
||||
def combat_manual_reset(self):
|
||||
self.manual_executed = False
|
||||
|
||||
def handle_combat_stand_still_in_the_middle(self, auto):
|
||||
"""
|
||||
Args:
|
||||
auto (str): Combat auto mode.
|
||||
|
||||
Returns:
|
||||
bool: If executed
|
||||
"""
|
||||
if auto != 'stand_still_in_the_middle':
|
||||
return False
|
||||
# When switching from auto to manual, fleets are usually in the middle, no need to move down
|
||||
# Otherwise fleet will be moved to the bottom
|
||||
if self.auto_mode_switched:
|
||||
return False
|
||||
|
||||
self.device.long_click(MOVE_DOWN, duration=0.8)
|
||||
return True
|
||||
|
||||
def handle_combat_stand_still_bottom_left(self, auto):
|
||||
"""
|
||||
Args:
|
||||
auto (str): Combat auto mode.
|
||||
|
||||
Returns:
|
||||
bool: If executed
|
||||
"""
|
||||
if auto != 'hide_in_bottom_left':
|
||||
return False
|
||||
|
||||
self.device.long_click(MOVE_LEFT_DOWN, duration=(3.5, 5.5))
|
||||
return True
|
||||
|
||||
def handle_combat_weapon_release(self):
|
||||
if self.appear_then_click(READY_AIR_RAID, interval=10):
|
||||
return True
|
||||
if self.appear_then_click(READY_TORPEDO, interval=10):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
def handle_combat_manual(self, auto):
|
||||
"""
|
||||
Args:
|
||||
auto (str): Combat auto mode.
|
||||
|
||||
Returns:
|
||||
bool: If executed
|
||||
"""
|
||||
if self.manual_executed or not self.auto_mode_checked:
|
||||
return False
|
||||
|
||||
if self.handle_combat_stand_still_in_the_middle(auto):
|
||||
self.manual_executed = True
|
||||
return True
|
||||
if self.handle_combat_stand_still_bottom_left(auto):
|
||||
self.manual_executed = True
|
||||
return True
|
||||
|
||||
return False
|
||||
Reference in New Issue
Block a user