调用类实例时出错

2024-09-30 05:22:37 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在用python2.7和Pygame制作这个程序。这是我第一次尝试用类来创建游戏。我试图用英雄的属性初始化一个类,比如生命值,速度,等等,命名为“弓箭手”。当我尝试运行代码时,会出现以下错误:

Traceback (most recent call last): File "C:/Python27/rpg.py", line 85, in <module> archer.walk() NameError: name 'archer' is not defined

这是我的密码

from pygame import *
from random import *
from time import *
import pygame
init()
###############VARIABLES
xmove = 0
ymove = 0
white = ( 255,255,255 )

###############INITIALIZING
def preStuff():
    heroSelect()#choose a hero
    initiateScreen()#set screen size
def initiateScreen():
    screen = display.set_mode ((500,500))
def heroSelect():
    print """ Welcome to Boss Fights!
Select a hero:
Archer: Use a bow for long range attacks! Attacks do little damage, but can hit from far away. Has average health.

Warrior: Smite enemies with his powerful sword! Attacks a very powerful, but have very short range and are quite slow. Has high health.

Assasin: Hit your enemy without them even seeing you! Assasin moves very quickly, and attacks quickly Has low health.

Alien: Blast your enemy with fire! Use a staff to shoot strong fireballs at enemies, with moderate damage and range. Has average health.


"""
    heroC = raw_input('Which class would you like?')
    if heroC == 'Archer' or 'archer' or 'ar':
        archer=Hero(50,250,image.load('archer.png'),100,.3,.1)#initialize Hero as: archer
    elif heroC == 'Warrior' or 'warrior' or 'w':
        warrior=Hero(50,250,image.load('warrior.png'),200,.4,.05)
    elif heroC == 'Assasin' or 'assasin' or 'as':
        assasin=Hero(50,250,image.load('asassin.png'),125,.1,.2)
    elif heroC == 'Alien' or 'alien' or 'al':
        alien=Hero(50,250,image.load('alien.png'),150,.3,.1)



class Hero:    
    def __init__(self,x,y, blitImg,hp,attackspeed,speed):
        self.x=x
        self.y=y
        self.blitImg=blitImg
        self.hp = hp
        self.attackspeed = attackspeed
        self.speed=speed

def walk(self):

    for event in pygame.event.get():
        if event.type==QUIT:
            pygame.quit()
            sys.exit()            
        if event.type == KEYDOWN:
            if event.key == K_s:
                ymove = self.speed
            elif event.key == K_w:
                ymove = -self.speed
            elif event.key == K_a:
                xmove = -self.speed
            elif event.key == K_d:
                xmove = self.speed
        elif event.type == KEYUP:
            if event.key == K_a or K_s or K_d or K_w:
                xmove = 0
                ymove = 0
    self.y += ymove
    self.x += xmove
    screen.fill( white )
    screen.blit(self.blitImg,(self.x,self.y))
    display.update()






if __name__ == "__main__":
    preStuff()
    while True:
        archer.walk()

我现在只是想让这个角色走起来 我试过跑步

archer=Hero(50,250,image.load('archer.png'),100,.3,.1)

在壳里,它工作得很好。我可以给archer,y和其他变量打电话,它们打印得很完美。请有人帮我弄明白为什么这不管用(另外,我是一个初学者程序员,所以请原谅,如果它是一些简单,容易修复,我太笨了,没有意识到) 谢谢


Tags: orimageselfeventifpngdefload
1条回答
网友
1楼 · 发布于 2024-09-30 05:22:37

archer是一个局部变量,因此对程序的最后一行所操作的全局范围不可见。您可能想让heroSelect()返回所创建的Hero对象,然后让preStuff()方法也返回该对象

相关问题 更多 >

    热门问题