program c/c++,Python

Java Python 2023/2024, 4th period
Practical 2: Rasterization
Author: Peter Vangorp, based on a previous version by Jacco Bikker
The assignment:
The purpose of this assignment is to create a small OpenGL-based 3D engine, starting with the
provided template. The renderer should be able to visualize a scene graph, with (potentially) a
unique texture and shader per scene graph node. The shaders should at least support the full
Phong illumination model. For a full list of required functionality, see section “Minimum
Requirements”.
As with the first assignment, the following rules for submission apply:
▪ Your code has to compile and run on other machines than just your own. If this
requirement isn’t met, we may not be able to grade your work, in which case
your grade will default to 0. Common reasons for this to fail are hardcoded
paths to files on your machine.
▪ Please clean your solution before submitting (i.e. remove all the compiled
files and intermediate output). This can easily be achieved by running
clean.bat (included with the template). After this you can zip the solution
directories and submit them on Blackboard. If your zip-file is multiple
megabytes in size you’ve included large assets or something went wrong (not
cleaned properly).
▪ We want to see a consistent and readable coding style: formatting;
descriptive names for variables, methods, and classes; and comments. Most
code editors have tools to help with formatting and indentation, and with
renaming things (“refactoring”) if necessary.
“Programs are meant to be read by humans
and only incidentally for computers to execute.”
– Structure and Interpretation of Computer Programs
Grading:
If you implement the minimum requirements, and stick to the above rules, you score a 6.
We deduct points for: a missing readme.txt file, a solution that was not cleaned, a solution
that does not compile, a solution that crashes, inconsistent coding style, insufficient
comments to explain the code, or incorrectly implemented features.
Implement additional features to earn additional points (up to a 10).
Deliverables:
A ZIP-file containing:
1. The contents of your (cleaned) solution directory
2. The readme.txt file
The contents of the solution directory should contain:
(a) Your solution file (.sln)
(b) All your source code
(c) All your project and content files (including shaders, models, and textures).
The readme file should contain:
(a) The names and student IDs of your team members.
[1–3 students – the team does not have to be the same as for P1]
(b) A statement about what minimum requirements and bonus assignments
you have implemented (if any) and information that is needed to grade
them, including detailed information on your implementation.
[We will not search for features in your code. If we can’t find and understand
them easily, they may not be graded, so make sure your description and/or
comments are clear.]
(c) A list of materials you used to implement the 3D engine. If you borrowed
code or ideas from websites or books, make sure you provide a full and
accurate overview of this.
Considering the large number of OpenGL rasterizers available on the internet,
we will carefully check for original work.
Put the solution directories and the readme.txt file directly in the root of the zip file.
Teamwork: If you use the Git version control system for teamwork, for example on GitHub or
GitLab, be aware that by default it doesn’t put .obj files in the repository because it assumes
.obj files are intermediate outputs generated by the compiler. But the template uses the .obj
file format for meshes in the assets folder. Edit your .gitignore file if you want to put those
assets in the repository.
Mode of submission:
• Upload your zip file before the deadline via Blackboard. The Blackboard
software allows you to upload without submitting: please do not forget to hit
‘submit’ once you are sure we should see the final result. Please do not forget
the final submit!
• Re-download your submission from Blackboard, unzip it into a different folder,
and check that it runs and looks like the version you intended to submit. This
catches most mistakes like missing files or submitting the wrong version. You
can correct these mistakes and re-submit until the deadline.
Note that we only grade the last submitted version of your assignment.
Deadline:
Friday, June 28, 2024, 17:00h
This is a hard deadline. If you miss this deadline, your work will not be graded.
Time management: Don’t postpone working on this assignment. It only increases the pressure
and stress, and you may run out of time.
Fraud & plagiarism:
▪ Never look at other students’ code. Don’t discuss implementation in detail. Reference
every source in your readme.txt and/or in code comments.
▪ We use automated content similarity detection tools to compare all submissions of this
year and previous years, and online sources. All suspected cases of fraud or plagiarism
must be reported to the Board of Examiners.
High-level Outline
For this assignment you will implement a basic OpenGL-based 3D engine. The 3D engine is a
tool to visualize a scene graph: a hierarchy of meshes, each of which can have a unique local
transform. Each mesh will have a texture and a shader. The input for the shader includes a set
of light sources. The shading model implemented in the fragment shader determines the
response of the materials to these lights.
The main concepts you will apply in this assignment are matrix transforms and shading models.
Matrix transforms: objects are defined in local space (also known as object space). An object
can have an orientation and position relative to its parent in the scene graph. This way, the
wheel of a car can spin, while it moves with the car. In the real world, many moving objects
move relative to other objects, which may also move relative to some other object. In a 3D
engine, we have an extra complication: after we transform our vertices to world space, we need
to transform them to camera space, and then to screen space for final display. A correct
implementation and full understanding of this pipeline is an important aspect of both theory
and practice in the second half of the course.
Shading: using interpolated normals and a set of point lights we can get fairly realistic materials
by applying the Phong lighting model. This model combines ambient lighting, diffuse reflection
and glossy reflection. Optionally, this can be combined with texturing and normal mapping for
detailed surfaces. A good understanding of concepts from ray tracing will also be useful here.
The remainder of this document describes the C# template, the minimum requirements for the
assignment and bonus challenges.
Finally, you may work on post processing. In the screenshot at the top of the page you see the
effect of a dummy post processing shader, which you can find in shaders/fs_post.glsl. Its main
functionality is the following line:
outputColor *= sin( dist * 50 ) * 0.25f + 0.75f;
Disable this line to get rid of the ripples. Replace it by something more interesting to get extra
points: see the last page of this document for details.
You’re not expected to re-implement any features that are already provided by OpenTK, GLSL,
or the template. Such features include basic vector and matrix math, and loading texture images
and meshes.
Template
For this assignment, a fresh template has been prepared for you.
When you start the template, you will notice that quite some work has been done for you:
▪ Two 3D models are loaded. The models are stored in the text-based OBJ file format,
which stores vertex positions, vertex normals and texture coordinates.
▪ A mesh class is provided that stores this data for individu program、c/c++,Python al meshes.
▪ A texture and shader class is also provided.
▪ Dummy shaders are provided that use all data: the texture, vertex normals, and vertex
coordinates.
In short, the whole data pipeline is in place, and you can focus on the functionality for this
assignment. Let’s have a closer look at the provided functionality:
class Texture: this class loads common image file formats (.png, .jpg, .bmp etc.) and converts
them to an OpenGL texture. Like all resources in OpenGL, a texture simply gets an integer
identifier, which is stored in the public member variable ‘id’.
class Shader: this class encapsulates the shader loading and compilation functionality. It is
programmed to work with the included shaders: e.g., it expects certain variables to exist in the
shader, such as per-vertex data (position, normal, texture coordinates), and “uniform”
transformation matrices. You may need to add more variables in the shaders and
correspondingly in this class.
class Mesh: this class contains the functionality to render a mesh. This includes Vertex Buffer
Object (VBO) creation and all the function calls needed to feed this data to the GPU. The render
method takes a shader, transformation matrices, and a texture, which is all you need to draw
the mesh. Note that this means that each mesh can use only a single texture.
class MeshLoader: this is a helper class that loads meshes from OBJ files. It is slow and only
supports a subset of the OBJ file format. The meshes included in the template are small and
only use supported features. Feel free to replace this loader with something better if necessary.
class MyApplication: you will find some ready-made functionality here. To demonstrate how to
use the other classes, a texture, a shader and two meshes are loaded and displayed with a
dummy transform. This definitely needs some work (just like the dummy shaders).
The template will produce informative OpenGL error messages to help with debugging.
Parts of the template are implemented in two functionally equivalent versions. You can
choose which version should be used by setting the constant
OpenTKApp.allowPrehistoricOpenGL:
- true: Use deprecated code that is usually shorter and easier to understand but that is
not supported anymore on Apple devices and should only be used in legacy
codebases. If you choose this version, also your code may use deprecated code
(“Compatibility profile”).
- false: Use Modern OpenGL code that is usually longer and more difficult to
understand but that is supported everywhere and should be used in new codebases. If
you choose this version, also your code must use Modern OpenGL (“Core profile”).
Your Task
You should first familiarize yourself with all the provided functionality and code.
You then have two main tasks for this assignment:
1. Implement a scene graph;
2. Implement a proper shader;
Demonstrate all the functionality you add with a demo scene and screenshots.
Scene graph: currently, the application renders two objects, but this is entirely hardcoded. Your
task is to add a new class SceneGraph, which stores a hierarchy of meshes. The mesh class needs
to be expanded a bit as well; each mesh should have a local transform. The SceneGraph class
should implement a Render method, which takes a camera matrix as input. This method then
renders all meshes in the hierarchy. To determine the final transform for each mesh, matrix
concatenation should be used to combine all matrices, starting with the camera matrix, all the
way down to each individual mesh.
Task list for the scene graph:
1. Add a model matrix to the Mesh class.
2. Add the Scene Graph: a data structure for storing a tree-structured hierarchy of meshes,
where the position of each mesh in the scene will also be affected by the model matrices
of all its ancestors.
3. Add a Render method for the Scene Graph that recursively processes the nodes in the
tree, while combining matrices so that each mesh is drawn using the correct combined
matrix.
4. Call the Render method of the Scene Graph from the Game class, using a camera matrix
that is updated based on user input.
Shader: the dummy shaders combine the texture with the normal. As you may have noticed,
the normal is directly converted to an RGB color (a useful debug visualization to inspect the 3
component values of the normal vector, but of course this is not a realistic material). Your task
is to replace this dummy shader with a full implementation of the Phong lighting model. This
means that you need to combine an ambient color with the summed contribution of one or
more light sources.
Task list for the shader:
1. Add a uniform variable to the fragment shader to pass the ambient light color.
2. Add a Light class. Perhaps it would be nice if lights could also be in the scene graph.
3. Either add a hardcoded static light source to the shader, or (for extra points) add uniform
variables to the fragment shader to pass light positions and colors. Don’t over-engineer
this; if your shader can handle 4 lights using four sets of uniform variables, you meet the
requirements to obtain the bonus points.
4. Implement the Phong lighting model.
Demonstration: once the basic 3D engine is complete, it is time to showcase its capabilities.
Build a small demo that shows the scene graph and shader functionality.
Minimum Requirements
To pass this assignment, we need to see:
Camera:
▪ The camera must be interactive with keyboard and/or mouse control. It must at least
support translation and rotation.
Scene graph:
▪ Your demo must show a hierarchy of objects. The scene graph must be able to hold any
number of meshes, and may not put any restrictions on the maximum depth of the
scene graph.
Shaders:
▪ You must provide at least one correct shader that implements the Phong shading model.
This includes ambient light, diffuse reflection and glossy reflection of the point lights in
the scene. To pass, you may use a single hardcoded light.
Demonstration scene:
▪ All engine functionality you implement must be visible in the demo. A high quality demo
will increase your grade.
Documentation:
▪ Describe which features you implemented. Describe the controls for your demo.
Bonus Assignments
Meeting the minimum requirements earns you a 6 (assuming practical details are all in order).
An additional four points can be earned by implementing bonus features. An incomplete list
of options, with an indication of the difficulty level:
▪ [EASY] Multiple lights (at least 4), which can be modified at run-time (0.5 pt)
▪ [EASY] Spotlights (0.5 pt)
▪ [EASY] Environment mapping to show a cube map or sphere map texture
in the background and/or in mirror reflections (0.5 pt)
NOTE: this must be implemented without a mesh
▪ [MEDIUM] Frustum culling to the scene graph render method (1 pt)
▪ [MEDIUM] Normal mapping (1 pt)
▪ [HARD] Shadows using shadow mapping (1.5 pt)
Additional challenges related to post processing:
▪ [EASY] Vignetting and chromatic aberration (0.5 pt)
▪ [MEDIUM] Generic color grading using a color look-up table (1 pt)
▪ [MEDIUM] A separable blur filter with variable kernel width (1 pt)
▪ [MEDIUM] HDR glow (requires blur filter and HDR render target) (1pt)
▪ [HARD] Depth of field (requires blur filter) (1.5 pt)
▪ [HARD] Ambient occlusion (1.5 pt)
Important: many of these features require that you investigate these yourself, i.e., they are
not necessarily covered in the lectures or in the book. You may of course discuss these on
Teams to get some help.
Obviously, there are many other things that could be implemented in a 3D engine. Make sure
you clearly describe functionality in your report, and if you want to be sure, consult the
lecturer for reward details         

  • 10
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值