1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-19 11:53:35 +08:00

Optimize: Reuse device instance in the same function

- Speed up retire confirm
- Set default server to CN
- Improve log appearance of aScreenCap init
This commit is contained in:
LmeSzinc
2020-06-16 08:14:47 +08:00
parent 2e26d0a1e1
commit d0867262e2
5 changed files with 24 additions and 21 deletions

34
alas.py
View File

@@ -5,6 +5,7 @@ from datetime import datetime
from module.config.config import AzurLaneConfig
from module.logger import logger, pyw_name, log_file
from module.device.device import Device
class AzurLaneAutoScript:
@@ -13,10 +14,12 @@ class AzurLaneAutoScript:
ini_name = pyw_name
ini_name = ini_name.lower()
self.config = AzurLaneConfig(ini_name)
self.device = None
def run(self, command):
self.config.start_time = datetime.now()
try:
self.device = Device(config=self.config)
self.__getattribute__(command.lower())()
except Exception as e:
logger.exception(e)
@@ -40,7 +43,7 @@ class AzurLaneAutoScript:
def reward_when_finished(self):
from module.reward.reward import Reward
az = Reward(self.config)
az = Reward(self.config, device=self.device)
az.reward_loop()
def setting(self):
@@ -63,10 +66,10 @@ class AzurLaneAutoScript:
logger.hr('Emulator saved')
from module.handler.login import LoginHandler
az = LoginHandler(self.config)
az = LoginHandler(self.config, device=self.device)
if az.app_ensure_start():
from module.reward.reward import Reward
az = Reward(self.config)
az = Reward(self.config, device=self.device)
az.reward()
def main(self):
@@ -74,7 +77,7 @@ class AzurLaneAutoScript:
Method to run main chapter.
"""
from module.campaign.run import CampaignRun
az = CampaignRun(self.config)
az = CampaignRun(self.config, device=self.device)
az.run(self.config.CAMPAIGN_NAME)
self.reward_when_finished()
@@ -84,21 +87,21 @@ class AzurLaneAutoScript:
"""
if self.config.ENABLE_DAILY_MISSION:
from module.daily.daily import Daily
az = Daily(self.config)
az = Daily(self.config, device=self.device)
if not az.record_executed_since():
az.run()
az.record_save()
if self.config.ENABLE_HARD_CAMPAIGN:
from module.hard.hard import CampaignHard
az = CampaignHard(self.config)
az = CampaignHard(self.config, device=self.device)
if not az.record_executed_since():
az.run()
az.record_save()
if self.config.ENABLE_EXERCISE:
from module.exercise.exercise import Exercise
az = Exercise(self.config)
az = Exercise(self.config, device=self.device)
if not az.record_executed_since():
az.run()
az.record_save()
@@ -110,42 +113,43 @@ class AzurLaneAutoScript:
Method to run event.
"""
from module.campaign.run import CampaignRun
az = CampaignRun(self.config)
az.run(self.config.CAMPAIGN_EVENT, folder=self.config.EVENT_NAME)
az = CampaignRun(self.config, device=self.device)
az.run(self.config.CAMPAIGN_EVENT)
self.reward_when_finished()
def event_daily_ab(self):
from module.event.campaign_ab import CampaignAB
az = CampaignAB(self.config)
az = CampaignAB(self.config, device=self.device)
az.run_event_daily()
self.reward_when_finished()
def semi_auto(self):
from module.daemon.daemon import AzurLaneDaemon
az = AzurLaneDaemon(self.config)
az = AzurLaneDaemon(self.config, device=self.device)
az.daemon()
def c72_mystery_farming(self):
from module.campaign.run import CampaignRun
az = CampaignRun(self.config)
az = CampaignRun(self.config, device=self.device)
az.run('campaign_7_2_mystery_farming')
self.reward_when_finished()
def c124_leveling(self):
from module.campaign.run import CampaignRun
az = CampaignRun(self.config)
az = CampaignRun(self.config, device=self.device)
az.run('campaign_12_4_leveling')
self.reward_when_finished()
def c122_leveling(self):
from module.campaign.run import CampaignRun
az = CampaignRun(self.config)
az = CampaignRun(self.config, device=self.device)
az.run('campaign_12_2_leveling')
self.reward_when_finished()
def retire(self):
from module.retire.retirement import Retirement
az = Retirement(self.config)
az = Retirement(self.config, device=self.device)
az.device.screenshot()
az.retire_ships(amount=2000)