有趣的终端骰子游戏

有趣的终端骰子游戏

这是早期项目之一。在编程方面,我仍在掌握各种元素。

这是一个有趣的骰子游戏,是我根据kindom come deliverence的骰子游戏制作的。我仅在终端中创建它。主要是因为我仍在尝试掌握 open gl 和其他图形输入。

非常欢迎任何反馈。

import random# menu to welcome the playerdef menu():    print("""    Welcome to dicen      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 languagedef 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 rulesdef 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.nn  """)    second_meu()#and the scroing systemdef 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.nn """)# 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 <= 0 or computer_player.score <= 0:            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_scoredef one(counts):    if counts[0] >= 1:        return True    else:        return Falsedef five(counts):    if counts[4] >= 1:        return True    else:        return Falsedef three_of_kind(counts):    if 3 in counts:        return True, counts.index(3)    else:        return False, Nonedef four_of_kind(counts):    if 4 in counts:        return True, counts.index    else:        return False, Nonedef five_of_kind(counts):    if 5 in counts:        return True, counts.index    else:        return False, Nonedef six_of_kind(counts):    if 6 in counts:        return True, counts.index    else:        return False, Nonedef full_straight(counts):    if all(value == 1 for value in counts):        return True    else:        return Falsedef one_to_five(counts):    if counts[0] <= 1 & counts[1] <= 1 & counts[2] <= 1 & counts[3] <= 1 & counts[4] <= 1:        return True    else:        return Falsedef two_to_six(counts):    if counts[1] <= 1 & counts[2] <= 1 & counts[3] <= 1 & counts[4] <= 1 & counts[5] <= 1:        return True    else:        return Falsedef count(dice):                   #dice is a alis for eaither human_player.dice_list or computer_player.dice_list which would look like [1, 2, 3, 4, 5, 6] with random numbers beteen 1 and 6 in each index.    value_counts = count_values(dice)    num_ones = value_counts[1]         #the job of this to take the 1: prefix to all the counts to leave behind only the count itself    num_twos = value_counts[2]    num_threes = value_counts[3]    num_fours = value_counts[4]    num_fives = value_counts[5]    num_sixes = value_counts[6]    numbers_list = [num_ones, num_twos, num_threes, num_fours, num_fives, num_sixes]    return numbers_list   #this goes back to new gamedef count_values(dice_list):    counts = {i: 0 for i in range(1, 7)}     #this created this {1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0}    for die in dice_list:        counts[die.value] += 1 #assins each of the dice to a value in numerical order eg of output {1: 1, 2: 1, 3: 2, 4: 1, 5: 1, 6: 0}    return countsdef dice_choice(player):    #alis for human_player    rolling = True    print("Please type the dice you want to re-roll after each choice press enter. When you finish type exit and press enter.")    while (rolling):        player_input = input("")        if player_input.isdigit():                     #checks is the input is a number            number = int(player_input)            if 1 <= number <= 6:                        #checks if it falls between 1 and 6                player.re_roll(number)                         #rolls the dice specified            else:                print("Invalid entry must be a value between 1 and 6")        elif player_input == "exit":            print(f"Your new values are: {player.print_d6()} .")              #outputs the results            rolling = False        else:            print("invalid entry must be a number or exit, please try again.")menu()

以上就是有趣的终端骰子游戏的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1352791.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月13日 17:07:59
下一篇 2025年12月13日 17:08:13

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • HTML、CSS 和 JavaScript 中的简单侧边栏菜单

    构建一个简单的侧边栏菜单是一个很好的主意,它可以为您的网站添加有价值的功能和令人惊叹的外观。 侧边栏菜单对于客户找到不同项目的方式很有用,而不会让他们觉得自己有太多选择,从而创造了简单性和秩序。 今天,我将分享一个简单的 HTML、CSS 和 JavaScript 源代码来创建一个简单的侧边栏菜单。…

    2025年12月24日
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    000
  • 带有 HTML、CSS 和 JavaScript 工具提示的响应式侧边导航栏

    响应式侧边导航栏不仅有助于改善网站的导航,还可以解决整齐放置链接的问题,从而增强用户体验。通过使用工具提示,可以让用户了解每个链接的功能,包括设计紧凑的情况。 在本教程中,我将解释使用 html、css、javascript 创建带有工具提示的响应式侧栏导航的完整代码。 对于那些一直想要一个干净、简…

    2025年12月24日
    000

发表回复

登录后才能评论
关注微信