University of Washington, CSE 142

Lab 9: Critters Practice

Except where otherwise noted, the contents of this document are Copyright 2013 Stuart Reges and Marty Stepp.

lab document created by Marty Stepp, Stuart Reges and Whitaker Brand

Basic lab instructions

Today's lab

Goals for today:

[an error occurred while processing this directive]

What are Critters?

Critters are a type of Object that live inside of CritterMain. There many types of Critters, and CritterMain will initially populate the Critter world with 30 of each type of Critter that has been added to CritterMain. With every tick, CritterMain asks every individual Critter (that is still alive) a few questions, such as:

The individual Critter's answers dictate how it looks and behaves for the next turn.

Inheritance

Every type of Critter you write will be able to interact with CritterMain because they will all inherit from/extend the Critter class. This means that they will initially:

This is how we can guarantee that CritterMain can ask our Critter all of its questions, and that we'll have an answer.

Of course, it's not incredibly useful to just make Critters that act identically to Critter.java. But we are able to override inherited methods the same way we re-wrote toString() in the last lab/in GeoLocation: by implementing a method with the same method signature as the method we're trying to override.

[an error occurred while processing this directive] [an error occurred while processing this directive]

Exercise : LabTA Version 3

You might have noticed that LabTAs aren't particularly good Critters, scorewise. We get points for making more LabTAs, killing other Critters, and eating food. But if you let CritterMain run for a while, you can see Stones take out a ton of LabTAs, whilst LabTAs fail to pick up many points! This is because by default, LabTAs have the behavior of a Critter:

   public boolean eat() {
      return false;
   }

   public Attack fight(String opponent) {
      return Attack.FORFEIT;
   }

Exercise : LabTA Version 3

Note that right now, the only Critters in CritterMain are Stones and LabTAs.

Exercise : Solution

public class LabTA {

   public boolean eat() {
      return true;
   }

   public Attack fight(String opponent) {
      return Attack.POUNCE;
   }
   
   // earlier implemented methods ommitted
   ...
}
[an error occurred while processing this directive] [an error occurred while processing this directive]

Checkpoint: Congratulations!

Nice job making it this far--labs are tough! Feel free to work with the person next to you for the remaining slides. Labs are a unique opportunity (unlike homework) to collaborate directly on ideas, and practice peer programming.

These next problems get a little more challenging as we explore earlier concepts further.

We put a lot of problems in here so that you have plenty to refer back to later when working on homework. Don't feel bad if you don't finish all of them--Brett can't finish them all in a 50 minute lab, either! :)

Forest the cat says good job!

Exercise : Butterfly practice-it

Define a Critter class named Butterfly with the following behavior:
constructor public Butterfly()
color yellow (Color.YELLOW)
eating behavior never eats (this is the default behavior)
fighting behavior always forfeits (this is the default behavior)
movement behavior moves N, W, N, E, then repeats
toString alternates between "x" and "-" on each move
Hint: recall that we can use an integer to keep track of our moves too!
Another hint: in the past, how did we use an integer to handle 2 distinct cases (even and odd)? Can we generalize that strategy to handle 4 distinct cases?

Exercise : Hyena practice-it

Define a Critter class named Hyena with the following behavior (all unspecified behavior should be default behavior):

If you finish them all...

If you finish all the exercises, try out our Practice-It web tool. It lets you solve Java problems from our Building Java Programs textbook.

You can view an exercise, type a solution, and submit it to see if you have solved it correctly.

Choose some problems from the book and try to solve them!