Introduction to Processing

From dftwiki3
Revision as of 14:04, 26 February 2012 by Thiebaut (talk | contribs) (Some variations to try)
Jump to: navigation, search

--D. Thiebaut 11:12, 26 February 2012 (EST)


This is a tutorial introducing Processing, created by Ben Fry and Casey Reas, originally of MIT.

This tutorial assumes no programming background.

ProcessingLogo.jpg



Introduction

Fry and Reas present a nice and concise introduction to Processing in [1]. Quoting from their paper:

Processing is a programming language and environment built for the media arts communities. It is created to teach fundamentals of computer programming within the media arts context and to serve as a software sketchbook. It is used by students, artists, designers, architects, and researchers for learning, prototyping, and production. This essay discusses the ideas underlying the software and presents its relationship to open source software and the idea of software literacy. Additionally, Processing is discussed in relation to education and online communities.

How does Processing work?

General Block Diagram


ProcessingDotOrgGeneralArchitecture.png

When a Processing program is started, two actions take place:

  1. the setup() function is executed by the processor. This happens only once. This is always the first action taken, and for this reason this function is a good place to put code that will define the shape of the applet, and anything settings that will remain constant throughout the execution of the program
  2. the draw() function is executed. And as soon as it is finished, it is restarted again. In general the repeat rate is 30 times per second, corresponding to a frame rate fast enough for our human eyes not to see the flickering.

Processing is a language that is built on top of another language: Java. Java is compatible with all three major operating systems (Windows, OS X, or Linux), and is free. Java is also superior for its graphing abilities. All these properties made it a good support language for Fry and Reas to pick when they wanted to create Processing.

Where does a Processing Program actually run?

The short answer: on your computer! If you are looking at a Processing applet that is running on a Web site, then the applet is downloaded first by the browser, and run inside the browser. If you are running a Processing program that you just created with the Processing editor, then it's also running on your computer. Because it is running on your computer, it can easily perform many useful tasks for programmers:

  • Get characters typed at the keyboard
  • Listen to what the mouse is doing, including changing its position, or whether buttons are pushed, clicked, or released.
  • Display graphic shapes on the display window
  • Play sound files (e.g. MP3 files)
  • Play video files
  • etc... (see the exhibition page on Processing for additional examples of interactions).

Writing a Processing Program

First we need to download and install Processing on our computer. See the Processng Download page for more information.

Next we start the Integrated Development Environment tool (IDE), which is a fancy word for editor, and we enter programs.


ProcessingIDE1.png


Running and Stopping a Processing Program

Starting a program is simple: just click on the round button with a triangle in it, at the top left of the IDE, and this should start the program.


ProcessingIDE2.png


To stop the program you can either close the graphics window, or click on the round button with a black square in the IDE.

A First Example

Assuming that you have Processing installed on your computer, type in the following code in the IDE:

void setup() {
  size(480, 480 );
  smooth();
}

void draw() {
  ellipse(mouseX, mouseY, 80, 80);
}


  • Run your program.
  • Notice that the program draws circles (ellipses with the same horizontal radius as vertical radius) that overlap each other, following the mouse around.
  • When the mouse is outside the window, the graphics window stops moving the circles. This is because the graphics window is sensitive to the mouse only when the mouse is over the window.


ProcessingEllipses1.png


Some explanations

  • By the way, a Processing program is called a sketch.
  • The sketch contains our two functions: setup() and draw().
  • Setup() is executed first and sets the size of the graphics window to 480 pixels wide by 480 pixels high. You can change these around to see how the new window is affected.
  • smooth() is called by setup() to make the display of graphics shape smoother to the eye. This will slow down the program a tiny bit, but in most cases, this is something we'll want to do. You can try removing the smooth() call and see how it affect your program.
  • The draw() function is listed next. This function is called 30 times a second. All it does is to draw an ellipse at the x and y location of the mouse on the graphics window. Top-left is 0, 0. Bottom right is 479, 479 (since our window size was set to 480, 480).
  • And that's it!


This is our first example of animation with Processing. It's easy to do. Just make the draw() function draw something on the graphics window where the mouse is located, and do it 30 times a second. As the mouse moves, the new shapes are drawn following the mouse.


Some variations to try




Variation #1

QuestionMark2.jpg
  • Locate the rect() graphics function in Processing's reference section.
  • Notice how it should be used:

ProcessingRectSyntax.png

  • Change the ellipse to a rectangle in the sketch as follows:


void setup() {
  size(480, 480 );
  smooth();
}

void draw() {
  // ellipse(mouseX, mouseY, 80, 80);
  rect( mouseX, mouseY, 80, 80 );
}


  • the two slashes in front of the line with the ellipse() function transforms this line into a comment. A comment is line of code that does not contain any code, and contains textual information that is skipped by the processor when it runs the program.
  • The rect() function is asked to use mouseX, and mouseY as the coordinates of where to put the rectangle. The width and height of the rectangle are set to 80 pixels each.

Variation #2

QuestionMark1.jpg
  • Locate the background() graphics function in Processing's reference section.
  • Read the description of the background() function.
  • Add a call to the function background() in the draw() function. Pass it the value 200, which is light grey (you would use 0 for full black, and 255 for full white).


void setup() {
  size(480, 480 );
  smooth();
}

void draw() {
  background( 200 );
  // ellipse(mouseX, mouseY, 80, 80);
  rect( mouseX, mouseY, 80, 80 );
}


  • Try the sketch.
  • What is happening? Why is there only one rectangle on the screen?

Online Resources

Best Resource

  • Processing.org: the Web site for Processing is probably the best place to find information, and to find the language environment which you can download for free.
  • Processing.org/learning: good place to start learning Processing, or reviewing concepts seen in class.
  • Processing.org/learning/overview: Just what the name says; it's an overview of the language with simple examples.
  • Processing.org/reference: the main reference to Processing objects and constructs. The best place to search for new features and find examples of how to use them.

Searching by yourself

There is a wealth of Web resources on processing. Unfortunately, when you search for processing on Google (or your favorite search engine), you may get results unrelated to the language Processing, but to the word processing. A good way to force Google to return results that are relevant to the language is to search for processing.org, which is the Web site for Processing.

Misc. Videos

This is less about Processing than about data visualization, and how Ben Fry, one of the co-authors of Processing uses the language to represent data. Several of his projects are presented.
The language Processing is presented around Time Marker 17min.



References

  1. C. Reas, B. Fry, Processing: programming for the media arts, AI & Soc (2006) 20: 526–538 DOI 10.1007/s00146-006-0050-9, (http://hlt.media.mit.edu/dfe_readings/processing.pdf)