0

ピクセルごとの 2D 照明システムを作成しようとしていますが、奇妙なエラーが発生し続けます。途中で説明を含む私のコードは次のとおりです。

import pygame, sys, math

white = (255, 255, 255)
black = (0, 0, 0)

screen_width = 640
screen_height = 480

pygame.init()
pygame.display.set_caption("Light sources")
screen = pygame.display.set_mode([screen_width, screen_height])
clock = pygame.time.Clock()

これらは、任意の pygame ゲームの通常のセットアップ ラインです。

darkness = pygame.image.load("grafiikka/pimeys.png")
darkness.set_alpha(254)

lights_list = [] ### For controlling all light sources at a time

単色の闇の画像を読み込んでいます。これは、他のすべてのものの上にブリットされ、暗くなります。次に、明るい領域の暗さのアルファ値を変更して、光をシミュレートします。

class lightsource: ### The parameters for a light
    def ___init___(self, loc, ang, direction, radius):
        self.loc = loc
        self.ang = ang
        self.dir = direction
        self.radius = radius

光源クラスを作ります

def LightDraw(): ### Drawing the lights, pixel per pixel
    for v in lights_list:
        for i in range (int((v.dir - v.ang/2)), int((v.dir + v.ang/2))):
            for l in range (0, v.radius):
                if int(i) < 90 and int(i) >= 0:
                    x = (v.loc[0]) + int(-l * math.cos(math.radians(i)))
                    y = (v.loc[1]) + int(-l * math.sin(math.radians(i)))
                elif i < 180 and i >= 90:
                    x = (v.loc[0]) + int(l * math.cos(math.pi - math.radians(i)))
                    y = (v.loc[1]) + int(-l * math.sin(math.pi - math.radians(i)))
                elif i < 270 and i >= 180:
                    x = (v.loc[0]) + int(l * math.sin(1.5 * math.pi - math.radians(i)))
                    y = (v.loc[1]) + int(l * math.cos(1.5 * math.pi - math.radians(i)))
                elif i < 360 and i >= 270:
                    x = (v.loc[0]) + int(-l * math.cos(2 * math.pi - math.radians(i)))
                    y = (v.loc[1]) + int(l * math.sin(2 * math.pi - math.radians(i)))
                alpha = int(254 * (l / v.radius))
                print(int(254 * (l / v.radius)))
                pygame.TempPimeys[x, y] = pygame.Color.a(alpha) ### THIS CAUSES ERROR

    return TempPimeys.make_surface()

### Adding a test light source at (300, 200) on screen    
testValo = lightsource()
testValo.___init___((300,200), 360, 90, 100)
lights_list.append(testValo)

エラーは functionにあります。つまり、実際にアルファ値を変更している行にあります。一体何がエラーを引き起こしているのかわかりません。

while True:

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            sys.exit()

    myOtherImage_rect.topleft = pygame.mouse.get_pos()

    screen.fill(white)
    TempPimeys = pygame.PixelArray(pimeys)
    hämärä = LightDraw()
    screen.unlock()
    screen.blit(hämärä, (0, 0))
    pygame.display.update()

そして一般ループ。

私が得ているエラーは次のとおりです: TypeError: 'getset_descriptor' object is not callable

4

1 に答える 1

0
pygame.TempPimeys[x, y] = pyame.Color.a(alpha) ### THIS CAUSES ERROR

# same as
>>> pygame.Color.a(2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'getset_descriptor' object is not callable

インスタンスであると予想されるときにa、クラスメソッドとして呼び出しています。pygame.Color.a()元:

>>> pygame.Color('red')
(255, 0, 0, 255)
>>> c = pygame.Color('red')
>>> c.a
255
>>> c.a = 20

理由がalphaのみを変更し、 RGBを変更したくない場合は、 pygame.surfarray.pixels_alphaを使用できます

于 2013-07-10T21:21:39.413 に答える