Code Toolkit: Python, Spring 2024

Week 7 — Wednesday, March 6 — Class notes

Note: This lesson was planned for Wednesday, March 6 but due to the strike, it was delivered online. You can watch the full video of the lecture here, and view a transcript with timestamps.

  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
  6. Wrapping up and homework

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.

The term time-based media is often used to describe work in primarily in 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. The goal of today will be to 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 that historically, animation must have preceded cinema, but in fact there is a 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. See for example Jonathan Crary's Techniques of the Observer or Gregory Zinman's Making Images Move for deeper discussion of this history.

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 primarily for numeric things (like shape sizes, positions, or colors), and also for Boolean True/False values.

Today we saw how we could also use variables to keep track of time represented as a number — so another example of using variable for something numeric.

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 program to be able to switch back and forth between two or more very different actions or operations, or if we want the program to operate in different phases or modes, maybe cycling or toggling between those in response to user input or something else?

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 — ways that are not strictly numeric in the ways we have been using them, but also that keep track of state in way that enables more options than simply True / False values.

Example: A light switch

(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!

(jump back up to table of contents)

VI. Wrapping up and homework

The homework for this week builds on all of the above.