2023-05-17 16:44:43 +00:00
|
|
|
from module.base.base import ModuleBase
|
|
|
|
from tasks.base.assets.assets_base_popup import *
|
|
|
|
|
|
|
|
|
|
|
|
class PopupHandler(ModuleBase):
|
|
|
|
def handle_reward(self, interval=5) -> bool:
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
interval:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
If handled.
|
|
|
|
"""
|
|
|
|
if self.appear_then_click(GET_REWARD, interval=interval):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def handle_battle_pass_notification(self, interval=5) -> bool:
|
|
|
|
"""
|
|
|
|
Popup notification that you enter battle pass the first time.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
interval:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
If handled.
|
|
|
|
"""
|
|
|
|
if self.appear_then_click(BATTLE_PASS_NOTIFICATION, interval=interval):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2023-05-21 01:38:41 +00:00
|
|
|
|
2023-07-02 07:31:42 +00:00
|
|
|
def handle_monthly_card_reward(self, interval=1) -> bool:
|
2023-05-21 01:38:41 +00:00
|
|
|
"""
|
|
|
|
Popup at 04:00 server time if you have purchased the monthly card.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
interval:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
If handled.
|
|
|
|
"""
|
|
|
|
if self.appear_then_click(MONTHLY_CARD_REWARD, interval=interval):
|
|
|
|
return True
|
|
|
|
if self.appear_then_click(MONTHLY_CARD_GET_ITEM, interval=interval):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|