Difference between revisions of "CSC111 Lab 11"

From dftwiki3
Jump to: navigation, search
(Your own aquarium)
(Your own aquarium)
Line 118: Line 118:
  
 
==Your own aquarium==
 
==Your own aquarium==
 
+
[[Image:aquarium3.gif | right | 200px]]
 
* Use '''Google''' and search for other images of aquariums that you can use instead of '''tank2.gif'''.  Use the ''advanced search'' feature to select only GIF files (or specify "aquarium filetype:gif" in the search bar).
 
* Use '''Google''' and search for other images of aquariums that you can use instead of '''tank2.gif'''.  Use the ''advanced search'' feature to select only GIF files (or specify "aquarium filetype:gif" in the search bar).
  

Revision as of 11:24, 14 April 2010


This lab deals with classes, objects, and graphics. It builds on the examples we saw in class on Monday and Wednesday.



Fileicon-pdf.png
You may find the following document describing the different graphic objects introduce in the Zelle's textbook useful.



Fish (Reported from Lab 10)

  • See all the fish? Make a note of one of the fish, and get a copy of its file as follows
  getcopy fishxx.gif            (replace xx by the actual number of the fish you want)
  • Write a new graphics program and copy/paste the following code in it:


.

from graphics import *
H = 400
W = 400

def waitForClick( win, message ):
    """ waitForClick: stops the GUI and displays a message.  
    Returns when the user clicks the window. The message is erased."""

    # wait for user to click mouse to start
    startMsg = Text( Point( win.getWidth()/2, win.getHeight()/2 ), message )
    startMsg.draw( win )    # display message
    win.getMouse()          # wait
    startMsg.undraw()       # erase


def main():
    global H, W
    win = GraphWin( "Fish Tank", W, H )
    waitForClick( win, "click to start" )

    fish = Image( Point( W/2, H/2 ), "fish15.gif" )  # replace 15 by the number of your fish
    fish.draw( win )

    waitForClick( win, "click to end" )
    win.close()

main()

 
.
  • Add a for loop and make the object fish move by dx, dy some fixed number of steps...
  • Create a an new class which is a fish, with its own file name, and its own dx and dy.
  • Create an object issued from the class. Verify that you can make the object move on the screen.
  • Create a school of several fish that move around the screen. The fish may move in opposite directions, but we'll assume that all fish move in the direction of where their head points to!!!
  • Make the fish go up or down, slightly, randomly, as it moves forward...

Aquarium

In this section you will apply a background image to the window. It will be the image of a fish tank, and you will make your fish move about in the tank.

The steps will be:

  1. get the image of the tank
  2. find the image dimension
  3. define a graphics window with the same dimension
  4. paste the tank image on the window
  5. display a fish on the window
  6. move the fish...




Tank2.gif




  • Get a copy of this image:
  getcopy tank2.gif
  • Find the image dimension.
  identify tank2.gif

  tank2.gif GIF wwwxhhh wwwxhhh+0+0 8-bit PseudoClass 256c 261kb 
  • Note the www and hhh integers, representing the width and height of the image.
  • Modify your python program and make the graphics window as wide and as high as the image.
  • Paste the image on your window as a background image:
   H = hhh   # use the same number as above
   W = www  # use the same number as above
  
   win = GraphWin( "111c-xx Aquarium", W, H  )
   background = Image( Point( W/2, H/2 ), "tank2.gif" )
   background.draw( win )
  • Verify that you get a nice aquarium and fish!

Your own aquarium

Aquarium3.gif
  • Use Google and search for other images of aquariums that you can use instead of tank2.gif. Use the advanced search feature to select only GIF files (or specify "aquarium filetype:gif" in the search bar).


  • Once you have the image showing by itself in the browser, full size, copy its URL.


  • At the Linux prompt, in the terminal window, type:


   wget http://theUrlOfTheGifFileYouWantToGet.gif


  • Verify that your directory now contains a new gif file.


   ls -ltr 


  • To see it on the screen, try


   display yourFileName.gif
(It is possible that this command may not work... But give it a chance to run, as it takes a while to open up the image)


  • Repeat the steps of the section above to paste the aquarium into your graphics window.