Selfish (Space Edition)
创始人
2025-05-30 09:28:27
0

Getting Started: Selfish (Space Edition)

version 1.1

Q1703105484

Typos/errors? Email sarah.clinch@manchester.ac.uk and I'll get them fixed.

 

Table of Contents

  1.  Preliminaries
  2.  A Staged Guide to Development
  3.  Need More Help?

  1. Preliminaries

You do not have to follow the instructions in this document if you do not want to, and the instructions below may not give you a complete solution. They're intended to be a general guide for those who want some help knowing how to approach the problem.

Your solution must meet the provided specification, so you should take time to carefully read all instructions and UML class diagrams. Do this before progressing any further with the instructions in this document!

  1. A Staged Guide to Development

Knowing where to start a game like this can be tricky. Here's one possible set of steps you can follow:

    1. Familiarise yourself with the mechanisms for testing/running code.

Clone the repository and run the tests.sh file. It might seem counter intuitive to start by running the tests before any code, but once you know you can run the tests then it's easy to track your progress. Familiarise yourself with the test output, it should end as follows:

[

22

containers found

]

[

0

containers skipped

]

[

22

containers started

]

[

0

containers aborted

]

[

22

containers successful

]

[

0

containers failed

]

[

374

tests found

]

[

0

tests skipped

]

[

374

tests started

]

[

0

tests aborted

]

[

0

tests successful

]

[

374

tests failed

]

selfish

selfish.decks

Here, the 275 structural tests and the 99 javadoc tests run successfully (but fail). The functional tests don't run at all because they won't compile without functioning

classes in the

 

and

 

packages [1]. If you scroll back

through the output, you'll see it starts with all the compilation errors for the functional tests, followed by something like this:

Each of the red lines represented one failing test, and the blue lines are the classes in which the failing tests can be found. Below this you can view the Stack trace for each failing test:

[1] -- Note that in this document we only have you write class/method

signatures as you come to write associated the functionality. This means that (due to interdependencies between classes) functional tests may not compile until very late on. To avoid this, you could choose to write the class/method signatures now, and then work through adding functionality in accordance with the rest of this guide.

GameDriver.java

Open the provided driver program (                                       ). Compile and run the

driver -- nothing will happen because the main method is empty.

    1. In order to get the tests to pass, you're going to need to get to grips with packaging. Following the materials signposted on this topic, start by creating the  selfish

GameEngine

package and empty classes for the                              and  GameException classes.

game

Create a simplified Astronaut class that includes the constructor, the name and attributes, and a  toString method. Re-run the tests, you should already

see some are now passing.

    1. selfish.deck

      Create the                                  package. You should be very comfortable with

subclass/superclass (inheritance) relationships so at this point you can write near-

Oxygen

Deck

complete implementations of the  Card and                  classes, an empty               ,

GameDriver.java

GameDeck , and SpaceDeck classes. Adding the Strings representations of card types to the  GameDeck , and  SpaceDeck classes is another nice easy task. At this

point, your implementation (including the provided represented in UML as follows:

 

) can be

If you run the tests now, 65 structural tests should pass. If you've not already committed and pushed your changes so far, then do that now. From this point on we're not going to remind you to commit and push, but you should do this regularly.

If you want to avoid a lot of documentation at the end, now might be a good time to read up on Javadoc and add some Javadoc comments in -- check, do the relevant Javadoc tests now pass? (You should document all public/protected classes and members).

    1. Next, we suggest writing some code for the driver program ( GameDriver.java ).

main

Inside the                method create a new instance of the  GameEngine class.

    1. Add some console IO to your driver. A basic loop that let's you add players (and results

Astronaut

io/artwork.txt

in a call to the                           constructor) is a good place to start. To glam it up a bit,

you can also copy in the header ascii art from be something like this:

 

. The result might

    1. The Deck class is responsible for reading in cards from file, and is uses the loadCards method to do this. Add an empty constructor. Add an empty loadCards method according to the UML signature, and include a return statement return null to ensure it will compile successfully. Re-run the tests to check that

you've got the signatures correct (more tests will now pass).

    1. loadCards

      Add some file handling to                           that reads from the specified path and creates

GameException

the correct number of new Card objects for each line in the file (you don't need to assign these instances to anything permanent right now). Implement error handling for problems in file handling as per the specification (this will involve writing the

class).

    1. Implement the
 

constructors in  GameDeck and

 

, calling the

String

SpaceDeck

loadCards

method from each (the created  Card objects still won't persist, but

Deck

you can worry about that later). Create a new instance of each                subclass from

the driver, and run both the driver and the tests to ensure that the code executes OK.

    1. Time to branch out into the unknown... take a look at the documentation for

java.util.random

Random

. Once you know how to create a new                     object, you

should be able to implement the two  GameEngine constructors, moving the calls to

Deck

create               subclasses out of the driver and into  GameEngine (since the driver

should be creating an instance of GameEngine , these will still get called). It should now be straightforward to add two more calls to the Deck subclass constuctors (this time for the discard piles), assign them to instance variables and write get methods for those variables. At this point, your implementation can be represented in UML as

follows:

Again... If you've not been writing Javadoc as you go, now might be a good time to update the Javadoc from step 3 / read up on Javadoc and add some Javadoc comments in. Check, do the relevant Javadoc tests now pass? (You should document all public/protected classes and members).

    1. loadState

      saveState

      Now that you've got text file handling sorted, it's time to do some object file handling

(serialization). Implement

 

and

 

, and add the

serialVersionUID

loadState

to relevant classes -- the functional tests might compile/pass yet, because they make calls to functions you've not yet implemented, but you should see that structural tests related to serialisation now pass. Add calls to

saveState

and                           to your driver (it's up to you if/how you prompt users to load/save, or

if you just prove to yourself that you can and it works).

You're well on the way, so the instructions for the next steps get sparser, but here are some hints:

    1. At some point you're going to have to tackle a data structure. You have two options here and both connect to pieces you've implemented already.
      1. Implement functionality related to player management in  GameEngine ,

activePlayers

specifically                                    and  currentPlayer (initialising and

populating the attributes, implementing associated get methods). This should in

startTurn

turn make it possible to create an initial implementation of                           and

endTurn

. Update the driver program so that it cycles through players, printing out their name.

      1. Deck

        Revisit the                classes to make the cards persist. At that point you can

Deck

probably finish the implementation of               ,  SpaceDeck and  GameDeck .

Returning to  GameEngine you can now implement  mergeDecks and

startGame . If you've already done (i), then update the driver program so that as you cycle through players, a card is drawn and placed on the discard pile. If you

haven't done (i) yet, then update the driver program so that it loops through the decks, drawing a card and placing it on the relevant discard pile. When the deck runs out, use `mergeDecks` to shuffle the discard pile back into the deck.

If you've not been writing Javadoc as you go, now might be a good time to update Javadoc and check the relevant. test output.

    1. splitOxygen

      If you didn't tackle                                in GameEngine in the previous step, then it's a

good idea to do that now. Think carefully about the edge cases with this one.

    1. After tackling (i) and (ii) above, there are just a few data structures left in the UML that won't be represented in your implementation. Considering (ii) above, implementing functionality related to an Astronaut's hand ( actions and oxygens ) should seem very similar. After tackling these (together with  addToHand ,  getActions ,

isAlive

getHand ,  hasCard ,                   ,  oxygenRemaining ,  breathe ,  hack ,

siphon ,  steal ), you should be able to revisit (i) above to add in the  corpses

attribute, getAllPlayers , getFullPlayerCount , and killPlayer . Update the driver program so that as you cycle through players, each player draws a card and then breathes. If you cycle for long enough, maybe some players will die (there's a lot of Oxygen in the game deck, so you may want to temporarily modify the code to reduce this and make death more likely).

At this point, your implementation can be represented in UML as follows:

    1. This is probably a good time to give the driver program an upgrade, making it possible to see how players' hands change during their turn, to allow them to play cards and target other players (even if, in some cases, the only effect is that the card ends up in the discard pile). To represent (and allow interaction with) an Astronaut's hand, you'll

getActionsStr

need to implement  getHandStr and

implementing the  Comparable interface at this point too.

 

. We'd suggest

    1. Without track logic it's impossible for anyone to win this game. All the unimplemented

Astronaut

functionality in                           now relates to tracks, so go ahead and finish off this class

gameOver

getWinner

now. This should also allow you to implement                        ,                          .

At this point, you should have implemented everything in the UML. All the functional and structural tests should pass. Hopefully, you've been writing Javadoc since step 3, but if not then now is the time!

You have (at least) three choices from here:

  1. Stop development. If all the tests pass (including the Javadoc tests) then you have 80% of the marks.
  2. Finish the driver program. It's not earning you any extra marks, but at least you'll have finished an awesome game.
  3. Start development on a JavaFX GUI that uses the classes you've developed in the previous steps to allow a full play through the game.

Whatever you do, be sure to submit your solution by tagging correctly and pushing all commits.

  1. Need More Help?

Don't forget to run the tests at regular intervals. If you're not sure why a test is failing, take a look at the stack trace. If that's not helping, you can also look at the source code for the relevant test.

You can get also get help prior to submission by asking questions in the labs or online forums.

相关内容

热门资讯

安卓系统限制无法录音,探索无法... 你有没有遇到过这种情况?手机里明明装了录音软件,却突然发现,哎呀妈呀,竟然无法录音了!这可真是让人头...
怎么降级手机系统安卓,操作指南... 手机系统升级了,新功能层出不穷,但有时候,你可能会觉得,这系统太卡了,想回到那个流畅如丝的年代。别急...
米oa系统是安卓系统吗,深入解... 亲爱的读者,你是否曾好奇过,米OA系统是不是安卓系统的一员?这个问题,就像是一颗好奇的种子,悄悄地在...
手机刷安卓车载系统,手机刷机后... 你有没有发现,现在开车的时候,手机和车载系统之间的互动越来越紧密了呢?想象当你驾驶着爱车,一边享受着...
vivo安卓怎么降系统,viv... 手机用久了,是不是觉得系统越来越卡,运行速度大不如前?别急,今天就来教你怎么给vivo安卓手机降降级...
nova 4刷安卓系统,体验全... 最近手机界可是热闹非凡呢!听说华为nova 4要刷安卓系统了,这可真是让人兴奋不已。你有没有想过,你...
如果当初没有安卓系统,科技世界... 想象如果没有安卓系统,我们的生活会是怎样的呢?是不是觉得有点不可思议?别急,让我们一起穿越时空,探索...
安卓电视装win系统,系统转换... 亲爱的读者们,你是否曾想过,在你的安卓电视上装一个Windows系统,让它瞬间变身成为一台功能强大的...
安卓手机还原系统好处,重拾流畅... 你有没有遇到过安卓手机卡顿、运行缓慢的情况?别急,今天就来给你揭秘一下安卓手机还原系统的那些好处,让...
安卓系统能跑win吗,探索跨平... 你有没有想过,你的安卓手机里能不能装上Windows系统呢?这听起来是不是有点像科幻电影里的情节?别...
安卓车载系统蓝牙设置,畅享智能... 你有没有发现,现在开车的时候,手机和车载系统之间的互动越来越频繁了呢?这不,今天就来给你详细说说安卓...
奥利奥安卓系统,探索新一代智能... 你有没有想过,一块小小的奥利奥饼干竟然能和强大的安卓系统扯上关系?没错,今天就要来聊聊这个跨界组合,...
微信使用安卓系统,功能解析与操... 你有没有发现,现在用微信的人越来越多了呢?尤其是安卓系统的用户,简直就像潮水一样涌来。今天,就让我带...
体验最新原生安卓系统,极致体验... 你有没有想过,手机系统就像是我们生活的调味品,有时候换一种口味,生活都会变得有趣起来呢?最近,我体验...
安卓系统能玩原神,尽享奇幻冒险... 你有没有想过,在安卓系统上也能畅玩《原神》这样的热门游戏呢?没错,就是那个画面精美、角色丰富、玩法多...
安卓写手机银行系统,基于安卓平... 你有没有想过,手机银行系统在我们日常生活中扮演了多么重要的角色呢?每天刷刷手机,就能轻松管理账户,转...
僵尸之夜恐怖安卓系统,揭秘恐怖... 僵尸之夜,恐怖安卓系统来袭!想象一个寂静的夜晚,你正沉浸在美梦中,突然,一阵诡异的铃声打破了夜的宁静...
谷歌框架和安卓系统,构建智能移... 你有没有想过,为什么你的手机那么聪明,能帮你找到路线,还能帮你拍出美美的照片呢?这都要归功于一个超级...
安卓系统和oppo系统哪个流畅... 你有没有想过,手机系统哪个更流畅呢?安卓系统和OPPO系统,这两个名字听起来就让人心动。今天,咱们就...
安卓怎么用微软系统,利用微软系... 你是不是也和我一样,对安卓手机上的微软系统充满了好奇?想象那熟悉的Windows界面在你的安卓手机上...