1
0
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:
2023-11-17 14:09:34 +08:00
parent 84f78230d2
commit 8781e7830c
7 changed files with 19 additions and 5 deletions
+11 -5
View File
@@ -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),
+6
View File
@@ -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
+2
View File
@@ -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