Difference between revisions of "CSC111 Lab 7 2015b"

From dftwiki3
Jump to: navigation, search
 
(15 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
----
 
----
 
<br />
 
<br />
=Preparation=
+
 
 +
<showafterdate after="20151021 12:00" before="20151231 00:00">
 +
 
 +
<br />
 +
<bluebox>
 +
In this  lab you will play with a graphics library.  A graphic library typically allows the user to draw simple shapes on the screen.  You will also write some boolean functions that will help you control the dynamic movement of objects on the screen.  When your programs for the challenges work, make sure to demonstrate your solutions to the lab instructor (or the TA).  You must submit your solution program to Moodle before Friday 10/23/15 at 11:55 p.m.
 +
<br />
 +
''' ''Note:''  Everything in this lab is new!  Don't worry if you don't get everything right.  The important thing is to get the graphics library to work, and for you to start understanding how to define simple graphic shapes.  We will have a chance cover and review all these new functions and concepts in future lectures.'''
 +
</bluebox>
 +
<br />
 +
<br />
 +
[[File:TaxiCabCSC111.png|150px|right]]
 +
<br />
 +
=Reference=
 +
<br />
 +
* The short documentation for the graphics library we are going to be using for the rest of the semester is available [http://mcsp.wartburg.edu/zelle/python/graphics/graphics.pdf here].
 +
<br />
 +
= Setting Up The Graphics Library=
 +
<br />
 +
==Step 1: Download the graphics.py Library==
 +
<br />
 +
* Copy/Paste the code from this [http://cs.smith.edu/dftwiki/index.php/Zelle%27s_Graphics.py_for_Python_3 page] to Idle and save it in the directory where you will save your programs for Week 7, under the name '''graphics.py'''.
 +
<br />
 +
==Step 2: Testing your installation==
 +
<br />
 +
* With '''graphics.py'''  in your Idle window, simply click '''run''' to run the library.  Normally libraries are not run by themselves, but this library has its own test program to help users verify that the library is working properly.
 +
* If everything goes well, you should see this simple window appear on your screen:
 
<br />
 
<br />
* Copy paste the program below in a new Idle window, and call it '''lab7Companion.py'''.
+
<center>[[Image:ZelleGraphics1.png]]</center>
* Save your new program to your working directory, where you normally save your lab programs.
+
<br />
* Run the program. It should create 3 text files in your folder.  You will be using them in this lab. The files are called:
+
* Click a few times on the window and verify that the window responds by changing the color or size of various graphic objects.
*chocoQuotes.txt
+
<br />
** hargitay.txt
+
<br />
** joanneHarris.txt
+
<br />
 
+
Graphics programs have to be run from Idle to work correctly, and need the graphics.py library distributed by Zelle, the author of our textbook.
 +
<br />
 +
==Step 3: A simple Graphics Program==
 +
<br />
 +
* Create a new program and call it '''lab7.py'''.  
 +
* '''Important''': save your program in the same directory/folder where you saved the graphics.py library.
 +
Copy the code below in it.
 
<br />
 
<br />
 
::<source lang="python">
 
::<source lang="python">
# lab7Companion.py
+
# lab7.py
# D. Thiebaut
+
# your name
# This program will create several files in the directory
+
# draws a circle in a window that is 600x400.
# where you will run it.
 
# The files are retrieved from a Web server, stored temporarily
 
# in a string, and stored in a local file on your disk.
 
# The 3 files are very, very short.
 
# Their names are:
 
# - chocoQuotes.txt
 
# - hargitay.txt
 
# - joanneHarris.txt
 
  
import urllib.request  # the lib that handles the url stuff
+
from graphics import *
  
# main program
 
 
def main():
 
def main():
 +
    win = GraphWin("My Circle", 600, 400)
 +
    c = Circle(Point(50,50), 10)
 +
    c.draw(win)
 +
    win.getMouse() # Pause to view result
 +
    win.close()    # Close window when done
  
    # list of files to retrieve
+
main()
    fileNames = [ "chocoQuotes.txt", "hargitay.txt", "joanneHarris.txt" ]
+
</source>
 +
<br />
 +
* Run the program.  Verify that you see a single circle in the graphic window.
 +
* Click with the mouse on the graphics window to close it.
 +
<br />
 +
==Step 4: Explanations==
 +
<br />
 +
* Observe the program from Step 3 above and recognize the main features:
 +
*# First we open a new graphic window on our desktop with the <tt>win = GraphWin( ... )</tt> statement.  600 and 400 define how wide and high the window will be.  "My Circle" is the title that will appear at the top of the window.
 +
*# Next, we create a circle ''object'' with the statement <tt>c = Circle( Point(50,50), 10 )</tt>.  '''This does not draw the circle.'''  It simply creates one in memory, centered on the point of coordinates 50, 50, with a radius of 10.
 +
*# Once the circle is created in memory, we make it appear on the graphic window with <tt>c.draw( win )</tt>.
 +
*# Finally, we wait for the user to click on the graphic window, and then close the window.
 +
<br />
  
    # get each file, one at a time
+
==Step 5: Modifications ==
     for fileName in fileNames:
+
<br />
 +
* Modify your program, so that it looks like the code shown below:
 +
<br />
 +
::<source lang="python">
 +
# lab7.py
 +
# your name
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays a red circle, a label
 +
# and a rectangle.
 +
from graphics import *
 +
 
 +
def main():
 +
    #open the graphic window.
 +
     win = GraphWin( "Lab 7 Demo", 600, 400 )
  
        # url where the files are located
+
    # create and draw a red circle
        url = "http://cs.smith.edu/~dthiebaut/111/files/" + fileName
+
    center = Point( 100, 100 )
 +
    circ = Circle( center, 30 )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
  
        # fetch the file and put its contents in the
+
    # add a label inside the circle
        # string text.
+
     label = Text( Point( 100, 100 ), "red circle" )
        response = urllib.request.urlopen( url )
+
    label.draw( win )
        text     = response.read().decode( 'UTF-8' )
 
       
 
        # write text to file, in the same directory as this program.
 
        file    = open( fileName, "w" )
 
        file.write( text + "\n" )
 
        file.close()
 
  
        # give feedback to user.
+
    # create and draw a rectangle
        print( "File {0:1} created in your folder".format( fileName ) )
+
    rect = Rectangle( Point( 30, 30 ), Point( 70, 70 ) )
 +
    rect.draw( win )
  
 +
   
 +
    win.getMouse() # Pause to view result
 +
    win.close()    # Close window when done
  
 
main()
 
main()
 
</source>
 
</source>
 
<br />
 
<br />
 
+
* The program uses 2 new objects: a rectangle, defined by its upper-left and bottom-right corners, and a label (text) that simply is a string of characters drawn at a given point on the screen.  The string is automatically centered around the given point.
<br />
 
<showafterdate after="20150225 11:00" before="20150601 00:00">
 
 
<br />
 
<br />
<bluebox>
 
Although this lab has only 2 Moodle submissions, make sure you work on '''all''' the challenges.  If you skip them, you are only making it harder for you to learn Python and making future challenges that much harder.  A little bit of effort regularly beats a huge effort later!  The Moodle submissions are due on Friday 10/23/15 at 11:55 p.m.  Hope you enjoy this lab!
 
</bluebox>
 
<br />
 
__TOC__
 
 
<br />
 
<br />
 
{| style="width:100%; background:silver"
 
{| style="width:100%; background:silver"
Line 70: Line 118:
 
|
 
|
  
===Challenge #1===
+
==Challenge #1==
 
|}
 
|}
[[Image:QuestionMark4.jpg|right|120px]]
+
[[Image:QuestionMark5.jpg|right|120px]]
 +
<br />
  
* Make your program print the poem in a boxThe top and bottom lines have 50 dashes in them.
+
* Generate the figure belowNote that the graphics system used here can recognize many different colors, all defined by ''strings'', such as <font color="red">'red'</font> used above. You can find all the available colors on this [http://cs.smith.edu/dftwiki/index.php/Tk_Color_Names page].
* Expected output
+
<br />
 +
<center>[[Image:taxiCrude.png]]</center>
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
=Mondrian=
 +
[[Image:Mondrian_1.jpg|right|150px]]
 
<br />
 
<br />
::<source lang="text">
+
You may be familiar with Mondrian, the 20th century Dutch painter who painted geometric shapes on canvas, such as the one shown the right.  In this section you are going to generate a computer graphic reminiscent of some of Mondrian's paintings.
+--------------------------------------------------+
+
<br />
|                    CHOCOLATE                    |
+
* First, create a program called '''Lab7_mondrian.py''' and initialize it with the program shown below.
|          Chocolate is the first luxury.         |
+
<br />
|     It has so many things wrapped up in it:      |
+
::<source lang="python">
|          Deliciousness in the moment,           |
+
# lab7_mondrian.py
|              childhood memories,               |
+
# your name here
|              and that grin-inducing              |
+
# generates a rectangle with a random width
|   feeling of getting a reward for being good.   |
+
# and height, and a given color on the screen.
|                                --Mariska Hargitay|
+
 
+--------------------------------------------------+
+
from graphics import *
 +
from random import *
 +
 
 +
def main():
 +
    win = GraphWin("Lab 7", 600,600)
 +
 
 +
    # create the coordinates of the top-left corner
 +
     x1 = 50
 +
    y1 = 50
 +
 
 +
    # and of the bottom right corner (random)
 +
    x2 = randint(55, 600 )
 +
    y2 = randint(55, 600 )
 +
 
 +
    # create rectangle with these 2 corners
 +
    r = Rectangle( Point(x1,y1), Point(x2, y2) )
 +
 
 +
    # create a color from 3 different RGB values
 +
    red   = 255    # very red
 +
    green = 0      # not green at all
 +
    blue  = 127    # mid blue
 +
    color = color_rgb( red, green, blue )
 +
 
 +
    # set the rectangle's color with this color
 +
    r.setFill( color )
 +
 
 +
    # draw the rectangle
 +
    r.draw( win )
 +
 
 +
    # wait for user to click on the window before closing
 +
    win.getMouse()
 +
    win.close()
 +
   
 +
main()
 +
 
 
</source>
 
</source>
 
<br />
 
<br />
 +
* Run the program
 +
* Verify that you get a bright pink rectangle.
 +
<br />
 +
<br />
 +
<br />
 +
<!-- ----------------------------------------------------------------------------------------------- -->
 +
{| style="width:100%; background:silver"
 +
|-
 +
 +
==Mondrian's Challenge==
 +
|}
 +
[[Image:QuestionMark8.jpg|right|120px]]
 +
<br />
 +
* Modify the program and make it display something similar to this window (Note:  My "art" is not much like Mondrian's.  I sized and positioned my rectangles with only a concern for having a large number of them. ):
 
<br />
 
<br />
=Reading Text From File=
+
<center>[[Image:Lab7Mondrian.png|500px]]</center>
 +
<br />
 +
 
 +
 
 +
=Simple Animation: Moving a Ball on the Graphic Window=
 
<br />
 
<br />
* Open '''Finder''' or '''Windows Explorer''' and go to the folder that contains your '''lab7.py''' program, as well as your '''lab7Companion.py''' programs.  Make sure the folder contains the 3 text files you created earlier. 
+
* Create a new program similar to the one covered in Monday's lecture.
* Open the file name '''hargitay.txt'''.  Verify that it contains the same poem we have been playing with.
 
* Either create a new program or add a new '''main()''' function to your existing program (rename the original main, '''main2()''', maybe?), and put the code below in the new function:
 
 
<br />
 
<br />
 
::<source lang="python">
 
::<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 
def main():
 
def main():
     fileName = "hargitay.txt"
+
     win = GraphWin( "Lab 7 Moving ball", 600, 400 )
     file = open( fileName, "r" )
+
 
     lines = file.readlines()
+
     # create and draw a red circle
     file.close()
+
    center = Point( 100, 100 )
 +
     circ = Circle( center, 30 )
 +
    circ.setFill( 'red' )
 +
     circ.draw( win )
 +
 
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5
 +
    dy = 0.25
 +
 
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 
 +
        # if the center is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 or x < 0:
 +
            dx = -dx
 +
 
 +
   
 +
    # if we're here, it's because the the user clicked on the graphic window.
 +
    # we can close everything and quit.
 +
    win.close()   
 +
 
 +
main()
  
    for line in lines:
 
        print( line )
 
 
</source>
 
</source>
* Run the program.  Observe its output.
 
* The reason for the double-spacing is that each line read from the file contains a '\n' at the end of it.  And when you print such a line, the '''print()''' function adds its own \n at the end.    This is why you get a blank line in between lines.
 
* One way to remove the '\n' at the end of each line is to print the line as follows: <tt>print( line.rstrip() )</tt>.  The '''rstrip()''' method right-strips the string of all ''white-space'' characters, which include spaces, tabs, and '\n'-characters.
 
 
<br />
 
<br />
 +
* Run the program.  Verify that the circle/ball bounces off the left and right boundaries of the window, but disappears down the bottom of the screen.    If the ball is moving too fast (it does run at various speeds depending on what computer you're running on), you may want to change the values assigned to dx and dy to these values:
 
<br />
 
<br />
{| style="width:100%; background:silver"
+
::<source lang="python">
|-
+
dx = 0.025
 +
dy = 0.025
 +
</source>
 +
<br />
 +
* You can stop the program by clicking on the graphic window a couple of times.
 +
<br />
 +
<br />
 +
<!-- ----------------------------------------------------------------------------------------------- -->
 +
{| style="width:100%; background:silver"
 +
|-
 +
 +
==Challenge 2==
 +
|}
 +
[[Image:QuestionMark1.jpg|right|120px]]
 +
<br />
 +
* Modify your program so that it makes the ball bounce off the bottom and top boundaries of the window.
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<!-- ----------------------------------------------------------------------------------------------- -->
 +
{| style="width:100%; background:silver"  
 +
|-  
 
|
 
|
  
===Challenge #2===
+
==Challenge 3==  
|}
+
|}  
[[Image:QuestionMark5.jpg|right|120px]]
+
[[Image:QuestionMark2.jpg|right|120px]]  
 +
<br />
 +
* Modify your program and replace the ball by a square.
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
 
 +
=Adding an Obstacle=
 +
<br />
 +
* Add a rectangle in the middle of the graphic window.  You should declare it at the beginning of your main() function, as illustrated here:
 +
<br />
 +
::<source lang="python">
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 
 +
    # create a green obstacle in the middle of the window
 +
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
  
* Make your program get the name of the file from the user, with an '''input()''' statement.
+
    # the remaining part of your code follows below...
* Then, make your program output the contents of the file in a box, as you did in Challenge 4.
+
</source>
* Test your program by providing it with different file names:
+
<br />
** hargitay.txt
+
<br />
** joanneHarris.txt
+
<!-- ----------------------------------------------------------------------------------------------- -->
** chocoQuotes.txt
+
{| style="width:100%; background:silver"
* Adjust the width of the box if necessary.
+
|-
 +
 +
==Challenge 4==
 +
|}
 +
[[Image:QuestionMark3.jpg|right|120px]]
 +
<br />
 +
* Make your ball stop when its center enters the green rectangle.  The image below illustrates this situation.
 +
<br />
 +
<center>[[Image:ballStoppedOnGreenRect.png|300px]]</center>
 +
<br />
 
<br />
 
<br />
 +
* Hints: to make an object stop, you can simply set its displacement to 0, so that the while-loop makes it move by 0 pixels every loop. 
 
<br />
 
<br />
{| style="width:100%; background:silver"
+
<br />
|-
+
<!-- ----------------------------------------------------------------------------------------------- -->
 +
{| style="width:100%; background:silver"  
 +
|-  
 
|
 
|
  
===Challenge #3===
+
==Challenge 5==  
|}
+
|}  
[[Image:QuestionMark6.jpg|right|120px]]
+
[[Image:QuestionMark4.jpg|right|120px]]  
 +
<br />
 +
* Modify your program one more time, and this time the ball will bounce off the obstacle.  When you detect that the center of the ball is inside the green rectangle, change <tt>dx</tt> and <tt>dy</tt> to their opposite.  Note that this will make the ball bounce back on the same path it came from.  It is quite challenging to make the ball bounce in a realistic way, and you are welcome to try to make it happen, but it's trickier.  Bouncing off in the opposite direction is fine for this lab!
 +
<br />
 +
::<source lang="python">
 +
if  ... :
 +
    dx = -dx
 +
    dy = -dy
 +
</source>
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
  
* Exact same challenge as Challenge 5, but this time start with this program, where I have replaced the '''.readlines()''' method with '''.read()'''.
+
=Adding a Second Obstacle=
 +
<br />
 +
* Add a second rectangle in the graphic window. Make it magenta in color. You should declare it at the beginning of your main() function, as illustrated here:
 
<br />
 
<br />
 
::<source lang="python">
 
::<source lang="python">
 
def main():
 
def main():
     fileName = input( "File name? " )
+
     win = GraphWin( "Lab 7 Moving ball", 600, 400 )
     file = open( fileName, "r" )
+
 
     text = file.read()
+
    # create a green obstacle in the middle of the window
     file.close()
+
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
 +
 
 +
    # create another green rectangle on the right of the first one
 +
     x3 = 350
 +
    y3 = 200
 +
    x4 = 400
 +
    y4 = 250
 +
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
 +
    obstacle2.setFill( "magenta" )
 +
     obstacle2.draw( win )
 +
 
 +
 
 +
    # the remaining part of your code follows below...
 +
</source>
 +
<br />
 +
* Feel freel to position it at a different location than the one used above.
 +
<br />
 +
<!-- ----------------------------------------------------------------------------------------------- -->
 +
{| style="width:100%; background:silver"
 +
|-
 +
 +
==Challenge 6==
 +
|}
 +
[[Image:QuestionMark5.jpg|right|120px]]
 +
<br />
 +
* Make your ball stop when its center is fully inside the first green obstacle, and bounce off the magenta obstacle.  For this challenge, simply make the ball bounce off the second obstacle when its center enters the obstacle.
 +
* If you find that the ball never gets to hit both boxes, you may want to change the initial direction and add decimal digits to the dx and dy to create an angle that yields a path that eventually will hit the obstacles.  For example:
 +
<br />
 +
::<source lang="python">
 +
    dx = 5.111
 +
    dy = -2.51
 +
</source>
 +
<br />
 +
 
 +
 
 +
 
 +
<br />
 +
 
 +
 
 +
<br />
 +
<center>[[Image:ballWithGreenAndMagentaRects.png|300px]]</center>
 +
<br />
 +
<br />
 +
<br />
 +
=Moodle Submission=
 +
<br />
 +
* Take a screen capture of the graphics window showing the ball and the two obstacles, and submit the jpg or png file to Moodle, in the Lab 7 section.
 +
:* Information on how to capture a portion of the screen on Macs can be found [https://support.apple.com/en-us/HT201361 here].
 +
:* Information on how to capture a portion of the screen on Windows can be found [http://windows.microsoft.com/en-us/windows/take-screen-capture-print-screen#take-screen-capture-print-screen=windows-8 here].
 +
<br />
 +
 
 +
<!-- ================================================================
 +
=Using Boolean Functions=
 +
<br />
 +
==isInside()==
 +
<br />
 +
* Add the code of the function '''isInside()''', shown below, to your last program, above the main() function.
 +
<br />
 +
::<source lang="python">
 +
 
 +
# ifInside: returns true of the coordinates of a point defined by
 +
# its coordinates ballX and ballY, are inside the rectangle defined by a top
 +
# left point of coordinates obsX1, obsY1, and a bottom-right point
 +
# with coordinates obsX2, obsY2.  Returns false if the point is outside
 +
# the rectangle.
 +
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
 +
     if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
 +
        return True
 +
    else:
 +
        return False
 +
 
 +
 
 +
</source>
 +
<br />
 +
* Modify the code inside the '''while''' loop in your main function, so that it uses the '''isInside()''' function to detect contact with Obstacle1 and with Obstacle2.
 +
:Here's what your code should look like (you will have to pass the appropriate parameters to the function):
 +
<br />
 +
::<source lang="python">
 +
        # if the center of the ball is inside the first obstacle, stop
 +
        # the ball.
 +
        if  isInside( ...  ) == True:
 +
            dx = 0
 +
            dy = 0
  
    print( "The type of text is", type( text ) )
+
        # if the center of the ball is inside the second obstacle, bounce
    print( "text = ", text )
+
        # off
 +
        if  isInside( ...  ) == True:
 +
            dx = -dx
 +
            dy = -dy
  
  
 
</source>
 
</source>
 +
 +
 +
<br />
 +
 +
=IsLeftSide() Boolean Function=
 +
<br />
 +
* Add a new boolean function to your program called '''isLeftSide()'''.  This function receives 3 parameters, in this order:
 +
<br />
 +
:* an x coordinate
 +
:* a y coordinate
 +
:* the width of the window.
 +
<br />
 +
:and it returns '''true''' if the point (x, y) is on the left side of the window, and '''false''' if the point (x, y) is on the right side of the window.  This function basically compares the x coordinate to the midpoint on the x axis of the window.
 +
<br />
 +
* Use your new function to color the ball rid when it is moving on the left side of the window, and yellow when it is moving on the right side of the window.  Example:
 +
<br />
 +
::<source lang="python">
 +
if isLeftSide(  x,  y, win.getWidth() ) == True:
 +
      circ.setFill( 'red' )
 +
else:
 +
      circ.setFill( 'yellow' )
 +
</source>
 +
<br />
 +
=isUpperHalf Boolean Function=
 +
<br />
 +
* Comment out or remove the previous if statement that changes the color of the ball, so that it won't interfere with the code you are about to write.
 +
* Create a new boolean function called '''isUpperHalf()''', that takes 3 parameters, the first two being the coordinates of a point, the third one the height of the window, and that returns true if the point is in the top half of the screen, an false otherwise.
 +
<br />
 +
* Use your new function to control the color of the ball as it moves around the window.  The ball should be 'blue' when it is in the upper half of the screen, and 'brown' when it is in the lower half.
 +
<br />
 +
<br />
 
<br />
 
<br />
:; Note
+
Demonstrate the correct operations of your programs to your Lab Instructor, and you will be instructed on the process of submitting your lab to Moodle.
:: when Python says that something is of type <tt> <class 'str'></tt>, it means that it is a '''string'''.
 
 
<br />
 
<br />
 
<br />
 
<br />
=Writing Text to File=
+
=getColor() Function=
 
<br />
 
<br />
* Try this new version of main:
+
* Instead of having two boolean functions that detect if the point of coordinates x and y is in one part of the window or not, we now want to create a function that will receive the x, and y coordinate of the center of the ball, and the width and height of the window, and that will return a string.  The function is called '''getColor()'''.  If the x and y coordinates are inside the top left quarter of the window, it will return the color 'yellow'.  If the x and y coordinates are inside the top right quarter, the function will return 'red'.  For the lower-left quarter, the function will return 'blue'.  And finally, the function will return 'brown'  for the bottom-right quarter.
 +
 
 +
* Here is an example of how the function can be used '''inside''' the while loop:
 
<br />
 
<br />
 
::<source lang="python">
 
::<source lang="python">
 +
# get the x and y of the center of the circle.
 +
x = circ.getCenter().getX()
 +
y = circ.getCenter().getY()
 +
 +
# set color of circle according to its position
 +
color = getColor( x, y, win.getWidth(), win.getHeight() )
 +
circ.setFill( color )
 +
</source>
 +
================================================================= -->
 +
<br />
 +
</showafterdate>
 +
<br />
 +
<br />
 +
<showafterdate after="20151023 00:00" before "20151231 00:00">
 +
=Solution Programs=
 +
<br />
 +
The programs below show the evolution of the initial program through many transformations, solving the various challenges contained in this lab.
 +
<br />
 +
==Mondrian.py==
 +
<br />
 +
<source lang="python">
 +
# Lab7_Mondrian.py
 +
from graphics import *
 +
from random import *
 +
 +
def main():
 +
    win = GraphWin("Lab 7", 600,600)
 +
 +
    for i in range( 100 ):
 +
        x1 = randint(0, 600 )
 +
        y1 = randint(0, 600 )
 +
        x2 = randint(0, 600 )
 +
        y2 = randint(0, 600 )
 +
 +
        r = Rectangle( Point(x1,y1), Point(x2, y2) )
 +
       
 +
        red  = randint( 0, 255 )
 +
        green = randint( 0, 255 )
 +
        blue  = randint( 0, 255 )
 +
       
 +
        color = color_rgb( red, green, blue )
 +
        r.setFill( color )
 +
        r.draw( win )
 +
 +
    win.getMouse()
 +
    win.close()
 +
   
 +
main()
 +
 +
</source>
 +
<br />
 +
 +
==demo0.py==
 +
<br />
 +
<source lang="python">
 +
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin("Demo #0", 400, 300)
 +
    c = Circle(Point(50,50), 10)
 +
    c.draw(win)
 +
    win.getMouse() # Pause to view result
 +
    win.close()    # Close window when done
 +
 +
main()
 +
</source>
 +
<br />
 +
==demo1.py==
 +
<br />
 +
<source lang="python">
 +
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin("Demo #0", 600, 400)
 +
   
 +
    c1 = Circle( Point(50,150), 20 )
 +
    c1.draw( win )
 +
    c2 = Circle( Point( 100, 150 ), 20 )
 +
    c2.draw( win )
 +
 +
    r1 = Rectangle( Point( 10, 100 ), Point( 150, 150 ) )
 +
    r1.draw( win )
 +
   
 +
    win.getMouse() # Pause to view result
 +
    win.close()    # Close window when done
 +
 +
main()
 +
</source>
 +
<br />
 +
==demo2.py==
 +
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin( "Lab 7 Demo", 600, 400 )
 +
 +
    # create and draw a red circle
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, 30 )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 +
    # add a label inside the circle
 +
    label = Text( center, "red circle" )
 +
    label.draw( win )
 +
 +
    # create and draw a rectangle
 +
    rect = Rectangle( Point( 30, 30 ), Point( 70, 70 ) )
 +
    rect.draw( win )
 +
 +
   
 +
    win.getMouse() # Pause to view result
 +
    win.close()    # Close window when done
 +
 +
main()
 +
</source>
 +
<br />
 +
==demo3.py==
 +
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 +
    # create and draw a red circle
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, 30 )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 +
   
 +
    dx = 5
 +
    dy = 0.25
 +
   
 +
    while win.checkMouse() == None:
 +
        circ.move( dx, dy )
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
        if ( x > 600 ):
 +
            dx = -dx
 +
        if ( x < 0 ):
 +
            dx = -dx
 +
 +
 +
   
 +
 +
    win.close()    # Close window when done
 +
 +
main()
 +
</source>
 +
<br />
 +
==demo4.py==
 +
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 +
    # create a green obstacle in the middle of the window
 +
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle.setFill( "green" )
 +
    obstacle.draw( win )
 +
   
 +
    # create and draw a red circle
 +
    radius = 30
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, radius )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5
 +
    dy = 2.5
 +
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 +
        # if the center of the ball is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 - radius or  x < radius:
 +
            dx = -dx
 +
        if  y > 400 - radius or y < radius:
 +
            dy = -dy
 +
 +
        # if the center of the ball is inside the obstacle, stop
 +
        # the ball.
 +
        if  x1 < x < x2 and y1 < y < y2 :
 +
            dx = 0
 +
            dy = 0
 +
 +
   
 +
    # if we're here, it's because the the user clicked on the graphic window.
 +
    # we can close everything and quit.
 +
    win.close()   
 +
 +
main()
 +
 +
 +
 +
   
 +
</source>
 +
<br />
 +
==demo5.py==
 +
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 +
    # create a green obstacle in the middle of the window
 +
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
 +
 +
    # create another green rectangle on the right of the first one
 +
    x3 = 350
 +
    y3 = 200
 +
    x4 = 400
 +
    y4 = 250
 +
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
 +
    obstacle2.setFill( "magenta" )
 +
    obstacle2.draw( win )
 +
   
 +
    # create and draw a red circle
 +
    radius = 30
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, radius )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5.1
 +
    dy = 2.51
 +
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 +
        # if the center of the ball is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 - radius or  x < radius:
 +
            dx = -dx
 +
        if  y > 400 - radius or y < radius:
 +
            dy = -dy
 +
 +
        # if the center of the ball is inside the first obstacle, stop
 +
        # the ball.
 +
        if  x1 < x < x2 and y1 < y < y2 :
 +
            dx = 0
 +
            dy = 0
 +
 +
        # if the center of the ball is inside the second obstacle, bounce
 +
        # off
 +
        if  x3 < x < x4 and y3 < y < y4 :
 +
            dx = -dx
 +
            dy = -dy
 +
 +
   
 +
    # if we're here, it's because the the user clicked on the graphic window.
 +
    # we can close everything and quit.
 +
    win.close()   
 +
 +
main()
 +
 +
 +
 +
   
 +
</source>
 +
<br />
 +
==demo6.py==
 +
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
# ifInside: returns true of the coordinates of a point defined by
 +
# its coordinates ballX and ballY, are inside the rectangle defined by a top
 +
# left point of coordinates obsX1, obsY1, and a bottom-right point
 +
# with coordinates obsX2, obsY2.  Returns false if the point is outside
 +
# the rectangle.
 +
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
 +
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
 +
        return True
 +
    else:
 +
        return False
 +
 +
   
 
def main():
 
def main():
     fileName = "hargitay.txt"
+
     win = GraphWin( "Lab 7 Moving ball", 600, 400 )
     file = open( fileName, "r" )
+
 
     text = file.read()
+
    # create a green obstacle in the middle of the window
     file.close()
+
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
 +
 
 +
    # create another green rectangle on the right of the first one
 +
    x3 = 350
 +
    y3 = 200
 +
     x4 = 400
 +
    y4 = 250
 +
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
 +
    obstacle2.setFill( "magenta" )
 +
     obstacle2.draw( win )
 +
   
 +
    # create and draw a red circle
 +
    radius = 30
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, radius )
 +
    circ.setFill( 'red' )
 +
     circ.draw( win )
 +
 
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5.111
 +
    dy = -2.51
 +
 
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 
 +
        # if the center of the ball is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 - radius or  x < radius:
 +
            dx = -dx
 +
        if  y > 400 - radius or y < radius:
 +
            dy = -dy
 +
 
 +
        # if the center of the ball is inside the first obstacle, stop
 +
        # the ball.
 +
        if  isInside( x, y, x1, y1, x2, y2 ):
 +
            dx = 0
 +
            dy = 0
 +
 
 +
        # if the center of the ball is inside the second obstacle, bounce
 +
        # off
 +
        if  isInside( x, y, x3, y3, x4, y4 ):
 +
            dx = -dx
 +
            dy = -dy
 +
 
 
      
 
      
     text = text.replace( "chocolate", "carrot" )
+
     # if we're here, it's because the the user clicked on the graphic window.
     text = text.replace( "Chocolate", "Carrot" )
+
    # we can close everything and quit.
 +
     win.close()  
  
    file = open( fileName, "w" )
+
main()
    file.write( text + "\n" )
 
    file.close()
 
  
 +
 +
 +
   
 
</source>
 
</source>
 
<br />
 
<br />
* Open Finder or Windows Explorer, and take a look at the file "hargitay.txt", either with '''TextEdit''' or with '''Notepad'''.   See anything different?
+
==demo7.py==
* BTW, You can recreate the original file by running the '''lab7Companion.py''' program again.
+
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 
 +
# ifInside: returns true of the coordinates of a point defined by
 +
# its coordinates ballX and ballY, are inside the rectangle defined by a top
 +
# left point of coordinates obsX1, obsY1, and a bottom-right point
 +
# with coordinates obsX2, obsY2.  Returns false if the point is outside
 +
# the rectangle.
 +
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
 +
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
 +
        return True
 +
    else:
 +
        return False
 +
 
 +
def isLeftSide( x, y, width ):
 +
    if x < width//2:
 +
        return True
 +
    else:
 +
        return False
 +
   
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 
 +
    # create a green obstacle in the middle of the window
 +
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
 +
 
 +
    # create another green rectangle on the right of the first one
 +
    x3 = 350
 +
    y3 = 200
 +
    x4 = 400
 +
    y4 = 250
 +
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
 +
    obstacle2.setFill( "magenta" )
 +
    obstacle2.draw( win )
 +
   
 +
    # create and draw a red circle
 +
    radius = 30
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, radius )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5.111
 +
    dy = -2.51
 +
 
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 
 +
        # if the center of the ball is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 - radius or  x < radius:
 +
            dx = -dx
 +
        if  y > 400 - radius or y < radius:
 +
            dy = -dy
 +
 
 +
        # if the center of the ball is inside the first obstacle, stop
 +
        # the ball.
 +
        if  isInside( x, y, x1, y1, x2, y2 ):
 +
            dx = 0
 +
            dy = 0
 +
 
 +
        # if the center of the ball is inside the second obstacle, bounce
 +
        # off
 +
        if  isInside( x, y, x3, y3, x4, y4 ):
 +
            dx = -dx
 +
            dy = -dy
 +
 
 +
        # if the ball is on the left side of the window, its color is
 +
        # red, else its color is yellow.
 +
        if isLeftSide( x, y, win.getWidth() )==True:
 +
            circ.setFill( 'red' )
 +
        else:
 +
            circ.setFill( 'yellow' )
 +
           
 +
   
 +
    # if we're here, it's because the the user clicked on the graphic window.
 +
    # we can close everything and quit.
 +
    win.close()   
 +
 
 +
main()
 +
 
 +
 
 +
 
 +
   
 +
</source>
 
<br />
 
<br />
 +
 +
 +
 +
==demo8.py==
 
<br />
 
<br />
 +
<source lang="python">
 +
# Uses graphics.py from Zelle
 +
#
 +
# This program displays the basic elements of a program
 +
#
 +
from graphics import *
 +
 +
# ifInside: returns true of the coordinates of a point defined by
 +
# its coordinates ballX and ballY, are inside the rectangle defined by a top
 +
# left point of coordinates obsX1, obsY1, and a bottom-right point
 +
# with coordinates obsX2, obsY2.  Returns false if the point is outside
 +
# the rectangle.
 +
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
 +
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
 +
        return True
 +
    else:
 +
        return False
 +
 +
def isLeftSide( x, y, width ):
 +
    if x < width//2:
 +
        return True
 +
    else:
 +
        return False
 +
 +
def getColor( x, y, w, h ):
 +
    if x < w/2 and y < h/2:
 +
        return 'yellow'
 +
    elif x < w/2 and y > h/2:
 +
        return 'blue'
 +
    elif x > w/2 and y < h/2:
 +
        return 'red'
 +
    else:
 +
        return 'brown'
 +
       
 +
def main():
 +
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )
 +
 +
    # create a green obstacle in the middle of the window
 +
    x1 = 200
 +
    y1 = 200
 +
    x2 = 250
 +
    y2 = 250
 +
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
 +
    obstacle1.setFill( "green" )
 +
    obstacle1.draw( win )
 +
 +
    # create another green rectangle on the right of the first one
 +
    x3 = 350
 +
    y3 = 200
 +
    x4 = 400
 +
    y4 = 250
 +
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
 +
    obstacle2.setFill( "magenta" )
 +
    obstacle2.draw( win )
 +
   
 +
    # create and draw a red circle
 +
    radius = 30
 +
    center = Point( 100, 100 )
 +
    circ = Circle( center, radius )
 +
    circ.setFill( 'red' )
 +
    circ.draw( win )
 +
 +
    # define the direction the circle will start moving in.
 +
    # 5 pixels to the right every move, and 0.25 pixels down
 +
    # every move.
 +
    dx = 5.111
 +
    dy = -2.51
 +
 +
    # as long as the mouse hasn't been clicked on the window
 +
    # keep on looping.
 +
    while win.checkMouse() == None:
 +
 +
        # move the circle in the current direction.
 +
        circ.move( dx, dy )
 +
 +
        # get the x and y of the center of the circle.
 +
        x = circ.getCenter().getX()
 +
        y = circ.getCenter().getY()
 +
 +
        circ.setFill( getColor( x, y, win.getWidth(), win.getHeight() ) )
 +
                 
 +
        # if the center of the ball is outside the right or left boundary,
 +
        # reverse the x direction of movement.
 +
        if  x > 600 - radius or  x < radius:
 +
            dx = -dx
 +
        if  y > 400 - radius or y < radius:
 +
            dy = -dy
 +
 +
        # if the center of the ball is inside the first obstacle, stop
 +
        # the ball.
 +
        if  isInside( x, y, x1, y1, x2, y2 ):
 +
            dx = 0
 +
            dy = 0
 +
 +
        # if the center of the ball is inside the second obstacle, bounce
 +
        # off
 +
        if  isInside( x, y, x3, y3, x4, y4 ):
 +
            dx = -dx
 +
            dy = -dy
 +
 +
        # if the ball is on the left side of the window, its color is
 +
        # red, else its color is yellow.
 +
        """
 +
        if isLeftSide( x, y, win.getWidth() )==True:
 +
            circ.setFill( 'red' )
 +
        else:
 +
            circ.setFill( 'yellow' )
 +
        """
 +
   
 +
    # if we're here, it's because the the user clicked on the graphic window.
 +
    # we can close everything and quit.
 +
    win.close()   
 +
 +
main()
 +
 +
 +
 +
   
 +
</source>
 
<br />
 
<br />
{| style="width:100%; background:silver"
 
|-
 
|
 
  
===Challenge #4===
 
|}
 
[[Image:QuestionMark7.jpg|right|120px]]
 
  
* Modify the program so that it prompts the user for
+
</showafterdate>
** The name of the file to read from and write to, and
+
<br />
** a word
 
: and make the program read the file, replace the word chocolate in it with the word the user picked, and save the resulting text back to the file.
 
* Verify that your program works correctly, and that it modifies the file you select and replaces ''chocolate'' with the word you choose.
 
 
<br />
 
<br />
==Moodle Submission==
 
 
<br />
 
<br />
Rename your program '''lab7_4.py''', and submit your solution program for Challenge #4 to Moodle, in the Lab 7 PB 4 section.
 
 
<br />
 
<br />
 
<br />
 
<br />
Line 215: Line 1,184:
 
<br />
 
<br />
 
<br />
 
<br />
[[Category:CSC111]][[Category:Python]]
+
[[Category:CSC111]][[Category:Labs]][[Category:Python]][[Category:Graphics]]

Latest revision as of 14:37, 21 October 2015

--D. Thiebaut (talk) 16:13, 17 October 2015 (EDT)



<showafterdate after="20151021 12:00" before="20151231 00:00">


In this lab you will play with a graphics library. A graphic library typically allows the user to draw simple shapes on the screen. You will also write some boolean functions that will help you control the dynamic movement of objects on the screen. When your programs for the challenges work, make sure to demonstrate your solutions to the lab instructor (or the TA). You must submit your solution program to Moodle before Friday 10/23/15 at 11:55 p.m.
Note: Everything in this lab is new! Don't worry if you don't get everything right. The important thing is to get the graphics library to work, and for you to start understanding how to define simple graphic shapes. We will have a chance cover and review all these new functions and concepts in future lectures.



TaxiCabCSC111.png


Reference


  • The short documentation for the graphics library we are going to be using for the rest of the semester is available here.


Setting Up The Graphics Library


Step 1: Download the graphics.py Library


  • Copy/Paste the code from this page to Idle and save it in the directory where you will save your programs for Week 7, under the name graphics.py.


Step 2: Testing your installation


  • With graphics.py in your Idle window, simply click run to run the library. Normally libraries are not run by themselves, but this library has its own test program to help users verify that the library is working properly.
  • If everything goes well, you should see this simple window appear on your screen:


ZelleGraphics1.png


  • Click a few times on the window and verify that the window responds by changing the color or size of various graphic objects.




Graphics programs have to be run from Idle to work correctly, and need the graphics.py library distributed by Zelle, the author of our textbook.

Step 3: A simple Graphics Program


  • Create a new program and call it lab7.py.
  • Important: save your program in the same directory/folder where you saved the graphics.py library.
  • Copy the code below in it.


# lab7.py
# your name
# draws a circle in a window that is 600x400.

from graphics import *

def main():
    win = GraphWin("My Circle", 600, 400)
    c = Circle(Point(50,50), 10)
    c.draw(win)
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


  • Run the program. Verify that you see a single circle in the graphic window.
  • Click with the mouse on the graphics window to close it.


Step 4: Explanations


  • Observe the program from Step 3 above and recognize the main features:
    1. First we open a new graphic window on our desktop with the win = GraphWin( ... ) statement. 600 and 400 define how wide and high the window will be. "My Circle" is the title that will appear at the top of the window.
    2. Next, we create a circle object with the statement c = Circle( Point(50,50), 10 ). This does not draw the circle. It simply creates one in memory, centered on the point of coordinates 50, 50, with a radius of 10.
    3. Once the circle is created in memory, we make it appear on the graphic window with c.draw( win ).
    4. Finally, we wait for the user to click on the graphic window, and then close the window.


Step 5: Modifications


  • Modify your program, so that it looks like the code shown below:


# lab7.py
# your name
# Uses graphics.py from Zelle
#
# This program displays a red circle, a label
# and a rectangle.
from graphics import *

def main():
    #open the graphic window.
    win = GraphWin( "Lab 7 Demo", 600, 400 )

    # create and draw a red circle
    center = Point( 100, 100 )
    circ = Circle( center, 30 )
    circ.setFill( 'red' )
    circ.draw( win )

    # add a label inside the circle
    label = Text( Point( 100, 100 ), "red circle" )
    label.draw( win )

    # create and draw a rectangle
    rect = Rectangle( Point( 30, 30 ), Point( 70, 70 ) )
    rect.draw( win )

    
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


  • The program uses 2 new objects: a rectangle, defined by its upper-left and bottom-right corners, and a label (text) that simply is a string of characters drawn at a given point on the screen. The string is automatically centered around the given point.



Challenge #1

QuestionMark5.jpg


  • Generate the figure below. Note that the graphics system used here can recognize many different colors, all defined by strings, such as 'red' used above. You can find all the available colors on this page.


TaxiCrude.png






Mondrian

Mondrian 1.jpg


You may be familiar with Mondrian, the 20th century Dutch painter who painted geometric shapes on canvas, such as the one shown the right. In this section you are going to generate a computer graphic reminiscent of some of Mondrian's paintings.

  • First, create a program called Lab7_mondrian.py and initialize it with the program shown below.


# lab7_mondrian.py
# your name here
# generates a rectangle with a random width
# and height, and a given color on the screen.

from graphics import *
from random import *

def main():
    win = GraphWin("Lab 7", 600,600)

    # create the coordinates of the top-left corner
    x1 = 50
    y1 = 50

    # and of the bottom right corner (random)
    x2 = randint(55, 600 )
    y2 = randint(55, 600 )

    # create rectangle with these 2 corners
    r = Rectangle( Point(x1,y1), Point(x2, y2) )

    # create a color from 3 different RGB values
    red   = 255    # very red
    green = 0      # not green at all
    blue  = 127    # mid blue
    color = color_rgb( red, green, blue )

    # set the rectangle's color with this color
    r.setFill( color )

    # draw the rectangle
    r.draw( win )

    # wait for user to click on the window before closing
    win.getMouse()
    win.close()
    
main()


  • Run the program
  • Verify that you get a bright pink rectangle.




Mondrian's Challenge

QuestionMark8.jpg


  • Modify the program and make it display something similar to this window (Note: My "art" is not much like Mondrian's. I sized and positioned my rectangles with only a concern for having a large number of them. ):


Lab7Mondrian.png



Simple Animation: Moving a Ball on the Graphic Window


  • Create a new program similar to the one covered in Monday's lecture.


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create and draw a red circle
    center = Point( 100, 100 )
    circ = Circle( center, 30 )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5
    dy = 0.25

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        # if the center is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 or x < 0:
            dx = -dx

    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()


  • Run the program. Verify that the circle/ball bounces off the left and right boundaries of the window, but disappears down the bottom of the screen. If the ball is moving too fast (it does run at various speeds depending on what computer you're running on), you may want to change the values assigned to dx and dy to these values:


dx = 0.025
dy = 0.025


  • You can stop the program by clicking on the graphic window a couple of times.



Challenge 2

QuestionMark1.jpg


  • Modify your program so that it makes the ball bounce off the bottom and top boundaries of the window.







Challenge 3

QuestionMark2.jpg


  • Modify your program and replace the ball by a square.









Adding an Obstacle


  • Add a rectangle in the middle of the graphic window. You should declare it at the beginning of your main() function, as illustrated here:


def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # the remaining part of your code follows below...



Challenge 4

QuestionMark3.jpg


  • Make your ball stop when its center enters the green rectangle. The image below illustrates this situation.


BallStoppedOnGreenRect.png



  • Hints: to make an object stop, you can simply set its displacement to 0, so that the while-loop makes it move by 0 pixels every loop.



Challenge 5

QuestionMark4.jpg


  • Modify your program one more time, and this time the ball will bounce off the obstacle. When you detect that the center of the ball is inside the green rectangle, change dx and dy to their opposite. Note that this will make the ball bounce back on the same path it came from. It is quite challenging to make the ball bounce in a realistic way, and you are welcome to try to make it happen, but it's trickier. Bouncing off in the opposite direction is fine for this lab!


if  ... :
    dx = -dx
    dy = -dy







Adding a Second Obstacle


  • Add a second rectangle in the graphic window. Make it magenta in color. You should declare it at the beginning of your main() function, as illustrated here:


def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # create another green rectangle on the right of the first one
    x3 = 350
    y3 = 200
    x4 = 400
    y4 = 250 
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
    obstacle2.setFill( "magenta" )
    obstacle2.draw( win )


    # the remaining part of your code follows below...


  • Feel freel to position it at a different location than the one used above.


Challenge 6

QuestionMark5.jpg


  • Make your ball stop when its center is fully inside the first green obstacle, and bounce off the magenta obstacle. For this challenge, simply make the ball bounce off the second obstacle when its center enters the obstacle.
  • If you find that the ball never gets to hit both boxes, you may want to change the initial direction and add decimal digits to the dx and dy to create an angle that yields a path that eventually will hit the obstacles. For example:


    dx = 5.111
    dy = -2.51






BallWithGreenAndMagentaRects.png




Moodle Submission


  • Take a screen capture of the graphics window showing the ball and the two obstacles, and submit the jpg or png file to Moodle, in the Lab 7 section.
  • Information on how to capture a portion of the screen on Macs can be found here.
  • Information on how to capture a portion of the screen on Windows can be found here.



</showafterdate>

<showafterdate after="20151023 00:00" before "20151231 00:00">

Solution Programs


The programs below show the evolution of the initial program through many transformations, solving the various challenges contained in this lab.

Mondrian.py


# Lab7_Mondrian.py
from graphics import *
from random import *

def main():
    win = GraphWin("Lab 7", 600,600)

    for i in range( 100 ):
        x1 = randint(0, 600 )
        y1 = randint(0, 600 )
        x2 = randint(0, 600 )
        y2 = randint(0, 600 )

        r = Rectangle( Point(x1,y1), Point(x2, y2) )
        
        red   = randint( 0, 255 )
        green = randint( 0, 255 )
        blue  = randint( 0, 255 )
        
        color = color_rgb( red, green, blue )
        r.setFill( color )
        r.draw( win )

    win.getMouse()
    win.close()
    
main()


demo0.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin("Demo #0", 400, 300)
    c = Circle(Point(50,50), 10)
    c.draw(win)
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


demo1.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin("Demo #0", 600, 400)
    
    c1 = Circle( Point(50,150), 20 )
    c1.draw( win )
    c2 = Circle( Point( 100, 150 ), 20 )
    c2.draw( win )

    r1 = Rectangle( Point( 10, 100 ), Point( 150, 150 ) )
    r1.draw( win )
    
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


demo2.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin( "Lab 7 Demo", 600, 400 )

    # create and draw a red circle
    center = Point( 100, 100 )
    circ = Circle( center, 30 )
    circ.setFill( 'red' )
    circ.draw( win )

    # add a label inside the circle
    label = Text( center, "red circle" )
    label.draw( win )

    # create and draw a rectangle
    rect = Rectangle( Point( 30, 30 ), Point( 70, 70 ) )
    rect.draw( win )

    
    win.getMouse() # Pause to view result
    win.close()    # Close window when done

main()


demo3.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create and draw a red circle
    center = Point( 100, 100 )
    circ = Circle( center, 30 )
    circ.setFill( 'red' )
    circ.draw( win )

    
    dx = 5
    dy = 0.25
    
    while win.checkMouse() == None:
        circ.move( dx, dy )
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()
        if ( x > 600 ):
            dx = -dx
        if ( x < 0 ):
            dx = -dx


    

    win.close()    # Close window when done

main()


demo4.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle.setFill( "green" )
    obstacle.draw( win )
    
    # create and draw a red circle
    radius = 30
    center = Point( 100, 100 )
    circ = Circle( center, radius )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5
    dy = 2.5

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        # if the center of the ball is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 - radius or  x < radius: 
            dx = -dx
        if  y > 400 - radius or y < radius:
            dy = -dy

        # if the center of the ball is inside the obstacle, stop
        # the ball.
        if  x1 < x < x2 and y1 < y < y2 :
            dx = 0
            dy = 0

    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()


demo5.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # create another green rectangle on the right of the first one
    x3 = 350
    y3 = 200
    x4 = 400
    y4 = 250 
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
    obstacle2.setFill( "magenta" )
    obstacle2.draw( win )
    
    # create and draw a red circle
    radius = 30
    center = Point( 100, 100 )
    circ = Circle( center, radius )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5.1
    dy = 2.51

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        # if the center of the ball is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 - radius or  x < radius: 
            dx = -dx
        if  y > 400 - radius or y < radius:
            dy = -dy

        # if the center of the ball is inside the first obstacle, stop
        # the ball.
        if  x1 < x < x2 and y1 < y < y2 :
            dx = 0
            dy = 0

        # if the center of the ball is inside the second obstacle, bounce
        # off
        if  x3 < x < x4 and y3 < y < y4 :
            dx = -dx
            dy = -dy

    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()


demo6.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

# ifInside: returns true of the coordinates of a point defined by 
# its coordinates ballX and ballY, are inside the rectangle defined by a top
# left point of coordinates obsX1, obsY1, and a bottom-right point
# with coordinates obsX2, obsY2.   Returns false if the point is outside
# the rectangle.
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
        return True
    else:
        return False

    
def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # create another green rectangle on the right of the first one
    x3 = 350
    y3 = 200
    x4 = 400
    y4 = 250 
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
    obstacle2.setFill( "magenta" )
    obstacle2.draw( win )
    
    # create and draw a red circle
    radius = 30
    center = Point( 100, 100 )
    circ = Circle( center, radius )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5.111
    dy = -2.51

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        # if the center of the ball is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 - radius or  x < radius: 
            dx = -dx
        if  y > 400 - radius or y < radius:
            dy = -dy

        # if the center of the ball is inside the first obstacle, stop
        # the ball.
        if  isInside( x, y, x1, y1, x2, y2 ):
            dx = 0
            dy = 0

        # if the center of the ball is inside the second obstacle, bounce
        # off
        if  isInside( x, y, x3, y3, x4, y4 ):
            dx = -dx
            dy = -dy

    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()


demo7.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

# ifInside: returns true of the coordinates of a point defined by 
# its coordinates ballX and ballY, are inside the rectangle defined by a top
# left point of coordinates obsX1, obsY1, and a bottom-right point
# with coordinates obsX2, obsY2.   Returns false if the point is outside
# the rectangle.
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
        return True
    else:
        return False

def isLeftSide( x, y, width ):
    if x < width//2:
        return True
    else:
        return False
    
def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # create another green rectangle on the right of the first one
    x3 = 350
    y3 = 200
    x4 = 400
    y4 = 250 
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
    obstacle2.setFill( "magenta" )
    obstacle2.draw( win )
    
    # create and draw a red circle
    radius = 30
    center = Point( 100, 100 )
    circ = Circle( center, radius )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5.111
    dy = -2.51

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        # if the center of the ball is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 - radius or  x < radius: 
            dx = -dx
        if  y > 400 - radius or y < radius:
            dy = -dy

        # if the center of the ball is inside the first obstacle, stop
        # the ball.
        if  isInside( x, y, x1, y1, x2, y2 ):
            dx = 0
            dy = 0

        # if the center of the ball is inside the second obstacle, bounce
        # off
        if  isInside( x, y, x3, y3, x4, y4 ):
            dx = -dx
            dy = -dy

        # if the ball is on the left side of the window, its color is
        # red, else its color is yellow.
        if isLeftSide( x, y, win.getWidth() )==True:
            circ.setFill( 'red' )
        else:
            circ.setFill( 'yellow' )
            
    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()



demo8.py


# Uses graphics.py from Zelle
#
# This program displays the basic elements of a program
#
from graphics import *

# ifInside: returns true of the coordinates of a point defined by 
# its coordinates ballX and ballY, are inside the rectangle defined by a top
# left point of coordinates obsX1, obsY1, and a bottom-right point
# with coordinates obsX2, obsY2.   Returns false if the point is outside
# the rectangle.
def isInside( ballX, ballY, obsX1, obsY1, obsX2, obsY2 ):
    if obsX1 < ballX < obsX2 and obsY1 < ballY < obsY2:
        return True
    else:
        return False

def isLeftSide( x, y, width ):
    if x < width//2:
        return True
    else:
        return False

def getColor( x, y, w, h ):
    if x < w/2 and y < h/2:
        return 'yellow'
    elif x < w/2 and y > h/2:
        return 'blue'
    elif x > w/2 and y < h/2:
        return 'red'
    else:
        return 'brown'
        
def main():
    win = GraphWin( "Lab 7 Moving ball", 600, 400 )

    # create a green obstacle in the middle of the window
    x1 = 200
    y1 = 200
    x2 = 250
    y2 = 250 
    obstacle1 = Rectangle( Point( x1, y1 ), Point( x2, y2 ) )
    obstacle1.setFill( "green" )
    obstacle1.draw( win )

    # create another green rectangle on the right of the first one
    x3 = 350
    y3 = 200
    x4 = 400
    y4 = 250 
    obstacle2 = Rectangle( Point( x3, y3 ), Point( x4, y4 ) )
    obstacle2.setFill( "magenta" )
    obstacle2.draw( win )
    
    # create and draw a red circle
    radius = 30
    center = Point( 100, 100 )
    circ = Circle( center, radius )
    circ.setFill( 'red' )
    circ.draw( win )

    # define the direction the circle will start moving in.
    # 5 pixels to the right every move, and 0.25 pixels down
    # every move.
    dx = 5.111
    dy = -2.51

    # as long as the mouse hasn't been clicked on the window
    # keep on looping.
    while win.checkMouse() == None:

        # move the circle in the current direction.
        circ.move( dx, dy )

        # get the x and y of the center of the circle.
        x = circ.getCenter().getX()
        y = circ.getCenter().getY()

        circ.setFill( getColor( x, y, win.getWidth(), win.getHeight() ) )
                   
        # if the center of the ball is outside the right or left boundary,
        # reverse the x direction of movement.
        if  x > 600 - radius or  x < radius: 
            dx = -dx
        if  y > 400 - radius or y < radius:
            dy = -dy

        # if the center of the ball is inside the first obstacle, stop
        # the ball.
        if  isInside( x, y, x1, y1, x2, y2 ):
            dx = 0
            dy = 0

        # if the center of the ball is inside the second obstacle, bounce
        # off
        if  isInside( x, y, x3, y3, x4, y4 ):
            dx = -dx
            dy = -dy

        # if the ball is on the left side of the window, its color is
        # red, else its color is yellow.
        """
        if isLeftSide( x, y, win.getWidth() )==True:
            circ.setFill( 'red' )
        else:
            circ.setFill( 'yellow' )
        """ 
    
    # if we're here, it's because the the user clicked on the graphic window.
    # we can close everything and quit.
    win.close()    

main()



</showafterdate>