2021-02-19 18:32:20 +08:00
|
|
|
from pyautogui import *
|
|
|
|
import time
|
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
#
|
|
|
|
# Functions.
|
|
|
|
#
|
|
|
|
|
2021-02-19 19:12:39 +08:00
|
|
|
# Locates gui element.
|
|
|
|
def locate_click(imgname, alt=None, t=0.1, button="left"):
|
2021-02-19 19:00:15 +08:00
|
|
|
# Add pause to allow time for gui elements to appear.
|
2021-02-19 18:32:20 +08:00
|
|
|
time.sleep(t)
|
2021-02-19 19:00:15 +08:00
|
|
|
|
2021-02-19 19:12:39 +08:00
|
|
|
# Try to find image from screengrab.
|
2021-02-19 18:32:20 +08:00
|
|
|
box = locateOnScreen(imgname)
|
2021-02-19 19:38:41 +08:00
|
|
|
print(imgname, "found at:\n\t", box)
|
2021-02-19 18:32:20 +08:00
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
# It not found, try to find alt image.
|
2021-02-19 18:32:20 +08:00
|
|
|
if box is None:
|
|
|
|
if alt is not None:
|
2021-02-19 19:12:39 +08:00
|
|
|
locate_click(alt, button=button)
|
2021-02-19 18:32:20 +08:00
|
|
|
return False
|
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
# Get center of button and click.
|
2021-02-19 18:32:20 +08:00
|
|
|
x, y = box.left + box.width/2, box.top + box.height/2
|
|
|
|
moveTo(x, y)
|
2021-02-19 19:12:39 +08:00
|
|
|
long_click(button=button)
|
2021-02-19 18:32:20 +08:00
|
|
|
return True
|
|
|
|
|
2021-02-19 19:12:39 +08:00
|
|
|
# Longer click, so FFXIV registers it.
|
|
|
|
def long_click(t=0.100, button="left"):
|
2021-02-19 18:32:20 +08:00
|
|
|
mouseDown(button=button)
|
|
|
|
time.sleep(t)
|
|
|
|
mouseUp(button=button)
|
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
#
|
|
|
|
# Main logic.
|
|
|
|
#
|
|
|
|
|
2021-02-19 19:38:41 +08:00
|
|
|
# Define image paths:
|
|
|
|
img_dir = "img/"
|
|
|
|
|
|
|
|
img_purchaseland = img_dir+"PurchaseLand.png"
|
|
|
|
img_purchaseland_alt = None;
|
|
|
|
|
|
|
|
img_freecompany = img_dir+"FreeCompany.png"
|
|
|
|
img_freecompany_alt = img_dir+"FreeCompanyAlt.png"
|
|
|
|
|
|
|
|
img_yes = img_dir+"Yes.png"
|
|
|
|
img_yes_alt = None;
|
|
|
|
|
2021-02-19 18:32:20 +08:00
|
|
|
count = 1;
|
|
|
|
while(True):
|
2021-02-19 19:00:15 +08:00
|
|
|
# Option to pause every 5 iteratons to stop program
|
2021-02-19 18:32:20 +08:00
|
|
|
#if count%5 == 0: time.sleep(5);
|
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
# get center left third of of screen
|
2021-02-19 18:32:20 +08:00
|
|
|
start_x, start_y = size()
|
|
|
|
start_x /= 3;
|
|
|
|
start_y /= 2;
|
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
# move cursor to get focus, and click on sign
|
2021-02-19 18:32:20 +08:00
|
|
|
moveTo(start_x, start_y)
|
|
|
|
click();
|
2021-02-19 19:12:39 +08:00
|
|
|
long_click(button="right")
|
2021-02-19 18:32:20 +08:00
|
|
|
|
2021-02-19 19:12:39 +08:00
|
|
|
# Attempt to find gui buttons.
|
2021-02-19 19:38:41 +08:00
|
|
|
if not locate_click(img_purchaseland, img_purchaseland_alt, t=0.35):
|
2021-02-19 18:32:20 +08:00
|
|
|
press("esc");
|
|
|
|
continue
|
2021-02-19 19:38:41 +08:00
|
|
|
if not locate_click(img_freecompany_alt, img_freecompany):
|
2021-02-19 19:00:15 +08:00
|
|
|
press("esc");
|
|
|
|
press("esc");
|
|
|
|
continue
|
2021-02-19 19:38:41 +08:00
|
|
|
if not locate_click(img_yes, img_yes_alt):
|
2021-02-19 19:00:15 +08:00
|
|
|
press("esc");
|
|
|
|
press("esc");
|
|
|
|
continue
|
2021-02-19 18:32:20 +08:00
|
|
|
|
2021-02-19 19:00:15 +08:00
|
|
|
count += 1;
|
2021-02-19 18:32:20 +08:00
|
|
|
|