자유게시판 - 거상 갤러리

ㅇㅇ

ㅇㅇ 비회원 125.249 3년 전 조회 6238

import pyautogui as pag
import os
import time
import keyboard as key
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *

from gersangAlarm.gersang_alarm_UI import Ui_MainWindow
image_list_1 = []

class check_image_fuction(QMainWindow,Ui_MainWindow):
   def __init__(self):
       super().__init__()
       self.setupUi(self)
       self.worker_a = worker_a()
       self.show()

   def start(self):

       self.worker_a.start()
       pass

# Get list of all files in current directory
path1 = "./icon1/"
directory1 = os.listdir(path1)


# Find files that end with .png or .jpg and add to image_list
for file in directory1:
   if file.endswith('.png') or file.endswith('.jpg'):
       image_list_1.append(file)

# Thread A
class worker_a(QThread):
   def run(self):
       try:
           while True:
               # Loop through list to find all the images
               for image in image_list_1:
                   var = pag.locateAllOnScreen(path1 + image, confidence=0.98)
                   var = list(var)
                   time.sleep(0.5)
                   if len(var) != 0:
                       key.press('alt')
                       time.sleep(0.05)
                       key.press('1')
                       time.sleep(0.05)
                       key.release('1')
                       time.sleep(0.05)
                       key.release('alt')
               del var
               time.sleep(0.5)
       except KeyboardInterrupt:
           print('\n')


app = QApplication([])
main_dialog = check_image_fuction() 
QApplication.processEvents()
app.exit(app.exec_())

댓글 0
댓글이 아직 없네요. 첫 번째로 댓글을 남겨주세요!
신구둵
220.122
7327
2년 전
갓네임드
10384
2년 전
Hine
222.238
5848
2년 전
달봉격수
121.153
5305
2년 전
이것이신구클라
59.24
7276
2년 전
chong13
6770
2년 전
오토닉네임
6824
2년 전
토오끼이이
6722
2년 전
일공사개역겹네
175.215
6678
2년 전
영웅서기
5827
2년 전
감자스프
7474
2년 전
당햇다
6912
2년 전
암상인꾼난이형
5312
2년 전
짱제스
118.235
5531
2년 전
hamess
5399
2년 전
속도
4579
2년 전
지국맨
211.234
5339
2년 전
chong13
8459
2년 전
chong13
6539
2년 전
원타이틀
1.214
7115
2년 전
ㅇㅇ
210.94
8593
2년 전
이병김지욱
5366
2년 전
진로묻기
221.146
6727
2년 전
그저그래
1.176
5525
2년 전
거붕
5761
2년 전
개부담정체
125.133
6683
2년 전
어오뉴늉
39.122
5732
2년 전
기린까지만
112.218
6298
2년 전
ㅈㅅㅊㅊ
124.59
6402
2년 전
신구쌀먹중12
112.152
7753
2년 전
신구둵
비회원 220.122 2년 전 조회 7327
갓네임드
2년 전 조회 10384
Hine
비회원 222.238 2년 전 조회 5848
달봉격수
비회원 121.153 2년 전 조회 5305
이것이신구클라
비회원 59.24 2년 전 조회 7276
chong13
2년 전 조회 6770
오토닉네임
2년 전 조회 6824
토오끼이이
2년 전 조회 6722
일공사개역겹네
비회원 175.215 2년 전 조회 6678
영웅서기
2년 전 조회 5827
감자스프
2년 전 조회 7474
당햇다
2년 전 조회 6912
암상인꾼난이형
2년 전 조회 5312
짱제스
비회원 118.235 2년 전 조회 5531
hamess
2년 전 조회 5399
속도
2년 전 조회 4579
지국맨
비회원 211.234 2년 전 조회 5339
chong13
2년 전 조회 8459
chong13
2년 전 조회 6539
원타이틀
비회원 1.214 2년 전 조회 7115
ㅇㅇ
비회원 210.94 2년 전 조회 8593
이병김지욱
2년 전 조회 5366
진로묻기
비회원 221.146 2년 전 조회 6727
그저그래
비회원 1.176 2년 전 조회 5525
거붕
2년 전 조회 5761
개부담정체
비회원 125.133 2년 전 조회 6683
어오뉴늉
비회원 39.122 2년 전 조회 5732
기린까지만
비회원 112.218 2년 전 조회 6298
ㅈㅅㅊㅊ
비회원 124.59 2년 전 조회 6402
신구쌀먹중12
비회원 112.152 2년 전 조회 7753