CSCI 441 - Computer Graphics

Fall 2021 - Assignment 5 - The Barbarian Horde



Canvas | CS @ Mines | Mines | Piazza
|   Home |  Assignments |  Leaderboard |  Schedule |  Resources   |
Blue Teapot2015: Asgard Green Teapot2016: Mount Olympus Red Teapot2017: Aaru Park Grey Teapot2018: Findias Speedway
White Teapot2019: Hanan Pacha Black Teapot2020: Onogoro Island Rainbow Teapot2021: The Colosseum
This assignment is due by Wednesday, December 8, 2021 by 11:59pm.

After that strange dream, you still feel empowered - ready to take on anything. The shadowy cloaked figure has returned and you surmise that the dream was no coincidence - perhaps the Gods had called to protect you.

You follow the figure out of the barracks to the gates of the arena. You again hear the cheering of the crowd inside. The figure says to you
This is your opportunity to win your freedom and return home. Beyond those gates, your final challenge awaits. Make it through and you shall be released.

Part I - Let The Games Begin


You pass through the first gate and stop before the second closed portcullis. The gate behind you shuts as well and you're trapped, committed to move forward. After a moment passes, pamphlets begin falling in from holes in the ceiling above. You pick up the pamphlets and read.
For this assignment, your goal is to design a basic 3D game. The two key components of the game will be using a particle system and perform collision detection. The exact goal for the game is up to you to decide. The exact design and visual look is up to you as well, but you should be encouraged to incorporate all aspects we have discussed this far. At a minimum, your game should have the following features:
  • The World - The Hero and the Enemies should be moving around the world. The world should consist of a 2D plane but have a defined boundary.

    Extra Credit: The Mountains Are Calling: Consider using a Bézier Surface to add some 3D movement to your characters. A carefully placed hill can obscure the view of where enemies are coming from or coins are located. Everyone in your world must move on the Surface.

    As seen below, it will be possible for the characters to fall off of the world.

  • The Hero - The Hero shall be under the user's control. The user can move the Hero around the world (probably by using the WASD keys, maybe he/she can jump too by pressing space!) and there should be some goal the Hero is trying to complete (visit every square of the world, collect coins, pass through hoops, etc). It is possible for the Hero to fall off the edge of the world. If this occurs, then the user falls to their death (feel free to animate the death scene, they spin and rotate as they fall and then splat! hint: particle system?). The Hero should be animated as they move. The Hero can look however you want.

  • The Enemies - There will be N Enemies spawned around your world. The Enemies will represent a particle system, so it could be possible for more Enemies to be spawned over time if you desire. The Enemies will exhibit some very special properties. First, each Enemy has a given heading denoted by the direction they are facing. Every frame the Enemies move one step forward along their heading. As the Enemies move, they should be animated as well. The Enemies can look however you want.
             The Enemies are also attracted to the Hero and are constantly trying to capture the Hero. In addition to moving along their heading, every frame the Enemy's heading should be updated to be one tick closer to being aligned with moving towards the Hero. (To accomplish this, calculate the vector from the Enemy to the Hero. If the Enemy's heading is aligned with this vector, then do nothing. If they do not agree, move the Enemy's heading one angled step towards the Hero vector. This will cause the Enemy to move along an arc until they are facing the Hero.)
             In addition to the Enemies simulating a particle system and being attracted to the Hero, collision detection must be performed between every Enemy and between the Hero as well. If two Enemies as they are moving collide, then they should react accordingly. Either they bounce off of each and each has their headings updated to reflect the collision (as if two billiard balls collided); or one of the Enemies dies and the other has its heading reflected; or both take damage until their health reaches zero; or they merge into a larger Enemy (for the Spheres, the resultant MegaSphere could have a radius equal to the sum of the two merging Spheres). Also, if an Enemy collides with the Hero then the Hero should take damage, or be killed, or something should happen. The exact details of what happens is up to you. Lastly, it is possible for an Enemy to fall off the edge of the World just as the Hero does. Feel free to animate the death scene as well. This would be a good instance to create an overhead minimap placed in a viewport so the player knows where all the Enemies are coming from.

  • Objects in the World - Feel free to add additional objects around the World. However, if there is a tree or building in the World, the Hero or an Enemy should no longer be able to pass through the objects as the Hero once was able to. Collision detection should be performed against static objects to prevent this. Therefore the path of least resistance is to place no additional items in your World (but that's not as cool).
What the Hero and Ememies look like are up to you. What the World looks like is up to you. The World can be placed within a Sky Box to give everything a sense of where they are in the World. You are encouraged to add anything else we learned.
Eager to return home, the gate slides upwards and you enter the arena for one last time.


Part II - Website


Update the webpage that you submitted with A4 to include an entry for this assignment. As usual, include a screenshot (or two) and a brief description of the program, intended to showcase what your program does to people who are not familiar with the assignment.


Documentation


With this and all future assignments, you are expeced to appropriately document your code. This includes writing comments in your source code - remember that your comments should explain what a piece of code is supposed to do and why; don't just re-write what the code says in plain English. Comments serve the dual purpose of explaining your code to someone unfamiliar with it and assisting in debugging. If you know what a piece of code is supposed to be doing, you can figure out where it's going awry more easily.

Proper documentation also means including a README.txt file with your submission. In your submission folder, always include a file called README.txt that lists:
  • Your Name / email
  • Assignment Number / Project Title
  • A brief, high level description of what the program is / does
  • A usage section, explaining how to run the program, which keys perform which actions, etc.
  • Instructions on compiling your code
  • Notes about bugs, implementation details, etc. if necessary
  • How long did this assignment take you?
  • How much did the lab help you for this assignment? 1-10 (1 - did not help at all, 10 - this was exactly the same as the lab)
  • How fun was this assignment? 1-10 (1 - discontinue this assignment, 10 - I wish I had more time to make it even better)


Grading Rubric


Your submission will be graded according to the following rubric.

Percentage Requirement Description
10% Hero is user controlled and animated while moving.
20% There is a goal for the Hero to complete.
15% Enemies are animated while moving and move one step along their heading.
15% Enemies are attracted to the Hero and their heading is updated each frame.
10% Hero and Enemies can fall off the edge of the world.
15% Collision detection is performed between Enemies.
10% Collision detection is performed between the Enemies and the Hero.
5% Submission includes source code and README.txt.
Source code is well documented. Webpage named <heroName>.html submitted and updated with screenshot from latest assignment. Submission compiles and executes.


Experience Gained & Available Achievements


Assignment Attribute
Assignments +100 XP
Web Attribute
Web +100 XP
The Mountains Are Calling
The Mountains Are Calling
???
???
???
???
???
???


Submission


When you are completed with the assignment, zip together your source code, README.txt, and www/ folder. Name the zip file, HeroName_A5.zip. Upload this file to Canvas under A5.


This assignment is due by Wednesday, December 8, 2021 by 11:59pm.
Last Updated: 11/04/21 14:35
Creative Commons License
Any questions, comments, corrections, or request for use please contact jpaone {at} mines {dot} edu.
Copyright © 2015-2021 Jeffrey R. Paone
Invia all'istruttore i nomi dei gemelli.