mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 17:11:42 +00:00
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
from module.base.button import Button
|
|
from module.logger import logger
|
|
from module.map.exception import CampaignEnd
|
|
from module.map.map import Map
|
|
from module.map.map_base import CampaignMap
|
|
|
|
|
|
class CampaignBase(Map):
|
|
FUNCTION_NAME_BASE = 'battle_'
|
|
ENTRANCE = Button(area=(), color=(), button=(), name='default_button')
|
|
MAP: CampaignMap
|
|
|
|
def battle_default(self):
|
|
if self.clear_enemy():
|
|
return True
|
|
|
|
logger.warning('No battle executed.')
|
|
return False
|
|
|
|
def execute_a_battle(self):
|
|
func = self.FUNCTION_NAME_BASE + 'default'
|
|
for extra_battle in range(10):
|
|
if hasattr(self, self.FUNCTION_NAME_BASE + str(self.battle_count - extra_battle)):
|
|
func = self.FUNCTION_NAME_BASE + str(self.battle_count - extra_battle)
|
|
break
|
|
|
|
logger.hr(f'{self.FUNCTION_NAME_BASE}{self.battle_count}', level=2)
|
|
func = self.__getattribute__(func)
|
|
|
|
result = func()
|
|
if not result:
|
|
logger.warning('No combat executed.')
|
|
exit(1)
|
|
|
|
return result
|
|
|
|
def run(self):
|
|
logger.hr(self.ENTRANCE, level=2)
|
|
self.handle_spare_fleet()
|
|
self.enter_map(self.ENTRANCE, mode=self.config.CAMPAIGN_MODE)
|
|
self.handle_map_fleet_lock()
|
|
self.handle_fleet_reverse()
|
|
self.map_init(self.MAP)
|
|
|
|
for _ in range(15):
|
|
try:
|
|
self.execute_a_battle()
|
|
except CampaignEnd:
|
|
logger.hr('Campaign end')
|
|
break
|