python实现移动木板小游戏

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

一、游戏简介

本游戏是通过python编写的小游戏,给初学者熟悉python编程语言抛砖引玉,希望有所帮助。
成型的效果图如下:

二、编写步骤

1.引入库

代码如下:

###### AUTHOR:破茧狂龙 ######
###### DATE:20201002 ######
###### DESCRIPTION:移动的木板 ######
import pygame
from pygame.locals import *
import sys
import time
import random

2.初始化

代码如下:

pygame.init()
BLACK = (0, 0, 0) # 黑色
WHITE = (255, 255, 255) # 白色
bg_color = (0,0,70) # 背景颜色
red = (200, 0, 0)
green = (0, 200, 0)
bright_red = (255, 0, 0)
bright_green = (0, 255, 0)

smallText = pygame.font.SysFont('SimHei', 20) #comicsansms
midlText = pygame.font.SysFont('SimHei', 50)

barsize = [30, 10]
SCREEN_SIZE = [400, 500] # 屏幕大小
BALL_SIZE = [15, 15] # 球的尺寸
fontcolor = (255,255,255) # 定义字体的颜色

myimg = r"img\b1.jpg"
background = pygame.image.load(myimg) # 图片位置
background = pygame.transform.scale(background, SCREEN_SIZE)

# ball 初始位置
ball_pos_x = SCREEN_SIZE[0] // 2 - BALL_SIZE[0] / 2
ball_pos_y = 0

# ball 移动方向
ball_dir_y = 1 # 1:down
ball_pos = pygame.Rect(ball_pos_x, ball_pos_y, BALL_SIZE[0], BALL_SIZE[1])

clock = pygame.time.Clock() # 定时器
screen = pygame.display.set_mode(SCREEN_SIZE)
# 设置标题
pygame.display.set_caption('python小游戏-移动木板')
# 设置图标
image = pygame.image.load(myimg)
pygame.display.set_icon(image)

3.相关自定义函数

代码如下:

###### 自定义函数 ######
def button(msg, x, y, w, h, ic, ac, action=None):
 mouse = pygame.mouse.get_pos()
 click = pygame.mouse.get_pressed()
 if x + w > mouse[0] > x and y + h > mouse[1] > y:
 pygame.draw.rect(screen, ac, (x, y, w, h))
 if click[0] == 1 and action != None:
  action()
 else:
 pygame.draw.rect(screen, ic, (x, y, w, h))
 textSurf, textRect = text_objects(msg, smallText)
 textRect.center = ((x + (w / 2)), (y + (h / 2)))
 screen.blit(textSurf, textRect)

def text_objects(text, font):
 textSurface = font.render(text, True, fontcolor)
 return textSurface, textSurface.get_rect()

def quitgame():
 pygame.quit()
 quit()

def message_diaplay(text):
 largeText = pygame.font.SysFont('SimHei', 115)
 TextSurf, TextRect = text_objects(text, largeText)
 TextRect.center = ((screen[0] / 2), (screen[1] / 2))
 screen.blit(TextSurf, TextRect)
 pygame.display.update()
 time.sleep(2)
 game_loop()

4.相关自定义函数

代码如下:

def game_first_win():
 intro = True
 while intro:
 for event in pygame.event.get():
  if event.type == pygame.QUIT:
  pygame.quit()
  quit()
 screen.fill(bg_color)
 ###游戏名称
 TextSurf, TextRect = text_objects('移动木板', midlText)
 TextRect.center = ((SCREEN_SIZE[0] / 2), (SCREEN_SIZE[1] / 2 - 70 ))
 screen.blit(TextSurf, TextRect)
 ###作者
 TextSurf_ZZ, TextRect_ZZ = text_objects('AUTHOR:破茧狂龙', smallText)
 TextRect_ZZ.center = ((SCREEN_SIZE[0] / 2), (SCREEN_SIZE[1] / 2 + 30))
 screen.blit(TextSurf_ZZ, TextRect_ZZ)
 button("开始", 60, 400, 100, 50, green, bright_green, game_loop)
 button("取消", 230, 400, 100, 50, red, bright_red, quitgame)
 pygame.display.update()
 clock.tick(15)

###### 移动的木板游戏类 ######
def game_loop():
 pygame.mouse.set_visible(1) # 移动鼠标不可见
 ###变量###
 score = 0 #分数
 count_O = 0 #循环的次数变量1 用于统计等级
 count_N = 0 #循环的次数变量2 用于统计等级
 c_level = 1 #等级

 x_change = 0 #移动的变量
 x = SCREEN_SIZE[0] // 2 - barsize[0] // 2
 y = SCREEN_SIZE[1] - barsize[1]

 # ball 初始位置
 ball_pos_pz = ball_pos
 while True:
 bar_move_left = False
 bar_move_right = False
 ###当每次满X分后,升级等级
 if count_O != count_N and score % 5 == 0:
  c_level += 1
 count_O = count_N
 ###### 获取键盘输入 ######
 for event in pygame.event.get():
  if event.type == QUIT: # 当按下关闭按键
  pygame.quit()
  sys.exit() # 接收到退出事件后退出程序
  elif event.type == KEYDOWN:
  ##按键盘Q键 暂停
  if event.key == pygame.K_q:
   time.sleep(10)
  ##左移动
  if event.key == pygame.K_LEFT:
   bar_move_left = True
   x_change = -30
  else:
   bar_move_left = False
  ##右移动
  if event.key == pygame.K_RIGHT:
   bar_move_right = True
   x_change = +30
  else:
   bar_move_right = False
  if event.key != pygame.K_LEFT and event.key != pygame.K_RIGHT:
   bar_move_left = False
   bar_move_right = False

  ##木板的位置移动
  if bar_move_left == True and bar_move_right == False:
  x += x_change
  if bar_move_left == False and bar_move_right == True:
  x += x_change

 ##填充背景
 screen.blit(background, (0, 0)) # (0,0)代表图片位置起点x 轴 Y轴
 ##获取最新的木板位置,并渲染在前台
 bar_pos = pygame.Rect(x, y, barsize[0], BALL_SIZE[1])
 bar_pos.left = x
 pygame.draw.rect(screen, WHITE, bar_pos)

 ## 球移动,并渲染在前台
 ball_pos_pz.bottom += ball_dir_y * 3
 pygame.draw.rect(screen, WHITE, ball_pos_pz)

 ## 判断球是否落到板上
 if bar_pos.top <= ball_pos_pz.bottom and (
  bar_pos.left <= ball_pos_pz.right and bar_pos.right >= ball_pos_pz.left):
  score += 1 # 分数每次加1
  count_N += 1
 elif bar_pos.top <= ball_pos_pz.bottom and (
  bar_pos.left > ball_pos_pz.right or bar_pos.right < ball_pos_pz.left):
  print("Game Over: ", score)
  return score

 ## 更新球下落的初始位置
 if bar_pos.top <= ball_pos_pz.bottom:
  ball_x = random.randint(0, SCREEN_SIZE[0] - BALL_SIZE[0])
  ball_pos_pz = pygame.Rect(ball_x, ball_pos_y, BALL_SIZE[0], BALL_SIZE[1])

 ######### 显示游戏等级 #########
 TextSurf_lev, TextRect_lev = text_objects("等级 : " + str(c_level), smallText)
 TextRect_lev.center = (60, 20)
 screen.blit(TextSurf_lev, TextRect_lev)

 ######### 显示分数结果 #########
 TextSurf_sco, TextRect_sco = text_objects("分数 : " + str(score), smallText)
 TextRect_sco.center = (60, 50)
 screen.blit(TextSurf_sco, TextRect_sco)

 pygame.display.update() # 更新软件界面显示
 clock.tick(60)

# 三、完整的代码

代码如下:

###### AUTHOR:破茧狂龙 ######
###### DATE:20201002 ######
###### DESCRIPTION:移动的木板 ######
import pygame
from pygame.locals import *
import sys
import time
import random

pygame.init()
BLACK = (0, 0, 0) # 黑色
WHITE = (255, 255, 255) # 白色
bg_color = (0,0,70) # 背景颜色
red = (200, 0, 0)
green = (0, 200, 0)
bright_red = (255, 0, 0)
bright_green = (0, 255, 0)

smallText = pygame.font.SysFont('SimHei', 20) #comicsansms
midlText = pygame.font.SysFont('SimHei', 50)

barsize = [30, 10]
SCREEN_SIZE = [400, 500] # 屏幕大小
BALL_SIZE = [15, 15] # 球的尺寸
fontcolor = (255,255,255) # 定义字体的颜色

myimg = r"img\b1.jpg"
background = pygame.image.load(myimg) # 图片位置
background = pygame.transform.scale(background, SCREEN_SIZE)

# ball 初始位置
ball_pos_x = SCREEN_SIZE[0] // 2 - BALL_SIZE[0] / 2
ball_pos_y = 0

# ball 移动方向
ball_dir_y = 1 # 1:down
ball_pos = pygame.Rect(ball_pos_x, ball_pos_y, BALL_SIZE[0], BALL_SIZE[1])

clock = pygame.time.Clock() # 定时器
screen = pygame.display.set_mode(SCREEN_SIZE)
# 设置标题
pygame.display.set_caption('python小游戏-移动木板')
# 设置图标
image = pygame.image.load(myimg)
pygame.display.set_icon(image)

###### 自定义函数 ######
def button(msg, x, y, w, h, ic, ac, action=None):
 mouse = pygame.mouse.get_pos()
 click = pygame.mouse.get_pressed()
 if x + w > mouse[0] > x and y + h > mouse[1] > y:
 pygame.draw.rect(screen, ac, (x, y, w, h))
 if click[0] == 1 and action != None:
  action()
 else:
 pygame.draw.rect(screen, ic, (x, y, w, h))
 textSurf, textRect = text_objects(msg, smallText)
 textRect.center = ((x + (w / 2)), (y + (h / 2)))
 screen.blit(textSurf, textRect)

def text_objects(text, font):
 textSurface = font.render(text, True, fontcolor)
 return textSurface, textSurface.get_rect()

def quitgame():
 pygame.quit()
 quit()

def message_diaplay(text):
 largeText = pygame.font.SysFont('SimHei', 115)
 TextSurf, TextRect = text_objects(text, largeText)
 TextRect.center = ((screen[0] / 2), (screen[1] / 2))
 screen.blit(TextSurf, TextRect)
 pygame.display.update()
 time.sleep(2)
 game_loop()

def game_first_win():
 intro = True
 while intro:
 for event in pygame.event.get():
  if event.type == pygame.QUIT:
  pygame.quit()
  quit()
 screen.fill(bg_color)
 ###游戏名称
 TextSurf, TextRect = text_objects('移动木板', midlText)
 TextRect.center = ((SCREEN_SIZE[0] / 2), (SCREEN_SIZE[1] / 2 - 70 ))
 screen.blit(TextSurf, TextRect)
 ###作者
 TextSurf_ZZ, TextRect_ZZ = text_objects('AUTHOR:破茧狂龙', smallText)
 TextRect_ZZ.center = ((SCREEN_SIZE[0] / 2), (SCREEN_SIZE[1] / 2 + 30))
 screen.blit(TextSurf_ZZ, TextRect_ZZ)
 button("开始", 60, 400, 100, 50, green, bright_green, game_loop)
 button("取消", 230, 400, 100, 50, red, bright_red, quitgame)
 pygame.display.update()
 clock.tick(15)

###### 移动的木板游戏类 ######
def game_loop():
 pygame.mouse.set_visible(1) # 移动鼠标不可见
 ###变量###
 score = 0 #分数
 count_O = 0 #循环的次数变量1 用于统计等级
 count_N = 0 #循环的次数变量2 用于统计等级
 c_level = 1 #等级

 x_change = 0 #移动的变量
 x = SCREEN_SIZE[0] // 2 - barsize[0] // 2
 y = SCREEN_SIZE[1] - barsize[1]

 # ball 初始位置
 ball_pos_pz = ball_pos
 while True:
 bar_move_left = False
 bar_move_right = False
 ###当每次满X分后,升级等级
 if count_O != count_N and score % 5 == 0:
  c_level += 1
 count_O = count_N
 ###### 获取键盘输入 ######
 for event in pygame.event.get():
  if event.type == QUIT: # 当按下关闭按键
  pygame.quit()
  sys.exit() # 接收到退出事件后退出程序
  elif event.type == KEYDOWN:
  ##按键盘Q键 暂停
  if event.key == pygame.K_q:
   time.sleep(10)
  ##左移动
  if event.key == pygame.K_LEFT:
   bar_move_left = True
   x_change = -30
  else:
   bar_move_left = False
  ##右移动
  if event.key == pygame.K_RIGHT:
   bar_move_right = True
   x_change = +30
  else:
   bar_move_right = False
  if event.key != pygame.K_LEFT and event.key != pygame.K_RIGHT:
   bar_move_left = False
   bar_move_right = False

  ##木板的位置移动
  if bar_move_left == True and bar_move_right == False:
  x += x_change
  if bar_move_left == False and bar_move_right == True:
  x += x_change

 ##填充背景
 screen.blit(background, (0, 0)) # (0,0)代表图片位置起点x 轴 Y轴
 ##获取最新的木板位置,并渲染在前台
 bar_pos = pygame.Rect(x, y, barsize[0], BALL_SIZE[1])
 bar_pos.left = x
 pygame.draw.rect(screen, WHITE, bar_pos)

 ## 球移动,并渲染在前台
 ball_pos_pz.bottom += ball_dir_y * 3
 pygame.draw.rect(screen, WHITE, ball_pos_pz)

 ## 判断球是否落到板上
 if bar_pos.top <= ball_pos_pz.bottom and (
  bar_pos.left <= ball_pos_pz.right and bar_pos.right >= ball_pos_pz.left):
  score += 1 # 分数每次加1
  count_N += 1
 elif bar_pos.top <= ball_pos_pz.bottom and (
  bar_pos.left > ball_pos_pz.right or bar_pos.right < ball_pos_pz.left):
  print("Game Over: ", score)
  return score

 ## 更新球下落的初始位置
 if bar_pos.top <= ball_pos_pz.bottom:
  ball_x = random.randint(0, SCREEN_SIZE[0] - BALL_SIZE[0])
  ball_pos_pz = pygame.Rect(ball_x, ball_pos_y, BALL_SIZE[0], BALL_SIZE[1])

 ######### 显示游戏等级 #########
 TextSurf_lev, TextRect_lev = text_objects("等级 : " + str(c_level), smallText)
 TextRect_lev.center = (60, 20)
 screen.blit(TextSurf_lev, TextRect_lev)

 ######### 显示分数结果 #########
 TextSurf_sco, TextRect_sco = text_objects("分数 : " + str(score), smallText)
 TextRect_sco.center = (60, 50)
 screen.blit(TextSurf_sco, TextRect_sco)

 pygame.display.update() # 更新软件界面显示
 clock.tick(60)

####程序执行顺序######
game_first_win()
game_loop()
pygame.quit()

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

(0)

相关推荐

  • python Qt5实现窗体跟踪鼠标移动

    我就废话不多说了, 直接上代码吧! from PyQt5.Qt import * import sys class Window(QWidget): def __init__(self): super().__init__() self.Flag=False self.setWindowTitle("窗口移动学习") self.resize(500,500) self.setup_ui() def setup_ui(self): pass def mousePressEvent(sel

  • python实现飞船游戏的纵向移动

    本文实例为大家分享了python实现飞船游戏的纵向移动,供大家参考,具体内容如下 我是跟着书里一步步写到横向移动后 我就想怎么纵向移动,放上自己写的代码,如果有问题的话,请指出来,我也是刚刚学习python,希望可以跟大家多多交流. 新增的就是有关up和down的代码了. 我自己是成功了,肯定有其他的更优化的,那就等我在学习一段时间吧. 附上代码: game_function: import sys import pygame # 监视键盘和鼠标事件 def check_keydown_even

  • python实现移动木板小游戏

    本文实例为大家分享了python实现移动木板小游戏的具体代码,供大家参考,具体内容如下 一.游戏简介 本游戏是通过python编写的小游戏,给初学者熟悉python编程语言抛砖引玉,希望有所帮助. 成型的效果图如下: 二.编写步骤 1.引入库 代码如下: ###### AUTHOR:破茧狂龙 ###### ###### DATE:20201002 ###### ###### DESCRIPTION:移动的木板 ###### import pygame from pygame.locals imp

  • 用Python设计一个经典小游戏

    本文主要介绍如何用Python设计一个经典小游戏:猜大小. 在这个游戏中,将用到前面我介绍过的所有内容:变量的使用.参数传递.函数设计.条件控制和循环等,做个整体的总结和复习. 游戏规则: 初始本金是1000元,默认赔率是1倍,赢了,获得一倍金额,输了,扣除1倍金额. 玩家选择下注,押大或押小: 输入下注金额: 摇3个骰子,11≤骰子总数≤18为大,3≤骰子总数≤10为小: 如果赢了,获得1倍金额,输了,扣除1倍金额,本金为0时,游戏结束. 程序运行结果是这样的: 现在,我们来梳理下思路. 我们

  • Python实现的弹球小游戏示例

    本文实例讲述了Python实现的弹球小游戏.分享给大家供大家参考,具体如下: 弹球 1. Ball 类 draw负责移动Ball 碰撞检测,反弹,Ball检测Paddle 2.Paddle类 draw负责移动Paddle 碰撞检测,确定能不能继续 监听键盘事件 3.主循环 绘制Ball和Paddle update sleep 代码 from Tkinter import * import random import time class Ball: def __init__(self, canv

  • Python实现Pig Latin小游戏实例代码

    前言: 本文研究的主要是Python实现pig Latin小游戏的简单代码,具体介绍如下. Pig Latin是一个语言游戏. 步骤: 1.让用户输入一个英文单词 2.确保用户输入一个有效单词 3.将单词转换成Pig Latin 4.显示转换结果 一.Input 函数:raw_input()用于输出一个字符串并等待键盘输入某字符串,最后以Enter(或Return)结束输入 original = raw_input("Enter a word:") print original 上述中

  • python编写猜数字小游戏

    本文实例为大家分享了python编写猜数字小游戏的具体代码,供大家参考,具体内容如下 import random secret = random.randint(1, 30) guess = 0 tries = 0 print("我叫丁丁,我有一个秘密数字!") print("数字从1到30,你只有6次机会!") while int(guess) != secret and tries < 6: print("你猜的数字是?") guess

  • python实现吃苹果小游戏

    本文实例为大家分享了python实现吃苹果小游戏的具体代码,供大家参考,具体内容如下 1.公共类模块 import pygame from pygame.rect import Rect def print_text(font, x, y, text, color=(255, 255, 255)): imgText=font.render(text, True, color) screen=pygame.display.get_surface() screen.blit(imgText,(x,

  • python代码实现猜拳小游戏

    本文实例为大家分享了python代码实现猜拳小游戏的具体代码,供大家参考,具体内容如下 游戏实现具体功能 原有的用户登录的信息均能保存在txt文件里,注册的信息也能保存在txt里面 格式如下: 便于之后转换成列表字典形式添加注册数据 用户的猜拳记录也能保存在txt中并以如下格式显示 格式如下: 具体Python代码: #-*- coding=utf8 -*- # @author:sololi # date: 2020/10/24 # 文件说明 : # 123文件存放 用户信息 456 文件存放猜

  • Python约瑟夫生者死者小游戏实例讲解

    问题描述: 30 个人在一条船上,超载,需要 15 人下船.于是人们排成一队,排队的位置即为他们的编号. 报数,从 1 开始,数到 9 的人下船.如此循环,直到船上仅剩 15 人为止,问都有哪些编号的人下船了呢? 解决思路: 给30个人编号1-30,每个人的初值都是1(在船上),i代表他们的编号,j代表被扔下船的人数(j=15时循环结束),用check记数,check=9时将对应编号i的人置0(扔下船)并让check重新记数. 当i等于31时,手动将i置为1 当对应编号i的人值为0时,代表此人已

  • python实现21点小游戏

    用python实现21点小游戏,供大家参考,具体内容如下 from random import shuffle import random import numpy as np from sys import exit # 初始化扑克牌 playing_cards = { "黑桃A": 1, "黑桃2": 2, "黑桃3": 3, "黑桃4": 4, "黑桃5": 5, "黑桃6": 6

  • Python实现贪吃蛇小游戏(双人模式)

    简单用py写了一个贪吃蛇游戏,有单人.双人模式,比较简单,适合初学者练手.本上每行重要的语句都有注释,做了什么事一目了然 这里介绍双人模式 单人模式戳这里:Python简易贪吃蛇小游戏(单人模式) 一.游戏设计要点 1.游戏主体窗口(尺寸).画布(尺寸.位置).按钮(尺寸.位置).文字(大小.颜色.位置).图像.背景音乐及相关响应函数(主要是鼠标移动及点击的响应)的设计与合理排布 2.蛇与食物的类的属性设计 3.蛇位置的更新(根据键盘输入).吃到食物加分的判定.食物的更新 4.蛇死亡的判定条件设

随机推荐