자유게시판 - 거상 갤러리

ㅇㅇ

ㅇㅇ 비회원 125.249 2년 전 조회 6012

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
댓글이 아직 없네요. 첫 번째로 댓글을 남겨주세요!
ㅇㅇ
125.249
6013
2년 전
123
39.7
5731
2년 전
다망해라
112.160
8986
2년 전
쑥쑥이
223.62
6723
2년 전
방댕이
112.144
8035
2년 전
방댕이
112.144
22119
2년 전
암상인꾼난이형
5229
2년 전
멜로디레인
5945
2년 전
헤헤벤져
6083
2년 전
슈슈슉
14942
2년 전
이끄요잇
5145
2년 전
uhs1005
5566
2년 전
동숟가락
4958
2년 전
멜로디레인
8731
2년 전
거린준비
5152
2년 전
perfume
15825
2년 전
전설
106.101
11907
2년 전
육의전이용자
222.96
5315
2년 전
사토
112.144
5541
2년 전
거린이일상
7464
2년 전
거붕
5794
2년 전
촌놈
6461
2년 전
미나리초무침
5098
2년 전
벵거룡
61.43
5521
2년 전
멍멍
125.243
6661
2년 전
뉴비에요
6034
2년 전
뉴비에요
4921
2년 전
거리니임
125.137
9585
2년 전
비람
6207
2년 전
방장
6150
2년 전
ㅇㅇ
비회원 125.249 2년 전 조회 6013
123
비회원 39.7 2년 전 조회 5731
다망해라
비회원 112.160 2년 전 조회 8986
쑥쑥이
비회원 223.62 2년 전 조회 6723
방댕이
비회원 112.144 2년 전 조회 8035
방댕이
비회원 112.144 2년 전 조회 22119
암상인꾼난이형
2년 전 조회 5229
멜로디레인
2년 전 조회 5945
헤헤벤져
2년 전 조회 6083
슈슈슉
2년 전 조회 14942
이끄요잇
2년 전 조회 5145
uhs1005
2년 전 조회 5566
동숟가락
2년 전 조회 4958
멜로디레인
2년 전 조회 8731
거린준비
2년 전 조회 5152
perfume
2년 전 조회 15825
전설
비회원 106.101 2년 전 조회 11907
육의전이용자
비회원 222.96 2년 전 조회 5315
사토
비회원 112.144 2년 전 조회 5541
거린이일상
2년 전 조회 7464
거붕
2년 전 조회 5794
촌놈
2년 전 조회 6461
미나리초무침
2년 전 조회 5098
벵거룡
비회원 61.43 2년 전 조회 5521
멍멍
비회원 125.243 2년 전 조회 6661
뉴비에요
2년 전 조회 6034
뉴비에요
2년 전 조회 4921
거리니임
비회원 125.137 2년 전 조회 9585
비람
2년 전 조회 6207
방장
2년 전 조회 6150