Starting from:

$30

CS680- Assignment 03: 3D Vivarium Solved

1. Overview
The purpose of the assignment is to introduce you to OpenGL animation for hierarchical modeling, and collision detection. You will program a 3-D vivarium: a simulated 3-D world with polyhedral creatures moving around.

Basic Requirements
Predator/Prey Models: To build your vivarium, you will first need to construct two different creatures using polyhedral (solid) parts. Implement your code as we did at "TODO 1" in the ModelLinkage file.For the basic parts of your creatures, feel free to use routines provided with the previous assignment. You are also free to create your own basic parts, but they must be polyhedral (solid).
The creatures you design should have moving linkages of the basic parts: legs, arms, wings, antennae, fins, tentacles, etc.
Model requirements:Predator: At least one (1) creature. Should have at least two moving parts in addition to the main body
Prey: At least two (2) creatures. The two prey can be instances of the same design. Should have at least one moving part.
The predator and prey should have distinguishable different colors. You are welcome to reuse your PA2 creature in this assignment.
Model animation: Use transforms to control the motion of each creature and its parts. Implement your code like what we did at "TODO 2" in the ModelLinkage file animationUpdate method.Set reasonable joints limit for your creature
The linkages should move back and forth in a periodic motion, as the creatures move about the vivarium.
Your creatures should be able to move in 3 dimensions, not only on a plane.
Collision Detection & Reaction: Creatures in the vivarium should react to where other creatures are and move accordingly. Implement your code at "TODO 3" in the ModelLinkage file animationUpdate method.Your creature should always stay within the fixed-size 3D "tank". You should do collision detection between the creatures and tank walls. When creatures hit the tank walls, they should turn and change direction to stay within the tank.
Your creatures should have a prey/predator relationship. For example, you could have a bug being chased by a spider, or a fish eluding a shark. This means your creature should react to other creatures in the tank:Use potential functions to change its direction based on other creatures’ location, their inter-creature distances, and their current configuration.
You should detect collisions between creatures.Predator-prey collision: The prey should disappear (get eaten) from the tank.
Collision between the same species: They should bounce apart from each other. You can use a reflection vector about a plane to decide the after-collision direction.
You are welcome to use bounding spheres for collision detection.
Creature orientation: Creatures should face in the direction they are moving. For instance, a fish should be facing the direction in which it swims. Remember that we require your creatures to be movable in 3 dimensions, so they should be able to face any direction in 3D space. Implement your code at "TODO 4" in the ModelLinkage file animationUpdate method.
Extra Credits (You may only receive up to 10 extra credits)
(Required for CS680 Students) Feed your creatures with food: Add chunks of food to the vivarium which can be eaten by your creatures. Implement your code at "BONUS 5(TODO 5)" in the Vivarium file.When ‘f’ is pressed, have a food particle be generated at random within the vivarium.
Be sure to draw the food on the screen with an additional model. It should drop slowly to the bottom of the vivarium and remain there within the tank until eaten.
The food should disappear once it has been eaten. Food is eaten by the first creature that touches it.
Flocking behavior: Add at least 5 creatures to the vivarium and make it possible for creatures to engage in group behaviors, for instance flocking together. This can be achieved by implementing the Boids animation algorithms of Craig Reynolds. Implement your code at "BONUS 6" in the ModelLinakge file.
Programming Style
For any modified or newly added source file, you should include a brief explanation about what you did in this file at the file heading and add your name to the author list. Your code should be readable with sufficient comments. You should use consistent variable naming and keep reasonable indentation. In python, we prefer to use reStructuredText format docstring, for more details about this format, please check here.
2. Resources
2.1 Start code
A Python Program skeleton, which includes basic classes, methods, and main pipeline, is provided for you. You are expected to complete the parts marked with TODO. There are comments in the skeleton code that will help guide you in writing your own subroutines.

2.2 Environment Setup
Installing the appropriate programming environment should be covered in a lab session. For more step-by-step instructions, please check the environment set up on Blackboard.

2.3 User Interface
The user interface to the program is provided through mouse buttons and keyboard keys.

R/r: Reset everything in the Vivarium (including put eaten creatures back) \ F/f: Add food

You can set key bindings to add creatures to the Vivarium.

2.4 Video Demo
We prepared a video demo for you, hope this can help you better understand your tasks and speed up your debugging process. Please check it on the Blackboard.

3.2 Demo
Part of your grade for this programming assignment will be based on your giving a short demo (5 minutes) during the CS480/680 scheduled labs following the assignment due date. You will be expected to talk about how your program works.

More products