pygame游戏之旅 调用按钮实现游戏开始功能


Posted in Python onNovember 21, 2018

本文为大家分享了pygame游戏之旅的第12篇,供大家参考,具体内容如下

实现点击功能:

click = pygame.mouse.get_pressed()
print(click)
if x + w > mouse[0] > x and y + h > mouse[1] > y:
 pygame.draw.rect(gameDisplay, ac, (x,y,w,h))
 if click[0] == 1 and action != None:
 action()

修改显示文字:

pygame.font.SysFont('comicsansms',115)

源代码:

import pygame
import time
import random
 
pygame.init()
 
white = (255,255,255)
black = (0,0,0)
gray = (128,128,128)
red = (200,0,0)
green = (0,200,0)
bright_red = (255,0,0)
bright_green = (0,255,0)
blue = (0,0,255)
 
 
car_width = 100
 
display_width = 800
display_height = 600
 
 
gameDisplay = pygame.display.set_mode( (display_width,display_height) )
pygame.display.set_caption('A bit Racey')
clock = pygame.time.Clock()
 
carImg = pygame.image.load('car.png')
 
def things_dodged(count):
 font = pygame.font.SysFont(None, 25)
 text = font.render("Dodged:"+str(count), True, black)
 gameDisplay.blit(text,(0,0))
 
def things(thingx, thingy, thingw, thingh, color):
 pygame.draw.rect(gameDisplay, color, [thingx, thingy, thingw, thingh])
 
 
 
def car(x, y):
 gameDisplay.blit(carImg, (x,y))
 
 
def text_objects(text, font):
 textSurface = font.render(text, True, black)
 return textSurface, textSurface.get_rect()
 
def message_diaplay(text):
 largeText = pygame.font.SysFont('comicsansms',115)
 TextSurf, TextRect = text_objects(text, largeText)
 TextRect.center = ((display_width/2),(display_height/2))
 gameDisplay.blit(TextSurf, TextRect)
 pygame.display.update()
 time.sleep(2)
 game_loop()
 
def crash():
 message_diaplay('You Crashed!')
 
def button (msg, x, y, w, h, ic, ac, action=None):
 mouse =pygame.mouse.get_pos()
 click = pygame.mouse.get_pressed()
 print(click)
 if x + w > mouse[0] > x and y + h > mouse[1] > y:
  pygame.draw.rect(gameDisplay, ac, (x,y,w,h))
  if click[0] == 1 and action != None:
  action()
##  if action == "play":
##   action()
##  if action == "quit":
##   pygame.quit()
##   quit()
 else:
  pygame.draw.rect(gameDisplay, ic, (x,y,w,h))
 smallText = pygame.font.SysFont('comicsansms', 20)
 textSurf, textRect = text_objects(msg, smallText)
 textRect.center = ( (x+(w/2)), (y+(h/2)))
 gameDisplay.blit(textSurf, textRect)
 
def quitgame():
 pygame.quit()
 quit()
 
def game_intro():
 intro = True
 while intro:
 for event in pygame.event.get():
  print(event)
  if event.type == pygame.QUIT:
  pygame.quit()
  quit()
 gameDisplay.fill(white)
 largeText = pygame.font.SysFont('comicsansms',115)
 TextSurf, TextRect = text_objects('A bit Racey', largeText)
 TextRect.center = ((display_width/2),(display_height/2))
 gameDisplay.blit(TextSurf, TextRect)
 button("GO", 150, 450, 100, 50, green, bright_green,game_loop)
 button("Quit",550, 450, 100, 50, red, bright_red,quitgame)
 pygame.display.update()
 clock.tick(15)
 
def game_loop():
 x = display_width * 0.45
 y = display_height * 0.8
 x_change = 0
 
 dodged = 0
 
 gameExit = False
 
 thing_startx = random.randrange(0, display_width)
 thing_starty = -600
 thing_speed = 7
 thing_width = 100
 thing_height = 100
 
 while not gameExit:
 for event in pygame.event.get():
  if event.type == pygame.QUIT:
  pygame.quit()
  quit()
  if event.type == pygame.KEYDOWN:
  if event.key == pygame.K_LEFT:
   x_change = -5
  elif event.key == pygame.K_RIGHT:
   x_change = 5
  if event.type == pygame.KEYUP:
  if event.key == pygame.K_LEFT or event.key == pygame.K_RIGHT:
   x_change = 0
  print(event)
 x += x_change
 gameDisplay.fill(white)
 
 things(thing_startx, thing_starty, thing_width, thing_height, black)
 thing_starty += thing_speed
 
 car(x,y)
 things_dodged(dodged)
 if x > display_width - car_width or x < 0:
  gameExit = True
 if thing_starty > display_height:
  thing_starty = 0 - thing_height
  thing_startx = random.randrange(0, display_width)
  dodged += 1
  thing_speed += 1
  thing_width += (dodged * 1.2)
 if y < thing_starty + thing_height:
  print('y crossover')
  if x > thing_startx and x < thing_startx + thing_width or x + car_width > thing_startx and x + car_width < thing_startx + thing_width:
  print('x crossover')
  crash()
 pygame.display.update()
 clock.tick(60)
#crash()
game_intro()
game_loop()
pygame.quit()
quit()

结果图:

pygame游戏之旅 调用按钮实现游戏开始功能

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

Python 相关文章推荐
深入理解Python中range和xrange的区别
Nov 26 Python
浅析Python四种数据类型
Sep 26 Python
解决Python3 被PHP程序调用执行返回乱码的问题
Feb 16 Python
PyTorch搭建多项式回归模型(三)
May 22 Python
详解pandas使用drop_duplicates去除DataFrame重复项参数
Aug 01 Python
python中使用while循环的实例
Aug 05 Python
python-Web-flask-视图内容和模板知识点西宁街
Aug 23 Python
python实发邮件实例详解
Nov 11 Python
Pandas直接读取sql脚本的方法
Jan 21 Python
全网最详细的PyCharm+Anaconda的安装过程图解
Jan 25 Python
python删除csv文件的行列
Apr 06 Python
使用numpy实现矩阵的翻转(flip)与旋转
Jun 03 Python
pygame游戏之旅 按钮上添加文字的方法
Nov 21 #Python
Face++ API实现手势识别系统设计
Nov 21 #Python
详解django自定义中间件处理
Nov 21 #Python
pygame游戏之旅 添加游戏界面按键图形
Nov 20 #Python
pygame游戏之旅 添加游戏介绍
Nov 20 #Python
pygame游戏之旅 计算游戏中躲过的障碍数量
Nov 20 #Python
pygame游戏之旅 添加碰撞效果的方法
Nov 20 #Python
You might like
PHP session会话操作技巧小结
2016/09/27 PHP
兼容ie、firefox的图片自动缩放的css跟js代码分享
2012/01/21 Javascript
Extjs根据条件设置表格某行背景色示例
2014/07/23 Javascript
基于JS实现简单的样式切换效果代码
2015/09/04 Javascript
js如何打印object对象
2015/10/16 Javascript
Bootstrap框架的学习教程详解(二)
2016/10/18 Javascript
利用python分析access日志的方法
2016/10/26 Javascript
smartupload实现文件上传时获取表单数据(推荐)
2016/12/12 Javascript
JS实现给对象动态添加属性的方法
2017/01/05 Javascript
JavaScript实现简易的天数计算器实例【附demo源码下载】
2017/01/18 Javascript
jQuery EasyUI ProgressBar进度条组件
2017/02/28 Javascript
jQuery动态产生select option下拉列表
2017/03/15 Javascript
微信小程序与php 实现微信支付的简单实例
2017/06/23 Javascript
ES6学习教程之模板字符串详解
2017/10/09 Javascript
js将键值对字符串转为json字符串的方法
2018/03/30 Javascript
Python 网络编程起步(Socket发送消息)
2008/09/06 Python
使用python编写android截屏脚本双击运行即可
2014/07/21 Python
以视频爬取实例讲解Python爬虫神器Beautiful Soup用法
2016/01/20 Python
python实现对任意大小图片均匀切割的示例
2018/12/05 Python
python实现图片压缩代码实例
2019/08/12 Python
django之自定义软删除Model的方法
2019/08/14 Python
如何在python开发工具PyCharm中搭建QtPy环境(教程详解)
2020/02/04 Python
win10下python3.8的PIL库安装过程
2020/06/08 Python
python 读txt文件,按‘,’分割每行数据操作
2020/07/05 Python
用Python 爬取猫眼电影数据分析《无名之辈》
2020/07/24 Python
Python基于pyjnius库实现访问java类
2020/07/31 Python
html5 Canvas画图教程(1)—画图的基本常识
2013/01/09 HTML / CSS
英国户外服装、鞋类和设备的领先零售商:Millets
2020/10/12 全球购物
银行门卫岗位职责
2013/12/29 职场文书
学校介绍信范文
2014/01/14 职场文书
社会实践评语
2014/04/28 职场文书
教师专业自荐信
2014/05/31 职场文书
校园文明标语
2014/06/13 职场文书
行政秘书工作自我鉴定
2014/09/15 职场文书
欠条范文
2015/07/03 职场文书
详解Js模块化的作用原理和方案
2021/04/29 Javascript