Python代写CSSE1001/7030 python程序作业、代做python CSSE1001/7030程序作业、 代写CSSE1001/7030 python 作业...

Python代写CSSE1001/7030 python程序作业、代做python CSSE1001/7030程序作业、 代写CSSE1001/7030 python 作业
Uno++
Assignment 2
CSSE1001/7030
Semester 2, 2018
Version 1.0.1
10 marks
Due Friday 21st September, 2018, 20:30
Introduction
This assignment follows a programming pattern called MVC (the Model,
View, Controller) pattern. You have been provided with the view and
controller classes but you will be required to implement several modelling
classes.
The modelling classes are from the popular card game, Uno. Each class
you're required to implement has a specification that is outlined in this
document. A specification is a description of each method in a class as
well as their parameters and return values.
Once you have implemented the modelling classes, you will have
completed a digital version of Uno that follows the MVC pattern.
Gameplay
Uno is a card based game consisting primarily of cards with both a colour
and a number. Each player starts with a deck of seven cards. The player
whose cards are visible is the starting player. Once the player makes a
move by selecting their card to play, their cards will be hidden and it will
move to the next players turn.
There are two piles in the middle of the board. The left pile is the pickup
pile, a player should click this pile if they have no cards to play, it will add
a card to their deck. The right pile is the putdown pile, a player has to
pick a card from their deck which matches the card on top of the putdown
pile.
The aim of the game is to have no cards left in your deck. Each turn a
player can either select a card from their pile which matches the card on
top of the putdown pile, or, they can pickup a new card from the pickup
pile if they have no matching cards.
Getting Started
Files
a2.py - file where you write your submission
a2_support.py - contains supporting code and part of the controller
gui.py - contains the view
player.txt - a list of random player names to use for computer players
images/ - a directory of card images
Classes
In the diagram below, an arrow indicates that one class stores an instance
of another class. An arrow with a head indicates that one class is a
subclass of another class. Red classes are classes that have been provided
already.
The type hints shown in the methods below are purely for your
own understanding. Type hints do not need to be used in your
assignment.
Cards
A card represents a card in the uno game which has colour and number
attributes.
Card
The basic type of colour and number.
Instances of Card should be initialized with Card(number, colour). The
following methods must be implemented:
get_number(self): Returns the card number
get_colour(self): Returns the card colour
set_number(self, number: int): Set the number value of the card
set_colour(self, colour: a2_support.CardColour): Set the colour of
the card
get_pickup_amount(self): Returns the amount of cards the next player
should pickup
matches(self, card: Card): Determines if the next card to be placed on
the pile matches this card.
"Matches" is defined as being able to be placed on top of this card legally.
A "match" for the base Card is a card of the same colour or number.
play(self, player: Player, game: a2_support.UnoGame): Perform a
special card action. The base Card class has no special action.
Hint: Look at the a2_support.UnoGame methods
__str__(self): Returns the string representation of this card.
__repr__(self): Same as __str__(self)
For the following examples, assume that the below code has been
executed:
>>> anna = ComputerPlayer("Anna Truffet")
>>> players = [anna, HumanPlayer("Henry O'Brien"),
ComputerPlayer("Josh Arnold")]
>>> deck = Deck([Card(1, "red"), Card(2, "blue"),
Each of the following classes should be a subclass of Card and
should only alter methods required to implement the functionality
of the card as described.
SkipCard
A card which skips the turn of the next player. Matches with cards of the
same colour.
Examples
ReverseCard
A card which reverses the order of turns. Matches with cards of the same
colour.
Examples
Card(3, "red"), Card(4, "green")])
>>> game = a2_support.UnoGame(deck, players)

>>> card = SkipCard(0, "blue")
>>> game.current_player().get_name()
'Anna Truffet'
>>> card.play(anna, game)
>>> game.current_player().get_name()
"Henry O'Brien"

>>> card = ReverseCard(0, "red")
>>> game.current_player().get_name()
'Anna Truffet'
>>> game.next_player().get_name()
"Henry O'Brien"
>>> game.next_player().get_name()
'Josh Arnold'
>>> game.next_player().get_name()
'Anna Truffet'
>>> card.play(anna, game)
Pickup2Card
A card which makes the next player pickup two cards. Matches with cards
of the same colour
Examples
Pickup4Card
A card which makes the next player pickup four cards. Matches with any
card.
Examples
>>> game.next_player().get_name()
'Josh Arnold'
>>> game.next_player().get_name()
"Henry O'Brien"
>>> game.next_player().get_name()
'Anna Truffet'

>>> game.next_player().get_deck().get_cards()
[]
>>> card = Pickup2Card(0, "red")
>>> card.play(anna, game)
>>> game.next_player().get_deck().get_cards()
[Card(3, red), Card(4, green)]

>>> game.next_player().get_deck().get_cards()
[]
>>> card = Pickup4Card(0, "red")
>>> card.play(anna, game)
>>> game.next_player().get_deck().get_cards()
[Card(1, red), Card(2, blue), Card(3, red), Card(4,
green)]

Examples
Deck
A collection of ordered Uno cards. A Deck should be initialized with
Deck(starting_cards=None)
get_cards(self): Returns a list of cards in the deck.
get_amount(self): Returns the amount of cards in a deck.
>>> card = Card(23, "yellow")
>>> card.__str__()
'Card(23, yellow)'
>>> card
Card(23, yellow)
>>> card = Card(42, "red")
>>> card.get_number()
42
>>> card.get_colour()
'red'
>>> card.set_number(12)
>>> card.get_number()
12
>>> card.get_pickup_amount()
0
>>> special_card = Pickup2Card(0, "red")
>>> special_card.get_pickup_amount()
2
>>> special_card.matches(card)
True
>>> card.matches(special_card)
True
>>> blue_card = ReverseCard(0, "blue")
>>> special_card.matches(blue_card)
False

shuffle(self): Shuffle the order of the cards in the deck.
pick(self, amount: int=1): Take the first 'amount' of cards off the deck
and return them.
add_card(self, card: Card): Place a card on top of the deck.
add_cards(self, cards: list<Card>): Place a list of cards on top of the
deck.
top(self): Peaks at the card on top of the deck and returns it or None if
the deck is empty.
Examples
>>> cards = [card, special_card, blue_card]
>>> deck = Deck(cards)
>>> deck.get_cards()
[Card(12, red), Pickup2Card(0, red), ReverseCard(0,
blue)]
>>> deck.get_amount()
3
>>> deck.top()
ReverseCard(0, blue)
>>> new_card = SkipCard(0, "green")
>>> deck.add_card(new_card)
>>> deck.add_cards([card, special_card, blue_card])
>>> deck.get_amount()
7
>>> deck.get_cards()
[Card(12, red), Pickup2Card(0, red), ReverseCard(0,
blue), SkipCard(0, green), Card(12, red), Pickup2Card(0,
red), ReverseCard(0, blue)]
>>> deck.pick()
[ReverseCard(0, blue)]
>>> deck.pick(amount=2)
[Pickup2Card(0, red), Card(12, red)]
>>> deck.shuffle()
>>> deck.get_cards()
Players
A player represents one of the players in a game of uno.
Player
The base type of player which is not meant to be initiated (i.e. an abstract
class).
The Player class should be initiated with Player(name) and implement the
following methods:
get_name(self): Returns the name of the player.
get_deck(self): Returns the players deck of cards.
is_playable(self): Returns True iff the players moves aren't automatic.
Raises a NotImplementedError on the base Player class.
has_won(self): Returns True iff the player has an empty deck and has
therefore won.
pick_card(self, putdown_pile: Deck): Selects a card to play from the
players current deck.
Raises a NotImplementedError on the base Player class.
Returns None for non-automated players or when a card cannot be
played.
If a card can be found, the card should be removed.
Each of the following classes should be a subclass of Player and
should only alter methods required to implement the functionality
as described.
[SkipCard(0, green), Card(12, red), Pickup2Card(0, red),
ReverseCard(0, blue)]

HumanPlayer
A human player that selects cards to play using the GUI.
ComputerPlayer
A computer player that selects cards to play automatically.
Examples
>>> player = Player("Peter O'Shea")
>>> player.get_name()
"Peter O'Shea"
>>> player.get_deck()
<__main__.Deck object at 0x10e56cd68>
>>> player.get_deck().get_cards()
[]
>>> player.is_playable()
Traceback (most recent call last):
File "", line 1, in
player.is_playable()
File "a2.py", line 345, in is_playable
raise NotImplementedError("is_playable to be
implemented by subclasses")
NotImplementedError: is_playable to be implemented by
subclasses
>>> player.has_won()
True
>>> player.get_deck().add_card(Card(32, "red"))
>>> player.has_won()
False
>>> human = HumanPlayer("Peter Sutton")
>>> human.is_playable()
True
>>> human.pick_card(deck)
>>> print(human.pick_card(deck))
Criteria
Criteria Mark
Functionality 8
Card classes 3
Deck class 3
Player classes 2
Style & Documentation 2
Program is well structured and readable 0.5
Variable and function names are meaningful 0.5
Entire program is documented clearly and concisely,
without excessive or extraneous comments 1
Total /10
As apart of this assessment, you will be required to discuss your code with
a tutor. This discussion will occur in the week following your assignment
submission in the practical session to which you are enrolled. You must
attend this session to obtain marks for this assignment.
Assignment Submission
Your assignment must be submitted via the assignment three submission
link on Blackboard. You must submit a file, , containing your
submission for this assignment. You do not need to submit any other files.
None

a2.py
Late submission of the assignment will not be accepted. Do not wait until
the last minute to submit your assignment, as the time to upload it may
make it late. Multiple submissions are allowed, so ensure that you have
submitted an almost complete version of the assignment well before the
submission deadline of 6pm. Your latest, on time, submission will be
marked. Ensure that you submit the correct version of your assignment.
In the event of exceptional circumstances, you may submit a request for
an extension. See the course profile for details of how to apply for an
extension.
Requests for extensions must be made no later than 48 hours prior to
the submission deadline. The expectation is that with less than 48 hours
before an assignment is due it should be substantially completed and
submittable. Applications for extension, and any supporting
documentation (e.g. medical certificate), must be submitted via my.UQ.
You must retain the original documentation for a minimum period of six
months to provide as verification should you be requested to do so.
Change Log
Version 1.0.1 - September 2nd
Task Sheet:
? Included missing add_card
? Clarified the use of type hints
? Adjusted Card.set_colour type hint to reference a2_support
? Implemented the new game functionality in gui.py
? Clarified pick_card method for ComputerPlayer
a2_support.py
? Modified FULL_DECK and build_deck so zero cards cannot match
special cards
? Improved imports
gui.py
? Implemented the new game functionality
http://www.6daixie.com/contents/3/1779.html

 

因为专业,所以值得信赖。如有需要,请加QQ99515681 或邮箱:99515681@qq.com 

微信:codinghelp

转载于:https://www.cnblogs.com/pythonpythoncode/p/9682763.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/413286.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

selenium等待定位标签加载完再执行

遇到的问题描述 我们经常会碰到用selenium操作页面上某个元素的时候&#xff0c; 需要等待页面加载完成后&#xff0c; 才能操作。 否则页面上的元素不存在&#xff0c;会抛出异常。 比如&#xff1a; 一个动态网页使用了ajax的异步加载&#xff0c;我们需要等待元素加载…

[css] body{height:100%}和html,body{height:100%}有什么区别?为什么html要设置height:100%呢,html不就是整个窗口吗?

[css] body{height:100%}和html,body{height:100%}有什么区别&#xff1f;为什么html要设置height:100%呢&#xff0c;html不就是整个窗口吗&#xff1f; html是body的父级&#xff0c;在缺少了父级的宽高之后&#xff0c;如果给body设置一个渐变色背景的话将不会正常显示。个…

数据类型的操作

时间数据类型 1.mongo中存储时间大多为ISOData 2.获取当前时间   1. 使用new Date() 自动生成当前时间   2. 使用 ISODate() 生成当前时间   3. 获取计算机时间生成时间格式字符串 Date() 3.ISODate()   功能&#xff1a; 生成mongodb时间存储类型   参数&#xff1a…

python+selenium 浏览器无界面模式运行

以Chrome浏览器为例&#xff1a; 方法一&#xff1a; from selenium.webdriver import Chrome, ChromeOptionsopt ChromeOptions() # 创建Chrome参数对象 opt.headless True # 把Chrome设置成可视化无界面模式&#xff0c;windows/Linux 皆可 driv…

[css] 你所理解的css高级技巧有哪些?

[css] 你所理解的css高级技巧有哪些&#xff1f; 各种动画效果&#xff0c;能用css的都可以不去用js写的&#xff0c;对我来说就很高级个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣…

[css] 举例说明跟字体相关的属性有哪些

[css] 举例说明跟字体相关的属性有哪些 font-size&#xff1a;字体大小 font-weight&#xff1a;字体粗细 font-family&#xff1a;字体类型 color&#xff1a;字体颜色 等等个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很…

python 文件读写(追加、覆盖)

很明了的一个常用参数图标&#xff1a; 更像细的一个参数说明&#xff1a; 由于文件读写时都有可能产生IOError&#xff0c;一旦出错&#xff0c;后面的f.close()就不会调用。所以&#xff0c;为了保证无论是否出错都能正确地关闭文件&#xff0c;我们可以使用try ... finally来…

职场篇:失败之后

前言 当我写下这个题目之后&#xff0c;我想到了一首歌词"长大以后&#xff0c;我只能奔跑&#xff0c;我多害怕 黑暗中跌倒 "&#xff0c;我不由得哼起这首歌&#xff0c;一种心痛孜然而生。 我也想到了一本小说《飞升之后》&#xff0c;讲述主人公飞升后&#xf…

h5页面调用cmd命令并隐藏cmd弹窗

/*** 通过js调用cmd命令利用ffmpeg实现录屏或者录像功能 ***/ var cmd new ActiveXObject("WScript.Shell");/*命令参数说明cmd.exe /c dir 是执行完dir命令后关闭命令窗口。cmd.exe /k dir 是执行完dir命令后不关闭命令窗口。cmd.exe /c start dir 会打开一个新窗…

[css] 字体的粗细的属性是用哪一个?它有哪些属性值?

[css] 字体的粗细的属性是用哪一个&#xff1f;它有哪些属性值&#xff1f; font-size指的应该是字体大小&#xff0c;字体粗细应该是font-weight&#xff0c;值有normal,bold,bolder,lighter,inherit,也可以自己定义100~900之间的某一个值个人简介 我是歌谣&#xff0c;欢迎…

前端知识点总结

1、DOM结构 —— 两个节点之间可能存在哪些关系以及如何在节点之间任意移动。(通俗易懂的来讲讲DOM、两个节点之间可能存在哪些关系以及如何在节点之间任意移动) DOM: Document Object Module, 文档对象模型。 节点的关系:父(parent)、子(child)和同胞(sibling)等节…

C# windows定时服务+服务邮箱发送

protected override void OnStart(string[] args){timer1 new System.Timers.Timer();// timer1 new System.Timers.Timer(24 * 60 * 60 * 1000);timer1.Interval 3000; //设置计时器事件间隔执行时间timer1.Elapsed new System.Timers.ElapsedEventHandler(timer1_Elapse…

[css] 用CSS实现一个轮播图

[css] 用CSS实现一个轮播图 使用CSS实现的话&#xff0c;可以使用 animat属性和overflow:hidden 属性来做。个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0c; 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

Python爬虫自学之第(①)篇——爬虫伪装和反“反爬”

有些网站是防爬虫的。其实事实是&#xff0c;凡是有一定规模的网站&#xff0c;大公司的网站&#xff0c;或是盈利性质比较强的网站&#xff0c;都是有高级的防爬措施的。总的来说有两种反爬策略&#xff0c;要么验证身份&#xff0c;把虫子踩死在门口&#xff1b;要么在网站植…

[css] 用CSS实现tab切换

[css] 用CSS实现tab切换 1.用label结合单选按钮radio接受切换tab的单击 2.用zindex层级来显示当前tab页对应的内容 3.用css兄弟选择器选中对应的tab页签和内容页&#xff0c;添加相应的样式个人简介 我是歌谣&#xff0c;欢迎和大家一起交流前后端知识。放弃很容易&#xff0…

【练习】实现一个parse方法(需要实现的效果见内容),方法总结

【本题来自牛客网&#xff0c;解题方法也借鉴于牛客网上讨论区中的多种答案&#xff0c;在此做一个总结】 parse方法需要实现的效果如下&#xff1a; var object {b: { c: 4 }, d: [{ e: 5 }, { e: 6 }] }; console.log( parse(object, ‘b.c’) 4 ) //true console.log( par…

[css] 移动端1px像素的问题及解决方案是什么?

[css] 移动端1px像素的问题及解决方案是什么&#xff1f; viewport结合rem解决像素比问题 比如在devicePixelRatio2设置meta <meta name"viewport" content"initial-scale0.5, maximum-scale0.5, minimum-scale0.5, user-scalableno">在devicePixel…

处理 JavaScript 异步操作的几种方法总结

引言 js的异步操作&#xff0c;已经是一个老生常谈的话题&#xff0c;关于这个话题的文章随便google一下都可以看到一大堆。处理js的异步操作&#xff0c;都有一些什么方法呢&#xff1f;仁者见仁智者见智 一、回调函数 传说中的“callback hell”就是来自回调函数。而回调函…

Spring 事务相关及@Transactional的使用建议

使用步骤&#xff1a; 步骤一、在spring配置文件中引入<tx:>命名空间<beans xmlns"http://www.springframework.org/schema/beans" xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance" xmlns:tx"http://www.springframework.org/schema/…

谷歌浏览器安装Vue Devtools插件(国内的谷歌浏览器如何安装插件)

分享给大家一个谷歌插件网站&#xff0c;适合国内谷歌浏览器无法安装插件的问题&#xff0c;你懂的 点击这里下载Vue.js Devtools插件&#xff0c; 喜欢的可以收藏这个插件资源网站&#xff0c;分享给大家 第一步&#xff1a;下载后解压获得CRX文件&#xff0c;如下图 第二步…