pygame实现弹力球及其变速效果
作者:鱼丸粗面丶 时间:2022-12-25 16:23:07
本文实例为大家分享了pygame实现弹力球及其变速效果的具体代码,供大家参考,具体内容如下
期望:
1.球体接触到框体后反弹
2.设置速度按键,按下后改变球体速度、颜色状态
具体实现:
import pygame
from pygame.locals import *
import sys, random
class Circle(object):
# 设置Circle类属性
def __init__(self):
self.vel_x = 1
self.vel_y = 1
self.radius = 20
self.pos_x, self.pos_y = random.randint(0, 255), random.randint(0, 255)
self.width = 0
self.color = 0, 0, 0
# 球体颜色速度改变方法
def change_circle(self, number):
self.color = random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)
# 防止球体速度方向发生改变
if self.vel_x < 0:
self.vel_x = -number
else:
self.vel_x = number
if self.vel_y < 0:
self.vel_y = -number
else:
self.vel_y = number
# self.vel_x, self.vel_y = number, number 如果仅此句,速度方向会发生改变
def circle_run(self):
# 防止球体超出游戏界面框体
if self.pos_x > 580 or self.pos_x < 20:
self.vel_x = -self.vel_x
if self.pos_y > 480 or self.pos_y < 20:
self.vel_y = -self.vel_y
self.pos_x += self.vel_x
self.pos_y += self.vel_y
pos = self.pos_x, self.pos_y
pygame.draw.circle(screen, self.color, pos, self.radius, self.width)
pygame.init()
screen = pygame.display.set_mode((600, 500))
# Circle实例
circle1 = Circle()
while True:
for event in pygame.event.get():
if event.type == QUIT:
sys.exit()
elif event.type == KEYUP:
if event.key == pygame.K_1:
circle1.change_circle(1)
elif event.key == pygame.K_2:
circle1.change_circle(2)
elif event.key == pygame.K_3:
circle1.change_circle(3)
elif event.key == pygame.K_4:
circle1.change_circle(4)
screen.fill((0, 0, 100))
circle1.circle_run()
pygame.display.update()
标签:pygame,弹力球,变速
0
投稿
猜你喜欢
深入理解MySQL事务的4种隔离级别
2024-01-21 09:52:40
MySQL增删查改数据表详解
2024-01-25 06:55:48
快速解决SQL server 2005孤立用户问题
2009-01-04 14:02:00
解析SQL Server CDC配合Kafka Connect监听数据变化的问题
2024-01-22 11:22:45
深入数据库通用的连接方式详解
2024-01-26 02:20:10
Vue从TodoList中学父子组件通信
2024-05-29 22:22:20
Python Ajax爬虫案例分享
2023-09-01 19:24:35
python3中dict.keys().sort()用不了的解决方法
2023-08-16 11:33:54
修复 Mac brew 安装 mongodb 报 Error: No available formula with the name ‘mongodb’ 问题详解
2024-01-18 17:10:50
python不使用for计算两组、多个矩形两两间的iou方式
2021-08-19 19:08:33
python3.7简单的爬虫实例详解
2023-06-30 15:55:13
Python 调用有道翻译接口实现翻译
2023-03-11 06:35:34
详解Python利用configparser对配置文件进行读写操作
2022-08-02 22:24:38
使用python爬取taptap网站游戏截图的步骤
2021-09-17 07:44:34
Python pygame 项目实战事件监听
2023-05-31 21:33:20
Golang template 包基本原理分析
2024-04-25 15:18:32
windows安装python超详细图文教程
2023-08-01 15:19:32
Python列表推导式,元组推导式,字典推导式,集合推导式
2022-08-01 23:26:36
实现两个文本框同时输入的实例
2024-04-16 08:46:27
关于Bootstrap按钮组件消除黄框的方法
2024-05-03 15:07:04