Python Pygame制作简单五子棋游戏
代码参考自:https://blog.csdn.net/weixin_43918046/article/details/119521845
新增功能:1任意棋盘大小;2.任意棋子连线
# 棋盘大小 [670, 670]
# 棋盘行列 15*15
import pygame
from pygame.locals import QUIT, KEYDOWN
import numpy as np
import timeline_space=44
screen_margin=27
row=col=17
# screen_size=(670, 670) # 27*2+44*14
screen_row=(row-1)*line_space+screen_margin*2
screen_col=(col-1)*line_space+screen_margin*2
screen_size=(screen_row,screen_col )
screen_color = [238, 154, 73]
line_color=[0,0,0]
prompt_box_color=[0, 229, 238]
stage = np.zeros((row, col))
white_color = [255, 255, 255] # 白棋颜色
black_color = [0, 0, 0] # 黑棋颜色
victory_color=[238,48,167]
line=5 # 五颗棋子
# 设置鼠标时延
flag = False
tim = 0def find_pos(x, y):x=int((x-screen_margin)/line_space+0.5)y=int((y-screen_margin)/line_space+0.5)x=x if x<=(row-1) else row-1y=y if y<=(col-1) else col-1return x,y
def find_line_consecutive_ones_v2(matrix, line):victory_list_v2=[]a=find_line_consecutive_ones(matrix, line)b=find_line_consecutive_ones(matrix*(-1), line)victory_list_v2.extend(a)victory_list_v2.extend(b)return victory_list_v2
def my_range(start,end):if start<end:return range(start,end+1)else:return range(start,end-1,-1)
def find_line_consecutive_ones(matrix, line):victory_list=[]w, h = matrix.shape# 水平方向for row_index, row in enumerate(matrix):for col_index in range(len(row) - (line - 1)):if np.all(row[col_index:col_index + line] == 1):r,c=row_index,col_indexvictory_list.append([[r,c+i] for i in range(line) ])# 垂直方向for col_index in range(matrix.shape[1]):for row_index in range(matrix.shape[0] - (line - 1)):if np.all(matrix[row_index:row_index + line, col_index] == 1):r, c = row_index, col_indexvictory_list.append([[r+i, c] for i in range(line )])# 正对角线方向for diag in range(-(w - line), (h - line) + 1):diagonal = np.diag(matrix, k=diag)# print(diagonal)if len(diagonal) >= line:for start in range(len(diagonal) - (line - 1)):if np.all(diagonal[start:start + line] == 1):start_row = max(0, -diag) + startstart_col = max(0, diag) + startend_row = start_row + line-1end_col = start_col + line-1r=[i for i in my_range(start_row,end_row)]c=[i for i in my_range(start_col,end_col)]rc=[i for i in zip(r,c)]victory_list.append(rc)# 反对角线方向for diag in range(-(w - line), (h - line) + 1):diagonal = np.diag(np.fliplr(matrix), k=diag)# print(diagonal)if len(diagonal) >= line:for start in range(len(diagonal) - (line - 1)):if np.all(diagonal[start:start + line] == 1):start_row = max(0, -diag) + startstart_col = min(h - 1, h - 1 - diag) - startend_row = start_row + line-1end_col = start_col - line+1r=[i for i in my_range(start_row,end_row)]c=[i for i in my_range(start_col,end_col)]rc=[i for i in zip(r,c)]victory_list.append(rc)return victory_list# 初始化pygame
pygame.init()
# 获取对显示系统的访问,并创建一个窗口screen
# 窗口大小为670x670
screen = pygame.display.set_mode(screen_size)
while True: # 不断训练刷新画布for event in pygame.event.get(): # 获取事件,如果鼠标点击右上角关闭按钮,关闭if event.type in (QUIT, KEYDOWN):sys.exit()screen.fill(screen_color) # 清屏col_lines = [[[screen_margin+i*line_space, screen_margin], [screen_margin +i*line_space, screen_margin+(col-1)*line_space]] for i in range(col)]for i, xy_xy in enumerate(col_lines):line_thickness = 2if i == 0 or i == len(col_lines)-1:line_thickness = 4pygame.draw.line(screen, line_color,xy_xy[0], xy_xy[1], line_thickness)row_lines = [[[screen_margin, screen_margin+i*line_space], [screen_margin +(row-1)*line_space, screen_margin+i*line_space]] for i in range(row)]for i, xy_xy in enumerate(row_lines):line_thickness = 2if i == 0 or i == len(row_lines)-1:line_thickness = 4pygame.draw.line(screen, line_color,xy_xy[0], xy_xy[1], line_thickness)pygame.draw.circle(screen, line_color, [screen_row/2, screen_col/2], 8, 0)for x in range(stage.shape[0]): # 外层循环遍历行for y in range(stage.shape[1]): # 内层循环遍历列if stage[x][y] == 0:continueplay_color = black_color if stage[x][y] == -1 else white_colorpygame.draw.circle(screen, play_color, [screen_margin+x*line_space, screen_margin+y*line_space], 20, 0)res = find_line_consecutive_ones_v2(stage, line)time.sleep(0.1)if len(res) > 0:for ret in res:for x, y in ret:pygame.draw.rect(screen, victory_color, [screen_margin + int((x-0.5)*line_space), screen_margin+int((y-0.5)*line_space), line_space, line_space], 2, 1)pygame.display.update() # 刷新显示continue # 游戏结束,停止下面的操作# 获取鼠标坐标信息x, y = pygame.mouse.get_pos()x, y = find_pos(x, y)if stage[x][y] == 0:pygame.draw.rect(screen, prompt_box_color, [screen_margin + int((x-0.5)*line_space), screen_margin+int((y-0.5)*line_space), line_space, line_space], 2, 1)if pygame.mouse.get_pressed()[0] and tim == 0:flag = Trueif stage[x][y] == 0: # 判断是否可以落子,再落子if np.sum(stage == 0) % 2 == 0: # 黑子stage[x][y] = -1else:stage[x][y] = 1# 鼠标左键延时作用if flag:tim += 1if tim % 10 == 0: # 延时200msflag = Falsetim = 0pygame.display.update() # 刷新显示
相关文章:
Python Pygame制作简单五子棋游戏
代码参考自:https://blog.csdn.net/weixin_43918046/article/details/119521845 新增功能:1任意棋盘大小;2.任意棋子连线 # 棋盘大小 [670, 670] # 棋盘行列 15*15 import pygame from pygame.locals import QUIT, KEYDOWN import numpy as…...

JS+H5在线文心AI聊天(第三方接口)
源码在最后面 调用的不是文心官方接口 可以正常聊天 有打字动画 效果图 源代码 <!DOCTYPE html> <html lang"zh"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-s…...

kafka源码阅读-ReplicaStateMachine(副本状态机)解析
概述 Kafka源码包含多个模块,每个模块负责不同的功能。以下是一些核心模块及其功能的概述: 服务端源码 :实现Kafka Broker的核心功能,包括日志存储、控制器、协调器、元数据管理及状态机管理、延迟机制、消费者组管理、高并发网络…...

【MetaGPT系列】【MetaGPT完全实践宝典——如何定义单一行为多行为Agent】
目录 前言一、智能体1-1、Agent概述1-2、Agent与ChatGPT的区别 二、多智能体框架MetaGPT2-1、安装&配置2-2、使用已有的Agent(ProductManager)2-3、拥有单一行为的Agent(SimpleCoder)2-3-1、定义写代码行为2-3-2、角色定义2-3…...

Kolla-Ansible的确是不支持CentOS-Stream系列产品了
看着OpenStack最新的 C 版本出来一段时间了,想尝个鲜、用Kolla-Ansible进行容器化部署,结果嘛。。。 根据实验结果,自OpenStack Bobcat版本开始,Kolla-Ansible就适合在CentOS系列产品上部署了,通过对 Bobcat和Caracal…...

IDEA启动C:\Users\badboy\.jdks\corretto-17.0.7\bin\java.exe -Xmx700m报错
这篇文章写的就很详细了(IDEA启动C:\Users\badboy\.jdks\corretto-17.0.7\bin\java.exe -Xmx700m报错_error occurred during initialization of vm failed -CSDN博客)...

ctfshow298-300(java信息泄露,代码审计)
Web298 代码审计 这里看到getVipStatus方法,获得了获取flag的条件就是user等于admin,password等于ctfshow Poc: https://d036a90d-ac1c-4de1-9b0b-86f52d2586b9.challenge.ctf.show/ctfshow/login?usernameadmin&passwordctfshow Web299 打开页面…...

Java 基础 and 进阶面试知识点(超详细)
一个 Java 文件中是否可以存在多个类(修饰类除外)? 一个 Java 文件中是可以存在多个类的,但是一个 Java 文件中只能存在一个 public 所修饰的类,而且这个 Java 文件的文件名还必须和 public 所修饰类的类名保持一致&a…...

【LabVIEW作业篇 - 5】:水仙花数、数组与for循环的连接
文章目录 水仙花数数组与for循环的连接 水仙花数 水仙花数,是指一个3位数,它的每个位上的数字的3次幂之和等于它本身。如371 3^3 7^3 1^3,则371是一个水仙花数。 思路:水仙花数是一个三位数,通过使用for循环…...
Kafka系列之如何提高消费者消费速度
前言 在实际开发过程中,如果使用Kafka处理超大数据量(千万级、亿级)的场景,Kafka消费者的消费速度可能决定系统性能瓶颈。 实现方案 为了提高消费者的消费速度,我们可以采取以下措施: 将主题的分区数量增大,如 20&…...
mac安装Whisper
Whisper 官方git https://github.com/openai/whisper?tabreadme-ov-file 基本上参考官方的安装流程 pip3 install -U openai-whisper pip3 install githttps://github.com/openai/whisper.git pip3 install --upgrade --no-deps --force-reinstall githttps://github.com/…...

Linux:进程概述(什么是进程、进程控制块PCB、并发与并行、进程的状态、进程的相关命令)
进程概述 (1)What(什么是进程) 程序:磁盘上的可执行文件,它占用磁盘、是一个静态概念 进程:程序执行之后的状态,占用CPU和内存,是一个动态概念;每一个进程都有一个对应的进程控制块…...

Unity UGUI 之 坐标转换
本文仅作学习笔记与交流,不作任何商业用途 本文包括但不限于unity官方手册,唐老狮,麦扣教程知识,引用会标记,如有不足还请斧正 本文在发布时间选用unity 2022.3.8稳定版本,请注意分别 前置知识:…...

使用 uPlot 在 Vue 中创建交互式图表
本文由ScriptEcho平台提供技术支持 项目地址:传送门 使用 uPlot 在 Vue 中创建交互式图表 应用场景介绍 uPlot 是一个轻量级、高性能的图表库,适用于创建各种交互式图表。它具有丰富的功能,包括可自定义的轴、网格、刻度和交互性。本篇博…...

SpringBoot 项目配置文件注释乱码的问题解决方案
一、问题描述 在项目的配置文件中,我们写了一些注释,如下所示: 但是再次打开注释会变成乱码,如下所示: 那么如何解决呢? 二、解决方案 1. 点击” File→Setting" 2. 搜索“File Encodings”, 将框…...
TTS如何正确读AI缩写、金额和数字
案例:Tell me whats AI(a i), you need pay $186.30, your card Number is 1 2 3, your work Number is 5 6 7 8...
python基础知识点(蓝桥杯python科目个人复习计划75)
第一题:ip补充 题目描述: 小蓝的ip地址为192.168.*.21,其中*是一个数字,请问这个数字最大可能是多少? import os import sys# 请在此输入您的代码 print("255") 第二题:出现最多的字符 题目描…...

小技巧:如何在已知PDF密码情况下去掉PDF的密码保护
第一步,用Edge打开你的pdf,输入密码进去 第二步,点击打印 第三步,选择导出PDF,选择彩印 第四步,选择导出位置,导出成功后打开发现没有密码限制了!...

Java泛型的介绍和基本使用
什么是泛型 泛型就是将类型参数化,比如定义了一个栈,你必须在定义之前声明这个栈中存放的数据的类型,是int也好是double或者其他的引用数据类型也好,定义好了之后这个栈就无法用来存放其他类型的数据。如果这时候我们想要使用这…...

【C++】动态内存管理与模版
目录 1、关键字new: 1、用法: 2、理解: 3、与malloc的相同与不同: 1、相同: 2、不同: 2、模版初阶: 1、函数模版: 1、概念: 2、关键字:template&…...

Chapter03-Authentication vulnerabilities
文章目录 1. 身份验证简介1.1 What is authentication1.2 difference between authentication and authorization1.3 身份验证机制失效的原因1.4 身份验证机制失效的影响 2. 基于登录功能的漏洞2.1 密码爆破2.2 用户名枚举2.3 有缺陷的暴力破解防护2.3.1 如果用户登录尝试失败次…...
在鸿蒙HarmonyOS 5中实现抖音风格的点赞功能
下面我将详细介绍如何使用HarmonyOS SDK在HarmonyOS 5中实现类似抖音的点赞功能,包括动画效果、数据同步和交互优化。 1. 基础点赞功能实现 1.1 创建数据模型 // VideoModel.ets export class VideoModel {id: string "";title: string ""…...

转转集团旗下首家二手多品类循环仓店“超级转转”开业
6月9日,国内领先的循环经济企业转转集团旗下首家二手多品类循环仓店“超级转转”正式开业。 转转集团创始人兼CEO黄炜、转转循环时尚发起人朱珠、转转集团COO兼红布林CEO胡伟琨、王府井集团副总裁祝捷等出席了开业剪彩仪式。 据「TMT星球」了解,“超级…...
【论文笔记】若干矿井粉尘检测算法概述
总的来说,传统机器学习、传统机器学习与深度学习的结合、LSTM等算法所需要的数据集来源于矿井传感器测量的粉尘浓度,通过建立回归模型来预测未来矿井的粉尘浓度。传统机器学习算法性能易受数据中极端值的影响。YOLO等计算机视觉算法所需要的数据集来源于…...
CRMEB 框架中 PHP 上传扩展开发:涵盖本地上传及阿里云 OSS、腾讯云 COS、七牛云
目前已有本地上传、阿里云OSS上传、腾讯云COS上传、七牛云上传扩展 扩展入口文件 文件目录 crmeb\services\upload\Upload.php namespace crmeb\services\upload;use crmeb\basic\BaseManager; use think\facade\Config;/*** Class Upload* package crmeb\services\upload* …...

html-<abbr> 缩写或首字母缩略词
定义与作用 <abbr> 标签用于表示缩写或首字母缩略词,它可以帮助用户更好地理解缩写的含义,尤其是对于那些不熟悉该缩写的用户。 title 属性的内容提供了缩写的详细说明。当用户将鼠标悬停在缩写上时,会显示一个提示框。 示例&#x…...
BLEU评分:机器翻译质量评估的黄金标准
BLEU评分:机器翻译质量评估的黄金标准 1. 引言 在自然语言处理(NLP)领域,衡量一个机器翻译模型的性能至关重要。BLEU (Bilingual Evaluation Understudy) 作为一种自动化评估指标,自2002年由IBM的Kishore Papineni等人提出以来,…...

windows系统MySQL安装文档
概览:本文讨论了MySQL的安装、使用过程中涉及的解压、配置、初始化、注册服务、启动、修改密码、登录、退出以及卸载等相关内容,为学习者提供全面的操作指导。关键要点包括: 解压 :下载完成后解压压缩包,得到MySQL 8.…...

永磁同步电机无速度算法--基于卡尔曼滤波器的滑模观测器
一、原理介绍 传统滑模观测器采用如下结构: 传统SMO中LPF会带来相位延迟和幅值衰减,并且需要额外的相位补偿。 采用扩展卡尔曼滤波器代替常用低通滤波器(LPF),可以去除高次谐波,并且不用相位补偿就可以获得一个误差较小的转子位…...

【C++】纯虚函数类外可以写实现吗?
1. 答案 先说答案,可以。 2.代码测试 .h头文件 #include <iostream> #include <string>// 抽象基类 class AbstractBase { public:AbstractBase() default;virtual ~AbstractBase() default; // 默认析构函数public:virtual int PureVirtualFunct…...