CS 231: Introduction to Programming
Lab 8: Naive Animation

Assigned: Mon 3 Apr 2000
Due: Wed 12 Apr 2000

With this lab we return fully to object-oriented programming in Java. More specifically, we will continue to explore object-oriented design and Java language features through the vehicle of simple drawings. With this lab, however, we will begin to animate our drawings, thus taking advantage of what we have learned thus far about objects and classes, variables, loops and arrays, as well as our experience with Java Graphics library concepts and methods.

Starting with this lab we will also begin to leave problem specifications more open-ended (and thus less well-defined) and to give fewer instructions about implementation than in previous labs. As you mature as a programmer, you will naturally be asked to do more independent decision-making about the design of your projects. Along with this we will grant you a bit more freedom to determine the character of your projects.

Contents


Basic instructions

In order to fulfill the assignment, you should write a Java applet, along the lines of Lab 2 and Lab 4, which simulates some simple physical principles. More specifically, you should design an animation of some graphical objects in a way which will reflect motion and forces including, for example, friction and gravity. There is a sample animation linked in below to give you an idea of the sort of applet you might write, but you should feel free to explore your own ideas in order to make the project more fun and interesting. Although there will be some minimum requirements, they will be fairly loose with regard to the content of your animation. We will, however, be more demanding about the structure of your code.

The sample applet is available here: it implements a simple animation in which some colored objects bounce around in a "room". Each of the animated objects is a Ball, and each Ball in turn comes with certain properties which are maintained within the object itself:

Furthermore, each Ball object comes with several methods, which are implemented as part of the Ball class:


Tips and hints


Still having trouble putting it all together?

If the above information and discussion from lecture and lab is still leaving you confused, consider the following "sketches" of the BouncyBall demo I wrote:

They show one approach to defining files, classes and methods for the implementation of the project.

After this sketch is implemented in actual code, the following refinements would add new capabilities (shown here in red), including multiple Balls, color and special effects (e.g., Balls bouncing off walls):

Here are some text files which show how these sketches could be put into Java format (with all the details missing, though!):

BouncyBall.java

Ball.java


What to expect for your demo

You should have your program complete and ready to go by the time you ask for a demo. You should also bring a completed demo form (I will pass out another copy before the due date).

As I mentioned above, I will be asking you to make some modifications to your program "on the fly" in order to test your understanding of the use of classes, objects and methods. You should be prepared for this. Also, with this program, more of the categories for points listed on the left of the demo form are becoming relevant, so you may wish to re-read them. Please ask me if you have any questions about what the point categories mean.