0

間違った情報は次のとおりです。

Traceback (most recent call last):
  File "C:\Documents and Settings\Administrator.MICRO-C17310A13\桌面\pygame例子\vectorfish.py", line 24, in <module>
    screen.blit(sprite, position)
TypeError: invalid destination position for blit

コードは次のとおりです。

background_image_filename = 'sushiplate.jpg'    
sprite_image_filename = 'fugu.bmp'    
import pygame    
from pygame.locals import *    
from sys import exit    
from vector2 import Vector2    
pygame.init()    
screen = pygame.display.set_mode((640, 480), 0, 32)    
background = pygame.image.load(background_image_filename).convert()    
sprite = pygame.image.load(sprite_image_filename).convert_alpha()    
clock = pygame.time.Clock()

position = Vector2(100.0, 100.0)

speed = 250.0

heading = Vector2()

while True:

    for event in pygame.event.get():
        if event.type == QUIT:
            exit()
    if event.type == MOUSEBUTTONDOWN:
        destination = Vector2(*event.pos) - Vector2(*sprite.get_size())/2.
        heading = Vector2.from_points(position, destination)
        heading.normalize()
    screen.blit(background, (0,0))
    screen.blit(sprite, position)
    time_passed = clock.tick()
    time_passed_seconds = time_passed / 1000.0
    distance_moved = time_passed_seconds * speed
    position += heading * distance_moved
    pygame.display.update()

vector2 のコードは次のとおりです。

import math

class Vector2(object):

    def __init__(self, x=0.0, y=0.0):
        self.x = x
        self.y = y
    def __str__(self):
        return "(%s, %s)"%(self.x, self.y)
    @staticmethod
    def from_points(P1, P2):
        return Vector2( P2[0] - P1[0], P2[1] - P1[1] )
    def get_magnitude(self):
        return math.sqrt( self.x**2 + self.y**2 )
    def normalize(self):
        magnitude = self.get_magnitude()
        self.x /= magnitude
        self.y /= magnitude

このコードだけでなく、vector2 を必要とするすべてのコードがこの質問に適合しました: blit の宛先位置が無効です

私は何か間違っていますか?

どんな助けも大いに必要です。

ギルバートちゃん

4

2 に答える 2

4

Surface.blitasパラメータtupleが必要です。dest独自のベクター クラスを使用する場合は、次のように変更します。

class Vector2(tuple):

    def __new__(typ, x=1.0, y=1.0):
        n = tuple.__new__(typ, (int(x), int(y)))
        n.x = x
        n.y = y
        return n

    def __mul__(self, other):
        return self.__new__(type(self), self.x*other, self.y*other)

    def __add__(self, other):
        return self.__new__(type(self), self.x+other.x, self.y+other.y)

    def __str__(self):
        return "(%s, %s)"%(self.x, self.y)
    @staticmethod
    def from_points(P1, P2):
        return Vector2( P2[0] - P1[0], P2[1] - P1[1] )
    def get_magnitude(self):
        return math.sqrt( self.x**2 + self.y**2 )
    def normalize(self):
        magnitude = self.get_magnitude()
        self.x /= magnitude
        self.y /= magnitude

からサブクラスtuple化され、関数に渡すことができblitます。(タプルには s が含まれている必要があることにも注意してくださいint)。

__add__また、加算と__mul__乗算をサポートするように追加しました。

この方法では、コードをさらに変更する必要はなく、ベクター クラスを意図したとおりに使用できます。

于 2012-09-11T09:00:31.703 に答える
2

次のことを試してください。

screen.blit(sprite, (position.x, position.y))

問題は、 Vector2 にイテレータであるオーバーロードがないため、オブジェクト__iter__を呼び出すことができることです。これは、関数呼び出しtupleによってタプルに変換できないため、パラメーターが無効であることを意味します。blit

あなたの Vector2 には以下が含まれます。

def __iter__(self):
        return [self.x, self.y].__iter__()

そして、あなたのブリットは次のようになります:

screen.blit(sprite, tuple(position))
于 2012-09-11T08:27:39.693 に答える