Programming Assignment #1

Due: Tues, Jan 30, (by end of day -- 11:59 PM)

Objective:  Upon completing this assignment, you should be able to implement a simple class, as well as gain a better understanding of the building and use of classes and objects.

Task:

You are to write a class called House, using filenames house.h and house.cpp, that will allow creation and handling of House objects, as described below.

House Dimensions

Each house object should be pictured as follows:

Class Details

  1. The single constructor for the House class should have 3 parameters: an integer size (required), which is the base size of the house; a border character (optional, with a default of 'X' -- uppercase); and a fill character (optional, with a default of '*'). If the size provided is less than 3, set the size to 3. If the size provided is greater than 37, set the size to 37. The class will need to provide internal storage for any member data that must be kept track of.
     
  2. There should be member functions GetSize, Perimeter, and Area, which will return the house's base size, the perimeter of the house, and the area of the house, respectively. The first 2 should return integer results. The Area function should return its result as a double. Note that for Area, you'll need to compute the areas of the triangle roof and the square base and combine them.
     
  3. There should be member functions Grow and Shrink, which will increase or decrease (respectively) the base size of the house by 1, unless this would cause the size to go out of bounds (out of the 3-37 range); in the latter case, Grow and Shrink should make no change to the size.
     
  4. There should be member functions SetBorder and SetFill, which each allow a new border or fill character (respectively) to be passed in as a parameter. There is a chart of ASCII characters in an appendix of the textbook. The characters that should be allowed for the border or fill characters are any characters from the '!' (ascii 33) up through the '~' (ascii 126). If an attempt is made to set the border or fill characters to anything outisde the allowable range, the function should set the border or fill back to its original default (the ones listed for the constructor -- the border default is 'X' and the fill default is '*').
     
  5. There should be a member function called Draw that will display a picture of the house on the screen. You may assume that the cursor is already at the beginning of a line when the function begins, and you should make sure that you leave the cursor on the line following the picture afterwards (i.e. print a newline after the last line of the house). Use the border character to draw the border of the house, and use the fill character to draw the internal characters. Separate the characters on a line in the picture by a single space to make the house look more proportional (to approximate the look of an equilateral triangle and a square). You may not use formatting functions like setw to draw the figure. This must be handled with loops. (You will only print out the newline, spaces, the border character, and maybe the fill character on any given line). Note that the bottom of the roof and the top of the base will be on a shared line -- the overhang area will be border characters, but everything internal will be fills. See the sample run linked below to see exactly how this should look.
     
  6. Provide a member function called Summary that displays all information about a house: its base size, perimeter, area, and a picture of what it looks like. When displaying the area (decimal data), always show exactly 2 decimal places. Your output should be in the exact same format as mine (seen in the linked sample run below)
     
  7. I am providing a sample driver program (called driver.cpp) that uses objects of type House and illustrates sample usage of the member functions. You can get the driver.cpp file at this link, or you can copy it from your CS account with the unix cp command: ( cp ~myers/c++prog/hw1/driver.cpp . ).

    I have also provided the output from the sample execution of my driver.cpp program at this link.  Your class declaration and definition files must work with my main program, as-is (do not change my program to make your code work!). You are encouraged to write your own driver routines to further test the functionality of your class, as well. Most questions about the required behavior of the class can be determined by carefully examining my driver program and the sample execution. Keep in mind, this is just a sample. Your class must meet the requirements listed above in the specification -- not just satisfy this driver program. (For instance, I haven't tested every illegal fill character in this driver program -- I've just shown a sample). Your class will be tested with a larger set of calls than this driver program represents.
     

  8. General Requirements

Submitting:

Program submissions should be done through the submission web page, linked from the main course web site.

You will need your submission password -- these have been uploaded to your Grade lookup in the Canvas page under "Submission Credentials Lookup". If you have trouble accessing this, see me or your recitation instructor ASAP (or e-mail, if you can't come see me) to obtain your password. Do not send program submissions through e-mail -- e-mail attachments will not be accepted as valid submissions.

General Advice - e-mail a copy of your finished homework files to your own FSU account. This e-mail will have a time stamp that shows when they were sent (i.e. before the due date would be the best idea) , and they will also serve as a backup. It's not a bad idea to keep a copy on your CS account (as well as on a personal computer) -- backing up your work is a GOOD thing!

For HW #1, submit the following files

 house.h
 house.cpp

Make sure your filenames are these exact names, and do not submit the driver.cpp file.