SWE 2410, Lab 6: Observing Coconuts

In this lab and the next you will implement a simple game in which coconuts fall on a beach and a crab tries to shoot them down with its laser eyes. You will use the Observer Pattern in your implementation. This is a group lab.

The crab sits on the beach and moves right and left. Coconuts are introduced at the top and fall downwards. The intended rules for the game are that the crab would shoot lasers straight up at coconuts, destroying them. The laser beam should move slowly enough the user can see it move and the crab can move to the side to escape being hit if the laser misses. You might add a random probability for the laser destroying the coconut. The number of coconuts destroyed by a laser beam are counted, as are the number of coconuts reaching the beach. If a coconut hits the crab, no more coconuts are generated. The game ends after the crab is destroyed and all remaining coconuts have hit the beach. The game starts when the user presses the space bar. If the game is already running, pressing the space bar pauses it, and then pressing it again resumes game play. The recommendation is that the up arrow key would fire the laser, but alternatives are acceptable.

You are being given an initial implementation of the game, either through GitHub Classroom or coconuts.zip. You may change most of the elements you are given, but preserve the following:

    public boolean isHittable();      // is object hittable by any other object
    protected int hittable_height();  // the y coordinate where it can be hit
    public boolean isGroundObject();  // does the object exist on the ground
    public boolean isFalling();       // is the object one that falls
    public void step();               // make the object move one step
    public boolean canHit(IslandObject other); // can this hit other?
    public boolean isTouching(IslandObject other); // is this object touching the other object?

There are likely other things you need to know about the provided code; ask!

Implementing the Observer Pattern

The provided code implements little related to one object hitting another. Use the observer pattern to implement this. This will mean writing a subject class capturing hit events and at least one observer class responding to hit events. You will likely find it helpful to distinguish between different hit events. In general, classes observe hit events by displaying information or making objects disappear from the island. Feel free to pass additional data to the update operation.

At a minimum, you must use the observer pattern for the following:

There is a fair bit of leeway in how you apply the Observer Pattern in this lab. So a question you might have is whether you are successfully applying the pattern. Look for the following:

Additional Elements

Your instructor may provide small amounts of extra credit for additional features. See Canvas.

There is a coconut tree picture in the images folder. Feel free to add it to the game screen along with other elements. Important: keep the images in the images folder to minimize problems for your instructor when they try to run your code.

Submission

You will have two weeks to work on this lab. Your instructor may specify deliverables in the first week. In the second week, you will need to submit a Minimal Solution Diagram showing how you applied the pattern, discussion about your experiences with the pattern, and screen shots showing your game in various stages.

Frequent Problems and Questions