Code Toolkit: Python, Spring 2023

Week 7 — Wednesday, March 8 — Class notes

  1. Review: lists
  2. Background & overview: Timing and state
    1. History and inspiration
  3. Timing: a numeric timeline with millis()
  4. State: a new way to use variables
  5. Functions: project planning, reusability and modularity

I. Review: lists

We quickly reviewed some concepts from last week and then went over how to do the second part of the homework. The code that we worked on is here:

week07_hw_inclass.pyde

II. Background & overview: Timing and state

We've already seen how to draw shapes and make them move on their own. This motion would typically start when the program started running and continue forever. Or maybe it would be triggered or changed by user interaction in some way. Today we are going to talk about timing: how to create motion that is in some way scheduled, chorreographed, triggered with some delay, or that repeats at some interval.

Time-based media are most typically thought of as sound and the moving image, although digital media like video games and motion graphics are also included. Today we will see some coding techniques to implement time-based behavior in interactive computer programs of the sort we've been working on, and we will think about how to work with the domain of time in ways that are analagous to how we have so far been working within the domain of space.

a. History and inspiration

Oskar Fischinger

One incredible example of early time-based media is the work of Oskar Fischinger. Fischinger was an artist in the first part of the 20th century and a pioneer in animation and motion graphics. A classic example of his work is the animated film Studie nr 8, 1931.

You might be inclined to think of the history of animation as preceding that of cinema, but in fact there is a historical case to be made for understanding these in the opposite order. Several modern artists and illustrators in the early 20th century were inspired by cinema to create animation, and used the principle of cinema — a continuous strip of film, divided into cells of static imagery that flicker by the viewer's eyes — to create early animation and motion graphics. In fact, many of these innovators actually worked on film strips, drawing and etching into the cells by hand.

Fischinger actually contributed to Disney's Fantasia but quit uncredited because of creative differences. In 2012, the Whitney museum showed an exhibition of his artwork called "Space Light Art". There is great documentation for this show online and I highly recommend taking a look!

III. Timing: A numeric timeline with millis()

(jump back up to table of contents)

IV. State: a new way to use variables

So far we have been using variables either for numeric things (like shape sizes, positions, or colors) or for Boolean True/False values. All of these things are ways of keeping track of what the program is doing in a given moment.

Today we saw how we could use timing and millis() to affect how the program might change over time.

But what if we want the program to change over time in a way that is not explicitly tied to timing. For example, what if we wanted the user to be able to change what the program was doing? Or if we want the program to operate in different phases or modes, and move through those?

In computer science, the term for keeping track of the status of the program is state. We might ask, what state or phase is the program in? This could be used to implement the levels of a video game for example.

The way to do this is by using variables. This is not very different from anything that we have been doing so far. I just want to show a few examples that emphasize how you can use variables in some slightly different ways.

(jump back up to table of contents)

V. Functions: project planning, reusability and modularity

Functions are a way to organize your code.

Now that you've started thinking about the midterm project, you will be working on a computer program that is a little bit longer and a little bit more complicated. You need a way to keep this organized and manageable. Functions give you a technique for how to do that.

(Another strategy for code organization involves a technique called object-oriented programming, which uses things called classes and objects. We might talk about this later in the semester if there is time and interest.)

Functions

A function takes any sequence of commands, groups them together into a block, and gives that block a name. Then, just by using that name, you can automatically run all those commands.

Keep this in mind as you work on the midterm!