1

我正在制作一个 2 人游戏,它应该看起来像:
游戏画面
在游戏中,射手(绿色和蓝色,由玩家控制)可以互相射击子弹。
如果子弹
1. 与墙壁(灰色)碰撞,它就会被摧毁。
2.击中射手,它失去健康(射手)。
游戏是(应该是)回合制的,并在玩家达到0健康时结束。

我的问题
1. 我的射手枪管没有更新/旋转。
2.是否有更好的方法来检测是否按下了(ny)键。
* 射手、子弹、墙是类

我的代码
(如果未提及任何对回答有用的功能,请发表评论)

import math,random,pygame
def event_handle(event,turn):
    if turn == 1:
        c_s = p1
    elif turn == 2:
        c_s = p2
    else:
        return None
    if event.type == pygame.KEYDOWN:
        key = pygame.key.get_pressed()
        # next_pos
        if key[pygame.K_q]:
            c_s.next_x -= 1
        if key[pygame.K_e]:
            c_s.next_x += 1
        # angle
        if key[pygame.K_w]:
            c_s.angle += radians(1)
        if key[pygame.K_s]:
            c_s.angle -= radians(1)
        # power (speed)
        if key[pygame.K_d]:
            c_s.speed += 0.1
        if key[pygame.K_a]:
            c_s.speed -= 0.1

def draw_all(bullist,shooters,wall,surface):
    # draw shooters
    for shooter in shooters:
        shooter.move()
        shooter.draw(surface)
    # draw bullets
    for bullet in bullist:
        bullet.gravity()
        bullet.move()
        bullet.collides(shooters,wall,bullist)
        bullet.out(surface,bullist)
        bullet.draw(surface)
    # wall
    wall.update()
    wall.draw(surface)
    pygame.draw.aaline(surface,(255,255,255),(0,400),(640,400))

def angle(A,B,BC,theta):

    C = [0,0]
    alpha = math.atan2(A[1]-B[1] , A[0] -B[0] ) - theta
    C[0] = int(round(B[0]  + BC * math.cos(alpha),0))
    C[1] = int(round(B[1]  + BC * math.sin(alpha),0))
    return C

class Shooter:
    def __init__(self,pos,size,color,xmax,xmin):
        self.pos = pos
        self.size = size
        self.rect = pygame.Rect(pos,size)
        self.health = 100
        self.color = color
        self.angle = 0
        self.speed = 0
        self.max = xmax
        self.min = xmin
        self.next_x = pos[0]

        self.color2 = []
        for i in color:
            i = i - 100
            if i < 0:
                i = 0
            self.color2.append(i)

    def draw(self,surface):
        global C
        pygame.draw.rect(surface,self.color,self.rect)

        c = angle(self.rect.midleft,self.rect.center,
                  20,radians(self.angle))
        if c != C and c != [95,392]:
            print c
            C = c
        pygame.draw.line(surface,self.color2,self.rect.center,c,3)


## the other funcs or classes not needed

# globals
turn = 1
C = []
# pygame
(width, height) = (640, 480)
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Shooter')
clock = pygame.time.Clock()
# game actors
shooters = []
bullets = []
p1 = Shooter((400,400),(30,-15),(255,0,0),0,0)
p2 = Shooter((100,400),(30,-15),(0,255,0),0,0)
shooters.extend([p1, p2])
wall = Wall(100)

running = True
while running:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False
            pygame.quit()
            break
        else: event_handle(event,turn)
    if not running:
        break
    screen.fill((0,0,0))
    # Game draw logic + Game logic

    draw_all(bullets,shooters,wall,screen)
    pygame.display.flip()
    clock.tick(40)

我究竟做错了什么?

4

2 回答 2

1

您的代码确实有效,但存在一些问题。枪管实际上会旋转,但每次按键时只会旋转很小的量。

尝试将您的event_handle功能更改为:

def event_handle(turn):
    if turn == 1:
        c_s = p1
    elif turn == 2:
        c_s = p2
    else:
        return None
    key = pygame.key.get_pressed()
    # next_pos
    if key[pygame.K_q]:
        c_s.next_x -= 1
    if key[pygame.K_e]:
        c_s.next_x += 1
    # angle
    if key[pygame.K_w]:
        c_s.angle += radians(10)
    if key[pygame.K_s]:
        c_s.angle -= radians(10)
    # power (speed)
    if key[pygame.K_d]:
        c_s.speed += 0.1
    if key[pygame.K_a]:
        c_s.speed -= 0.1

由于此时您对事件类型根本不感兴趣,因此我删除了event参数和if event.type == pygame.KEYDOWN:检查。这样,您可以按住按键,而不是被迫多次敲击按键来旋转枪管。

我还增加了桶从旋转radians(1)到的值radians(10)。否则,更改太小而无法看到(在合理的时间内)。

此外,您必须将主循环调整为

...
for event in pygame.event.get():
    if event.type == pygame.QUIT:
        running = False
        pygame.quit()
        break
if not running:
    break
event_handle(turn)
...

所以event_handle称为主循环的每次迭代。

于 2013-01-29T11:13:02.797 回答
0

如果您使用的是 key.get_pressed,则根本不需要检测 key_down 事件。只需删除该if event.type == pygame.KEYDOWN:语句,然后检查返回的内容是否pygame.key.get_pressed有您的密钥。

Alos,您应该pygame.event.pump在每次循环运行时调用代码中的某个位置。把它放在你的while循环中。

(还有一个与您的问题无关的提示:将主循环移动到一个函数内 - 让它像这样挂在程序主体中是很可怕的)

于 2013-01-29T10:59:21.580 回答