如何在python和pygame游戏中使用平铺?

时间:2016-02-11 07:55:42

标签: python python-3.x pygame tiling

我正在使用python和pygame创建一个2D平台游戏类型的射击游戏,我试图添加平铺机制,所以如果我创建一个100像素长的平台,平铺图像只有70像素长,它会绘制一个瓦片和另一半,所以我创建了一个简单的原型,但我不能得到它来绘制精灵。这是我的代码:

import pygame

BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
GREEN = (0, 255, 0)
RED = (255, 0, 0)

class Rec(pygame.sprite.Sprite):

    def __init__(self, x, y, w, height):

        super().__init__()

        self.b = 0
        self.image = pygame.image.load("grass.png").convert()
        if w <= 70:
            self.image = pygame.transform.scale(self.image, (w, height))
        elif w > 70:
            self.image = pygame.Surface([w, height])
            while self.b < w:
                self.image.blit(pygame.image.load("grass.png").convert(), (x + self.b, y))
                self.b += 70

        self.rect = self.image.get_rect()
        self.rect.x = x
        self.rect.y = y

pygame.init()

size = (700, 500)

screen = pygame.display.set_mode(size)

pygame.display.set_caption("My Game")

all_sprites_list = pygame.sprite.Group()

rec = Rec(100, 200, 140, 70)
all_sprites_list.add(rec)

done = False

clock = pygame.time.Clock()

while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
    screen.fill(WHITE)
    all_sprites_list.draw(screen)
    pygame.display.flip()
    clock.tick(60)

pygame.quit()

1 个答案:

答案 0 :(得分:1)

该行

self.image.blit(pygame.image.load("grass.png").convert(), (x + self.b, y))

应该是

self.image.blit(pygame.image.load("grass.png").convert(), (self.b, 0))

因为你传递给blit函数的位置是相对于你所使用的Surface;但是xy是屏幕坐标。

因此,在您的示例中,您将x + self.b = 100 y = 200的位置放在Surface上,其大小为(140, 70),而您应该将它在(0, 0)