Assignment 3: Inheritance, Abstract Classes, and Final
Objectives:
- Create a small game and practice inheritance/implementing child classes.
- Apply abstraction as appropriate.
- Be able to justify design decisions.
Due: Wednesday, Oct 15 before class
Recommendation: Complete at least through part 2 before Monday, for timely completion of the assignment and to identify any issues/questions/comments you may have.
Set Up
Cloning the Repository
In your terminal, go to the directory where you are keeping your repositories for CSCI209. Clone the repository for this assignment.
Add your name to the README file -- you're going to be answering questions in this file for this assignment.
Part 0: Background and Preparing for Assignment
Compiling and Running the Code
- Compile the code using javac *.java or javac Game.java.
- By compiling Game.java, the other classes that it uses are also compiled.
- Run the game by executing java Game
    
 You should see a black pop-up window with a little dude--the professor--in the bottom right corner of the screen, walking.
- Using the arrow keys, move the professor around the screen. Use the space bar to stop him.
- To stop the program, close the window.
- To see what I'm hoping to see when you're done (if you also do
  the extra credit), go into the demoClassesdirectory and run
 java -cp Game.jar Game
 Your Goblin's movement may not be as aggressive as mine, but it also shouldn't be too pokey (and probably not much more aggressive--give players a chance to win).
Understanding the Code
The "game" of CSCI 209 has changed! We're leveling up! From this assignment on, you'll start spending much more time thinking about and understanding code and its design more than writing new lines of code. It's tempting to rush through this important step, but spending time understanding code (and then understanding the problems) will pay off in that you should have an easier time writing code.
To help you with understanding the Game code, read the Javadocs for the game code. Refer back to them while completing the assignment, as it may help you to figure out what is inherited and what each object can do.
I tested indentation of the given code in two text editors, but when looking at students' text editors that I don't have, I'm seeing indentation issues. Please fix the indentation as appropriate. (This won't be an issue soon; we just have some more learning to do before that.)
- Start by looking at Game.java. There is a lot of code related to the animation that you don't need to worry about understanding. Focus on themainandplaymethods as well as the instance and static variables.The mainmethod creates a new Game object, including setting up the window.mainalso calls theplaymethod, which starts the game running.The playmethod creates the professor and takes the professor's turn (which moves the professor). The professor's direction is determined by pressing keys (see thekeyPressedmethod).Consider why some variables are (appropriately) static and some are instance. 
- Then, look at GamePiece.java. (This class contains some less-than-ideal coding practices. Bear with me--you'll fix them soon!)Note the instance variables, the constructor, and the available methods--especially the takeTurn(Game game)method.
- Now, look at Human.java. Look at the class's constructor and thetakeTurnmethod. Hopefully, you're now seeing how the pieces fit together.
Part 1: Creating Child Classes (60 pts)
There should be a lot more thinking than there is coding for this part. The amount of code you need to write is not huge. Think about the behavior of each class and how that should be implemented.
~~~ FAQ ~~~ Don't look at this until after you've attempted to solve this part.
- Create a Goblinclass that inherits fromGamePiece. There are several animated gifs to choose from. A Goblin should "chase" the professor instead of just standing there, which is what the inheritedGamePiece'stakeTurnmethod does (because the piece's coordinates don't change). Since you are overriding thetakeTurnmethod, the method should have the same signature (e.g., the same parameters) as the parent'stakeTurnmethod. How can you make the compiler help enforce that the child class's method has the same signature as the parent?Some illustrations to help frame your thinking. The implementation of Goblin'stakeTurnmethod should look completely different from theHuman'stakeTurnmethod. They do not move in the same ways (i.e., the Human moves based on keys pressed; the Goblin chases the Human). Consider this hypothetical: if theGoblinwas so much likeHuman, why wouldn't the instructions be to make theGoblina child ofHuman? So, their implementations are probably pretty different.If you are tempted to change the method signature or write code that violates encapsulation, stop and consider what objects are available to you and if they have any methods that could be useful. Look at the code and/or the Javadocs. After trying to implement the Goblin class, you can jump to Part 2 to test if it's working, but just adding in the Goblin (not the Treasure). Then, return to here for instructions on how to implement the Treasure class. 
- Create a Treasureclass, another child ofGamePiece, whose image is the gem. The gem will move around the window, periodically and randomly. Note that theTreasureshould not change positions every timetakeTurnis called withinplay. In other words, sometimes, when Treasure'stakeTurnmethod is called, the treasure doesn't move. (It is taking a turn; it just doesn't move.) Also, note that the top 20 pixels of the window (indicated byYMIN_DISPLAY) are covered by the menu bar.
- Clean up your classes. Is there irrelevant code?
Part 2: Updating the Game Class (15 pts)
- Update the title bar for the game so that it has your name in it.
- Update the Gameclass to have instance variables for the Goblin and Treasure objects.
- Edit Game'splaymethod. Create a Goblin object and a Treasure object. Start the Goblin in the upper left corner. The Treasure should start in the center of the window.
- Call the Treasure and Goblin's takeTurnmethods.
- Call the Treasure and Goblin's drawmethods to display them.
Part 3: Using an Abstract Class in the Game Application (35)
Refactoring
This assignment is an example of a typical design/implementation process. Start with the original code design: inheritance from GamePiece class. You realize it could be designed better, so you change the design/implementation. With the revision, it is now easier to add new functionality to Game. This is called refactoring. You are not adding functionality, but you are changing the code to improve its design/readability/maintainability in some way.
Now for the refactoring of your code:
- First, clean up your code.  Get rid of any code that you no
    longer need.  If you did not use the @Overrideannotation on thetakeTurnmethods of your child classes, you should add that. If you get errors, fix the errors (most likely caused by not using the appropriate parameters).
- Modify the GamePiececlass so that it is anabstractclass with anabstracttakeTurnmethod.
- Modify the Gameclass'splaymethod to have an array ofGamePieceobjects, which contains theGamePieceobjects that you just created. Iterate through the objects, calling thetakeTurnanddrawmethod on each object. (If you're getting errors, you likely didn't override thetakeTurnmethod correctly.)
- Make all appropriate methods in the GamePiececlass befinalmethods.
- Test your new code (hopefully, after each step).
- Clean up your code one more time!
The coding for this part of the assignment should be straightforward. The explanations to the questions below are more important.
Documenting Design Decisions
You are going to document your design decisions in
  the README.md file, under "Design Decisions".
  
    
- In the section labeled "Making GamePiece Abstract", discuss
      why making GamePieceabstractis a better approach to the code's design.
- In the section labeled "Calling an Abstract Method", explain
	why we can call the takeTurnmethod on aGamePieceobject--a method that is abstract on an object of an abstract class--and the application does the "right" thing.
- In the section labeled "Choices of Final Methods", justify
      your choices of making methods final.
- In the section labeled "Adding a New Goblin", describe all the steps a programmer would need to take to add a new bad guy that has a different movement behavior (e.g., zig-zags across the screen) to the game. Be clear, concise, and explicit. Don't talk about the zig-zag behavior in particular--I am just giving you a concrete idea of a different behavior. It should be clear to a programmer how to add a new bad guy to the game. (You can make an ordered list in Markdown to make the steps easily read.)
- After you push your code to GitHub, look at how the README is displayed in your browser to make sure it looks as you expect--with headings and paragraphs under those headings.
Extra Credit (up to 15 points)
Complete all of the above requirements before doing extra credit. A good implementation of above, using best design practices, is much preferred to completing the extra credit.
Add the overlap method to
  the GamePiece class.  The signature
  for overlap will look something like 
  public boolean overlaps( GamePiece gp ).  It will
  return true iff the GamePiece overlaps the GamePiece passed to
  the overlap method as a parameter. Note that, if you
  haven't done so already, you'll need to adjust the value of the
  img_width or char_width variables
  of the respective child classes, depending on the size of animated
  gif you chose. Try a value of 15 to start.
There is a lot more that can be done on this assignment--actually making the game stop, implementing winning or losing, adding goblins (with different types of movements), ... Be creative, but keep the code neat.
Submission
As usual, put all of your code in your GitHub repository that you and I can access.
Grading (115 pts)
You will be evaluated based on the following criteria:
- (80 pts) correctness and OO style of your classes, including use of abstract, final
- (15 pts) Refactoring, adding abstraction
- (20 pts) Documentation of design decisions