返回顶部
首页 > 资讯 > 后端开发 > Python >用python实现打砖块小游戏
  • 875
分享到

用python实现打砖块小游戏

2024-04-02 19:04:59 875人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

本文实例为大家分享了python实现打砖块小游戏的具体代码,供大家参考,具体内容如下 开发益智的打砖块小游戏,你可以试一下能打几块 import pygame,sys,time,ra

本文实例为大家分享了python实现打砖块小游戏的具体代码,供大家参考,具体内容如下

开发益智的打砖块小游戏,你可以试一下能打几块

import pygame,sys,time,random
from pygame.locals import *        #
from static_params import *   #引入所有静态参数
from GameClass import *


pygame.init()   #初始化游戏
mainclock = pygame.time.Clock() #时钟设置
Exit =0
global Surface 
Surface = pygame.display.set_mode([WindowWidth,WindowHeight],0,32) #窗口设置
pygame.display.set_caption('打砖块游戏')    #设置窗口标题
def BeforeGame():
    StartImage = pygame.image.load('intro_Ball.png').convert_alpha() #开始图像的界面
    button = Button(Surface,FontColor,TextLocation,'StartGame')
    flag = True
    while flag:
        for event in pygame.event.get():
            if event.type ==QUIT:
                Exit = 1
                pygame.quit()
                exit()
            if event.type == MOUSEBUTTONUP:
                if button.is_overed():
                    flag = False
        Surface.blit(StartImage,ImageLocation)
        button.ButtonBlit()
        pygame.display.update()
        mainclock.tick(100)

def Gaming():
    #设置一个暂停函数
    def pause():
        button = Button(Surface,FontColor,TextLocation,'Continue')
        Surface.fill((0,0,0))
        flag = True
        while flag:
            for event in pygame.event.get():
                if event.type ==QUIT:
                    Exit = 1
                    pygame.quit()
                    exit()
                if event.type == MOUSEBUTTONUP:
                    if button.is_overed():
                        flag = False
            pygame.mouse.set_visible(True)
            button.ButtonBlit()
            pygame.display.update()
            mainclock.tick(100)

    Ball = ball(BallCenter,BallRadius,BallColor,BallSpeed,MoveAngle,Surface)
    paddle = Paddle(0,WindowHeight-PaddleHeight,PaddleWidth,PaddleHeight,PaddleColor,Surface)
    # 设置一个砖块类的矩阵
    BrickMatrix = [[Brick(i,j,BrickWidth,BrickHeight,BrickHitNumber,BrickColor,Surface) for i in range(0,100,BrickWidth+3) if i+BrickWidth<640]\
    for j in range(0,50,BrickHeight+2)]
    mouse_x,mouse_y = pygame.mouse.get_pos()
    while True:
        for event in pygame.event.get():
            if event.type == QUIT:
                pygame.quit()
                exit()
            if event.type == MOUSEMOTION:
                mouse_x, mouse_y = event.pos  #判断鼠标的位置
            if event.type == KEYDOWN:   #按下空格键暂停
                if event.key == K_SPACE:
                    pause()
        Surface.fill((0,0,0))
        #设置鼠标为不可见状态
        pygame.mouse.set_visible(False)
        #判断球的运动
        #判断是否撞上了边界或者挡板
        if Ball.center[1]+Ball.radius+paddle.height > WindowHeight:
            if Ball.center[0]>paddle.left and Ball.center[0]<paddle.left+paddle.width:
                Ball.rebound4()
        #判断是否装上了左边界
        elif Ball.center[0]-Ball.radius<interval:
            Ball.rebound1()
        elif Ball.center[0]+Ball.radius>WindowWidth-interval:
            Ball.rebound2()
        #判断是否撞上了上边界
        elif Ball.center[1]-Ball.radius<interval:
            Ball.rebound3()
        for brickline in BrickMatrix:
            for brick in brickline:    
                if brick.exist == 1:    
                    if brick.top >Ball.center[1] and brick.top-Ball.center[1]-Ball.radius<interval and Ball.speedy>0 and Ball.center[0]>brick.left and Ball.center[0]<brick.right:
                        print(1,Ball.center,brick.left,brick.right,brick.top,brick.bottom,Ball.radius)
                        Ball.rebound4()
                        brick.hitnumber =brick.hitnumber-1
                    if Ball.center[1]>brick.bottom and Ball.center[1]-Ball.radius-brick.bottom<interval and Ball.speedy<0 and Ball.center[0]>brick.left and Ball.center[0]<brick.right:
                        print(2,Ball.center,brick.left,brick.right,brick.top,brick.bottom,Ball.radius)
                        Ball.rebound3()
                        brick.hitnumber =brick.hitnumber-1
                    if Ball.center[0]< brick.left and brick.left-Ball.center[0]-Ball.radius<interval and Ball.speedx>0 and Ball.center[1]>brick.top and Ball.center[1]<brick.bottom:
                        print(3,Ball.center,brick.left,brick.right,brick.top,brick.bottom,Ball.radius)
                        Ball.rebound2()
                        brick.hitnumber =brick.hitnumber-1
                    if Ball.center[0]>brick.right and Ball.center[0]-Ball.radius-brick.right<interval and Ball.speedx<0 and Ball.center[1]>brick.top and Ball.center[1]<brick.bottom:
                        print(4,Ball.center,brick.left,brick.right,brick.top,brick.bottom,Ball.radius)
                        Ball.rebound1()
                        brick.hitnumber =brick.hitnumber-1
                    if brick.hitnumber <= 0:
                        brick.exist = 0
        #所有的砖块都不存在了,则游戏胜利
        if all([not any([brick.exist for brick in line]) for line in BrickMatrix] ):
            return 'Win'
        # print(brick.hitnumber,brick.exist)
        Ball.move()
        paddle.get_pos(mouse_x)
        if Ball.fall():
            return 'Fail'
        #画出图形
        for brickline in BrickMatrix:
            for brick in brickline:
                brick.draw()
        Ball.draw()
        paddle.draw()
        pygame.display.update()
        #每秒钟执行100次该代码,用来控制游戏循环频率
        mainclock.tick(100)
    

def AfterGame(text):
    result = pygame.font.SysFont('comicsansms',100).render(text,1,(0,255,0))
    Surface.blit(result,ImageLocation)
    button1 = Button(Surface,FontColor,TextLocation,'PLAY IT AGAIN')
    button2 = Button(Surface,FontColor,TextLocation2,'QUIT')
    flag = True
    while flag:
        pygame.mouse.set_visible(True)
        for event in pygame.event.get():
            if event.type == QUIT:
                Exit = 1
                pygame.quit()
                exit()
            if event.type == MOUSEBUTTONUP:
                if button1.is_overed():
                    flag = False
                if button2.is_overed():
                    Exit = 1
                    pygame.quit()
                    exit()
        button1.ButtonBlit()
        button2.ButtonBlit()
        pygame.display.update()
        mainclock.tick(100)


def main():
    #展示游戏开始前的信息
    BeforeGame()
    print(Exit)
    #开始游戏循环
    while not Exit:
        com=Gaming()
        AfterGame(com)


if __name__ =='__main__':
    main()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

--结束END--

本文标题: 用python实现打砖块小游戏

本文链接: https://lsjlt.com/news/117910.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 用python实现打砖块小游戏
    本文实例为大家分享了python实现打砖块小游戏的具体代码,供大家参考,具体内容如下 开发益智的打砖块小游戏,你可以试一下能打几块 import pygame,sys,time,ra...
    99+
    2024-04-02
  • 怎么用python实现打砖块小游戏
    这篇文章主要介绍了怎么用python实现打砖块小游戏的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么用python实现打砖块小游戏文章都会有所收获,下面我们一起来看看吧。开发益智的打砖块小游戏,你可以试一下能...
    99+
    2023-06-30
  • python pygame实现打砖块游戏
    本文实例为大家分享了python pygame实现打砖块游戏的具体代码,供大家参考,具体内容如下 最近在尝试着写一个用强化学习的方法玩打砖块的游戏,首先将游戏环境做些改动,以便产生需...
    99+
    2024-04-02
  • Python中怎么用Pygame实现打砖块小游戏
    这篇文章主要介绍“Python中怎么用Pygame实现打砖块小游戏”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Python中怎么用Pygame实现打砖块小游戏”文章能帮助大家解决问题。一、准备中1...
    99+
    2023-06-29
  • Python Pygame实战之打砖块小游戏
    目录导语一、准备中1)游戏规则:2)环境安装二、开始敲代码1)配置文件2)定义一些类3)定义开始、结束界面4)定义游戏5)主函数与运行界面三、效果展示导语 嘿!前不久刚刚给大家过一款...
    99+
    2024-04-02
  • 怎么用vue3实现打砖块小游戏
    这篇文章主要介绍“怎么用vue3实现打砖块小游戏”,在日常操作中,相信很多人在怎么用vue3实现打砖块小游戏问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用vue3实现打砖块小游戏”的疑惑有所帮助!接下来...
    99+
    2023-07-06
  • C语言实现打砖块小游戏
    本文实例为大家分享了C语言实现打砖块游戏的具体代码,供大家参考,具体内容如下 本节我们将沿用 上一节 所提到的函数式游戏框架来写一个弹球打砖块的游戏。 基本量、边框绘制 我们首先定义...
    99+
    2024-04-02
  • Unity实现打砖块游戏
    本文实例为大家分享了Unity实现打砖块游戏的具体代码,供大家参考,具体内容如下 效果演示 1.创建墙 1.1我们用预制体来统一管理墙 方便以后对墙进行修改 1.2我们还需要给砖...
    99+
    2024-04-02
  • Unity3D实现打砖块游戏
    本文实例为大家分享了Unity3D实现打砖块的具体代码,供大家参考,具体内容如下 基于unity2017 1、 使用Plane创建初始地图 (层级菜单[Hierarcy]-> ...
    99+
    2024-04-02
  • Python Pygame如何实现打砖块游戏
    本文小编为大家详细介绍“Python Pygame如何实现打砖块游戏”,内容详细,步骤清晰,细节处理妥当,希望这篇“Python Pygame如何实现打砖块游戏”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来...
    99+
    2023-06-29
  • python pygame怎么实现打砖块游戏
    游戏环境的界面以及代码如下import sys sys.path.append(r'E:\anaconda\Lib\site-packages') import pygame import sys import random...
    99+
    2023-05-25
    Python Pygame
  • 怎么用C语言实现小游戏打砖块
    这篇文章主要讲解了“怎么用C语言实现小游戏打砖块”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用C语言实现小游戏打砖块”吧!游戏目标:消除所有的方块即可过关。操作指南:游戏中使用键盘方向...
    99+
    2023-06-25
  • Java怎么打砖块小游戏
    这篇文章主要介绍了Java怎么打砖块小游戏,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。[程序中使用的数据结构和符号说明]HitBrick类GreenBallThread控制...
    99+
    2023-05-30
    java
  • JS实现简单打砖块弹球小游戏
    本文实例为大家分享了JS实现打砖块弹球小游戏的具体代码,供大家参考,具体内容如下 使用原生JS写的,还有一点瑕疵。代码直接复制到html就能使用 速度随机的 因为设涉及横向和纵向速度...
    99+
    2024-04-02
  • C++使用easyx实现打砖块游戏
    本文实例为大家分享了C++使用easyx实现打砖块游戏的具体代码,供大家参考,具体内容如下 代码: #include<graphics.h> #include<...
    99+
    2024-04-02
  • Python Pygame实战之打砖块游戏的实现
    目录导语开发工具环境搭建效果展示原理简介导语 想起来好久没更这个系列的文章了,周末过来补一波好了。本期我们将利用python制作一个打砖块小游戏,废话不多说,让我们愉快地开始吧~ 开...
    99+
    2024-04-02
  • java实现打砖块游戏算法
    一个打砖块游戏算法,供大家参考,具体内容如下 这里有一个打砖块游戏:小明面前有很多砖块,每个砖块上有一个字符,小明每击中一个砖块,会产生一个分值,而总分即这些分值总和。砖块上的字符可...
    99+
    2024-04-02
  • C语言实现打砖块游戏
    本文实例为大家分享了C语言实现打砖块游戏的具体代码,供大家参考,具体内容如下 代码: #include<stdio.h> #include<stdlib.h>...
    99+
    2024-04-02
  • Unity实现弹球打砖块游戏
    本文实例为大家分享了Unity实现弹球打砖块游戏的具体代码,供大家参考,具体内容如下 创作界面记录 摄像机 所需脚本 1射线shexian using System.Collect...
    99+
    2024-04-02
  • java如何实现打砖块游戏
    这篇文章主要介绍了java如何实现打砖块游戏的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇java如何实现打砖块游戏文章都会有所收获,下面我们一起来看看吧。一个打砖块游戏算法,供大家参考,具体内容如下这里有一个...
    99+
    2023-06-30
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作