热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在pygame中调整图像大小以到达屏幕的顶部/底部?

我正在pygame中重新制作飘扬的小鸟,但主题是《星球大战》。我已经完成了游戏

我正在pygame中重新制作飘扬的小鸟,但主题是《星球大战》。我已经完成了游戏的美术和常规格式设置,但是现在我需要调整细节。我一直在切换数字,以尝试使光剑完全到达屏幕的顶部和底部,因为此刻有时存在间隙,这些间隙不是可以通过的预定空间。

如何在pygame中调整图像大小以到达屏幕的顶部/底部?

import pygame
from random import randint
from pygame.locals import *
#Define Colors - RGB
black = (0,0)
white = (255,255,255)
green = (0,0)
red = (255,0)
pygame.init()
#Screen Size
size = 700,500
screen = pygame.display.set_mode(size)
pygame.display.set_caption("flappy Bird in Python")
dOne= False
clock = pygame.time.Clock()
def ball(x,y):
#Radius of 20 px
ballImg1 = pygame.image.load('PlayerFrame1.png')
ballImg1 = pygame.transform.scale(ballImg1,(50,50))
screen.blit(ballImg1,(x,y))
ballImg2 = pygame.image.load('PlayerFrame2.png')
ballImg2 = pygame.transform.scale(ballImg2,50))
screen.blit(ballImg2,y))
def gameover():
fOnt= pygame.font.SysFont(None,55)
text = font.render("Game Over! Try Again?",True,red)
screen.blit(text,[150,250])
def obstacle(xloc,yloc,xsize,ysize):
pipe = pygame.image.load('blade.png')
pipe1 = pygame.transform.scale(pipe,(xsize,ysize))
pipe2 = pygame.transform.scale(pipe,500))
screen.blit(pipe1,[xloc,ysize])
screen.blit(pipe2,int(yloc+ysize+space),ysize+500]))
#If the ball is between 2 points on the screen,increment score
def Score(score):
fOnt= pygame.font.SysFont(None,55)
text = font.render("Score: "+str(score),white)
screen.blit(text,[0,0])
x = 350
y = 250
x_speed = 0
y_speed = 0
ground = 477
xloc = 700
yloc = 0
xsize = 70
ysize = randint(0,350)
#Size of space between 2 blocks
space = 150
obspeed = 2
score = 0
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
dOne= True
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
y_speed = -5
if event.type == pygame.KEYUP:
if event.key == pygame.K_UP:
y_speed = 4
screen.fill(black)
obstacle(xloc,ysize)
ball(x,y)
Score(score)
y += y_speed
xloc -= obspeed
if y > ground:
gameover()
y_speed = 0
obspeed = 0
if x+20 > xloc and y-20 gameover()
y_speed = 0
obspeed = 0
if x+20 > xloc and y+20 gameover()
y_speed = 0
obspeed = 0
if xloc <-80:
xloc = 700
ysize = randint(0,350)
if x > xloc and x score = score + 1
pygame.display.flip()
clock.tick(60)
pygame.quit()


如果我能理解您的变量名,也许在功能障碍()的第四行中尝试:

screen.blit(pipe,[xloc,int(yloc+space),xsize,ysize+500])

,

您应该只加载一次图像,然后重新缩放至窗口高度-并将其大小和位置设为pygame.Rect()(使用get_rect())

image = pygame.image.load("images.png").convert()
image = pygame.transform.scale(image,(50,SCREEN_HEIGHT))
image_rect = image.get_rect()

然后您可以为每个管道创建pygame.Rect()

pipe1_rect = image_rect.copy()
pipe2_rect = image_rect.copy()

如果间隙的大小为200,顶部应该为300像素

gap_size = 200
gap_top = 300

那么管道的位置将是

pipe1_rect.bottom = gap_top
pipe2_rect.top = pipe1_rect.bottom + gap_size

,然后将其显示为

screen.blit(image,pipe1_rect)
screen.blit(image,pipe2_rect)

您将其从右移到左

pipe1_rect.x -= 1
pipe2_rect.x -= 1


示例代码

编辑:我添加了:间隙处于随机位置,管道正在移动,当球接触管道时,它将在控制台/终端上打印“ Game Over”,当管道接触屏幕左侧时,在控制台/终端上显示“ WIN”

import pygame
import random
# --- constants --- (UPPER_CASE_NAMES)
SCREEN_WIDTH = 800
SCREEN_HEIGHT = 600
FPS = 60
BLACK = (0,0)
WHITE = (255,255,255)
GREEN = (0,0)
# --- classes --- (CamelCaseNames)
# empty
# --- main ---
pygame.init()
screen = pygame.display.set_mode( (SCREEN_WIDTH,SCREEN_HEIGHT) )
screen_rect = screen.get_rect()
image = pygame.image.load("Obrazy/images/paddle.png").convert()
image = pygame.transform.scale(image,SCREEN_HEIGHT))
image_rect = image.get_rect()
pipe1_rect = image_rect.copy()
pipe2_rect = image_rect.copy()
pipe1_rect.right = screen_rect.right # move to right of screen
pipe2_rect.right = screen_rect.right # move to right of screen
gap_size = 200
gap_top = 300
#pipe1_rect.bottom = gap_top
pipe1_rect.bottom = random.randint(50,SCREEN_HEIGHT-gap_size-50)
pipe2_rect.top = pipe1_rect.bottom + gap_size
ball_rect = pygame.Rect((0,100,100))
ball_rect.center = screen_rect.center
ball_speed = 5
# --- mainloop ---
clock = pygame.time.Clock()
running = True
while running:
# --- events ---
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
elif event.type == pygame.KEYUP:
if event.key == pygame.K_ESCAPE:
running = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
ball_speed = -3
if event.type == pygame.KEYUP:
if event.key == pygame.K_UP:
ball_speed = 4
# --- changes/moves/updates ---
ball_rect.y += ball_speed
pipe1_rect.x -= 1
pipe2_rect.x -= 1
if pipe1_rect.colliderect(ball_rect) or pipe2_rect.colliderect(ball_rect):
print('Game Over')
pipe1_rect.right = screen_rect.right
pipe2_rect.right = screen_rect.right
pipe1_rect.bottom = random.randint(50,SCREEN_HEIGHT-gap_size-50)
pipe2_rect.top = pipe1_rect.bottom + gap_size
if pipe1_rect.left == 0:
print("WIN")
pipe1_rect.right = screen_rect.right
pipe2_rect.right = screen_rect.right
pipe1_rect.bottom = random.randint(50,SCREEN_HEIGHT-gap_size-50)
pipe2_rect.top = pipe1_rect.bottom + gap_size
# --- draws ---
screen.fill(BLACK)
screen.blit(image,pipe1_rect)
screen.blit(image,pipe2_rect)
pygame.draw.rect(screen,GREEN,ball_rect)
pygame.display.flip()
# --- FPS ---
ms = clock.tick(FPS)
#pygame.display.set_caption('{}ms'.format(ms)) # 40ms for 25FPS,16ms for 60FPS
fps = clock.get_fps()
pygame.display.set_caption('FPS: {}'.format(fps))
# --- end ---
pygame.quit()

推荐阅读
  • 本文探讨了在Android应用中实现动态滚动文本显示控件的优化方法。通过详细分析焦点管理机制,特别是通过设置返回值为`true`来确保焦点不会被其他控件抢占,从而提升滚动文本的流畅性和用户体验。具体实现中,对`MarqueeText.java`进行了代码层面的优化,增强了控件的稳定性和兼容性。 ... [详细]
  • POJ 1696: 空间蚂蚁算法优化与分析
    针对 POJ 1696 的空间蚂蚁算法进行了深入的优化与分析。本研究通过改进算法的时间复杂度和空间复杂度,显著提升了算法的效率。实验结果表明,优化后的算法在处理大规模数据时表现优异,能够有效减少计算时间和内存消耗。此外,我们还对算法的收敛性和稳定性进行了详细探讨,为实际应用提供了可靠的理论支持。 ... [详细]
  • 开发笔记:校园商铺系统中店铺注册功能模块的Controller层优化与重构
    开发笔记:校园商铺系统中店铺注册功能模块的Controller层优化与重构 ... [详细]
  • 开发技巧分享:利用套索与矩形选择工具高效选取绘图中的全部字形节点
    开发技巧分享:利用套索与矩形选择工具高效选取绘图中的全部字形节点 ... [详细]
  • 使用 MyEclipse 和 TestNG 测试框架在 Java 中高效进行单元测试
    通过MyEclipse集成TestNG测试框架,可以在Java开发中高效地进行单元测试。本文介绍了在JDK 1.8.0_121和MyEclipse 10.0离线环境下配置和使用TestNG的具体步骤,帮助开发者提高测试效率和代码质量。 ... [详细]
  • 本文将详细介绍在Android应用中添加自定义返回按钮的方法,帮助开发者更好地理解和实现这一功能。通过具体的代码示例和步骤说明,本文旨在为初学者提供清晰的指导,确保他们在开发过程中能够顺利集成返回按钮,提升用户体验。 ... [详细]
  • 本文深入探讨了 MXOTDLL.dll 在 C# 环境中的应用与优化策略。针对近期公司从某生物技术供应商采购的指纹识别设备,该设备提供的 DLL 文件是用 C 语言编写的。为了更好地集成到现有的 C# 系统中,我们对原生的 C 语言 DLL 进行了封装,并利用 C# 的互操作性功能实现了高效调用。此外,文章还详细分析了在实际应用中可能遇到的性能瓶颈,并提出了一系列优化措施,以确保系统的稳定性和高效运行。 ... [详细]
  • 本题库精选了Java核心知识点的练习题,旨在帮助学习者巩固和检验对Java理论基础的掌握。其中,选择题部分涵盖了访问控制权限等关键概念,例如,Java语言中仅允许子类或同一包内的类访问的访问权限为protected。此外,题库还包括其他重要知识点,如异常处理、多线程、集合框架等,全面覆盖Java编程的核心内容。 ... [详细]
  • C++ 进阶:类的内存布局与虚函数类的实现细节
    C++ 进阶:类的内存布局与虚函数类的实现细节 ... [详细]
  • 在稀疏直接法视觉里程计中,通过优化特征点并采用基于光度误差最小化的灰度图像线性插值技术,提高了定位精度。该方法通过对空间点的非齐次和齐次表示进行处理,利用RGB-D传感器获取的3D坐标信息,在两帧图像之间实现精确匹配,有效减少了光度误差,提升了系统的鲁棒性和稳定性。 ... [详细]
  • 高效排序算法是提升数据处理速度的重要技术。通过优化排序算法,可以显著提高数据处理的效率和性能。本文介绍了几种常见的高效排序算法,如快速排序、归并排序和堆排序,并通过实例代码展示了它们的具体实现。实验结果表明,这些算法在大规模数据集上的表现尤为突出,能够有效减少数据处理时间,提升系统整体性能。 ... [详细]
  • Android目录遍历工具 | AppCrawler自动化测试进阶(第二部分):个性化配置详解
    终于迎来了“足不出户也能为社会贡献力量”的时刻,但有追求的测试工程师绝不会让自己的生活变得乏味。与其在家消磨时光,不如利用这段时间深入研究和提升自己的技术能力,特别是对AppCrawler自动化测试工具的个性化配置进行详细探索。这不仅能够提高测试效率,还能为项目带来更多的价值。 ... [详细]
  • 本文探讨了协同过滤算法在推荐系统中的应用,重点介绍了基于用户和基于物品的两种协同过滤方法。通过引入相似度评估技术和交替最小二乘优化技术,显著提升了推荐系统的准确性和鲁棒性。实验结果表明,该方法在处理大规模数据集时表现出色,能够有效提高用户满意度和系统性能。 ... [详细]
  • Python 并发编程进阶:从初学者到高手的进程与模块开发指南
    Python 并发编程进阶:从初学者到高手的进程与模块开发指南 ... [详细]
  • 在Matlab中,我尝试构建了一个神经网络模型,用于预测函数 y = x^2。为此,我设计并实现了一个拟合神经网络,并对其进行了详细的仿真和验证。通过调整网络结构和参数,成功实现了对目标函数的准确估计。此外,还对模型的性能进行了全面评估,确保其在不同输入条件下的稳定性和可靠性。 ... [详细]
author-avatar
xieyuhua
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有