1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-17 23:51:30 +08:00

Fix: Disable MAP_IS_ONE_TIME_STAGE in event dailies, last fix not working

This commit is contained in:
LmeSzinc
2022-01-10 00:13:00 +08:00
parent 9a8f219dd0
commit 0765be5366
4 changed files with 37 additions and 46 deletions

View File

@@ -1,31 +1,13 @@
import os
import re
from module.base.filter import Filter
from module.campaign.run import CampaignRun
from module.config.config import TaskEnd
from module.config.utils import get_server_last_update
from module.event.base import EventBase, EventStage, STAGE_FILTER
from module.logger import logger
STAGE_FILTER = Filter(regex=re.compile('^(.*?)$'), attr=('stage',))
class EventStage:
def __init__(self, filename):
self.filename = filename
self.stage = 'unknown'
if filename[-3:] == '.py':
self.stage = filename[:-3]
def __str__(self):
return self.stage
def __eq__(self, other):
return str(self) == str(other)
class CampaignCD(CampaignRun):
def run(self):
class CampaignCD(EventBase):
def run(self, *args, **kwargs):
# Filter map files
stages = [EventStage(file) for file in os.listdir(f'./campaign/{self.config.Campaign_Event}')]
logger.attr('Stage', [str(stage) for stage in stages])