mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-06-09 20:04:52 +00:00
fix(popup): make correction to ap exceed and add insufficient inventory for JP
This commit is contained in:
@@ -24,10 +24,10 @@ AP_EXCEED = ButtonWrapper(
|
||||
name='AP_EXCEED',
|
||||
jp=Button(
|
||||
file='./assets/jp/base/popup/AP_EXCEED.png',
|
||||
area=(610, 124, 669, 153),
|
||||
search=(590, 104, 689, 173),
|
||||
color=(139, 153, 168),
|
||||
button=(535, 494, 746, 565),
|
||||
area=(611, 147, 669, 177),
|
||||
search=(591, 127, 689, 197),
|
||||
color=(143, 156, 170),
|
||||
button=(539, 470, 743, 533),
|
||||
),
|
||||
en=Button(
|
||||
file='./assets/en/base/popup/AP_EXCEED.png',
|
||||
@@ -124,7 +124,13 @@ GET_REWARD_SKIP = ButtonWrapper(
|
||||
)
|
||||
INSUFFICIENT_INVENTORY = ButtonWrapper(
|
||||
name='INSUFFICIENT_INVENTORY',
|
||||
jp=None,
|
||||
jp=Button(
|
||||
file='./assets/jp/base/popup/INSUFFICIENT_INVENTORY.png',
|
||||
area=(610, 124, 669, 153),
|
||||
search=(590, 104, 689, 173),
|
||||
color=(139, 153, 168),
|
||||
button=(535, 494, 746, 565),
|
||||
),
|
||||
en=Button(
|
||||
file='./assets/en/base/popup/INSUFFICIENT_INVENTORY.png',
|
||||
area=(578, 117, 703, 152),
|
||||
|
||||
@@ -94,6 +94,12 @@ class PopupHandler(ModuleBase):
|
||||
|
||||
return False
|
||||
|
||||
def handle_insufficient_inventory(self, interval=5) -> bool:
|
||||
if self.appear_then_click(INSUFFICIENT_INVENTORY, interval=interval):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
def handle_item_expired(self, interval=5) -> bool:
|
||||
if self.appear_then_click(ITEM_EXPIRED, interval=interval):
|
||||
return True
|
||||
|
||||
@@ -345,6 +345,8 @@ class UI(MainPage):
|
||||
return True
|
||||
if self.handle_ap_exceed():
|
||||
return True
|
||||
if self.handle_insufficient_inventory():
|
||||
return True
|
||||
if self.handle_item_expired():
|
||||
return True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user