2023-04-15 22:28:08 +08:00
|
|
|
from module.base.timer import Timer
|
2020-03-29 01:22:46 +08:00
|
|
|
from module.campaign.assets import *
|
2022-02-11 22:38:41 +08:00
|
|
|
from module.campaign.campaign_event import CampaignEvent
|
2020-09-18 18:45:20 +08:00
|
|
|
from module.campaign.campaign_ocr import CampaignOcr
|
2024-08-02 01:00:05 +08:00
|
|
|
from module.exception import CampaignEnd, CampaignNameError, ScriptEnd
|
2020-03-29 01:22:46 +08:00
|
|
|
from module.logger import logger
|
2024-08-02 01:00:05 +08:00
|
|
|
from module.map.assets import WITHDRAW
|
|
|
|
from module.map.map_operation import MapOperation
|
2022-01-10 23:54:02 +08:00
|
|
|
from module.ui.assets import CAMPAIGN_CHECK
|
2020-10-18 21:02:03 +08:00
|
|
|
from module.ui.switch import Switch
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2024-08-02 01:00:05 +08:00
|
|
|
|
|
|
|
class ModeSwitch(Switch):
|
|
|
|
def handle_additional(self, main):
|
|
|
|
if main.appear(WITHDRAW, offset=(30, 30)):
|
|
|
|
logger.warning(f'ModeSwitch: WITHDRAW appears')
|
|
|
|
raise CampaignNameError
|
|
|
|
|
|
|
|
|
|
|
|
MODE_SWITCH_1 = ModeSwitch('Mode_switch_1', offset=(30, 10))
|
2024-12-10 03:28:20 +08:00
|
|
|
MODE_SWITCH_1.add_state('normal', SWITCH_1_NORMAL)
|
|
|
|
MODE_SWITCH_1.add_state('hard', SWITCH_1_HARD)
|
2024-08-02 01:00:05 +08:00
|
|
|
MODE_SWITCH_2 = ModeSwitch('Mode_switch_2', offset=(30, 10))
|
2024-12-10 03:28:20 +08:00
|
|
|
MODE_SWITCH_2.add_state('hard', SWITCH_2_HARD)
|
|
|
|
MODE_SWITCH_2.add_state('ex', SWITCH_2_EX)
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2024-12-20 21:07:58 +08:00
|
|
|
# Event mode switches changing from 20240725 to 20241219
|
|
|
|
# I think it stable at 20241219, so give them names with date 20241219
|
|
|
|
MODE_SWITCH_20241219 = ModeSwitch('Mode_switch_20241219', is_selector=True, offset=(30, 30))
|
|
|
|
MODE_SWITCH_20241219.add_state('combat', SWITCH_20241219_COMBAT)
|
|
|
|
MODE_SWITCH_20241219.add_state('story', SWITCH_20241219_STORY)
|
|
|
|
ASIDE_SWITCH_20241219 = ModeSwitch('Aside_switch_20241219', is_selector=True, offset=(30, 30))
|
|
|
|
ASIDE_SWITCH_20241219.add_state('part1', CHAPTER_20241219_PART1)
|
|
|
|
ASIDE_SWITCH_20241219.add_state('part2', CHAPTER_20241219_PART2)
|
|
|
|
ASIDE_SWITCH_20241219.add_state('sp', CHAPTER_20241219_SP)
|
|
|
|
ASIDE_SWITCH_20241219.add_state('ex', CHAPTER_20241219_EX)
|
|
|
|
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2025-01-10 02:27:51 +08:00
|
|
|
def is_digit_chapter(chapter):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
chapter (int, str): Chapter. Such as 7, 'd', 'sp'.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool:
|
|
|
|
"""
|
|
|
|
if isinstance(chapter, int):
|
|
|
|
return True
|
|
|
|
try:
|
|
|
|
return chapter[0].isdigit()
|
|
|
|
except IndexError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2024-08-02 01:00:05 +08:00
|
|
|
class CampaignUI(MapOperation, CampaignEvent, CampaignOcr):
|
2020-09-18 18:45:20 +08:00
|
|
|
ENTRANCE = Button(area=(), color=(), button=(), name='default_button')
|
|
|
|
|
2025-01-10 02:27:51 +08:00
|
|
|
def campaign_ensure_chapter(self, chapter, skip_first_screenshot=True):
|
2020-03-29 01:22:46 +08:00
|
|
|
"""
|
|
|
|
Args:
|
2025-01-10 02:27:51 +08:00
|
|
|
chapter (int, str): Chapter. Such as 7, 'd', 'sp'.
|
2023-04-15 22:28:08 +08:00
|
|
|
skip_first_screenshot:
|
2020-03-29 01:22:46 +08:00
|
|
|
"""
|
2025-01-10 02:27:51 +08:00
|
|
|
index = self._campaign_get_chapter_index(chapter)
|
|
|
|
isdigit = is_digit_chapter(chapter)
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2023-04-15 22:28:08 +08:00
|
|
|
# A copy of use ui_ensure_index.
|
|
|
|
logger.hr("UI ensure index")
|
|
|
|
retry = Timer(1, count=2)
|
|
|
|
error_confirm = Timer(0.2, count=0)
|
|
|
|
while 1:
|
|
|
|
if skip_first_screenshot:
|
|
|
|
skip_first_screenshot = False
|
|
|
|
else:
|
|
|
|
self.device.screenshot()
|
|
|
|
|
2023-08-18 13:24:59 +08:00
|
|
|
if self.handle_chapter_additional():
|
|
|
|
continue
|
|
|
|
|
2024-08-20 01:31:50 +08:00
|
|
|
current = self.get_chapter_index()
|
2025-01-10 02:27:51 +08:00
|
|
|
current_isdigit = is_digit_chapter(self.campaign_chapter)
|
2023-04-15 22:28:08 +08:00
|
|
|
|
|
|
|
logger.attr("Index", current)
|
|
|
|
diff = index - current
|
|
|
|
if diff == 0:
|
|
|
|
break
|
|
|
|
|
2025-01-10 02:27:51 +08:00
|
|
|
# Getting 3-7 when looking for D3
|
|
|
|
if not (isdigit == current_isdigit):
|
|
|
|
continue
|
|
|
|
|
2023-04-15 22:28:08 +08:00
|
|
|
# 14-4 may be OCR as 4-1 due to slow animation, confirm if it is 4-1
|
|
|
|
if index >= 11 and index % 10 == current:
|
|
|
|
error_confirm.start()
|
|
|
|
if not error_confirm.reached():
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
error_confirm.reset()
|
|
|
|
|
|
|
|
# Switch
|
|
|
|
if retry.reached():
|
|
|
|
button = CHAPTER_NEXT if diff > 0 else CHAPTER_PREV
|
|
|
|
self.device.multi_click(button, n=abs(diff), interval=(0.2, 0.3))
|
|
|
|
retry.reset()
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2023-08-18 13:24:59 +08:00
|
|
|
def handle_chapter_additional(self):
|
|
|
|
"""
|
|
|
|
Called in campaign_ensure_chapter()
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: True if handled
|
|
|
|
"""
|
|
|
|
return False
|
|
|
|
|
2020-03-29 01:22:46 +08:00
|
|
|
def campaign_ensure_mode(self, mode='normal'):
|
|
|
|
"""
|
|
|
|
Args:
|
2020-07-28 14:56:17 +08:00
|
|
|
mode (str): 'normal', 'hard', 'ex'
|
2020-03-29 01:22:46 +08:00
|
|
|
"""
|
2024-07-26 02:09:55 +08:00
|
|
|
if mode == 'hard':
|
|
|
|
self.config.override(Campaign_Mode='hard')
|
|
|
|
|
2020-07-28 14:56:17 +08:00
|
|
|
switch_2 = MODE_SWITCH_2.get(main=self)
|
|
|
|
|
2021-11-26 00:07:03 +08:00
|
|
|
if switch_2 == 'unknown':
|
2020-07-28 14:56:17 +08:00
|
|
|
if mode == 'ex':
|
|
|
|
logger.warning('Trying to goto EX, but no EX mode switch')
|
|
|
|
elif mode == 'normal':
|
|
|
|
MODE_SWITCH_1.set('hard', main=self)
|
|
|
|
elif mode == 'hard':
|
|
|
|
MODE_SWITCH_1.set('normal', main=self)
|
|
|
|
else:
|
|
|
|
logger.warning(f'Unknown campaign mode: {mode}')
|
2021-11-26 00:07:03 +08:00
|
|
|
else:
|
2020-07-28 14:56:17 +08:00
|
|
|
if mode == 'ex':
|
|
|
|
MODE_SWITCH_2.set('hard', main=self)
|
|
|
|
elif mode == 'normal':
|
|
|
|
MODE_SWITCH_2.set('ex', main=self)
|
|
|
|
MODE_SWITCH_1.set('hard', main=self)
|
|
|
|
elif mode == 'hard':
|
|
|
|
MODE_SWITCH_2.set('ex', main=self)
|
2020-08-01 01:18:48 +08:00
|
|
|
MODE_SWITCH_1.set('normal', main=self)
|
2020-07-28 14:56:17 +08:00
|
|
|
else:
|
|
|
|
logger.warning(f'Unknown campaign mode: {mode}')
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2024-12-20 21:07:58 +08:00
|
|
|
def campaign_ensure_mode_20241219(self, mode='combat'):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
mode (str): 'combat' or 'story'
|
|
|
|
"""
|
|
|
|
if mode in ['normal', 'hard', 'ex', 'combat']:
|
|
|
|
MODE_SWITCH_20241219.set('combat', main=self)
|
|
|
|
elif mode in ['story']:
|
|
|
|
MODE_SWITCH_20241219.set('story', main=self)
|
|
|
|
else:
|
|
|
|
logger.warning(f'Unknown campaign mode: {mode}')
|
|
|
|
|
|
|
|
def campaign_ensure_aside_20241219(self, chapter):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
chapter: 'part1', 'part2', 'sp', 'ex'
|
|
|
|
"""
|
|
|
|
if chapter in ['part1', 'a', 'c', 't']:
|
2025-01-02 01:04:51 +08:00
|
|
|
ASIDE_SWITCH_20241219.set('part1', main=self)
|
2024-12-20 21:07:58 +08:00
|
|
|
elif chapter in ['part2', 'b', 'd']:
|
2025-01-02 01:04:51 +08:00
|
|
|
ASIDE_SWITCH_20241219.set('part2', main=self)
|
2024-12-20 21:07:58 +08:00
|
|
|
elif chapter in ['sp', 'ex_sp']:
|
2025-01-02 01:04:51 +08:00
|
|
|
ASIDE_SWITCH_20241219.set('sp', main=self)
|
2024-12-20 21:07:58 +08:00
|
|
|
elif chapter in ['ex', 'ex_ex']:
|
2025-01-02 01:04:51 +08:00
|
|
|
ASIDE_SWITCH_20241219.set('ex', main=self)
|
2024-12-20 21:07:58 +08:00
|
|
|
else:
|
|
|
|
logger.warning(f'Unknown campaign aside: {chapter}')
|
|
|
|
|
2024-07-26 02:09:55 +08:00
|
|
|
def campaign_get_mode_names(self, name):
|
|
|
|
"""
|
|
|
|
Get stage names in both 'normal' and 'hard'
|
|
|
|
t1 -> [t1, ht1]
|
|
|
|
ht1 -> [t1, ht1]
|
|
|
|
a1 -> [a1, c1]
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name (str):
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list[str]:
|
|
|
|
"""
|
|
|
|
if name.startswith('t'):
|
|
|
|
return [f't{name[1:]}', f'ht{name[1:]}']
|
|
|
|
if name.startswith('ht'):
|
|
|
|
return [f't{name[2:]}', f'ht{name[2:]}']
|
|
|
|
if name.startswith('a') or name.startswith('c'):
|
|
|
|
return [f'a{name[1:]}', f'c{name[1:]}']
|
|
|
|
if name.startswith('b') or name.startswith('d'):
|
|
|
|
return [f'b{name[1:]}', f'd{name[1:]}']
|
|
|
|
return [name]
|
|
|
|
|
2024-12-20 21:07:58 +08:00
|
|
|
def _campaign_name_is_hard(self, name):
|
|
|
|
"""
|
|
|
|
Reuse manual defination in campaign_get_mode_names()
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name: 'a1', 'ht1', 'sp1'
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: If stage is hard mode
|
|
|
|
"""
|
|
|
|
mode_names = self.campaign_get_mode_names(name)
|
|
|
|
if len(mode_names) == 2 and mode_names[1] == name:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2020-03-29 01:22:46 +08:00
|
|
|
def campaign_get_entrance(self, name):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
name (str): Campaign name, such as '7-2', 'd3', 'sp3'.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Button:
|
|
|
|
"""
|
2024-07-26 02:09:55 +08:00
|
|
|
entrance_name = name
|
2024-12-20 23:31:49 +08:00
|
|
|
if self.config.MAP_HAS_MODE_SWITCH:
|
2024-07-26 02:09:55 +08:00
|
|
|
for mode_name in self.campaign_get_mode_names(name):
|
|
|
|
if mode_name in self.stage_entrance:
|
|
|
|
name = mode_name
|
|
|
|
|
2020-05-27 21:29:32 +08:00
|
|
|
if name not in self.stage_entrance:
|
2020-03-29 01:22:46 +08:00
|
|
|
logger.warning(f'Stage not found: {name}')
|
2020-04-25 17:10:22 +08:00
|
|
|
raise CampaignNameError
|
2020-05-31 02:49:06 +08:00
|
|
|
|
|
|
|
entrance = self.stage_entrance[name]
|
2024-07-26 02:09:55 +08:00
|
|
|
entrance.name = entrance_name
|
2020-05-31 02:49:06 +08:00
|
|
|
return entrance
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2022-03-24 18:59:08 +08:00
|
|
|
def campaign_set_chapter_main(self, chapter, mode='normal'):
|
2020-03-29 01:22:46 +08:00
|
|
|
if chapter.isdigit():
|
2022-01-10 23:54:02 +08:00
|
|
|
self.ui_goto_campaign()
|
2020-03-29 01:22:46 +08:00
|
|
|
self.campaign_ensure_mode('normal')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2020-03-29 01:22:46 +08:00
|
|
|
if mode == 'hard':
|
|
|
|
self.campaign_ensure_mode('hard')
|
2021-12-01 18:39:54 +08:00
|
|
|
# info_bar shows: Hard mode for this map is not available yet.
|
|
|
|
# There's also a game bug in EN, HM12 shows not available but it's actually available.
|
|
|
|
self.handle_info_bar()
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2022-03-24 18:59:08 +08:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2022-03-24 18:59:08 +08:00
|
|
|
def campaign_set_chapter_event(self, chapter, mode='normal'):
|
2024-07-26 02:09:55 +08:00
|
|
|
if chapter in ['a', 'b', 'c', 'd', 'ex_sp', 'as', 'bs', 'cs', 'ds', 't', 'ts', 'tss', 'ht', 'hts']:
|
2021-10-10 23:38:10 -04:00
|
|
|
self.ui_goto_event()
|
2023-07-25 12:35:28 +08:00
|
|
|
if chapter in ['a', 'b', 'as', 'bs', 't', 'ts', 'tss']:
|
2020-03-29 01:22:46 +08:00
|
|
|
self.campaign_ensure_mode('normal')
|
2024-07-26 02:09:55 +08:00
|
|
|
elif chapter in ['c', 'd', 'cs', 'ds', 'ht', 'hts']:
|
2020-03-29 01:22:46 +08:00
|
|
|
self.campaign_ensure_mode('hard')
|
2020-07-28 14:56:17 +08:00
|
|
|
elif chapter == 'ex_sp':
|
|
|
|
self.campaign_ensure_mode('ex')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2022-03-24 18:59:08 +08:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2020-03-29 01:22:46 +08:00
|
|
|
|
2022-03-24 18:59:08 +08:00
|
|
|
def campaign_set_chapter_sp(self, chapter, mode='normal'):
|
|
|
|
if chapter == 'sp':
|
2021-10-10 23:38:10 -04:00
|
|
|
self.ui_goto_sp()
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2022-03-24 18:59:08 +08:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2024-12-20 21:07:58 +08:00
|
|
|
def campaign_set_chapter_20241219(self, chapter, stage, mode='combat'):
|
|
|
|
if not self.config.MAP_CHAPTER_SWITCH_20241219:
|
|
|
|
return False
|
|
|
|
|
|
|
|
if self._campaign_name_is_hard(f'{chapter}{stage}'):
|
|
|
|
self.config.override(Campaign_Mode='hard')
|
|
|
|
|
|
|
|
if mode == 'story':
|
2025-01-02 00:12:48 +08:00
|
|
|
self.campaign_ensure_mode_20241219('story')
|
2024-12-20 21:07:58 +08:00
|
|
|
return True
|
|
|
|
if chapter in ['a', 'c', 't']:
|
|
|
|
self.ui_goto_event()
|
2025-01-02 00:12:48 +08:00
|
|
|
self.campaign_ensure_mode_20241219('combat')
|
|
|
|
self.campaign_ensure_aside_20241219('part1')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2024-12-20 21:07:58 +08:00
|
|
|
return True
|
|
|
|
if chapter in ['b', 'd', 'ttl']:
|
|
|
|
self.ui_goto_event()
|
2025-01-02 00:12:48 +08:00
|
|
|
self.campaign_ensure_mode_20241219('combat')
|
|
|
|
self.campaign_ensure_aside_20241219('part2')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2024-12-20 21:07:58 +08:00
|
|
|
return True
|
|
|
|
if chapter in ['ex_sp']:
|
|
|
|
self.ui_goto_event()
|
2025-01-02 00:12:48 +08:00
|
|
|
self.campaign_ensure_mode_20241219('combat')
|
|
|
|
self.campaign_ensure_aside_20241219('sp')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2024-12-20 21:07:58 +08:00
|
|
|
return True
|
|
|
|
if chapter in ['ex_ex']:
|
|
|
|
self.ui_goto_event()
|
2025-01-02 00:12:48 +08:00
|
|
|
self.campaign_ensure_mode_20241219('combat')
|
|
|
|
self.campaign_ensure_aside_20241219('ex')
|
2025-01-10 02:27:51 +08:00
|
|
|
self.campaign_ensure_chapter(chapter)
|
2024-12-20 21:07:58 +08:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2022-03-24 18:59:08 +08:00
|
|
|
def campaign_set_chapter(self, name, mode='normal'):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
name (str): Campaign name, such as '7-2', 'd3', 'sp3'.
|
|
|
|
mode (str): 'normal' or 'hard'.
|
|
|
|
"""
|
2024-12-20 21:07:58 +08:00
|
|
|
chapter, stage = self._campaign_separate_name(name)
|
2020-09-18 18:45:20 +08:00
|
|
|
|
2022-03-24 18:59:08 +08:00
|
|
|
if self.campaign_set_chapter_main(chapter, mode):
|
|
|
|
pass
|
2024-12-20 21:07:58 +08:00
|
|
|
elif self.campaign_set_chapter_20241219(chapter, stage, mode):
|
|
|
|
pass
|
2022-03-24 18:59:08 +08:00
|
|
|
elif self.campaign_set_chapter_event(chapter, mode):
|
|
|
|
pass
|
|
|
|
elif self.campaign_set_chapter_sp(chapter, mode):
|
|
|
|
pass
|
2020-09-18 18:45:20 +08:00
|
|
|
else:
|
|
|
|
logger.warning(f'Unknown campaign chapter: {name}')
|
|
|
|
|
2024-08-16 22:31:22 +08:00
|
|
|
def handle_campaign_ui_additional(self):
|
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
bool: If handled
|
|
|
|
"""
|
|
|
|
if self.appear(WITHDRAW, offset=(30, 30)):
|
|
|
|
# logger.info("WITHDRAW button found, wait until map loaded to prevent bugs in game client")
|
|
|
|
self.ensure_no_info_bar(timeout=2)
|
|
|
|
try:
|
|
|
|
self.withdraw()
|
|
|
|
except CampaignEnd:
|
|
|
|
pass
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2024-08-20 01:35:10 +08:00
|
|
|
def ensure_campaign_ui(self, name, mode='normal', skip_first_screenshot=True):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
name (str): Campaign name, such as '7-2', 'd3', 'sp3'.
|
|
|
|
mode (str): 'normal' or 'hard'.
|
|
|
|
skip_first_screenshot:
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ScriptEnd: If failed to switch after retries
|
|
|
|
"""
|
|
|
|
timeout = Timer(5, count=20).start()
|
|
|
|
while 1:
|
|
|
|
if skip_first_screenshot:
|
|
|
|
skip_first_screenshot = False
|
|
|
|
else:
|
|
|
|
self.device.screenshot()
|
|
|
|
|
|
|
|
if timeout.reached():
|
|
|
|
break
|
2020-09-18 18:45:20 +08:00
|
|
|
try:
|
|
|
|
self.campaign_set_chapter(name, mode)
|
|
|
|
self.ENTRANCE = self.campaign_get_entrance(name=name)
|
|
|
|
return True
|
|
|
|
except CampaignNameError:
|
2021-03-15 22:35:34 +08:00
|
|
|
pass
|
2024-08-20 01:35:10 +08:00
|
|
|
|
2024-08-16 22:31:22 +08:00
|
|
|
if self.handle_campaign_ui_additional():
|
2024-08-02 01:00:05 +08:00
|
|
|
continue
|
2021-03-15 22:35:34 +08:00
|
|
|
|
2020-09-18 18:45:20 +08:00
|
|
|
logger.warning('Campaign name error')
|
|
|
|
raise ScriptEnd('Campaign name error')
|
2021-09-15 21:33:11 +08:00
|
|
|
|
|
|
|
def commission_notice_show_at_campaign(self):
|
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
bool: If any commission finished.
|
|
|
|
"""
|
2022-01-10 23:54:02 +08:00
|
|
|
return self.appear(CAMPAIGN_CHECK, offset=(20, 20)) and self.appear(COMMISSION_NOTICE_AT_CAMPAIGN)
|