This assignment is due by Tuesday, December 08, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: L8A,
L8B,
L8C
.
· Instructions · Rubric · Submission ·
The Purpose
The purpose of this assignment is to give you practice animating objects and interacting with them.
The Goal
You will need to complete Lab8A before
beginning this assignment.
We want to replace our single
Bubble
object with a
vector
of
Bubble
s. Before your draw loop, create a vector
of five bubbles. Give each
bubble a random starting position between 100
and 400
for X and Y and a
random direction between 0.0 and 2.5 (think how to do this with
rand()
to get a range within a double value. We don't want the values to be 0,
1, 2. It should be possible for 0.7 or 1.3 or 2.4 to be the random
value set). Additionally, give each Bubble a random radius between 10
and 50. Lastly, give each Bubble a random color so we can tell them
apart.
Inside our
draw loop, we now need to draw all the Bubbles in our vector. After our
event handling, we'll then need to update the positions of all the
Bubbles in our vector. You should now see five Bubbles bouncing around
the window. Excellent. Let's have the user interact.
When the
user clicks the left mouse button, we want to create a new Bubble at
the location where the user clicked. This new Bubble should have the
same starting properties that our original five Bubbles did. After the
user clicks the first time, we should see six Bubbles moving around the
window. A second click, seven Bubbles. And so forth as the user
continues to click. (Hmm, how can we keep track of these new Bubbles?)
We may get to the point where there are too many Bubbles on the
screen. If the user presses the 'd'
or 'D'
key, then we want to delete the
last Bubble that was added to the window. Obviously if there are no Bubbles
in the window, then pressing 'd'
should do nothing.
If the user starts your program, clicks twice, then presses 'd'
three times, we
should be seeing four Bubbles on the screen.
Grading Rubric
Your submission will be graded according to the following rubric.
Points | Requirement Description |
6 | APT8 does not exist - all will be awarded the points upon submission. |
12 | All labs completed and submitted L8A, L8B, L8C |
+2 | L8C Extra Credit. |
5 | Bubbles bounce around the screen. |
5 | User can add/remove bubbles. |
6 | Bubble class created corrected. |
2 | (1) Comments used (2) Coding style followed (3) Appropriate variable names, constants, and data types used (4) Instructions followed |
36 | Total Points |
This assignment is due by Tuesday, December 08, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: L8A,
L8B,
L8C
.
Submission
Always, always, ALWAYS update the header comments at the top of your main.cpp file. And if you ever get stuck, remember that there is LOTS of help available.
It is critical that you follow these steps when submitting homework. You can view these steps by watching the Windows / Mac video.
If you do not follow these instructions, your assignment will receive a major deduction. Why all the fuss? Because we have several hundred of these assignments to grade, and we use computer tools to automate as much of the process as possible. If you deviate from these instructions, our grading tools will not work.
Submission Instructions
Here are step-by-step instructions for submitting your homework properly:
- File and folder names are extremely important in this process.
Please double-check carefully, to ensure things are named correctly.
- The top-level folder of your project must be named
Set8
- Inside
Set8
, create 4 sub-folders that are required for this Set. The name of each sub-folder is defined in that Set (e.g.L8A
,L8B
,L8C
, andA8
). - Copy your files into the subdirectories of
Set8
(steps 1-2), zip thisSet8
folder (steps 3-4), and then submit the zipped file (steps 5-11) to Canvas. - For example, when you zip/submit
Set8
, there will be 4 sub-folders calledL8A
,L8B
,L8C
, andA8
inside theSet8
folder, and each of these sub-folders will have the associated files.
- The top-level folder of your project must be named
- Using Windows Explorer (not to be confused with Internet Explorer), find the files
named
main.cpp, Bubble.h, Bubble.cpp
.
STOP: Are you really sure you are viewing the correct assignment's folder? - Now, for A8, right click on the
main.cpp, Bubble.h, Bubble.cpp
to copy the files. Then, return to theSet8/A8
folder and right click to paste the files. In other words, put a copy of your homework'smain.cpp, Bubble.h, Bubble.cpp
source code into theSet8/A8
folder.
Follow the same steps for L8A, to put a copy of your lab'smain.cpp
into theSet8/L8A
folder. Repeat this process forSet8/L8B
,Set8/L8C
.
STOP: Are you sure yourSet8
folder now has all your code to submit?
- Now, right-click on the
"Set8"
folder.- In the pop-up menu that opens, move the mouse
"Send to..."
and expand the sub-menu. - In the sub-menu that opens, select
"Compressed (zipped) folder"
.
STOP: Are you really sure you are zipping aSet8
folder with sub-folders that each contain amain.cpp
file in it?
- In the pop-up menu that opens, move the mouse
- After the previous step, you should now see a
"Set8.zip"
file.
- Now visit the Canvas page for this course
and click the
"Assignments"
button in the sidebar.
- Find Set8, click on it, find the
"Submit Assignment"
area, and then click the"Choose File"
button.
- Find the
"Set8.zip"
file created earlier and click the"Open"
button.
STOP: Are you really sure you are selecting the right homework assignment? Are you double-sure?
- WAIT! There's one more super-important step. Click on the blue
"Submit Assignment"
button to submit your homework.
- No, really, make sure you click the
"Submit Assignment"
button to actually submit your homework. Clicking the"Choose File"
button in the previous step kind of makes it feel like you're done, but you must click the Submit button as well! And you must allow the file time to upload before you turn off your computer!
- Canvas should say "Submitted!". Click "Submission Details" and you can download the zip file you just submitted. In other words, verify you submitted what you think you submitted!
In summary, you must zip the "Set8"
folder
and only the "Set8"
folder, this zip folder must have several sub-folders, you must name all these folders correctly, you must submit the correct zip file for this
homework, and you must click the "Submit Assignment"
button. Not doing these steps is like bringing your
homework to class but forgetting to hand it in. No concessions will be made for
incorrectly submitted work. If you incorrectly submit your homework, we will not be able to
give you full credit. And that makes us unhappy.
This assignment is due by Tuesday, December 08, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: L8A,
L8B,
L8C
.