python实现简易版连连看

小时候熟悉的连连看游戏的简易版,需要自己创建imgs文件夹,里面放置1-12张图片,命名为n.png,还有bg.png和win.png   打开游戏开始计时,玩家点击相同的图案即可消除。可以通过游戏时间的长短来进行pk。

# coding:utf-8
import pygame, sys, random, time
from pygame.locals import *
# 初始化pygame环境
pygame.init()
# 创建窗口
canvas = pygame.display.set_mode((1000, 600))
# 加载图片
bg = pygame.image.load("imgs/bg2.png")
win = pygame.image.load("imgs/win.png")
# 设置标题
pygame.display.set_caption("小码君表情连连看")
# 图片位置数组
p = [ [170, 120], [280, 120], [390, 120], [500, 120], [610, 120], [720, 120], 
         [170, 230], [280, 230], [390, 230], [500, 230], [610, 230], [720, 230],
         [170, 340], [280, 340], [390, 340], [500, 340], [610, 340], [720, 340],
         [170, 450], [280, 450], [390, 450], [500, 450], [610, 450], [720, 450],]

# 添加点击事件获取点击到的卡片信息
def  Click(mouse_x, mouse_y):
    x1 = mouse_x
    y1 = mouse_y
    # 获取所有卡片信息
    for i in range(0, len(cards)):
        imgx = cards[i].x
  

你可能感兴趣的:(python,pygame,开发语言)