Lab Project: Create a Movie
Abschnittsübersicht
-
The goal of this project is to create an animated movie that lasts exactly 30 seconds.
Project groups
- Groups of two students
- Groups can be built independently of lab group assignments in KUSSS and lab session time slots (A-E).
- Single projects are not allowed.
- If you don’t find a partner, use the Moodle forum to find a fellow student.
- If one of the partners drops the course after the concept submission, let us know immediately so that we can adapt the scope of the project.
Minimal requirements
- The movie must be 3D.
- The movie must last exactly 30 seconds.
- All basic movie effects and special effects must be clearly visible.
- All basic movie effects and special effects must be implemented as scene graph nodes.
- All special effects must be explained.
- Framework: The implementation must be based on the unmodified lab framework (= everything in the libs folder). However, you are free to add new scene graph nodes. The usage of other external 3D/game engines, such as Three.js, is not allowed. The Github template repository which you get when creating a group via Github classroom contains the framework (so don't just use one of the lab session projects).
- Documentation: Code needs to be documented and modular (create own function for each feature if possible).
- Executability: The movie needs to run on regular PCs with Visual Studio Code, as in the lab sessions. The movie needs to be self-contained including all required resources.
Basic movie effects
- Composed object
a) Add at least one manually composed object that consists of multiple scene graph nodes. Your object should significantly differ from the robot created during the lab sessions.
b) Animate separate parts of the object and also move the composed object itself in the scene.
c) Use at least two clearly different materials with specular properties for the various parts of your composed object. Note that a material is different from a texture and that just setting different vertex colors is not sufficient. - Hand-crafted object
a) Create one scene graph node that renders a hand-crafted 3D shape (5-25 vertices; not a cube, sphere, quad, or loaded model). Fully specify properties for this object, i.e., vertices, normals, and texture coordinates. This object must not be imported from external object files created in modeling tools like Blender. However, you are free to use imported objects for other parts of your scene.
b) Apply a texture to your self-created complex object by setting proper texture coordinates. - Illumination
a) Use multiple light sources.
b) One light source should be moving in the scene.
c) Implement at least one spot-light by extending the existing light node LightSGNode and a Phong shader. Apply Phong shading to all objects in the scene. - Automated camera flight (Animation)
For the 30 seconds camera flight, the camera needs to be animated without user intervention and the animation needs to start automatically. You need to create the animation objects (see class Animation). Examples can be found in the comments above the class definition. The first parameter is the TransformSGNode that is to be animated. The second parameter details what the animation should look like. If true is supplied as the third parameter, the animation will keep looping. You can start the animations using the start() function and update the animation in the render step. After the automatic camera flight, it should be possible to freely control the camera using the mouse and keyboard to move through the scene. The camera navigation is implemented already. You can use the WASD-keys to manually control the camera along the viewing direction. (W-key: forward movement, S-key: backward movement, A-key: leftward movement, D-key: rightward movement). You can use the mouse to control the heading (mouse-x; rotation around y-axis) and pitch (mouse-y; rotation around x-axis) of the camera relative to the ground (no roll!).
Special effects
- Multiple effects must add up to 30 points.
- Trivial solutions can result in decreased points.
- The effects need to conceptually fit into the submitted movie screenplay.
- Describe the special effects and how you implemented them in the README.md file.
- 20 points for the complexity, integration, and documentation of the special effects.
Effect selection
Easy (10 points)
- S1. Multi texturing
Mix multiple textures with an alpha map in the shader. Make sure to combine at least two different textures. For the texture lookup different texture coordinates are typically required. For example, combine a texture showing grass with a texture showing pavement using an alpha texture that defines a walking path. - S2. Level of detail
Implement a level-of-detail render node and use three different detail levels of your model. Decide which version to render by using the distance of the object to the camera. Low resolution (i.e., low polygon count) should be used, if the object is further away from the camera. Make sure the swap is visible at some point during your animated camera flight. Note that this is NOT level of detail for textures. - S3. Billboarding
Implement a billboarding node that makes a flat object face the camera orthogonally at all time. The billboards should mimic 3D objects, such as trees or clouds, in the scene. Make sure the billboard is viewed from multiple different directions during the animated camera flight to prove that its orientation is updated correctly.
Medium (20 points)
- S4. Terrain from heightmap
Compute the normal vectors for your terrain to allow correct Phong shading. Reading the precomputed normals from another texture is allowed as well. - S5. Post-processing shader
Examples are a toon shader, bloom shader, glare effect, sobel operator, or color space transformation. Tune your post-processing shader carefully such that it looks good, while all other aspects, e.g. textures and different material properties, are still clearly visible. Keep in mind that a post-processing effect is applied to the image generated by rendering the scene to a texture. This means you need multiple render passes: One for rendering the scene to a texture and a second one for rendering the texture to the screen and thereby applying the post-processing effect. - S6. Animated water surface
The animated water surface should at least reflect a skybox and simulate wave movements in a nice way. The normals and thus the reflections should be influenced by the wave movements. - S7. Minimap
Show minimap in one of the corners of the screen that contains a minified version of the world (2D texture or 3D rendered) together with the path of the camera over the last 10 seconds. Moving objects don’t have to be shown. Use a separate viewport for the minimap. - S8. Particle system
Examples of particle effects are rain, smoke, or fire. The particle system has to use a basic physics simulation. The animations have to be framerate-independent as well. The particle movements should be implemented in the shader.
Hard (30 points)
- S9. Motion blur
The motion blur should apply to both the moving objects and the camera motion.
Own effect suggestions are welcome but need to be described in the movie concept submission. Approval will be given by email.
Good luck and have fun working on the projects!