WPI Computer Science Department

Computer Science Department
------------------------------------------

CS 4731 Homework 1 C term 2011
Due by Thursday, January 27, 2011 at 11.59PM (12.5/100 points)


Homework 1: PoliBook, an interactive polyline viewer and editor

Homework 1 Overview

The aim of this project is to get you comfortable with working in 2D using OpenGL calls. You will also be applying window-to-viewport mapping, tiling polylines, and exploring keyboard and mouse interaction routines. You will create a program Polibook which views polyline files in interesting ways and also allows you to interactively draw your own polylines onto the screen. Here goes:

Step 1: Read more polyline files in GRS format:

The polyline file you drew in homework 0 is in the GRS format, a homegrown format. Here are a few more GRS polyline files to work with:

birdhead.dat
dragon.dat
house.dat
knight.dat
rex.dat
scene.dat
usa.dat
vinci.dat

The structure of GRS files is:


First, modify your practice code that previously read in dino.dat so that you can replace the dino.dat filename with any of the above .dat files. The plan is that when you re-compile it, the new polyline file is drawn on the screen, just like dino.dat. There are a few things you should note for your implementation.
  1. Be careful with how you pass parameters to the glViewport( ), glOrtho2D( ) calls (Practice exercise 3.2.1 on page 98 of Hill may prove useful). Make sure you understand how they work.
  2. The "extent" line of the GRS file will be used to set the world window i.e. passed to glOrtho2D( )
  3. If you look at the vertex coordinates of some of the GRS files, they are specified in floating point numbers, so you'll have to switch to float or double number formats. For instance, the x and y coordinates of vertices are currently (for dino.dat in hw0) being read in as integers and their values will be truncated if you don't change them to floating point numbers. Also, remember that glVertex2i( ) uses integers, so you'll need a different call to work with floats. Also, in general, using a glVertex3f( ) with the z value set to zero (see examples) can be used in place of glVertex2f( ) commands. i.e. glVertex3f(x,y,0) usually works same as glVertex2f(x,y).
  4. Note that a lot of the GRS files start with comments. You can either manually cut those out or read them in and dump them in your program.
  5. The format for dino.dat is a little different in that it doesn't have the window dimensions (or comments) right at the top. Therefore, off the bat, a program which reads other GRS files without problems will have new problems with your old dino.dat file. You can either throw in a dummy extents window at the top of dino.dat or come up with a solution that works. Hint:a world window of (0,640,0,480) should work!!
Homework 1 diagram

Summary of Your program behavior
The figure above shows the layout of a polyline viewer you should produce. At the top of your viewport, 10 thumbnails (8 new thumbnails + 2 occurrences of usa.dat) of the polyline files should be lined up. These 10 thumbnails should ALWAYS be visible at the top edge of the viewport whenever your program is running. The larger drawing area below the thumbnails is the main drawing area in which all drawing will be done. On start up, choose one of the polyline files to draw in the main drawing area as a default. The thumbnails AND main drawing automatically resize if the viewport is expanded or resized.

Clicking on any thumbnails lined up at the top should make the corresponding polyline file the current drawing and draw a larger version of the polyline file to fill the main drawing area while maintaining aspect ratio. This is also known as the 'p state'. More details on the program behavior is given below. Your program should also have the following behavior and user (keyboard and mouse) interaction capabilities when you run it:

Event: A key is pressed:

Polyline drawing diagram

Note: States (p, t and v) are polyline viewing states in which you can play with polyline files stored in a .dat file. States (e,m,d and c) are polyline drawing states. State e is the initial drawing state and states (m,d and c) are only accessible from state e. In the drawing states, you should be able to accept and draw new polylines onto the screen, but your program does NOT have to be able to edit the provided ones (e.g. dino.dat, usa.dat, etc). You also don't have to be able to save or write out the polyline file drawn on the screen to a file. You may choose to do that but no extra credit will be given. Make sure that reshape works for all states (p, t, v, e, m, d and c). i.e. if the user grabs the lower right corner of the window and increases or reduces the screen window size, whatever was drawn in it before (and thumbnails) is redrawn to the largest possible size, without distortion (i.e. always maintain correct aspect ratio for each polyline file).

Submission: Submit all your executable and source files using turnin. Create documentation for your program and submit it along with the project. Your documentation should be pure ASCII text that's readable on the CCC Unix machines (no microsoft Word, RTF or MAC files, etc). The documentation does not have to be long. Briefly describe the structure of your program, what each file turned in contains. Explain briefly what each module does and tie in your filenames. Most importantly, tell the TAs how to compile and run your program. Put everything in one directory on ccc.wpi.edu, compile it and MAKE SURE IT RUNSbefore submission. Then tar everything up into a single archive file. You shall submit a single tar file via turnin. The command to tar everything up is:

tar    cvf   FirstName_LastName_hw1.tar   *

General Hints

Here are a more few hints you might find useful:


[Feedback] [Search Our Web] [Help & Index]

[Return to the WPI Homepage] [Return to CS Homepage]

mailto:emmanuel@cs.wpi.edu