簡體   English   中英

使用Python類制作游戲-如何更新自我初始化?

[英]Using Python Class to make game- how to update self init?

我正在使用類系統在python上制作基於文本的游戲,以跟蹤主要角色的變化(例如其名稱)。 我正在主要功能之外的主要角色類之外編寫游戲的主要代碼。

我很掙扎,因為我需要將Main Character類中的self.character_name更新為main函數中用戶的輸入。 我不確定如何執行此操作,下面編寫了代碼-但是它不會更新Main Character類中的名稱。 我該如何重寫?

我也擔心在嘗試更新characters_known寵物時會遇到此問題。 但是,我似乎在更新Health或XP時沒有這個問題。

class Main_Character():

def __init__(self):
    self.health=100
    self.exp=0    
    self.level=0
    self.character_name=""
    self.characters_known={None}
    self.pets={None}
    self.progression_tracker=0

def __str__(self):
    return "Name: "+ str(self.character_name)+"  |  "+ "Health:"+ str(self.health) + "  |  " +"XP:"+ str(self.exp) + "  |  "+ "Level:"+ str(self.level)+"  |  "+"Pets:"+str(self.pets)

def Char_Name(self,name):
    if name.isalpha()==False:
        print("You entered a name containing non-alphabetic characters, pease reenter a new name:")
        main()
    elif len(name)>=10:
        print("You entered a name containing 10 or more characters, pease reenter a new name:")
        main()
    else:
        self.character_name=name


def Char_Level_Experience(self,exp,b):
    self.exp+=exp
    b=2
    if exp<=0:
        exp=1
    ans = 1
    level=0
    while ans<exp:
        ans *= b
        level += 1
    if ans == exp:
        self.level=level
        print("You have reached level", self.level)
    else:
        level = int(log(exp, 2))
        level = min(level, exp) 
        if level>=0:
            self.level=level
        else:
            level=0


def healing(self,heal):
    if self.health+heal>=100:
        self.health=100
    else:
        self.health+=heal


def other_answers(answer):
    if answer=='quit':
        raise SystemExit
    if answer=='pets':
        print("Pets owned:", Main_Character().pets)
        user_decision=input("Would you like to continue where you left off?    Type 'yes' to continue, or 'no' to go back to main menu")
        if user_decision=='yes':
            if Main_Character().progression_tracker==0:
                main()
            elif Main_Character().progression_tracker==1:
                choice1()
        if user_decision=='no':
                main()
        else:
            other_answers(user_decision)
    if answer=='characters':
        print("Characters met:", Main_Character().characters_known)
        user_decision=input("Would you like to continue where you left off? Type 'yes' to continue, or 'no' to go back to main menu:")
        if user_decision=='yes':
            if Main_Character().progression_tracker==0:
                main()
            if Main_Character().progression_tracker==1:
                choice1()
        if user_decision=='no':
                main()
        else:
            other_answers(user_decision)

def start_check():
    print("If you understand the game, type 'go' to continue- if not, type 'more information' to receive more information about how to play the game")
    begin_game=input("")
    if begin_game=="go":
        choice1()
    if begin_game=='more information':
        print("\n","The object of the game is to gain XP [experience points] without dying")
        start_check()
    else:
        other_answers(begin_game)

def choice1():
    Main_Character().progression_tracker=1
    print("You are a knight in the Kings Guard- the King has asked to meet with you about a very special mission")
    print("What would you like to do?")
    print("  1.Go Directly to King","\n", "2. Finish your dinner")
    choice=input("1 or 2?")
    if choice=="1":
        Main_Character().Char_Level_Experience(1,2)
    elif choice=="2":
        Main_Character().Char_Level_Experience(.5,2)
    else:
        other_answers(choice)
    print(Main_Character())

def main(): 
    print("Welcome!")
    unfiltered_name=input("Please enter the name of your character:")
    Main_Character().Char_Name(unfiltered_name)
    print("Welcome,", Main_Character().character_name,"!", "Here are your current stats!")
    print(Main_Character())
    start_check()

您還不太了解類和實例的工作方式。

需要新角色時,您要做的就是呼叫班級。 每次調用Main_Character() ,都會得到一個全新的實例-具有在__init__設置的默認值。 如果您有您的每個朋友的字符,你會說它是一個時間的每一個。 然后,您需要將每個實例保留在變量中,以便您可以每次再次引用它們。

因此,例如:

my_character = Main_Character()
unfiltered_name=input("Please enter the name of your character:")
my_character.Char_Name(unfiltered_name)
print("Welcome,", my_character.character_name,"!", "Here are your current stats!")
print(my_character)

每次調用Main_Character時都會創建一個字符。 相反,您應該調用一次:

the_character = Main_Character()
...
the_character.name = "..."

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM