91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么實現自動玩連連看

發布時間:2022-04-06 10:41:19 來源:億速云 閱讀:158 作者:iii 欄目:開發技術

這篇“Python怎么實現自動玩連連看”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Python怎么實現自動玩連連看”文章吧。

實現步驟

模塊導入

import cv2
import numpy as np
import win32api
import win32gui
import win32con
from PIL import ImageGrab
import time
import random

窗體標題 用于定位游戲窗體

WINDOW_TITLE = "連連看"

時間間隔隨機生成 [MIN,MAX]

TIME_INTERVAL_MAX = 0.06
TIME_INTERVAL_MIN = 0.1

游戲區域距離頂點的x偏移

MARGIN_LEFT = 10

游戲區域距離頂點的y偏移

MARGIN_HEIGHT = 180

橫向的方塊數量

H_NUM = 19

縱向的方塊數量

V_NUM = 11

方塊寬度

POINT_WIDTH = 31

方塊高度

POINT_HEIGHT = 35

空圖像編號

EMPTY_ID = 0

切片處理時候的左上、右下坐標:

SUB_LT_X = 8
SUB_LT_Y = 8
SUB_RB_X = 27
SUB_RB_Y = 27

游戲的最多消除次數

MAX_ROUND = 200

獲取窗體坐標位置

def getGameWindow():
    # FindWindow(lpClassName=None, lpWindowName=None)  窗口類名 窗口標題名
    window = win32gui.FindWindow(None, WINDOW_TITLE)

    # 沒有定位到游戲窗體
    while not window:
        print('Failed to locate the game window , reposition the game window after 10 seconds...')
        time.sleep(10)
        window = win32gui.FindWindow(None, WINDOW_TITLE)

    # 定位到游戲窗體
    # 置頂游戲窗口
    win32gui.SetForegroundWindow(window)
    pos = win32gui.GetWindowRect(window)
    print("Game windows at " + str(pos))
    return (pos[0], pos[1])

獲取屏幕截圖

def getScreenImage():
    print('Shot screen...')
    # 獲取屏幕截圖 Image類型對象
    scim = ImageGrab.grab()
    scim.save('screen.png')
    # 用opencv讀取屏幕截圖
    # 獲取ndarray
    return cv2.imread("screen.png")

從截圖中分辨圖片 處理成地圖

def getAllSquare(screen_image, game_pos):
    print('Processing pictures...')
    # 通過游戲窗體定位
    # 加上偏移量獲取游戲區域
    game_x = game_pos[0] + MARGIN_LEFT
    game_y = game_pos[1] + MARGIN_HEIGHT

    # 從游戲區域左上開始
    # 把圖像按照具體大小切割成相同的小塊
    # 切割標準是按照小塊的橫縱坐標
    all_square = []
    for x in range(0, H_NUM):
        for y in range(0, V_NUM):
            # ndarray的切片方法 : [縱坐標起始位置:縱坐標結束為止,橫坐標起始位置:橫坐標結束位置]
            square = screen_image[game_y + y * POINT_HEIGHT:game_y + (y + 1) * POINT_HEIGHT,
                     game_x + x * POINT_WIDTH:game_x + (x + 1) * POINT_WIDTH]
            all_square.append(square)

    # 因為有些圖片的邊緣會造成干擾,所以統一把圖片往內縮小一圈
    # 對所有的方塊進行處理 ,去掉邊緣一圈后返回
    finalresult = []
    for square in all_square:
        s = square[SUB_LT_Y:SUB_RB_Y, SUB_LT_X:SUB_RB_X]
        finalresult.append(s)
    return finalresult

判斷列表中是否存在相同圖形

存在返回進行判斷圖片所在的id

否則返回-1

def isImageExist(img, img_list):
    i = 0
    for existed_img in img_list:
        # 兩個圖片進行比較 返回的是兩個圖片的標準差
        b = np.subtract(existed_img, img)
        # 若標準差全為0 即兩張圖片沒有區別
        if not np.any(b):
            return i
        i = i + 1
    return -1

獲取所有的方塊類型

def getAllSquareTypes(all_square):
    print("Init pictures types...")
    types = []
    # number列表用來記錄每個id的出現次數
    number = []
    # 當前出現次數最多的方塊
    # 這里我們默認出現最多的方塊應該是空白塊
    nowid = 0;
    for square in all_square:
        nid = isImageExist(square, types)
        # 如果這個圖像不存在則插入列表
        if nid == -1:
            types.append(square)
            number.append(1);
        else:
            # 若這個圖像存在則給計數器 + 1
            number[nid] = number[nid] + 1
            if (number[nid] > number[nowid]):
                nowid = nid
    # 更新EMPTY_ID
    # 即判斷在當前這張圖中的空白塊id
    global EMPTY_ID
    EMPTY_ID = nowid
    print('EMPTY_ID = ' + str(EMPTY_ID))
    return types

將二維圖片矩陣轉換為二維數字矩陣

注意因為在上面對截屏切片時是以列為優先切片的

所以生成的record二維矩陣每行存放的其實是游戲屏幕中每列的編號

換個說法就是record其實是游戲屏幕中心對稱后的列表

def getAllSquareRecord(all_square_list, types):
    print("Change map...")
    record = []
    line = []
    for square in all_square_list:
        num = 0
        for type in types:
            res = cv2.subtract(square, type)
            if not np.any(res):
                line.append(num)
                break
            num += 1
        # 每列的數量為V_NUM
        # 那么當當前的line列表中存在V_NUM個方塊時我們認為本列處理完畢
        if len(line) == V_NUM:
            print(line);
            record.append(line)
            line = []
    return record

判斷給出的兩個圖像能否消除

def canConnect(x1, y1, x2, y2, r):
    result = r[:]

    # 如果兩個圖像中有一個為0 直接返回False
    if result[x1][y1] == EMPTY_ID or result[x2][y2] == EMPTY_ID:
        return False
    if x1 == x2 and y1 == y2:
        return False
    if result[x1][y1] != result[x2][y2]:
        return False
    # 判斷橫向連通
    if horizontalCheck(x1, y1, x2, y2, result):
        return True
    # 判斷縱向連通
    if verticalCheck(x1, y1, x2, y2, result):
        return True
    # 判斷一個拐點可連通
    if turnOnceCheck(x1, y1, x2, y2, result):
        return True
    # 判斷兩個拐點可連通
    if turnTwiceCheck(x1, y1, x2, y2, result):
        return True
    # 不可聯通返回False
    return False

判斷橫向聯通

def horizontalCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False
    if x1 != x2:
        return False
    startY = min(y1, y2)
    endY = max(y1, y2)
    # 判斷兩個方塊是否相鄰
    if (endY - startY) == 1:
        return True
    # 判斷兩個方塊通路上是否都是0,有一個不是,就說明不能聯通,返回false
    for i in range(startY + 1, endY):
        if result[x1][i] != EMPTY_ID:
            return False
    return True

判斷縱向聯通

def verticalCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False

    if y1 != y2:
        return False
    startX = min(x1, x2)
    endX = max(x1, x2)
    # 判斷兩個方塊是否相鄰
    if (endX - startX) == 1:
        return True
    # 判斷兩方塊兒通路上是否可連。
    for i in range(startX + 1, endX):
        if result[i][y1] != EMPTY_ID:
            return False
    return True

判斷一個拐點可聯通

def turnOnceCheck(x1, y1, x2, y2, result):
    if x1 == x2 or y1 == y2:
        return False

    cx = x1
    cy = y2
    dx = x2
    dy = y1
    # 拐點為空,從第一個點到拐點并且從拐點到第二個點可通,則整條路可通。
    if result[cx][cy] == EMPTY_ID:
        if horizontalCheck(x1, y1, cx, cy, result) and verticalCheck(cx, cy, x2, y2, result):
            return True
    if result[dx][dy] == EMPTY_ID:
        if verticalCheck(x1, y1, dx, dy, result) and horizontalCheck(dx, dy, x2, y2, result):
            return True
    return False

判斷兩個拐點可聯通

def turnTwiceCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False

    # 遍歷整個數組找合適的拐點
    for i in range(0, len(result)):
        for j in range(0, len(result[1])):
            # 不為空不能作為拐點
            if result[i][j] != EMPTY_ID:
                continue
            # 不和被選方塊在同一行列的不能作為拐點
            if i != x1 and i != x2 and j != y1 and j != y2:
                continue
            # 作為交點的方塊不能作為拐點
            if (i == x1 and j == y2) or (i == x2 and j == y1):
                continue
            if turnOnceCheck(x1, y1, i, j, result) and (
                    horizontalCheck(i, j, x2, y2, result) or verticalCheck(i, j, x2, y2, result)):
                return True
            if turnOnceCheck(i, j, x2, y2, result) and (
                    horizontalCheck(x1, y1, i, j, result) or verticalCheck(x1, y1, i, j, result)):
                return True
    return False

自動消除

def autoRelease(result, game_x, game_y):
    # 遍歷地圖
    for i in range(0, len(result)):
        for j in range(0, len(result[0])):
            # 當前位置非空
            if result[i][j] != EMPTY_ID:
                # 再次遍歷地圖 尋找另一個滿足條件的圖片
                for m in range(0, len(result)):
                    for n in range(0, len(result[0])):
                        if result[m][n] != EMPTY_ID:
                            # 若可以執行消除
                            if canConnect(i, j, m, n, result):
                                # 消除的兩個位置設置為空
                                result[i][j] = EMPTY_ID
                                result[m][n] = EMPTY_ID
                                print('Remove :' + str(i + 1) + ',' + str(j + 1) + ' and ' + str(m + 1) + ',' + str(
                                    n + 1))

                                # 計算當前兩個位置的圖片在游戲中應該存在的位置
                                x1 = game_x + j * POINT_WIDTH
                                y1 = game_y + i * POINT_HEIGHT
                                x2 = game_x + n * POINT_WIDTH
                                y2 = game_y + m * POINT_HEIGHT

                                # 模擬鼠標點擊第一個圖片所在的位置
                                win32api.SetCursorPos((x1 + 15, y1 + 18))
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x1 + 15, y1 + 18, 0, 0)
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x1 + 15, y1 + 18, 0, 0)

                                # 等待隨機時間 ,防止檢測
                                time.sleep(random.uniform(TIME_INTERVAL_MIN, TIME_INTERVAL_MAX))

                                # 模擬鼠標點擊第二個圖片所在的位置
                                win32api.SetCursorPos((x2 + 15, y2 + 18))
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x2 + 15, y2 + 18, 0, 0)
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x2 + 15, y2 + 18, 0, 0)
                                time.sleep(random.uniform(TIME_INTERVAL_MIN, TIME_INTERVAL_MAX))
                                # 執行消除后返回True
                                return True
    return False

效果的話得上傳視頻,截圖展現不出來效果,大家可以自行試試。

全部代碼

# -*- coding:utf-8 -*-
import cv2
import numpy as np
import win32api
import win32gui
import win32con
from PIL import ImageGrab
import time
import random

# 窗體標題  用于定位游戲窗體
WINDOW_TITLE = "連連看"
# 時間間隔隨機生成 [MIN,MAX]
TIME_INTERVAL_MAX = 0.06
TIME_INTERVAL_MIN = 0.1
# 游戲區域距離頂點的x偏移
MARGIN_LEFT = 10
# 游戲區域距離頂點的y偏移
MARGIN_HEIGHT = 180
# 橫向的方塊數量
H_NUM = 19
# 縱向的方塊數量
V_NUM = 11
# 方塊寬度
POINT_WIDTH = 31
# 方塊高度
POINT_HEIGHT = 35
# 空圖像編號
EMPTY_ID = 0
# 切片處理時候的左上、右下坐標:
SUB_LT_X = 8
SUB_LT_Y = 8
SUB_RB_X = 27
SUB_RB_Y = 27
# 游戲的最多消除次數
MAX_ROUND = 200


def getGameWindow():
    # FindWindow(lpClassName=None, lpWindowName=None)  窗口類名 窗口標題名
    window = win32gui.FindWindow(None, WINDOW_TITLE)

    # 沒有定位到游戲窗體
    while not window:
        print('Failed to locate the game window , reposition the game window after 10 seconds...')
        time.sleep(10)
        window = win32gui.FindWindow(None, WINDOW_TITLE)

    # 定位到游戲窗體
    # 置頂游戲窗口
    win32gui.SetForegroundWindow(window)
    pos = win32gui.GetWindowRect(window)
    print("Game windows at " + str(pos))
    return (pos[0], pos[1])

def getScreenImage():
    print('Shot screen...')
    # 獲取屏幕截圖 Image類型對象
    scim = ImageGrab.grab()
    scim.save('screen.png')
    # 用opencv讀取屏幕截圖
    # 獲取ndarray
    return cv2.imread("screen.png")

def getAllSquare(screen_image, game_pos):
    print('Processing pictures...')
    # 通過游戲窗體定位
    # 加上偏移量獲取游戲區域
    game_x = game_pos[0] + MARGIN_LEFT
    game_y = game_pos[1] + MARGIN_HEIGHT

    # 從游戲區域左上開始
    # 把圖像按照具體大小切割成相同的小塊
    # 切割標準是按照小塊的橫縱坐標
    all_square = []
    for x in range(0, H_NUM):
        for y in range(0, V_NUM):
            # ndarray的切片方法 : [縱坐標起始位置:縱坐標結束為止,橫坐標起始位置:橫坐標結束位置]
            square = screen_image[game_y + y * POINT_HEIGHT:game_y + (y + 1) * POINT_HEIGHT,
                     game_x + x * POINT_WIDTH:game_x + (x + 1) * POINT_WIDTH]
            all_square.append(square)

    # 因為有些圖片的邊緣會造成干擾,所以統一把圖片往內縮小一圈
    # 對所有的方塊進行處理 ,去掉邊緣一圈后返回
    finalresult = []
    for square in all_square:
        s = square[SUB_LT_Y:SUB_RB_Y, SUB_LT_X:SUB_RB_X]
        finalresult.append(s)
    return finalresult


# 判斷列表中是否存在相同圖形
# 存在返回進行判斷圖片所在的id
# 否則返回-1
def isImageExist(img, img_list):
    i = 0
    for existed_img in img_list:
        # 兩個圖片進行比較 返回的是兩個圖片的標準差
        b = np.subtract(existed_img, img)
        # 若標準差全為0 即兩張圖片沒有區別
        if not np.any(b):
            return i
        i = i + 1
    return -1

def getAllSquareTypes(all_square):
    print("Init pictures types...")
    types = []
    # number列表用來記錄每個id的出現次數
    number = []
    # 當前出現次數最多的方塊
    # 這里我們默認出現最多的方塊應該是空白塊
    nowid = 0;
    for square in all_square:
        nid = isImageExist(square, types)
        # 如果這個圖像不存在則插入列表
        if nid == -1:
            types.append(square)
            number.append(1);
        else:
            # 若這個圖像存在則給計數器 + 1
            number[nid] = number[nid] + 1
            if (number[nid] > number[nowid]):
                nowid = nid
    # 更新EMPTY_ID
    # 即判斷在當前這張圖中的空白塊id
    global EMPTY_ID
    EMPTY_ID = nowid
    print('EMPTY_ID = ' + str(EMPTY_ID))
    return types


# 將二維圖片矩陣轉換為二維數字矩陣
# 注意因為在上面對截屏切片時是以列為優先切片的
# 所以生成的record二維矩陣每行存放的其實是游戲屏幕中每列的編號
# 換個說法就是record其實是游戲屏幕中心對稱后的列表
def getAllSquareRecord(all_square_list, types):
    print("Change map...")
    record = []
    line = []
    for square in all_square_list:
        num = 0
        for type in types:
            res = cv2.subtract(square, type)
            if not np.any(res):
                line.append(num)
                break
            num += 1
        # 每列的數量為V_NUM
        # 那么當當前的line列表中存在V_NUM個方塊時我們認為本列處理完畢
        if len(line) == V_NUM:
            print(line);
            record.append(line)
            line = []
    return record

def canConnect(x1, y1, x2, y2, r):
    result = r[:]

    # 如果兩個圖像中有一個為0 直接返回False
    if result[x1][y1] == EMPTY_ID or result[x2][y2] == EMPTY_ID:
        return False
    if x1 == x2 and y1 == y2:
        return False
    if result[x1][y1] != result[x2][y2]:
        return False
    # 判斷橫向連通
    if horizontalCheck(x1, y1, x2, y2, result):
        return True
    # 判斷縱向連通
    if verticalCheck(x1, y1, x2, y2, result):
        return True
    # 判斷一個拐點可連通
    if turnOnceCheck(x1, y1, x2, y2, result):
        return True
    # 判斷兩個拐點可連通
    if turnTwiceCheck(x1, y1, x2, y2, result):
        return True
    # 不可聯通返回False
    return False

def horizontalCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False
    if x1 != x2:
        return False
    startY = min(y1, y2)
    endY = max(y1, y2)
    # 判斷兩個方塊是否相鄰
    if (endY - startY) == 1:
        return True
    # 判斷兩個方塊通路上是否都是0,有一個不是,就說明不能聯通,返回false
    for i in range(startY + 1, endY):
        if result[x1][i] != EMPTY_ID:
            return False
    return True

def verticalCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False

    if y1 != y2:
        return False
    startX = min(x1, x2)
    endX = max(x1, x2)
    # 判斷兩個方塊是否相鄰
    if (endX - startX) == 1:
        return True
    # 判斷兩方塊兒通路上是否可連。
    for i in range(startX + 1, endX):
        if result[i][y1] != EMPTY_ID:
            return False
    return True


def turnOnceCheck(x1, y1, x2, y2, result):
    if x1 == x2 or y1 == y2:
        return False

    cx = x1
    cy = y2
    dx = x2
    dy = y1
    # 拐點為空,從第一個點到拐點并且從拐點到第二個點可通,則整條路可通。
    if result[cx][cy] == EMPTY_ID:
        if horizontalCheck(x1, y1, cx, cy, result) and verticalCheck(cx, cy, x2, y2, result):
            return True
    if result[dx][dy] == EMPTY_ID:
        if verticalCheck(x1, y1, dx, dy, result) and horizontalCheck(dx, dy, x2, y2, result):
            return True
    return False


def turnTwiceCheck(x1, y1, x2, y2, result):
    if x1 == x2 and y1 == y2:
        return False

    # 遍歷整個數組找合適的拐點
    for i in range(0, len(result)):
        for j in range(0, len(result[1])):
            # 不為空不能作為拐點
            if result[i][j] != EMPTY_ID:
                continue
            # 不和被選方塊在同一行列的不能作為拐點
            if i != x1 and i != x2 and j != y1 and j != y2:
                continue
            # 作為交點的方塊不能作為拐點
            if (i == x1 and j == y2) or (i == x2 and j == y1):
                continue
            if turnOnceCheck(x1, y1, i, j, result) and (
                    horizontalCheck(i, j, x2, y2, result) or verticalCheck(i, j, x2, y2, result)):
                return True
            if turnOnceCheck(i, j, x2, y2, result) and (
                    horizontalCheck(x1, y1, i, j, result) or verticalCheck(x1, y1, i, j, result)):
                return True
    return False


def autoRelease(result, game_x, game_y):
    # 遍歷地圖
    for i in range(0, len(result)):
        for j in range(0, len(result[0])):
            # 當前位置非空
            if result[i][j] != EMPTY_ID:
                # 再次遍歷地圖 尋找另一個滿足條件的圖片
                for m in range(0, len(result)):
                    for n in range(0, len(result[0])):
                        if result[m][n] != EMPTY_ID:
                            # 若可以執行消除
                            if canConnect(i, j, m, n, result):
                                # 消除的兩個位置設置為空
                                result[i][j] = EMPTY_ID
                                result[m][n] = EMPTY_ID
                                print('Remove :' + str(i + 1) + ',' + str(j + 1) + ' and ' + str(m + 1) + ',' + str(
                                    n + 1))

                                # 計算當前兩個位置的圖片在游戲中應該存在的位置
                                x1 = game_x + j * POINT_WIDTH
                                y1 = game_y + i * POINT_HEIGHT
                                x2 = game_x + n * POINT_WIDTH
                                y2 = game_y + m * POINT_HEIGHT

                                # 模擬鼠標點擊第一個圖片所在的位置
                                win32api.SetCursorPos((x1 + 15, y1 + 18))
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x1 + 15, y1 + 18, 0, 0)
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x1 + 15, y1 + 18, 0, 0)

                                # 等待隨機時間 ,防止檢測
                                time.sleep(random.uniform(TIME_INTERVAL_MIN, TIME_INTERVAL_MAX))

                                # 模擬鼠標點擊第二個圖片所在的位置
                                win32api.SetCursorPos((x2 + 15, y2 + 18))
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x2 + 15, y2 + 18, 0, 0)
                                win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x2 + 15, y2 + 18, 0, 0)
                                time.sleep(random.uniform(TIME_INTERVAL_MIN, TIME_INTERVAL_MAX))
                                # 執行消除后返回True
                                return True
    return False


def autoRemove(squares, game_pos):
    game_x = game_pos[0] + MARGIN_LEFT
    game_y = game_pos[1] + MARGIN_HEIGHT
    # 重復一次消除直到到達最多消除次數
    while True:
        if not autoRelease(squares, game_x, game_y):
            # 當不再有可消除的方塊時結束 , 返回消除數量
            return


if __name__ == '__main__':
    random.seed()
    # i. 定位游戲窗體
    game_pos = getGameWindow()
    time.sleep(1)
    # ii. 獲取屏幕截圖
    screen_image = getScreenImage()
    # iii. 對截圖切片,形成一張二維地圖
    all_square_list = getAllSquare(screen_image, game_pos)
    # iv. 獲取所有類型的圖形,并編號
    types = getAllSquareTypes(all_square_list)
    # v. 講獲取的圖片地圖轉換成數字矩陣
    result = np.transpose(getAllSquareRecord(all_square_list, types))
    # vi. 執行消除 , 并輸出消除數量
    print('The total elimination amount is ' + str(autoRemove(result, game_pos)))

以上就是關于“Python怎么實現自動玩連連看”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芮城县| 扶绥县| 罗江县| 启东市| 当涂县| 木兰县| 依兰县| 岫岩| 滨州市| 富阳市| 伽师县| 姚安县| 龙南县| 汉中市| 衡水市| 宜黄县| 乌鲁木齐市| 永春县| 南雄市| 凤山市| 永济市| 清丰县| 天门市| 灌阳县| 麟游县| 波密县| 砚山县| 武汉市| 怀化市| 海安县| 吐鲁番市| 中卫市| 融水| 望谟县| 福安市| 沁源县| 六盘水市| 剑川县| 万荣县| 阳朔县| 金昌市|