2

アルファ値のnumpy配列をサーフェスに適用しようとしています。そうすることはできますが、この操作の後もサーフェスはロックされたままなので、サーフェスをディスプレイにブリットすることはできません。

g以下は、アルファ配列を使用した簡単なテスト ケースです

import pygame as pg

pg.init()
screen = pg.display.set_mode((600, 600))

s = pg.Surface((100, 100)).convert_alpha()
s.fill((126, 126, 126))  # make it grey
pxa = pg.surfarray.pixels_alpha(s)  # reference the alpha values

pxa[::] = g  # g is the array of alpha values
del pxa  # shouldn't deleting the array be enough to unlock the surface?
s.unlock()  # explicitly unlock for good measure

s.get_locked()  # returns True

それで、何が得られますか?screenとにかくサーフェスをブリットしようとしましたが、(予想通り)sまだロックされているというエラーが表示されます。

アドバイスは大歓迎です!

4

1 に答える 1

1

スプライト クラスを作成し、値を update 関数に入れます。このように、配列は関数のスコープ内で作成および破棄されます。スペースバーを押して灰色のブロックを透明にする例を次に示します。

import pygame
from pygame.locals import QUIT, KEYDOWN, K_ESCAPE, K_SPACE, SRCALPHA


class Game(object):
    def __init__(self):
        pygame.init()
        self.width, self.height = 800, 800
        pygame.display.set_caption("Surfarray test")
        self.screen = pygame.display.set_mode((self.width, self.height))
        self.background = pygame.Surface((self.width, self.height))
        self.background.fill((255, 255, 255))
        self.background.convert()
        self.bar = pygame.Surface((200, 100))
        self.bar.fill((255, 0, 0))
        self.bar.convert()

        self.sprite = pygame.sprite.GroupSingle()
        self.sprite.add(CustomSprite(pygame.Rect(5, 5, 100, 100)))

    def input(self):
        for event in pygame.event.get():

            if event.type == QUIT:
                return False

            if event.type == KEYDOWN:
                if event.key == K_ESCAPE:
                    return False
                if event.key == K_SPACE:
                    # make bar transparent by pressing the space bar
                    self.sprite.update()

    def main(self):
        while True:
            if self.input() is False:
                return False
            self.draw()

    def draw(self):
        self.screen.blit(self.background, (0, 0))
        self.screen.blit(self.bar, (5, 5))
        self.sprite.draw(self.screen)
        pygame.display.update()


class CustomSprite(pygame.sprite.Sprite):
    def __init__(self, rect):
        pygame.sprite.Sprite.__init__(self)
        self.rect = rect
        # SRCALPHA flag makes the pixel format include per-pixel alpha data
        self.image = pygame.Surface((rect.width, rect.height), SRCALPHA)
        self.image.convert_alpha()
        self.image.fill((126, 126, 126))

    # magic happens here
    def update(self):
        pxa = pygame.surfarray.pixels_alpha(self.image)
        pxa[:] = 100  # make all pixels transparent

if __name__ == "__main__":
    game = Game()
    game.main()
于 2013-09-29T12:58:40.753 に答える