InteractivityThis is the Interactivity chapter from the second edition of Processing: A Programming Handbook for Visual Designers and Artists, published by MIT Press. Copyright 2013 MIT Press. This tutorial is for Processing version 2.0+ and has been adapted for Python Mode. If you see any errors or have comments, please let us know. |
The screen forms a bridge between our bodies and the realm of circuits and electricity inside computers. We control elements on screen through a variety of devices such as touch pads, trackballs, and joysticks, but the keyboard and mouse remain the most common input devices for desktop computers.
The computer mouse dates back to the late 1960s, when Douglas Engelbart presented the device as an element of the oN-Line System (NLS), one of the first computer systems with a video display. The mouse concept was further developed at the Xerox Palo Alto Research Center (PARC), but its introduction with the Apple Macintosh in 1984 was the catalyst for its current ubiquity. The design of the mouse has gone through many revisions in the last forty years, but its function has remained the same. In Engelbart's original patent application in 1970 he referred to the mouse as an "X-Y position indicator," and this still accurately, but dryly, defines its contemporary use.
Mouse DataThe Processing variables mouseX and mouseY (note the capital X and Y) store the x-coordinate and y-coordinate of the cursor relative to the origin in the upper-left corner of the display window. To see the actual values produced while moving the mouse, run this program to print the values to the console:def draw(): frameRate(12) println(str(mouseX) + " : " + str(mouseY))When a program starts, the mouseX and mouseY values are 0. If the cursor moves into the display window, the values are set to the current position of the cursor. If the cursor is at the left, the mouseX value is 0 and the value increases as the cursor moves to the right. If the cursor is at the top, the mouseY value is 0 and the value increases as the cursor moves down. If mouseX and mouseY are used in programs without a draw() or if noLoop() is run in setup(), the values will always be 0. The mouse position is most commonly used to control the location of visual elements on screen. More interesting relations are created when the visual elements relate differently to the mouse values, rather than simply mimicking the current position. Adding and subtracting values from the mouse position creates relationships that remain constant, while multiplying and dividing these values creates changing visual relationships between the mouse position and the elements on the screen. In the first of the following examples, the circle is directly mapped to the cursor, in the second, numbers are added and subtracted from the cursor position to create offsets, and in the third, multiplication and division are used to scale the offsets. |
def setup(): size(100, 100) noStroke() def draw(): background(126) ellipse(mouseX, mouseY, 33, 33) |
|
def setup(): size(100, 100) noStroke() def draw(): background(126) ellipse(mouseX, 16, 33, 33) # Top circle ellipse(mouseX+20, 50, 33, 33) # Middle circle ellipse(mouseX-20, 84, 33, 33) # Bottom circle |
|
|
def setup(): size(100, 100) noStroke() def draw(): background(126) ellipse(mouseX, 16, 33, 33) # Top circle ellipse(mouseX/2, 50, 33, 33) # Middle circle ellipse(mouseX*2, 84, 33, 33) # Bottom circle |
To invert the value of the mouse, subtract the mouseX value from the width of the window and subtract the mouseY value from the height of the screen. |
|
def setup(): size(100, 100) noStroke() def draw(): x = mouseX y = mouseY ix = width - mouseX # Inverse X iy = height - mouseY # Inverse Y background(126) fill(255, 150) ellipse(x, height/2, y, y) fill(0, 159) ellipse(ix, height/2, iy, iy) |
The Processing variables pmouseX and pmouseY store the mouse values from the previous frame. If the mouse does not move, the values will be the same, but if the mouse is moving quickly there can be large differences between the values. To see
the difference, run the following program and alternate moving the mouse slowly and quickly. Watch the values print to the console.
def draw(): frameRate(12) println(pmouseX - mouseX)Draw a line from the previous mouse position to the current position to show the changing position in one frame and reveal the speed and direction of the mouse. When the mouse is not moving, a point is drawn, but quick mouse movements create long lines. |
|
def setup(): size(100, 100) strokeWeight(8) def draw(): background(204) line(mouseX, mouseY, pmouseX, pmouseY) |
Use the mouseX and mouseY variables with an if structure to allow the cursor to select regions of the screen. The following examples demonstrate the cursor making a selection between different areas of the display window. The first divides the screen into halves, and the second divides the screen into thirds. |
|
def setup(): size(100, 100) noStroke() fill(0) def draw(): background(204) if (mouseX < 50): rect(0, 0, 50, 100) # Left else: rect(50, 0, 50, 100) # Right |
|
def setup(): size(100, 100) noStroke() fill(0) def draw(): background(204) if (mouseX < 33): rect(0, 0, 33, 100) # Left elif (mouseX < 66): rect(33, 0, 33, 100) # Middle else: rect(66, 0, 33, 100) # Right |
Use the logical operator |
|
def setup(): size(100, 100) noStroke() fill(0) def draw(): background(204) if ((mouseX > 40) and (mouseX < 80) and (mouseY > 20) and (mouseY < 80)): fill(255) else: fill(0) rect(40, 20, 40, 60) |
This code asks, "Is the cursor to the right of the left edge and is the cursor to the left of the right edge and is the cursor beyond the top edge and is the cursor above the bottom?" The code for the next example asks a set of similar questions and combines them with the keyword else to determine which one of the defined areas contains the cursor. |
|
def setup(): size(100, 100) noStroke() fill(0) def draw(): background(204) if ((mouseX <= 50) and (mouseY <= 50)): rect(0, 0, 50, 50) # Upper-left elif ((mouseX <= 50) and (mouseY > 50)): rect(0, 50, 50, 50) # Lower-left elif ((mouseX > 50) and (mouseY <= 50)): rect(50, 0, 50, 50) # Upper-right else: rect(50, 50, 50, 50) # Lower-right |
Mouse buttonsComputer mice and other related input devices typically have between one and three buttons; Processing can detect when these buttons are pressed with the mousePressed and mouseButton variables. Used with the button status, the cursor position enables the mouse to perform different actions. For example, a button press when the mouse is over an icon can select it, so the icon can be moved to a different location on screen. The mousePressed variable is true if any mouse button is pressed and false if no mouse button is pressed. The variable mouseButton is LEFT, CENTER, or RIGHT depending on the mouse button most recently pressed. The mousePressed variable reverts to false as soon as the button is released, but the mouseButton variable retains its value until a different button is pressed. These variables can be used independently or in combination to control the software. Run these programs to see how the software responds to your fingers. |
|
def setup(): size(100, 100) def draw(): background(204) if (mousePressed == True): fill(255) # White else: fill(0) # Black rect(25, 25, 50, 50) |
|
def setup(): size(100, 100) def draw(): if (mouseButton == LEFT): fill(0) # Black elif (mouseButton == RIGHT): fill(255) # White else: fill(126) # Gray rect(25, 25, 50, 50) |
|
def setup(): size(100, 100) def draw(): if (mousePressed == True): if (mouseButton == LEFT): fill(0) # Black elif (mouseButton == RIGHT): fill(255) # White else: fill(126) # Gray rect(25, 25, 50, 50) |
Not all mice have multiple buttons, and if software is distributed widely, the interaction should not rely on detecting which button is pressed.
Keyboard dataProcessing registers the most recently pressed key and whether a key is currently pressed. The boolean variable keyPressed is true if a key is pressed and is false if not. Include this variable in the test of an if structure to allow lines of code to run only if a key is pressed. The keyPressed variable remains true while the key is held down and becomes false only when the key is released. |
|
def setup(): size(100, 100) strokeWeight(4) def draw(): background(204) if (keyPressed): # If the key is pressed, line(20, 20, 80, 80) # draw a line else: # Otherwise, rect(40, 40, 20, 20) # draw a rectangle |
|
x = 20 def setup(): size(100, 100) strokeWeight(4) def draw(): global x background(204) if (keyPressed): # If the key is pressed x += 1 # add 1 to x line(x, 20, x-60, 80) |
The key variable stores a single alphanumeric character. Specifically, it holds the most recently pressed key. The key can be displayed on screen with the text() function (p. 150). |
|
def setup(): size(100, 100) textSize(60) def draw(): background(0) text(key, 20, 75) # Draw at coordinate (20,75) |
The key variable may be used to determine whether a specific key is pressed. The following example uses the expression key=='A' to test if the A key is pressed. The single quotes signify A as the data type char (p. 144). The expression key=="A" will cause an error because the double quotes signify the A as a String, and it's not possible to compare a String with a char. The logical AND symbol, the |
|
def setup(): size(100, 100) strokeWeight(4) def draw(): background(204) # If the 'A' key is pressed draw a line if ((keyPressed) and (key == 'A')): line(50, 25, 50, 75) else: # Otherwise, draw an ellipse ellipse(50, 50, 50, 50) |
The previous example works with an uppercase A, but not if the lowercase letter is pressed. To check for both uppercase and lowercase letters, extend the relational expression with a logical OR, the if ((keyPressed) and ((key == 'a') or (key == 'A'))):Because each character has a numeric value as defined by the ASCII table (p. 605), the value of the key variable can be used like any other number to control visual attributes such as the position and color of shape elements. In order to extract this value in Python Mode, we use the ord function. This converts any ASCII character into it's numerical ASCII code. For instance, the ASCII table defines the uppercase A as the number 65, and the digit 1 is defined as 49.
|
|
def setup(): size(100, 100) stroke(0) def draw(): if (keyPressed): x = ord(key) - 32 line(x, 0, x, height) |
|
angle = 0 def setup(): size(100, 100) fill(0) def draw(): global angle background(204) if (keyPressed): if ((ord(key) >= 32) and (ord(key) <= 126)): # If the key is alphanumeric, use its value as an angle angle = (ord(key) - 32) * 3 arc(50, 50, 66, 66, 0, radians(angle)) |
Coded keysIn addition to reading key values for numbers, letters, and symbols, Processing can also read the values from other keys including the arrow keys and the Alt, Control, Shift, Backspace, Tab, Enter, Return, Escape, and Delete keys. The variable keyCode stores the ALT, CONTROL, SHIFT, UP, DOWN, LEFT, and RIGHT keys as constants. Before determining which coded key is pressed, it's necessary to check first to see if the key is coded. The expression key==CODED is true if the key is coded and false otherwise. Even though not alphanumeric, the keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) will not be identified as a coded key. If you're making cross-platform projects, note that the Enter key is commonly used on PCs and UNIX and the Return key is used on Macintosh. Check for both Enter and Return to make sure your program will work for all platforms (see code 12-17). |
|
y = 35 def setup(): size(100, 100) def draw(): global y background(204) line(10, 50, 90, 50) if (key == CODED): if (keyCode == UP): y = 20 elif (keyCode == DOWN): y = 50 else: y = 35 rect(25, y, 50, 30) |
EventsA category of functions called events alter the normal flow of a program when an action such as a key press or mouse movement takes place. An event is a polite interruption of the normal flow of a program. Key presses and mouse movements are stored until the end of draw(), where they can take action that won't disturb drawing that's currently in progress. The code inside an event function is run once each time the corresponding event occurs. For example, if a mouse button is pressed, the code inside the mousePressed() function will run once and will not run again until the button is pressed again. This allows data produced by the mouse and keyboard to be read independently from what is happening in the rest of the program.
Mouse eventsThe mouse event functions are mousePressed(), mouseReleased(), mouseMoved(), and mouseDragged():mousePressed() Code inside this block is run one time when a mouse button is pressed mouseReleased() Code inside this block is run one time when a mouse button is released mouseMoved() Code inside this block is run one time when the mouse is moved mouseDragged() Code inside this block is run one time when the mouse is moved while a mouse button is pressed The mousePressed() function works differently than the mousePressed variable. The value of the mousePressed variable is true until the mouse button is released. It can therefore be used within draw() to have a line of code run while the mouse is pressed. In contrast, the code inside the mousePressed() function only runs once when a button is pressed. This makes it useful when a mouse click is used to trigger an action, such as clearing the screen. In the following example, the background value becomes lighter each time a mouse button is pressed. Run the example on your computer to see the change in response to your finger. |
|
gray = 0 def setup(): size(100, 100) def draw(): global gray background(gray) def mousePressed(): global gray gray += 20 |
The following example is the same as the one above, but the gray variable is set in the mouseReleased() event function, which is called once every time a button is released. This difference can be seen only by running the program and clicking the mouse button. Keep the mouse button pressed for a long time and notice that the background value changes only when the button is released. |
|
gray = 0 def setup(): size(100, 100) def draw(): global gray background(gray) def mouseReleased(): global gray gray += 20 |
It is generally not a good idea to draw inside an event function, but it can be done under certain conditions. Before drawing inside these functions, it's important to think about the flow of the program. In this example, squares are drawn inside mousePressed() and they remain on screen because there is no background() inside draw(). But if background() is used, visual elements drawn within one of the mouse event functions will appear on screen for only a single frame, or, by default, 1/60th of a second. In fact, you'll notice this example has nothing at all inside draw(), but it needs to be there to force Processing to keep listening for the events. If a background() function were run inside draw(), the rectangles would flash onto the screen and disappear. |
|
def setup(): size(100, 100) fill(0, 102) def draw(): pass # pass just tells Python mode to not do anything here, draw() keeps the program running def mousePressed(): rect(mouseX, mouseY, 33, 33) |
The code inside the mouseMoved() and mouseDragged() event functions are run when there is a change in the mouse position. The code in the mouseMoved() block is run at the end of each frame when the mouse moves and no button is pressed. The code in the mouseDragged() block does the same when the mouse button is pressed. If the mouse stays in the same position from frame to frame, the code inside these functions does not run. In this example, the gray circle follows the mouse when the button is not pressed, and the black circle follows the mouse when a mouse button is pressed. |
|
#Initialize moveX, moveY, dragX, dragY off screen moveX = moveY = dragX = dragY = -20 def setup(): size(100, 100) noStroke() def draw(): global moveX, moveY, dragX, dragY background(204) fill(0) ellipse(dragX, dragY, 33, 33) # Black circle fill(153) ellipse(moveX, moveY, 33, 33) # Gray circle def mouseMoved(): # Move gray circle global moveX, moveY moveX = mouseX moveY = mouseY def mouseDragged(): # Move black circle global dragX, dragY dragX = mouseX dragY = mouseY |
Key eventsEach key press is registered through the keyboard event functions keyPressed() and keyReleased():keyPressed() Code inside this block is run one time when any key is pressed keyReleased() Code inside this block is run one time when any key is released Each time a key is pressed, the code inside the keyPressed() block is run once. Within this block, it's possible to test which key has been pressed and to use this value for any purpose. If a key is held down for an extended time, the code inside the keyPressed() block might run many times in a rapid succession because most operating systems will take over and repeatedly call the keyPressed() function. The amount of time it takes to start repeating and the rate of repetitions will be different from computer to computer, depending on the keyboard preference settings. In this example, the value of the boolean variable drawT is set from false to true when the T key is pressed; this causes the lines of code to render the rectangles in draw() to start running. |
|
drawT = False def setup(): size(100, 100) noStroke() def draw(): global drawT background(204) if (drawT): rect(20, 20, 60, 20) rect(39, 40, 22, 45) def keyPressed(): global drawT if ((key == 'T') or (key == 't')): drawT = True |
Each time a key is released, the code inside the keyReleased() block is run once. The following example builds on the previous code; each time the key is released the boolean variable drawT is set back to false to stop the shape from displaying within draw(). |
|
drawT = False def setup(): size(100, 100) noStroke() def draw(): global drawT background(204) if (drawT): rect(20, 20, 60, 20) rect(39, 40, 22, 45) def keyPressed(): global drawT if ((key == 'T') or (key == 't')): drawT = True def keyReleased(): global drawT drawT = False |
Event flowAs discussed previously, programs written with draw() display frames to the screen sixty frames each second. The frameRate() function is used to set a limit on the number of frames that will display each second, and the noLoop() function can be used to stop draw() from looping. The additional functions loop() and redraw() provide more options when used in combination with the mouse and keyboard event functions. If a program has been paused with noLoop(), running loop() resumes its action. Because the event functions are the only elements that continue to run when a program is paused with noLoop(), the loop() function can be used within these events to continue running the code in draw(). The following example runs the draw() function for about two seconds each time a mouse button is pressed and then pauses the program after that time has elapsed.frame = 0 def setup(): size(100, 100) def draw(): global frame if (frame > 120): # If 120 frames since the mouse noLoop() # was pressed, stop the program background(0) # and turn the background black. else: # Otherwise, set the background background(204) # to light gray and draw lines line(mouseX, 0, mouseX, 100) # at the mouse position line(0, mouseY, 100, mouseY) frame += 1 def mousePressed(): global frame loop() frame = 0The redraw() function runs the code in draw() one time and then halts the execution. It's helpful when the display needn't be updated continuously. The following example runs the code in draw() once each time a mouse button is pressed. def setup(): size(100, 100) noLoop() def draw(): background(204) line(mouseX, 0, mouseX, 100) line(0, mouseY, 100, mouseY) def mousePressed(): redraw() # Run the code in draw one time
Cursor iconThe cursor can be hidden with the noCursor() function and can be set to appear as a different icon or image with the cursor() function. When the noCursor() function is run, the cursor icon disappears as it moves into the display window. To give feedback about the location of the cursor within the software, a custom cursor can be drawn and controlled with the mouseX and mouseY variables.def setup(): size(100, 100) strokeWeight(7) noCursor() def draw(): background(204) ellipse(mouseX, mouseY, 10, 10)If noCursor() is run, the cursor will be hidden while the program is running until the cursor() function is run to reveal it. def setup(): size(100, 100) noCursor() def draw(): background(204) if (mousePressed): cursor()Add a parameter to the cursor() function to change it to another icon or image. Either load and use image, or use the self-descriptive options are ARROW, CROSS, HAND, MOVE, TEXT, and WAIT. def setup(): size(100, 100) def draw(): background(204) if (mousePressed): cursor(HAND) # Draw cursor as hand else: cursor(CROSS) line(mouseX, 0, mouseX, height) line(0, mouseY, height, mouseY)These cursor icons are part of your computer's operating system and will appear different on different machines. |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License