這是早期專案之一。在程式設計方面,我仍在掌握各種元素。
這是一個有趣的骰子遊戲,是我根據kindom come Deliverence的骰子遊戲製作的。我僅在終端中創建它。主要是因為我仍在嘗試掌握 open gl 和其他圖形輸入。
非常歡迎任何回饋。
import random # menu to welcome the player def menu(): print(""" Welcome to dice\n Would you like to: \n 1. Review the rule, \n 2. play a new game \n 3. review scoring of dice \n """) try: menu_choice = input("") except EOFError: print("No input received. Please run the program in an interactive environment.") return if menu_choice == "1": print_rules() elif menu_choice == "2": new_game() elif menu_choice == "3": print_scroing_values() second_meu() else: print("Invalid choice please choose again") second_meu() #second menu to allow for a alteration of language def second_meu(): print(""" What would you like to do now? Would you like to: \n 1. Review the rule, \n 2. play a new game \n 3. review scoring of dice \n """) menu_choice = input("Please enter your choice: ") if menu_choice == "1": print_rules() elif menu_choice == "2": new_game() elif menu_choice == "3": print_scroing_values() second_meu() else: print("Invalid choice please choose again") second_meu() #explantion of rules def print_rules(): print(""" A player's turn always begins by throwing all six dice. The player then selects and set aside scoring dice, and at least one die must always be set aside. Then the player can throw the remaining dice again and the situation repeats. \n Scoring combinations are counted only for the current throw, not the entire turn.\n The key element of the game is that if a throw does not produce a single scoring die, then the player's turn is over and all points scored up to that throw are forfeit. It is then the opposing player's turn to throw. \n For that reason, it's best to end your turn before the risk that not a single die will score gets too high. Sometimes it's better not to set aside all the scoring dice you you've thrown, so you stand a better chance of scoring higher on the next throw.\n\n """) second_meu() #and the scroing system def print_scroing_values(): print("""Scoring is as follows: - a single 1 is worth 100 points; \n - a single 5 is worth 50 points; \n - three of a kind is worth 100 points multiplied by the given number, e.g. three 4s are worth 400 points; \n - three 1s are worth 1,000 points;\n - four or more of a kind is worth double the points of three of a kind, so four 4s are worth 800 points, five 4s are worth 1,600 points etc.\n - full straight 1-6 is worth 1500 points.\n - partial straight 1-5 is worth 500 points.\n - partial straight 2-6 is worth 750 points.\n\n """) # This die clas allows funtionality to roll a six sided dice and output the value. class die: def __init__(self): self.value = 0 def __repr__(self): return f"{self.value}" def roll(self): self.value = random.randint(1, 6) #here is where the class objects are created and organised into a list for ease of use. die1 = die() die2 = die() die3 = die() die4 = die() die5 = die() die6 = die() dice = [die1, die2, die3, die4, die5, die6] #player class hold the dice values, the player name a method for rolling all 6 dice at one and rerolling specific dice. class player: def __init__(self, name, dice_list, score=4000): self.name = name self.score = score self.dice_list = dice_list def deduct_score(self, deduction): self.score -= deduction return self.score def roll_d6(self): roll_string: str = "" #this funtion rolls all the dice coverts them to string and labels them 1 to 6 producing eg 1: 6, 2: 6, 3: 1, 4: 2, 5: 3, 6: 2 i = 1 for die in dice: die.roll() data = die.value str_data = str(data) str_i = str(i) roll_string += str_i + ": " + str_data + ", " i += 1 return roll_string def print_d6(self): #just print the values roll_string: str = "" i = 1 for die in dice: data = die.value str_data = str(data) str_i = str(i) roll_string += str_i + ": " + str_data + ", " i += 1 return roll_string def re_roll(self, index): #re rolls dice speficed index-=1 dice[index].roll() return dice[index].value #This is the main game loop it has a lot of moving parts. Take your time reviewing. def new_game(): print("Hi so what is your name?\n") human_name = input("") human_player = player(human_name, dice, 4000) #creating objects for both human and computer players in the player class print("who do you wish to play against?") computer_name = input("") computer_player = player(computer_name, dice, 4000) play = True while (play): print("""ok here is your roll: you roll a: """) print(human_player.roll_d6()) #use of the player class function roll_d6 to give a string of rolled dice print("Time to score you dice") total_dice_score = possible_to_score(human_player.dice_list) #this function is below and check to see if any of the dice can score print(total_dice_score) print("Whould you like to re-roll you any dice? Y/N") #allowing the player a chance to re roll dice lroll = input("") roll = lroll.upper() if (roll == "Y"): dice_choice(human_player) #print(dice) print("Time to score you dice") total_dice_score = possible_to_score(dice) print(total_dice_score) human_player.deduct_score(total_dice_score) print(f"Your score is now {human_player.score}") print(f"Ok it's {computer_player.name} go they rolled") print(computer_player.roll_d6()) print("They scored:") total_dice_score = possible_to_score(dice) print(total_dice_score) computer_player.deduct_score(total_dice_score) print(f"{computer_player.name} score is now {computer_player.score}") input("") if human_player.score dice_score: dice_score = temp_dice_score if (isone_to_five == True): temp_dice_score = 500 if temp_dice_score > dice_score: dice_score = temp_dice_score if (istwo_to_six == True): temp_dice_score = 600 if temp_dice_score > dice_score: dice_score = temp_dice_score return dice_score def one(counts): if counts[0] >= 1: return True else: return False def five(counts): if counts[4] >= 1: return True else: return False def three_of_kind(counts): if 3 in counts: return True, counts.index(3) else: return False, None def four_of_kind(counts): if 4 in counts: return True, counts.index else: return False, None def five_of_kind(counts): if 5 in counts: return True, counts.index else: return False, None def six_of_kind(counts): if 6 in counts: return True, counts.index else: return False, None def full_straight(counts): if all(value == 1 for value in counts): return True else: return False def one_to_five(counts): if counts[0]
以上是有趣的終端骰子遊戲的詳細內容。更多資訊請關注PHP中文網其他相關文章!

Linux終端中查看Python版本時遇到權限問題的解決方法當你在Linux終端中嘗試查看Python的版本時,輸入python...

本文解釋瞭如何使用美麗的湯庫來解析html。 它詳細介紹了常見方法,例如find(),find_all(),select()和get_text(),以用於數據提取,處理不同的HTML結構和錯誤以及替代方案(SEL)

本文比較了Tensorflow和Pytorch的深度學習。 它詳細介紹了所涉及的步驟:數據準備,模型構建,培訓,評估和部署。 框架之間的關鍵差異,特別是關於計算刻度的

本文指導Python開發人員構建命令行界面(CLIS)。 它使用Typer,Click和ArgParse等庫詳細介紹,強調輸入/輸出處理,並促進用戶友好的設計模式,以提高CLI可用性。

在使用Python的pandas庫時,如何在兩個結構不同的DataFrame之間進行整列複製是一個常見的問題。假設我們有兩個Dat...

本文討論了諸如Numpy,Pandas,Matplotlib,Scikit-Learn,Tensorflow,Tensorflow,Django,Blask和請求等流行的Python庫,並詳細介紹了它們在科學計算,數據分析,可視化,機器學習,網絡開發和H中的用途

文章討論了虛擬環境在Python中的作用,重點是管理項目依賴性並避免衝突。它詳細介紹了他們在改善項目管理和減少依賴問題方面的創建,激活和利益。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver CS6
視覺化網頁開發工具

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

記事本++7.3.1
好用且免費的程式碼編輯器

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中