Почему отображение pygame не отображается должным образом?

Я пытаюсь создать 2-мерный платформер на основе плитки на Python с помощью Pygame. Я начал с создания системы окон и плиток. Он относится к текстовому файлу и на основе каждого числа, найденного в файле, воспроизводит изображение в окне отображения Pygame (2 для изображения травы, 1 для изображения грязи). Когда программа запускается, плитки появляются на экране, но быстро мигают и медленно перемещаются в сторону. Между плитками также есть промежутки, которые я не знаю, почему они есть, но я хочу избавиться от них.

import pygame, sys
pygame.init()

dirt_img = pygame.image.load("dirt2.png")                  #loads dirt image
dirt_img = pygame.transform.scale(dirt_img, (80,80))       #scales dirt image up to 80*80

grass_img = pygame.image.load("grass2.png")                #loads grass image
grass_img = pygame.transform.scale(grass_img, (80,80))     #scales grass image up to 80*80

clock = pygame.time.Clock()                              

window = pygame.display.set_mode((1200, 800))


#load map
def load_map(path):
    f = open(path + '.txt','r')             #open text file
    data = f.read()                         #reads it
    f.close()                               #closes
    data = data.split('\n')                 #splits the data by the new line character

    game_map = []                           #creates game map data
    for row in data:
        game_map.append(list(row))          #ads each line in'map.txt'..
                                            #..data to new game map list
    return game_map

game_map = load_map('map')

grass_count = 0         #meant to be used to count each time a grass tile is blitted to.. 
                        #..move the position over 80 pixles for the next tile to be blited  
dirt_count = 0          # I think this might be where my problem is but I am not sure.


# Main loop

run = True
while run:
        
    for event in pygame.event.get():
            if event.type == pygame.QUIT:
                    pygame.quit()
                    sys.exit()
                    
    window.fill((135, 178,255))             #sets light Blue background color

    for layer in game_map:
                for tile in layer:                                            
                    if tile == '1':                                         #finds '1' in file,
                        dirt_count += 1                                     #updates dirt count,
                        window.blit(dirt_img, (100 * dirt_count + 80, 500))#blits next dirt tile
                    if tile == '2':                                         #finds '2' in file,
                        grass_count += 1                                   #updates grass count,
                        window.blit(grass_img, (100 * grass_count + 80, 500))#blits next tile
                                
                   
    clock.tick(60)

    pygame.display.update()

pygame.quit()

person Luke Redwine    schedule 27.09.2020    source источник


Ответы (1)


Переменные dirt_count и grass_count увеличиваются, но они никогда не возвращаются к 0. Установите переменные на 0, прямо перед циклом: grass_count = 0 grass_count = 0. В любом случае, я не думаю, что это вас удовлетворит, поскольку координата тайла, похоже, не зависит от его индекса.

Скорее всего, положение плитки зависит от row и column:

for row, layer in enumerate(game_map):
    for column, tile in enumerate(layer):
        x, y = 80 + column * 100, 80 + row * 100
        if tile == '1':
            window.blit(dirt_img, (x, y))
        if tile == '2':
            window.blit(grass_img, (x, y))
person Rabbid76    schedule 27.09.2020