本文是一个完整的图形学入门实践课程,目前还在更新中,GitHub已开源。理论上本文项目需要20-30个小时完成。不知道为啥我的网站统计字数也有问题。
主要内容是完全手撸一个光栅化渲染器。本文会从头复习图形学以及C++的相关知识,包括从零构造向量模版库、光栅化原理解释、图形学相关基础算法解释等等内容。
另外原作者的的透视矩阵部分是经过一定程度的简化的,与虎书等正统做法不同。我会先按照原文ssloy老师的思想表达关键内容,最后按照我的想法完善本文。并且,原项目中的数学向量矩阵库写得不是很好,我专门开了一章一步步重构这个库。
简易的光栅化渲染器0 简单的开始1.1 画线第一关:实现画线第二关:发现BUG第三关:解决BUG第四关:优化前言第五关:Bresenham's 优化第六关:注意流水线预测第七关:浮点数整型化1.2 三维画线第一关:加载.obj第二关:绘制第三关:优化2.1 三角形光栅化第一关:线框三角形第二关:请你自己画实心的三角形第三关:扫描线算法第四关:包围盒逐点扫描第五关:重心坐标2.2 平面着色Flat shading render第一关:回顾第二关:绘制随机的颜色第三关:根据光线传播绘制颜色3.1 表面剔除第一关:画家算法(Painters' Algorithm)第二关:了解z-buffer第三关:创建Z-Buffer第四关:整理当前代码3.2 上贴图第一关:思路第二关:加载纹理文件第三关:获取纹理坐标第四关:通过纹理坐标uv获取对应颜色第五关:在光栅化三角形函数中增加贴贴图的功能第六关:为模板函数添加更多重载符号操作4.1 透视视角第一关:线性变换第二关:齐次坐标 Homogeneous coordinates第三关:三维世界第四关:具体代码实现4.2 项目代码分析第一关:model类第二关:geometry第三关:main5.1 移动摄像机第一关:定义摄像机第二关:相机代码6.1 优化/重写代码6.2 重写模版向量类第一关:需求分析第二关:实现Vec2模版以及四个算数符第三关:实现Vec3模版以及四个算数符第四关:用模版构建不同大小的向量第五关:进一步完善向量功能第六关:构建矩阵第七关:继续完善矩阵库6.3 整合光栅化代码特别节目1之:main代码之旅特别节目2之:细说GouraudShader特别节目3之:开始绘画-片元着色器🌈 彩虹着色器📺 模拟老电视效果🔥 火焰效果🌌 星空效果6.4 升级Shader-支持UV纹理🎬 Shader类的角色列表🎭 vertex函数:多面手🌈 fragment函数:艺术家🎨 那么,这个Shader类都能做什么?6.5 学习法线贴图第一关:纹理第二关:全局坐标系与Darboux坐标系第三关:经常见到的Uniform第四关:光照计算6.6 实现Phong模型7.1 阴影第一关:目前的问题第二关:第一趟渲染-从光源出发第三关:第二趟渲染-从主相机出发8.1 环境光遮蔽 - 模拟全局光照效果特别节目:知识脉络第一关:啥是AO?如何结合Phong使用?第二关:做梦第三关:屏幕空间环境遮挡 (SSAO)附录1. c++模版类 - 从入门到入土第一关:为什么需要模版类?第二关:「函数模版」第三关:「类模版」第四关:「多模板参数」与「非类型参数」第五关:「模板特化」第六关:「类型推断」1. auto & decltype2. 模板中的基本类型推断3. 自动构造模版类型4. 尾返回类型第七关:「变量模板」第八关:「模板类型别名」第九关:模板的SFINAE原则第十关:模板与友元第十一关:折叠表达式第十二关:模板概念(Concepts) - C++20第十三关: std::enable_if
和 SFINAE第十四关:类模板偏特化第十五关:constexpr
和模板第十六关:模板中的嵌套类型第十七关:模板参数包与展开第十八关:Lambda 表达式与模板第十九关:模板递归第二十关:带有模板的继承1. 模版基类2. 模版子类3. 在模板类中继承模板基类第二十一关:std::type_trait
的工具集第二十二关:模板与动态多态性备注/声明
五星上将曾经说过,懂的越少,懂的越多。我接下来将提供一个tgaimage的模块,你说要不要仔细研究研究?我的评价是不需要,如学。毕竟懂的越多,懂的越少。
在这里提供一个最基础的框架🔗,他只包含了tgaimage模块。该模块主要用于生成.TGA文件。以下是一个最基本的框架代码:
xxxxxxxxxx
141// main.cpp
2
3
4const TGAColor white = TGAColor(255, 255, 255, 255);
5const TGAColor red = TGAColor(255, 0, 0, 255);
6const TGAColor blue = TGAColor(0, 0, 255, 255);
7
8int main(int argc, char** argv) {
9 TGAImage image(100, 100, TGAImage::RGB);
10 // TODO: Draw sth
11 image.flip_vertically(); // i want to have the origin at the left bottom corner of the image
12 image.write_tga_file("output.tga");
13 return 0;
14}
上面代码会创建一个100*100的image图像,并且以tga的格式保存在硬盘中。我们在TODO中添加代码:
xxxxxxxxxx
11image.set(1, 1, red);
代码作用是在(1, 1)的位置将像素设置为红色。output.tga的图像大概如下所示:
这一章节的目标是画线。具体而言是制作一个函数,传入两个点,在屏幕上绘制线段。
给定空间中的两个点,在两点(x0, y0)(x1, y1)之间绘制线段。
最简单的代码如下:
xxxxxxxxxx
71void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
2 for (float t=0.; t<1.; t+=.01) {
3 int x = x0 + (x1-x0)*t;
4 int y = y0 + (y1-y0)*t;
5 image.set(x, y, color);
6 }
7}
上面代码中的.01其实是错误的。不同的分辨率对应的绘制步长肯定不一样,太大的步长会导致:
所以我们的逻辑应该是:需要画多少像素点就循环Draw多少次。最简单的想法可能是绘制x1-x0个像素或者是y1-y0个像素:
xxxxxxxxxx
71void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
2 for (int x=x0; x<=x1; x++) {
3 float t = (x-x0)/(float)(x1-x0);
4 int y = y0*(1.-t) + y1*t;
5 image.set(x, y, color);
6 }
7}
上面代码是最简单的插值计算。但是这个算法是错误的。画三条线:
xxxxxxxxxx
31line(13, 20, 80, 40, image, white);
2line(20, 13, 40, 80, image, red);
3line(80, 40, 13, 20, image, blue);
白色线看起来非常好,红色线看起来断断续续的,蓝色线直接看不见了。于是总结出以下两个问题:
理论上说白色线和蓝色线应该是同一条线,只是起点与终点不同
太“陡峭”的线效果不对
接下来就解决这个两个问题。
此处“陡峭”的意思是(y1-y0)>(x1-x0)
下文“平缓”的意思是(y1-y0)<(x1-x0)
为了解决起点终点顺序不同导致的问题,只需要在算法开始时判断两点x分量的大小:
xxxxxxxxxx
41if (x0>x1) {
2 std::swap(x0, x1);
3 std::swap(y0, y1);
4}
为了画出没有空隙的“陡峭”线,只需要将“陡峭”的线变成“平缓”的线。最终的代码:
xxxxxxxxxx
241void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
2 if(std::abs(x0-x1)<std::abs(y0-y1)) { // “陡峭”线
3 if (y0 > y1) { // 确保从下到上画画
4 std::swap(x0, x1);
5 std::swap(y0, y1);
6 }
7 for (int y = y0; y <= y1; y++) {
8 float t = (y - y0) / (float) (y1 - y0);
9 int x = x0 * (1. - t) + x1 * t;
10 image.set(x, y, color);
11 }
12 }
13 else { // “平缓”线
14 if (x0 > x1) { // 确保从左到右画画
15 std::swap(x0, x1);
16 std::swap(y0, y1);
17 }
18 for (int x = x0; x <= x1; x++) {
19 float t = (x - x0) / (float) (x1 - x0);
20 int y = y0 * (1. - t) + y1 * t;
21 image.set(x, y, color);
22 }
23 }
24}
如果你想测试你自己的代码是否正确,可以尝试绘制出以下的线段:
xxxxxxxxxx
141line(25,25,50,100,image,blue);
2line(25,25,50,-50,image,blue);
3line(25,25,0,100,image,blue);
4line(25,25,0,-50,image,blue);
5
6line(25,25,50,50,image,red);
7line(25,25,50,0,image,red);
8line(25,25,0,0,image,red);
9line(25,25,0,50,image,red);
10
11line(25,25,50,36,image,white);
12line(25,25,50,16,image,white);
13line(25,25,0,16,image,white);
14line(25,25,0,36,image,white);
目前为止,代码运行得非常顺利,并且具备良好的可读性与精简度。但是,画线作为渲染器最基础的操作,我们需要确保其足够高效。
性能优化是一个非常复杂且系统的问题。在优化之前需要明确优化的平台和硬件。在GPU上优化和CPU上优化是完全不同的。我的CPU是Apple Silicon M1 pro,我尝试绘制了9,000,000条线段。
发现在line()函数内,image.set();
函数占用时间比率是38.25%,构建TGAColor对象是19.75%,14%左右的时间花在内存拷贝上,剩下的25%左右的时间花费则是我们需要优化的部分。下面的内容我将以运行时间作为测试指标。
我们注意到,for循环中的除法操作是不变的,因此我们可以将除法放到for循环外面。并且通过斜率估计每向前走一步,另一个轴的增量error。dError是一个误差积累,一旦误差积累大于半个像素(0.5),就对像素进行一次修正。
xxxxxxxxxx
401// 第一次优化的代码
2void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
3 if(std::abs(x0-x1)<std::abs(y0-y1)) { // “陡峭”线
4 if (y0>y1) {
5 std::swap(x0, x1);
6 std::swap(y0, y1);
7 }
8 int dx = x1 - x0;
9 int dy = y1 - y0;
10 float dError = std::abs(dx / float(dy));
11 float error = 0;
12 int x = x0;
13 for (int y = y0; y <= y1; y++) {
14 image.set(x, y, color);
15 error += dError;
16 if (error>.5) {
17 x += (x1>x0?1:-1);
18 error -= 1.;
19 }
20 }
21 }else { // “平缓”线
22 if (x0>x1) {
23 std::swap(x0, x1);
24 std::swap(y0, y1);
25 }
26 int dx = x1 - x0;
27 int dy = y1 - y0;
28 float dError = std::abs(dy / float(dx));
29 float error = 0;
30 int y = y0;
31 for (int x = x0; x <= x1; x++) {
32 image.set(x, y, color);
33 error += dError;
34 if (error>.5) {
35 y += (y1>y0?1:-1);
36 error -= 1.;
37 }
38 }
39 }
40}
没有优化用时:2.98s
第一次优化用时:2.96s
在很多教程当中,为了方便修改,会用一些trick将“陡峭”的线和“平缓”的线的for循环代码整合到一起。即先将“陡峭”线两点的xy互换,最后再image.set()的时候再换回来。
xxxxxxxxxx
301// 逆向优化的代码
2void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
3 bool steep = false;
4 if (std::abs(x0-x1)<std::abs(y0-y1)) {
5 std::swap(x0, y0);
6 std::swap(x1, y1);
7 steep = true;
8 }
9 if (x0>x1) {
10 std::swap(x0, x1);
11 std::swap(y0, y1);
12 }
13 int dx = x1-x0;
14 int dy = y1-y0;
15 float dError = std::abs(dy/float(dx));
16 float error = 0;
17 int y = y0;
18 for (int x=x0; x<=x1; x++) {
19 if (steep) {
20 image.set(y, x, color);
21 } else {
22 image.set(x, y, color);
23 }
24 error += dError;
25 if (error>.5) {
26 y += (y1>y0?1:-1);
27 error -= 1.;
28 }
29 }
30}
没有优化用时:2.98s
第一次优化用时:2.96s
合并分支用时:3.22s
惊奇地发现,竟然有很大的性能下降!背后的原因之一写在了这一小节的标题中。这是一种刚刚我们的操作增加了控制冒险(Control Hazard)。合并分支后的代码每一次for循环都有一个分支,可能导致流水线冒险。这是现代处理器由于预测错误的分支而导致的性能下降。而第一段代码中for循环没有分支,分支预测可能会更准确。
简而言之,减少for循环中的分支对性能的提升帮助非常大!
值得一提的是,如果在Tiny-Renderer中使用本文的操作,速度将会进一步提升。这在Issues中也有相应讨论:链接🔗。
为什么我们必须用浮点数呢?在循环中我们只在与0.5做比较的时候用到了。因此我们完全可以将error乘个2再乘个dx(或dy),将其完全转化为int。
xxxxxxxxxx
391// 第二次优化的代码
2void line(int x0, int y0, int x1, int y1, TGAImage &image, TGAColor color) {
3 int error2 = 0;
4 if(std::abs(x0-x1)<std::abs(y0-y1)) { // “陡峭”线
5 if (y0>y1) {
6 std::swap(x0, x1);
7 std::swap(y0, y1);
8 }
9 int dx = x1 - x0;
10 int dy = y1 - y0;
11 int dError2 = std::abs(dx) * 2;
12 int x = x0;
13 for (int y = y0; y <= y1; y++) {
14 image.set(x, y, color);
15 error2 += dError2;
16 if (error2>dy) {
17 x += (x1>x0?1:-1);
18 error2 -= dy * 2;
19 }
20 }
21 }else { // “平缓”线
22 if (x0>x1) {
23 std::swap(x0, x1);
24 std::swap(y0, y1);
25 }
26 int dx = x1 - x0;
27 int dy = y1 - y0;
28 int dError2 = std::abs(dy) * 2;
29 int y = y0;
30 for (int x = x0; x <= x1; x++) {
31 image.set(x, y, color);
32 error2 += dError2;
33 if (error2>dx) {
34 y += (y1>y0?1:-1);
35 error2 -= dx*2;
36 }
37 }
38 }
39}
没有优化用时:2.98s
第一次优化用时:2.96s
合并分支用时:3.22s
第二次优化用时:2.96s
优化程度也较为有限了,原因是在浮点数化整的过程中增加了计算的次数,与浮点数的计算压力相抵消了。
在前面的内容中,我们完成了Line()函数的编写。具体内容是给定屏幕坐标上的两个点就可以在屏幕中绘制线段。
首先,我们创建model类作为物体对象。我们在model加载的.obj文件里可能会有如下内容:
xxxxxxxxxx
11v 1.0 2.0 3.0
v表示3D坐标,后面通常是三个浮点数,分别对应空间中的x, y, z。上面例子代表一个顶点,其坐标为 (1.0, 2.0, 3.0)
。
当定义一个面(f
)时,你引用的是先前定义的顶点(v
)的索引。
xxxxxxxxxx
21f 1 2 3
2f 1/4/1 2/5/2 3/6/3
上面两行都表示一个面,
第一行表示三个顶点的索引
第二行表示顶点/纹理坐标/法线的索引
在这里我提供一个简单的 .obj 文件解析器 model.cpp 。你可以在此处找到当前项目链接🔗。以下是你可能用到的model类的信息:
模型面数量:i<model->nfaces()
获取第n个面的三个顶点索引:model->face(n)
通过索引获取顶点三维坐标:model->vert()
本项目使用的.obj文件的所有顶点数据已做归一化,也就是说v后面的三个数字都是在[-1, 1]之间。
在这里我们仅仅考虑三维顶点中的(x, y),不考虑深度值。最终在main.cpp中通过model解析出来的顶点坐标绘制出所有线框即可。
xxxxxxxxxx
121for (int i=0; i<model->nfaces(); i++) {
2 std::vector<int> face = model->face(i);
3 for (int j=0; j<3; j++) {
4 Vec3f v0 = model->vert(face[j]);
5 Vec3f v1 = model->vert(face[(j+1)%3]);
6 int x0 = (v0.x+1.)*width/2.;
7 int y0 = (v0.y+1.)*height/2.;
8 int x1 = (v1.x+1.)*width/2.;
9 int y1 = (v1.y+1.)*height/2.;
10 line(x0, y0, x1, y1, image, blue);
11 }
12}
这段代码对所有的面进行迭代,将每个面的三条边都进行绘制。
将不必要的计算设置为const,避免重复分配释放内存。
xxxxxxxxxx
241const float halfWidth = screenWidth / 2.0f;
2const float halfHeight = screenHeight / 2.0f;
3
4int nfaces = model->nfaces();
5for (int i = 0; i < nfaces; ++i) {
6 const std::vector<int>& face = model->face(i);
7 Vec3f verts[3];
8
9 for (int j = 0; j < 3; ++j) {
10 verts[j] = model->vert(face[j]);
11 }
12
13 for (int j = 0; j < 3; ++j) {
14 const Vec3f& v0 = verts[j];
15 const Vec3f& v1 = verts[(j + 1) % 3];
16
17 int x0 = (v0.x + 1.0f) * halfWidth;
18 int y0 = (v0.y + 1.0f) * halfHeight;
19 int x1 = (v1.x + 1.0f) * halfWidth;
20 int y1 = (v1.y + 1.0f) * halfHeight;
21
22 line(x0, y0, x1, y1, image, blue);
23 }
24}
接下来,绘制完整的三角形,不光是一个个三角形线框,更是要一个实心的三角形!为什么是三角形而不是其他形状比如四边形?因为三角形可以任意组合成为所有其他的形状。基本上,在OpenGL中绝大多数都是三角形,因此我们的渲染器暂时无需考虑其他的东西了。
当绘制完一个实心的三角形后,完整渲染一个模型也就不算难事了。
在Games101的作业中,我们使用了AABB包围盒与判断点是否在三角形内的方法对三角形光栅化。你完全可以用自己的算法绘制三角形,在本文中,我们使用割半法处理。
利用上一章节完成的line()函数,进一步将其包装成绘制三角形线框的triangleLine()函数。
xxxxxxxxxx
71void triangleLine(Vec2i v0, Vec2i v1, Vec2i v2, TGAImage &image, TGAColor color){
2 line(v0.u, v0.v, v1.u, v1.v, image, color);
3 line(v0.u, v0.v, v2.u, v2.v, image, color);
4 line(v1.u, v1.v, v2.u, v2.v, image, color);
5}
6...
7triangleLine(Vec2i(0,0),Vec2i(25,25),Vec2i(50,0),image,red);
这一部分最好由你自己花费大约一个小时完成。一个好的三角形光栅化算法应该是简洁且高效的。你目前的项目大概是这样的:链接🔗。
【此处省略一小时】
当你完成了你的算法之后,不妨来看看其他人是怎么做的。为了光栅化一个实心三角形,一种非常常见的方法是使用扫描线算法:
按 v
(或 y
)坐标对三角形的三个顶点进行排序,使得 v0
是最低的,v2
是最高的。
对于三角形的每一行(从 v0.v
到 v2.v
),确定该行与三角形的两边的交点,并绘制一条从左交点到右交点的线。
x1void triangleRaster(Vec2i v0, Vec2i v1, Vec2i v2, TGAImage &image, TGAColor color) {
2 if (v0.v > v1.v) std::swap(v0, v1);
3 if (v0.v > v2.v) std::swap(v0, v2);
4 if (v1.v > v2.v) std::swap(v1, v2);
5
6 // Helper function to compute the intersection of the line and a scanline
7 auto interpolate = [](int y, Vec2i v1, Vec2i v2) -> int {
8 if (v1.v == v2.v) return v1.u;
9 return v1.u + (v2.u - v1.u) * (y - v1.v) / (v2.v - v1.v);
10 };
11
12 for (int y = v0.v; y <= v2.v; y++) {
13 // Intersect triangle sides with scanline
14 int xa = interpolate(y, v0, v2); // Intersection with line v0-v2
15 int xb = (y < v1.v) ? interpolate(y, v0, v1) : interpolate(y, v1, v2); // Depending on current half
16
17 if (xa > xb) std::swap(xa, xb);
18
19 // Draw horizontal line
20 for (int x = xa; x <= xb; x++) {
21 image.set(x, y, color);
22 }
23 }
24}
介绍另一个非常有名的方法,包围盒扫描方法。将需要光栅化的三角形框上一个矩形的包围盒子内,在这个包围盒子内逐个像素判断该像素是否在三角形内。如果在三角形内,则绘制对应的像素;如果在三角形外,则略过。伪代码如下:
1triangle(vec2 points[3]) {
2 vec2 bbox[2] = find_bounding_box(points);
3 for (each pixel in the bounding box) {
4 if (inside(points, pixel)) {
5 put_pixel(pixel);
6 }
7 }
8}
想要实现这个方法,主要需要解决两个问题:找到包围盒、判断某个像素点是否在三角形内。
第一个问题很好解决,找到三角形的三个点中最小和最大的两个分量两两组合。
第二个问题似乎有些棘手。我们需要学习什么是重心坐标 (barycentric coordinates )。
利用重心坐标,可以判断给定某个点与三角形之间的位置关系。
给定一个三角形ABC和任意一个点P
我们把上面的式子解开,得到关于
然后将点P挪到同一边,得到下面的式子:
然后将上面的向量分为x分量与y分量,写成两个等式。接下来用矩阵表示他们:
两个向量点积是0,说明两个向量垂直。右边这俩向量都与
梳理一下,当务之急是判断给定的一个点与一个三角形的关系。直接给出结论,如果点在三角形内部,则这三个系数都属于(0,1)之间。直接给出光栅化一个三角形的代码:
xxxxxxxxxx
371Vec3f barycentric(Vec2i v0, Vec2i v1, Vec2i v2, Vec2i pixel){
2 // v0, v1, v2 correspond to ABC
3 Vec3f u = Vec3f(v1.x-v0.x,// AB_x
4 v2.x-v0.x,// AC_x
5 v0.x-pixel.x)// PA_x
6 ^
7 Vec3f(v1.y-v0.y,
8 v2.y-v0.y,
9 v0.y-pixel.y);
10 if (std::abs(u.z)<1) return Vec3f(-1,1,1);
11 return Vec3f(1.f-(u.x+u.y)/u.z, u.y/u.z, u.x/u.z);
12}
13// 重心坐标的方法 - 光栅化三角形
14void triangleRaster(Vec2i v0, Vec2i v1, Vec2i v2, TGAImage &image, TGAColor color){
15 // Find The Bounding Box
16 Vec2i* pts[] = {&v0, &v1, &v2};// Pack
17 Vec2i boundingBoxMin(image.get_width()-1, image.get_height()-1);
18 Vec2i boundingBoxMax(0, 0);
19 Vec2i clamp(image.get_width()-1, image.get_height()-1);
20 for (int i=0; i<3; i++) {
21 boundingBoxMin.x = std::max(0, std::min(boundingBoxMin.x, pts[i]->x));
22 boundingBoxMin.y = std::max(0, std::min(boundingBoxMin.y, pts[i]->y));
23
24 boundingBoxMax.x = std::min(clamp.x, std::max(boundingBoxMax.x, pts[i]->x));
25 boundingBoxMax.y = std::min(clamp.y, std::max(boundingBoxMax.y, pts[i]->y));
26 }
27
28 // For Loop To Iterate Over All Pixels Within The Bounding Box
29 Vec2i pixel;
30 for (pixel.x = boundingBoxMin.x; pixel.x <= boundingBoxMax.x; pixel.x++) {
31 for (pixel.y = boundingBoxMin.y; pixel.y <= boundingBoxMax.y; pixel.y++) {
32 Vec3f bc = barycentric(v0, v1, v2, pixel);
33 if (bc.x<0 || bc.y<0 || bc.z<0 ) continue;
34 image.set(pixel.x, pixel.y, color);
35 }
36 }
37}
barycentric()函数可能比较难理解,可以暂时抛弃研究其数学原理。并且上面这段代码是经过优化的,如果希望了解其原理可以看我这一篇文章:链接🔗。
xxxxxxxxxx
41const int screenWidth = 250;
2const int screenHeight = 250;
3...
4triangleRaster(Vec2i(10,10), Vec2i(100, 30), Vec2i(190, 160),image,red);
你可以在下面的链接中找到当前项目的代码:链接🔗。
在「1.2 三维画线」中绘制了模型的线框,即空三角形模型。在「2.1 三角形光栅化」中,介绍了两种方法绘制一个“实心”的三角形。现在,我们将使用“平面着色”来渲染小人模型,其中平面着色使用随机的RGB数值。
首先将加载模型的相关代码准备好:
xxxxxxxxxx
301
2
3
4
5
6
7...
8Model *model = NULL;
9const int screenWidth = 800;
10const int screenHeight = 800;
11...
12
13// 光栅化三角形的代码
14void triangleRaster(Vec2i v0, Vec2i v1, Vec2i v2, TGAImage &image, TGAColor color){
15 ...
16}
17
18int main(int argc, char** argv) {
19 const float halfWidth = screenWidth / 2.0f;
20 const float halfHeight = screenHeight / 2.0f;
21 TGAImage image(screenWidth, screenHeight, TGAImage::RGB);
22 model = new Model("../object/african_head.obj");
23
24 ...// 在此处编写接下来的代码
25
26 image.flip_vertically();
27 image.write_tga_file("output.tga");
28 delete model;
29 return 0;
30}
下面是遍历获得模型的每一个需要绘制的三角形的代码:
xxxxxxxxxx
41for (int i=0; i<model->nfaces(); i++) {
2 std::vector<int> face = model->face(i);
3 ...
4}
当我们获得了所有的面,在每一趟遍历中,将face
的三个点取出来并转换到屏幕坐标上,最后传给三角形光栅化函数:
xxxxxxxxxx
51for (int j=0; j<3; j++) {
2 Vec3f world_coords = model->vert(face[j]);
3 screen_coords[j] = Vec2i((world_coords.x+1.)*width/2., (world_coords.y+1.)*height/2.);
4}
5triangleRaster(screen_coords[0], screen_coords[1], screen_coords[2], image, TGAColor(rand()%255, rand()%255, rand()%255, 255));
刚才的随机颜色远远满足不了我们,现在我们根据光线与三角形的法线方向绘制不同的灰度。什么意思呢?看下面这张图,当物体表面的法线方向与光线方向垂直,物体接受到了最多的光;随着法线与光线方向的夹角越来越大,收到光的照射也会越来越少。当法线与光线方向垂直的时候,表面就接收不到光线了。
将这个特性添加到光栅化渲染器中。
xxxxxxxxxx
181Vec3f light_dir(0,0,-1); // define light_dir
2
3for (int i=0; i<model->nfaces(); i++) {
4 std::vector<int> face = model->face(i);
5 Vec2i screen_coords[3];
6 Vec3f world_coords[3];
7 for (int j=0; j<3; j++) {
8 Vec3f v = model->vert(face[j]);
9 screen_coords[j] = Vec2i((v.x+1.)*width/2., (v.y+1.)*height/2.);
10 world_coords[j] = v;
11 }
12 Vec3f n = (world_coords[2]-world_coords[0])^(world_coords[1]-world_coords[0]);
13 n.normalize();
14 float intensity = n*light_dir;
15 if (intensity>0) {
16 triangle(screen_coords[0], screen_coords[1], screen_coords[2], image, TGAColor(intensity*255, intensity*255, intensity*255, 255));
17 }
18}
上面代码需要注意的点:
三角形法线n
的计算
判断点积正负
intensity
小于等于0的意思是这个面(三角形)背对着光线,摄像机肯定看不到,不需要绘制。
注意到嘴巴的地方有些问题,本应在嘴唇后面的嘴巴内部区域(像口腔这样的空腔)却被画在嘴唇的上方或前面。这表明我们对不可见三角形的处理方式不够精确或不够规范。“dirty clipping”方法只适用于凸形状。对于凹形状或其他复杂的形状,该方法可能会导致错误。在下一章节中我们使用 z-buffer 解决这个瑕疵(渲染错误)。
这里给出当前步骤的代码链接🔗。
上一章的末尾我们发现嘴巴部分的渲染出现了错误。本章先介绍画家算法(Painters' Algorithm),随后引出 Z-Buffer ,插值计算出需渲染的像素的深度值。
这个算法很直接,将物体按其到观察者的距离排序,然后从远到近的顺序绘制,这样近处的物体自然会覆盖掉远处的物体。
但是仔细想就会发现一个问题,当物体相互阻挡时算法就会出错。也就是说,画家算法无法处理相互重叠的多边形。
如果画家算法行不通,应该怎么解决物体相互重叠的问题呢?我们初始化一张表,长宽与屏幕像素匹配,且每个像素大小初始化为无限远。每一个像素存储一个深度值。当要渲染一个三角形的一个像素时,先比较当前欲渲染的像素位置与表中对应的深度值,如果当前欲渲染的像素深度比较浅,说明欲渲染的像素更靠近屏幕,因此渲染。
而这张表,我们称之为:Z-Buffer。
理论上说创建的这个 Z-Buffer 是一个二维的数组,例如:
xxxxxxxxxx
101float **zbuffer = new float*[screenWidth];
2for (int i = 0; i < screenWidth; i++) {
3 zbuffer[i] = new float[screenHeight];
4}
5...
6// 释放内存
7for (int i = 0; i < screenWidth; i++) {
8 delete[] zbuffer[i];
9}
10delete[] zbuffer;
但是,我认为这太丑陋了,不符合我的审美。我的做法是将二维数组打包变成一个一维的数组:
xxxxxxxxxx
11int *zBuffer = new int[screenWidth*screenHeight];
最基本的数据结构,取用的时候只需要:
xxxxxxxxxx
31int idx = x + y*screenWidth;
2int x = idx % screenWidth;
3int y = idx / screenWidth;
初始化zBuffer可以用一行代码解决,将其全部设置为负无穷:
xxxxxxxxxx
11for (int i=screenWidth*screenHeight; i--; zBuffer[i] = -std::numeric_limits<float>::max());
要给当前的triangleRaster()
函数新增 Z-Buffer 功能。
我们给pixel
增加一个维度用于存储深度值。另外,由于深度是float类型,如果沿用之前的函数可能会出现问题,原因是之前传入的顶点都是经过取舍得到的整数且不包含深度信息。而且需要注意整数坐标下的深度值往往不等于取舍之前的深度值,这个精度的损失带来的问题是在复杂精细且深度值波动很大的位置会出现渲染错误。但是目前可以直接忽略,等到后面进行超采样、抗锯齿或者其他需要考虑像素内部细节的技术时再展开讲解。
因此,为了后期拓展的方便,我们将之前涉及pixel的Vec2i代码换为Vec3f类型,并且每一个点都增加一个维度用于存储深度值。
xxxxxxxxxx
431Vec3f barycentric(Vec3f A, Vec3f B, Vec3f C, Vec3f P) {
2 Vec3f s[2];
3 for (int i=2; i--; ) {
4 s[i][0] = C[i]-A[i];
5 s[i][1] = B[i]-A[i];
6 s[i][2] = A[i]-P[i];
7 }
8 Vec3f u = cross(s[0], s[1]);
9 if (std::abs(u[2])>1e-2)
10 return Vec3f(1.f-(u.x+u.y)/u.z, u.y/u.z, u.x/u.z);
11 return Vec3f(-1,1,1);
12}
13// 重心坐标的方法 - 光栅化三角形
14void triangleRaster(Vec3f v0, Vec3f v1, Vec3f v2, float *zBuffer, TGAImage &image, TGAColor color){
15 Vec3f* pts[] = {&v0, &v1, &v2};// Pack
16 // Find The Bounding Box
17 Vec2f boundingBoxMin( std::numeric_limits<float>::max(), std::numeric_limits<float>::max());
18 Vec2f boundingBoxMax(-std::numeric_limits<float>::max(), -std::numeric_limits<float>::max());
19 Vec2f clamp(image.get_width()-1, image.get_height()-1);
20 for (int i=0; i<3; i++) {
21 boundingBoxMin.x = std::max(0.f, std::min(boundingBoxMin.x, pts[i]->x));
22 boundingBoxMin.y = std::max(0.f, std::min(boundingBoxMin.y, pts[i]->y));
23 boundingBoxMax.x = std::min(clamp.x, std::max(boundingBoxMax.x, pts[i]->x));
24 boundingBoxMax.y = std::min(clamp.y, std::max(boundingBoxMax.y, pts[i]->y));
25 }
26
27 // For Loop To Iterate Over All Pixels Within The Bounding Box
28 Vec3f pixel;// 将深度值打包到pixel的z分量上
29 for (pixel.x = boundingBoxMin.x; pixel.x <= boundingBoxMax.x; pixel.x++) {
30 for (pixel.y = boundingBoxMin.y; pixel.y <= boundingBoxMax.y; pixel.y++) {
31 Vec3f bc = barycentric(v0, v1, v2, pixel);// Screen Space
32 if (bc.x<0 || bc.y<0 || bc.z<0 ) continue;
33 // HIGHLIGHT: Finished The Z-Buffer
34 //image.set(pixel.x, pixel.y, color);
35 pixel.z = 0;
36 pixel.z = bc.x*v0.z+bc.y+v1.z+bc.z+v2.z;// 通过重心坐标插值计算当前Shading Point的深度值
37 if(zBuffer[int(pixel.x+pixel.y*screenWidth)]<pixel.z) {
38 zBuffer[int(pixel.x + pixel.y * screenWidth)] = pixel.z;
39 image.set(pixel.x, pixel.y,color);
40 }
41 }
42 }
43}
将世界坐标转化到屏幕坐标的函数打包:
xxxxxxxxxx
31Vec3f world2screen(Vec3f v) {
2 return Vec3f(int((v.x+1.)*width/2.+.5), int((v.y+1.)*height/2.+.5), v.z);
3}
另外,对tgaimage、model和geometry做了一些修改,主要是优化了一些细节。具体项目请查看当前项目分支链接🔗。
啥是贴图呢?就是类似这种奇奇怪怪的图片。
目前我们已经完成了三角形的重心坐标插值得出了三角形内某点的深度值。接下来我们还可以用插值操作计算对应的纹理坐标。
本章基于「3.1 表面剔除」最后的项目完善,本章主要是c++ STL相关操作。
请首先下载「3.1 表面剔除」最后的项目链接🔗。
首先从硬盘中加载纹理贴图,然后传到三角形顶点处,通过对应的纹理坐标从texture获取颜色,最后插值得到各个像素的颜色。
另外,项目框架的代办清单:
增加model模块中对vt标签的解析
完善model模块中对f标签的解析,具体是获取纹理坐标索引
完善geometry模块的操作符,具体是实现Vec<Dom, f>与float相乘等操作
从硬盘中加载纹理texture,用TGAImage存储。
xxxxxxxxxx
71TGAImage texture;
2if(texture.read_tga_file("../object/african_head_diffuse.tga")){
3 std::cout << "Image successfully loaded!" << std::endl;
4 // 可以做一些图像处理
5} else {
6 std::cerr << "Error loading the image." << std::endl;
7}
在 model.h 中,在class Model上方创建一个Face结构体用于存储解析后obj中的f标签。f标签有三个值,这里只存储前两个。f标签的三个值分别是顶点索引/纹理索引/法线索引,等后面用到了法线坐标再拓展即可。
xxxxxxxxxx
51struct Face {
2 std::vector<int> vertexIndices;
3 std::vector<int> texcoordIndices;
4 ...
5};
然后将model的模版私有属性:
xxxxxxxxxx
11std::vector< std::vector<int> > faces_;
改为:
xxxxxxxxxx
11std::vector<Face> faces_;
同时也修改 model.cpp 下获取 face 的函数:
xxxxxxxxxx
31Face Model::face(int idx) {
2 return faces_[idx];
3}
实际解析时的函数:
xxxxxxxxxx
201else if (!line.compare(0, 2, "f ")) {
2// std::vector<int> f;
3// int itrash, idx;
4// iss >> trash;
5// while (iss >> idx >> trash >> itrash >> trash >> itrash) {
6// idx--; // in wavefront obj all indices start at 1, not zero
7// f.push_back(idx);
8// }
9// faces_.push_back(f);
10 Face face;
11 int itrash, idx, texIdx;
12 iss >> trash;
13 while (iss >> idx >> trash >> texIdx >> trash >> itrash) {
14 idx--; // in wavefront obj all indices start at 1, not zero
15 texIdx--; // similarly for texture indices
16 face.vertexIndices.push_back(idx);
17 face.texcoordIndices.push_back(texIdx);
18 }
19 faces_.push_back(face);
20 }
接下来解析纹理坐标索引texcoords_。
xxxxxxxxxx
111// model.h
2...
3class Model {
4private:
5 ...
6 std::vector<Vec2f> texcoords_;
7public:
8 ...
9 Vec2f& getTexCoord(int index);
10};
11...
xxxxxxxxxx
161// model.cpp
2...
3Model::Model(const char *filename) : verts_(), faces_(), texcoords_(){
4 ...
5 else if (!line.compare(0, 3, "vt ")) {
6 iss >> trash >> trash;
7 Vec2f tc;
8 for (int i = 0; i < 2; i++) iss >> tc[i];
9 texcoords_.push_back(tc);
10 }
11 ...
12}
13...
14Vec2f& Model::getTexCoord(int index) {
15 return texcoords_[index];
16}
最后就可以通过对应的索引得到纹理坐标了。
xxxxxxxxxx
11tex_coords[j] = model->getTexCoord(face.texcoordIndices[j]);
获得了纹理坐标后就可以用texture.get(x_pos, y_pos)获取图片(贴图/纹理)的对应像素。注意最后TGAColor使用的是BGRA通道,而不是RGBA通道。
xxxxxxxxxx
121TGAColor getTextureColor(TGAImage &texture, float u, float v) {
2 // 纹理坐标限制在(0, 1)
3 u = std::max(0.0f, std::min(1.0f, u));
4 v = std::max(0.0f, std::min(1.0f, v));
5 // 将u, v坐标乘以纹理的宽度和高度,以获取纹理中的像素位置
6 int x = u * texture.get_width();
7 int y = v * texture.get_height();
8 // 从纹理中获取颜色
9 TGAColor color = texture.get(x, y);
10 // tga使用的是BGRA通道
11 return TGAColor(color[2],color[1],color[0], 255);
12}
增加了四个传参,分别是三个三角形的纹理坐标与纹理。实现细节直接看代码比较直接。
xxxxxxxxxx
261// 带贴图 - 光栅化三角形
2void triangleRasterWithTexture(Vec3f v0, Vec3f v1, Vec3f v2,
3 Vec2f vt0, Vec2f vt1, Vec2f vt2,// 纹理贴图
4 float *zBuffer, TGAImage &image,
5 TGAImage &texture){
6 ...
7 // Find The Bounding Box
8 ...
9
10 // For Loop To Iterate Over All Pixels Within The Bounding Box
11 Vec3f pixel;// 将深度值打包到pixel的z分量上
12 for (pixel.x = boundingBoxMin.x; pixel.x <= boundingBoxMax.x; pixel.x++) {
13 for (pixel.y = boundingBoxMin.y; pixel.y <= boundingBoxMax.y; pixel.y++) {
14 Vec3f bc = barycentric(v0, v1, v2, pixel);// Screen Space
15 if (bc.x<0 || bc.y<0 || bc.z<0 ) continue;
16 // HIGHLIGHT: Finished The Z-Buffer
17 pixel.z = 0;
18 pixel.z = bc.x*v0.z+bc.y+v1.z+bc.z*v2.z;
19 Vec2f uv = bc.x*vt0+bc.y*vt1+bc.z*vt2;
20 if(zBuffer[int(pixel.x+pixel.y*screenWidth)]<pixel.z) {
21 zBuffer[int(pixel.x + pixel.y * screenWidth)] = pixel.z;
22 image.set(pixel.x, pixel.y,getTextureColor(texture, uv.x, 1-uv.y));
23 }
24 }
25 }
26}
在上面的代码中,你可能会发现乘号竟然报错了,这个问题在下一关马上得到解决。最终在 main() 函数中这样调用:
xxxxxxxxxx
161// main.cpp
2...
3for (int i=0; i<model->nfaces(); i++) {
4 Face face = model->face(i);
5 Vec3f screen_coords[3], world_coords[3];
6 Vec2f tex_coords[3];
7 for (int j=0; j<3; j++) {
8 world_coords[j] = model->vert(face.vertexIndices[j]);
9 screen_coords[j] = world2screen(world_coords[j]);
10 tex_coords[j] = model->getTexCoord(face.texcoordIndices[j]);
11 }
12 triangleRasterWithTexture(screen_coords[0], screen_coords[1], screen_coords[2],
13 tex_coords[0],tex_coords[1],tex_coords[2],
14 zBuffer, image, texture);
15}
16...
在写纹理坐标的时候,我们会用到一些操作比如说 Vec2i 类型与 float 浮点数相乘和相除。将下面的代码添加到 geometry.h 的中间部分:
xxxxxxxxxx
411...
2
3template <typename T> vec<3,T> cross(vec<3,T> v1, vec<3,T> v2) {
4 return vec<3,T>(v1.y*v2.z - v1.z*v2.y, v1.z*v2.x - v1.x*v2.z, v1.x*v2.y - v1.y*v2.x);
5}
6
7// -------------添加内容-------------
8template<size_t DIM, typename T> vec<DIM, T> operator*(const T& scalar, const vec<DIM, T>& v) {
9 vec<DIM, T> result;
10 for (size_t i = 0; i < DIM; i++) {
11 result[i] = scalar * v[i];
12 }
13 return result;
14}
15
16template<size_t DIM, typename T> vec<DIM, T> operator*(const vec<DIM, T>& v, const T& scalar) {
17 vec<DIM, T> result;
18 for (size_t i = 0; i < DIM; i++) {
19 result[i] = v[i] * scalar;
20 }
21 return result;
22}
23
24template<size_t DIM, typename T> vec<DIM, T> operator/(const vec<DIM, T>& v, const T& scalar) {
25 vec<DIM, T> result;
26 for (size_t i = 0; i < DIM; i++) {
27 result[i] = v[i] / scalar;
28 }
29 return result;
30}
31
32// -------------添加内容结束-------------
33
34template <size_t DIM, typename T> std::ostream& operator<<(std::ostream& out, vec<DIM,T>& v) {
35 for(unsigned int i=0; i<DIM; i++) {
36 out << v[i] << " " ;
37 }
38 return out ;
39}
40
41...
这样就完全没问题了,大功告成。当然你也可以在这个链接🔗中找到完整的代码。
上文的内容全部都是正交视角下的渲染,这显然算不上酷,因为我们仅仅是将z轴“拍扁”了。这一章节的目标是学习绘制透视视角。
https://stackoverflow.com/questions/36573283/from-perspective-picture-to-orthographic-picture
缩放可以表示为:
拉伸可以表示为:
旋转可以表示为:
为什么要引入齐次坐标呢?因为想要表示一个二维变换的平移并不能仅仅使用一个2x2的矩阵。平移并不在这个二维矩阵的线性空间中。因此,我们拓展一个维度帮助我们表示平移。
在计算机图形学中我们使用齐次坐标(Homogeneous Coord)。比如说一个二维的
这样,我们就可以通过
在常规的笛卡尔坐标中,很难从数学表示上区分一个点和一个向量,因为它们都可能使用相同的形式如 vec2(x,y)。但在齐次坐标中,通过最后一个坐标值(这里的z)可以明确区分它们。当z=0时,它是一个向量;当z≠0时,它是一个点。较为数学一点的表示方法:
上面公式中,无论
齐次坐标是一个大大的好啊,当你进行数学操作时,结果的类型(向量或点)是明确的:
向量 + 向量 = 向量:两个向量相加的结果仍然是一个向量。
向量 - 向量 = 向量:两个向量相减的结果仍然是一个向量。
点 + 向量 = 点:一个点和一个向量相加的结果是一个新的点。
点 + 点 = ??:两个点坐标的中点。
这使得数学操作更加直观和有意义。
一段来自屏幕外的声音🔊:齐次坐标最下面那行有啥用??这个问题非常关键。
家喻户晓的,
但是,这个
变换矩阵不做其他线性变换,仅仅将pq随便设为一个数:
我们发现,这个变换有点奇怪。随着(x,y)越来越大,这个“缩放因子”就会越来越小。
有没有一种可能,这个就是近大远小?
没错,这就是一种透视的现象。至此,上面齐次坐标矩阵的最后一朵乌云已经攻破。
随着最后一朵乌云散去,必然会迎来更多的乌云。新的乌云,名字叫做三维。
上文所述都是二维下的,现在进入三维的世界。三维的齐次坐标自然就是用四维的矩阵表示。
缩放:
平移:
绕x,z,y轴旋转:
透视:
为什么只有z方向上才有r?因为我们默认摄像机摆在z轴,物体随着z轴透视缩放的。
现在,将一个三维坐标通过透视缩放,得到:
上图中,横轴向左是z的正方向,纵轴向上是y的正方向。
根据相似三角形法则,y1/By=(c-z1)/c,最后得到:
因此得到透视矩阵:
大家可能发现,如果有接触过图形学的朋友们可能会对之前的学习产生怀疑。为什么这里顶点变换的透视变换矩阵和其他教材都不一样呢?比方说虎书上的透视矩阵是这样的:
fovy:垂直视场角, 通常表示为度数。
aspect : 宽高比, 即视口宽度除以视口高度。
near : 近裁剪面的距离。
far: 远裁剪面的距离。
所以我们刚才推导出来的矩阵并不是常见的透视投影矩阵,但是他确实表达了投影的思想,因此我们暂时用着。
来自屏幕外的声音🔊:停停停,理论说了这么多,能不能搞点实践的!
在上一关中,我们得到了不那么正规但是能用的透视矩阵,现在要做的就是将世界坐标的顶点转换到齐次坐标,然后乘上透视矩阵、视口矩阵。视口矩阵其实就是用一个简洁的矩阵把下面归一化设备坐标 NDC [-1,1]转换到了屏幕空间[0,width]。看下面这一段代码就是那个被ViewPort矩阵淘汰的家伙:
xxxxxxxxxx
31Vec3f world2screen(Vec3f v) {
2 return Vec3f(int((v.x+1.)*screenWidth/2.+.5), int((v.y+1.)*screenHeight/2.+.5), v.z);
3}
接下来,把顶点坐标乘上我们下面两个矩阵(顺序要注意):
xxxxxxxxxx
81//初始化透视矩阵
2Matrix Projection = Matrix::identity(4);
3//初始化视角矩阵
4Matrix ViewPort = viewport(width/2, height/2, width/2, height/2);
5//投影矩阵[3][2]=-1/c,c为相机z坐标
6Projection[3][2] = -1.f/camera.z;
7...
8screen_coords[j] = m2v(ViewPort * Projection * v2m((world_coords[j])));
一段来自屏幕外的声音🔊:等等等等,v2m和m2v是什么?viewport()具体实现方法是什么?
v2m是将向量变成矩阵(齐次坐标),m2v反之。
xxxxxxxxxx
241Vec3f m2v(Matrix m){
2 return Vec3f(m[0][0]/m[3][0], m[1][0]/m[3][0], m[2][0]/m[3][0]);
3}
4
5Matrix v2m(Vec3f v) {
6 Matrix m(4, 1);
7 m[0][0] = v.x;
8 m[1][0] = v.y;
9 m[2][0] = v.z;
10 m[3][0] = 1.f;
11 return m;
12}
13
14Matrix viewport(int x, int y, int w, int h) {
15 Matrix m = Matrix::identity(4);
16 m[0][3] = x+w/2.f;
17 m[1][3] = y+h/2.f;
18 m[2][3] = depth/2.f;
19
20 m[0][0] = w/2.f;
21 m[1][1] = h/2.f;
22 m[2][2] = depth/2.f;
23 return m;
24}
然后还需要完善geometry的模块,在geometry.h中添加如下代码:
xxxxxxxxxx
241//////////////////////////////////////////////////////////////////////////////////////////////
2
3const int DEFAULT_ALLOC=4;
4
5class Matrix {
6 std::vector<std::vector<float> > m;
7 int rows, cols;
8public:
9 Matrix(int r=DEFAULT_ALLOC, int c=DEFAULT_ALLOC);
10 inline int nrows();
11 inline int ncols();
12
13 static Matrix identity(int dimensions);
14 std::vector<float>& operator[](const int i);
15 Matrix operator*(const Matrix& a);
16 Matrix transpose();
17 Matrix inverse();
18
19 friend std::ostream& operator<<(std::ostream& s, Matrix& m);
20};
21
22/////////////////////////////////////////////////////////////////////////////////////////////
23...
24// typedef mat<4,4,float> Matrix;
然后添加文件 geometry.cpp
xxxxxxxxxx
1081//
2// Created by remoooo on 2023/9/6.
3//
4
5
6
7
8
9
10
11Matrix::Matrix(int r, int c) : m(std::vector<std::vector<float> >(r, std::vector<float>(c, 0.f))), rows(r), cols(c) { }
12
13int Matrix::nrows() {
14 return rows;
15}
16
17int Matrix::ncols() {
18 return cols;
19}
20
21Matrix Matrix::identity(int dimensions) {
22 Matrix E(dimensions, dimensions);
23 for (int i=0; i<dimensions; i++) {
24 for (int j=0; j<dimensions; j++) {
25 E[i][j] = (i==j ? 1.f : 0.f);
26 }
27 }
28 return E;
29}
30
31std::vector<float>& Matrix::operator[](const int i) {
32 assert(i>=0 && i<rows);
33 return m[i];
34}
35
36Matrix Matrix::operator*(const Matrix& a) {
37 assert(cols == a.rows);
38 Matrix result(rows, a.cols);
39 for (int i=0; i<rows; i++) {
40 for (int j=0; j<a.cols; j++) {
41 result.m[i][j] = 0.f;
42 for (int k=0; k<cols; k++) {
43 result.m[i][j] += m[i][k]*a.m[k][j];
44 }
45 }
46 }
47 return result;
48}
49
50Matrix Matrix::transpose() {
51 Matrix result(cols, rows);
52 for(int i=0; i<rows; i++)
53 for(int j=0; j<cols; j++)
54 result[j][i] = m[i][j];
55 return result;
56}
57
58Matrix Matrix::inverse() {
59 assert(rows==cols);
60 // augmenting the square matrix with the identity matrix of the same dimensions a => [ai]
61 Matrix result(rows, cols*2);
62 for(int i=0; i<rows; i++)
63 for(int j=0; j<cols; j++)
64 result[i][j] = m[i][j];
65 for(int i=0; i<rows; i++)
66 result[i][i+cols] = 1;
67 // first pass
68 for (int i=0; i<rows-1; i++) {
69 // normalize the first row
70 for(int j=result.cols-1; j>=0; j--)
71 result[i][j] /= result[i][i];
72 for (int k=i+1; k<rows; k++) {
73 float coeff = result[k][i];
74 for (int j=0; j<result.cols; j++) {
75 result[k][j] -= result[i][j]*coeff;
76 }
77 }
78 }
79 // normalize the last row
80 for(int j=result.cols-1; j>=rows-1; j--)
81 result[rows-1][j] /= result[rows-1][rows-1];
82 // second pass
83 for (int i=rows-1; i>0; i--) {
84 for (int k=i-1; k>=0; k--) {
85 float coeff = result[k][i];
86 for (int j=0; j<result.cols; j++) {
87 result[k][j] -= result[i][j]*coeff;
88 }
89 }
90 }
91 // cut the identity matrix back
92 Matrix truncate(rows, cols);
93 for(int i=0; i<rows; i++)
94 for(int j=0; j<cols; j++)
95 truncate[i][j] = result[i][j+cols];
96 return truncate;
97}
98
99std::ostream& operator<<(std::ostream& s, Matrix& m) {
100 for (int i=0; i<m.nrows(); i++) {
101 for (int j=0; j<m.ncols(); j++) {
102 s << m[i][j];
103 if (j<m.ncols()-1) s << "\t";
104 }
105 s << "\n";
106 }
107 return s;
108}
接下来,渲染器启动!
来自甲方的声音🔊:效果非常好,下次不要做了。
看得出来,画面出现了一点问题。但是值得注意的是,顶点的位置已经基本正确了。但是贴图出现了错误。
借此机会,调整一下贴图加载的逻辑。我们原先在main函数粗暴加载,现在我们将物体对应的贴图当作model对象的一个属性,自动读取。在model.h中加入字段:
xxxxxxxxxx
11TGAImage diffusemap_;
构造函数就可以根据文件名字存入对应的贴图了:
xxxxxxxxxx
11load_texture(filename, "_diffuse.tga", diffusemap_);
然后通过以下函数得到对应的uv坐标:
xxxxxxxxxx
41Vec2i Model::uv(int iface, int nvert) {
2 int idx = faces_[iface][nvert][1];
3 return Vec2i(uv_[idx].x*diffusemap_.get_width(), uv_[idx].y*diffusemap_.get_height());
4}
改动部分比较多直接阅读项目吧,项目链接🔗在这里,我们在「4.2 代码分析」中详细讨论整个项目,力求搞懂每一行代码与设计思路,尤其是C++ STL细节。下面是一个最终结果:
目前的代码链接🔗有较大的改动,但是技术原理是不变的。本章节可以选择性阅读,也可以直接跳到「5.1 移动摄像机」。
项目结构:
xxxxxxxxxx
111├── object
2│ ├── african_head.obj
3│ ├── african_head_diffuse.tga
4├── CMakeLists.txt
5├── geometry.cpp
6├── geometry.h
7├── main.cpp
8├── model.cpp
9├── model.h
10├── tgaimage.cpp
11└── tgaimage.h
model.h
xxxxxxxxxx
191class Model {
2private:
3 std::vector<Vec3f> verts_; // 模型的顶点
4 std::vector<std::vector<Vec3i> > faces_; // this Vec3i means vertex/uv/normal
5 std::vector<Vec3f> norms_; // 存储模型的法线
6 std::vector<Vec2f> uv_; // 存储模型的 UV 纹理坐标
7 TGAImage diffusemap_; // 模型的漫反射纹理图像
8 // load_texture() 在加载模型的时候会用到,用于加载纹理。
9 void load_texture(std::string filename, const char *suffix, TGAImage &img);
10public:
11 Model(const char *filename); // 构造函数,从给定文件名加载模型
12 ~Model(); // 析构函数,用于释放模型所占用的资源
13 int nverts(); // 返回模型的顶点数量
14 int nfaces(); // 返回模型的面数量
15 Vec3f vert(int i); // 返回指定索引的顶点
16 Vec2i uv(int iface, int nvert); // 返回指定面和指定顶点的 UV 坐标
17 TGAColor diffuse(Vec2i uv); // 根据给定的 UV 坐标,从纹理图中获取颜色
18 std::vector<int> face(int idx); // 返回指定索引的面信息(可能是顶点/纹理坐标/法线的索引)
19};
Model.cpp
xxxxxxxxxx
891/*
2 * 构造函数 Model::Model(const char *filename)
3 * - 构造函数使用了初始化列表来对 verts_, faces_, norms_ 和 uv_ 进行初始化。
4 *
5 */
6Model::Model(const char *filename) : verts_(), faces_(), norms_(), uv_() {
7 std::ifstream in;
8 in.open (filename, std::ifstream::in);
9 if (in.fail()) return;
10 std::string line;
11 /* 循环读取并解析每一行内容。
12 * 根据行的开头字符来决定行的类型(例如顶点、法线、纹理坐标或面)。
13 * 根据这些信息更新相应的成员变量。
14 */
15 while (!in.eof()) {
16 std::getline(in, line);
17 std::istringstream iss(line.c_str());
18 char trash;
19 if (!line.compare(0, 2, "v ")) {
20 iss >> trash;
21 Vec3f v;
22 for (int i=0;i<3;i++) iss >> v[i];
23 verts_.push_back(v);
24 } else if (!line.compare(0, 3, "vn ")) {
25 iss >> trash >> trash;
26 Vec3f n;
27 for (int i=0;i<3;i++) iss >> n[i];
28 norms_.push_back(n);
29 } else if (!line.compare(0, 3, "vt ")) {
30 iss >> trash >> trash;
31 Vec2f uv;
32 for (int i=0;i<2;i++) iss >> uv[i];
33 uv_.push_back(uv);
34 } else if (!line.compare(0, 2, "f ")) {
35 std::vector<Vec3i> f;
36 Vec3i tmp;
37 iss >> trash;
38 while (iss >> tmp[0] >> trash >> tmp[1] >> trash >> tmp[2]) {
39 for (int i=0; i<3; i++) tmp[i]--; // in wavefront obj all indices start at 1, not zero
40 f.push_back(tmp);
41 }
42 faces_.push_back(f);
43 }
44 }
45 std::cerr << "# v# " << verts_.size() << " f# " << faces_.size() << " vt# " << uv_.size() << " vn# " << norms_.size() << std::endl;
46 load_texture(filename, "_diffuse.tga", diffusemap_);// 调用 load_texture 函数加载相应的纹理文件
47}
48
49Model::~Model() {
50}
51
52// 返回模型的顶点数量
53int Model::nverts() {
54 return (int)verts_.size();
55}
56// 返回模型的面数量。
57int Model::nfaces() {
58 return (int)faces_.size();
59}
60
61// 接收一个面的索引并返回这个面的所有顶点/纹理/法线坐标
62std::vector<int> Model::face(int idx) {
63 std::vector<int> face;
64 for (int i=0; i<(int)faces_[idx].size(); i++) face.push_back(faces_[idx][i][0]);
65 return face;
66}
67// 返回指定索引的顶点。
68Vec3f Model::vert(int i) {
69 return verts_[i];
70}
71// 加载纹理。
72void Model::load_texture(std::string filename, const char *suffix, TGAImage &img) {
73 std::string texfile(filename);
74 size_t dot = texfile.find_last_of(".");
75 if (dot!=std::string::npos) {
76 texfile = texfile.substr(0,dot) + std::string(suffix);
77 std::cerr << "texture file " << texfile << " loading " << (img.read_tga_file(texfile.c_str()) ? "ok" : "failed") << std::endl;
78 img.flip_vertically();
79 }
80}
81// 返回给定 UV 坐标的漫反射颜色。
82TGAColor Model::diffuse(Vec2i uv) {
83 return diffusemap_.get(uv.x, uv.y);
84}
85// 返回指定面和顶点的 UV 坐标。
86Vec2i Model::uv(int iface, int nvert) {
87 int idx = faces_[iface][nvert][1];
88 return Vec2i(uv_[idx].x*diffusemap_.get_width(), uv_[idx].y*diffusemap_.get_height());
89}
geometry.h中,分为两个部分:模版向量类,矩阵类
xxxxxxxxxx
1011/* --向量类定义-- */
2// t -> 任意类型的数据,比如说 int float double等等
3template <class t> struct Vec2 {
4 t x, y;// 创建了两个t类型的数据成员
5 Vec2<t>() : x(t()), y(t()) {} // 使用类型t的默认构造函数来初始化x和y。
6 Vec2<t>(t _x, t _y) : x(_x), y(_y) {} // 接受两个参数,初始化x,y
7// Vec2<t>(const Vec2<t> &v) : x(t()), y(t()) { *this = v; } // 模板类的拷贝构造函数
8 Vec2<t>(const Vec2<t> &v) : x(v.x), y(v.y) {} // 我认为上面的代码不太好,改了一下
9 Vec2<t> & operator =(const Vec2<t> &v) { // 重载了等号,改变符号左边对象的数值
10 if (this != &v) {
11 x = v.x;
12 y = v.y;
13 }
14 return *this;
15 }
16 Vec2<t> operator +(const Vec2<t> &V) const { return Vec2<t>(x+V.x, y+V.y); }
17 Vec2<t> operator -(const Vec2<t> &V) const { return Vec2<t>(x-V.x, y-V.y); }
18 Vec2<t> operator *(float f) const { return Vec2<t>(x*f, y*f); }
19 // 重载[]符号,这里官方写错了,if(x<=0)是错误的。
20 t& operator[](const int i) { if (i<=0) return x; else return y; }
21 // 重载输出流
22 template <class > friend std::ostream& operator<<(std::ostream& s, Vec2<t>& v);
23};
24
25template <class t> struct Vec3 {
26 t x, y, z;
27 Vec3<t>() : x(t()), y(t()), z(t()) { }
28 Vec3<t>(t _x, t _y, t _z) : x(_x), y(_y), z(_z) {}
29 template <class u> Vec3<t>(const Vec3<u> &v);
30 Vec3<t>(const Vec3<t> &v) : x(t()), y(t()), z(t()) { *this = v; }
31 Vec3<t> & operator =(const Vec3<t> &v) {
32 if (this != &v) {
33 x = v.x;
34 y = v.y;
35 z = v.z;
36 }
37 return *this;
38 }
39 Vec3<t> operator ^(const Vec3<t> &v) const { return Vec3<t>(y*v.z-z*v.y, z*v.x-x*v.z, x*v.y-y*v.x); }
40 Vec3<t> operator +(const Vec3<t> &v) const { return Vec3<t>(x+v.x, y+v.y, z+v.z); }
41 Vec3<t> operator -(const Vec3<t> &v) const { return Vec3<t>(x-v.x, y-v.y, z-v.z); }
42 Vec3<t> operator *(float f) const { return Vec3<t>(x*f, y*f, z*f); }
43 t operator *(const Vec3<t> &v) const { return x*v.x + y*v.y + z*v.z; }
44 float norm () const { return std::sqrt(x*x+y*y+z*z); }
45 Vec3<t> & normalize(t l=1) { *this = (*this)*(l/norm()); return *this; }
46 t& operator[](const int i) { if (i<=0) return x; else if (i==1) return y; else return z; }
47 template <class > friend std::ostream& operator<<(std::ostream& s, Vec3<t>& v);
48};
49
50// 为常用类型提供了类型别名
51typedef Vec2<float> Vec2f;
52typedef Vec2<int> Vec2i;
53typedef Vec3<float> Vec3f;
54typedef Vec3<int> Vec3i;
55
56/* 特化构造函数 */
57// Vec3<int> <- Vec3<float>。浮点数值 -> 整数值
58template <> template <> Vec3<int>::Vec3(const Vec3<float> &v);
59// Vec3<float> <- Vec3<int>。整数值 -> 浮点数值
60template <> template <> Vec3<float>::Vec3(const Vec3<int> &v);
61
62// 使得Vec2对象可以被输出到输出流
63template <class t> std::ostream& operator<<(std::ostream& s, Vec2<t>& v) {
64 s << "(" << v.x << ", " << v.y << ")\n";
65 return s;
66}
67// 使得Vec3对象可以被输出到输出流
68template <class t> std::ostream& operator<<(std::ostream& s, Vec3<t>& v) {
69 s << "(" << v.x << ", " << v.y << ", " << v.z << ")\n";
70 return s;
71}
72
73//////////////////////////////////////////////////////////////////////////////////////////////
74/*
75 * Matrix类代表了一个浮点数矩阵,其中的数据存储在std::vector。
76 *
77 */
78
79const int DEFAULT_ALLOC=4;
80
81class Matrix {
82 // 这是一个二维vector,它存储了矩阵的所有元素。
83 std::vector<std::vector<float> > m;
84 int rows, cols;
85public:
86 // 构造函数 可以接受行数和列数作为参数。如果没有手动提供参数,则会使用DEFAULT_ALLOC(默认值为4)来初始化。
87 Matrix(int r=DEFAULT_ALLOC, int c=DEFAULT_ALLOC);
88 // 这个inline语法比较适合用于短小且经常被调用的函数。比如 inline int add(int a, int b){return a+b;}
89 inline int nrows();
90 inline int ncols();
91
92 static Matrix identity(int dimensions); // 返回给定维度的单位矩阵
93 std::vector<float>& operator[](const int i); // 这是一个重载的[]操作符,使得你可以使用像mat[i]这样的语法来直接访问矩阵的行。
94 Matrix operator*(const Matrix& a); // 重载*操作符,以支持矩阵乘法。
95 Matrix transpose(); // 返回矩阵的转置
96 Matrix inverse(); // 返回矩阵的逆
97
98 friend std::ostream& operator<<(std::ostream& s, Matrix& m); // 支持流传输
99};
100
101/////////////////////////////////////////////////////////////////////////////////////////////
geometry.cpp 大同小异,不做笔记了
注意到代码中用到了remplate <> template <>
进行模版特化,这种用法我比较少见到,也看不懂。
假设现在有一个模版类Vec2
,有一个函数模版printType
:
xxxxxxxxxx
81template <typename T>
2class TemplateClass {
3public:
4 template <typename U>
5 void memberFunction() {
6 std::cout << "General memberFunction\n";
7 }
8};
现在,要为Vec2<float>
特化printType
方法,让他在int
的时候打印int
的专属信息。
xxxxxxxxxx
141template <>
2class Vec2<float> {
3public:
4 float x, y;
5 Vec2(float x = 0, float y = 0) : x(x), y(y) {}
6
7 template <typename U>
8 void printType();
9
10 template <>
11 void printType<int>() {
12 std::cout << "Specialized Vec2<float> with int" << std::endl;
13 }
14};
测试:
xxxxxxxxxx
81int main() {
2 Vec2<double> vecDouble;
3 vecDouble.printType<int>(); // 输出: Vec2<double> with type int
4
5 Vec2<float> vecFloat;
6 vecFloat.printType<int>(); // 输出: Specialized Vec2<float> with int
7 vecFloat.printType<double>(); // 输出: Vec2<float> with type double
8}
xxxxxxxxxx
1391
2
3
4
5
6
7
8const int width = 800;
9const int height = 800;
10const int depth = 255;
11
12Model *model = NULL;
13int *zBuffer = NULL;
14Vec3f light_dir(0,0,-1);
15Vec3f camera(0,0,3);
16
17// 4d-->3d
18Vec3f m2v(Matrix m) {
19 return Vec3f(m[0][0]/m[3][0], m[1][0]/m[3][0], m[2][0]/m[3][0]);
20}
21
22// 3d-->4d
23Matrix v2m(Vec3f v) {
24 Matrix m(4, 1);
25 m[0][0] = v.x;
26 m[1][0] = v.y;
27 m[2][0] = v.z;
28 m[3][0] = 1.f;
29 return m;
30}
31
32// 视角矩阵
33Matrix viewport(int x, int y, int w, int h) {
34 Matrix m = Matrix::identity(4);
35 m[0][3] = x+w/2.f;
36 m[1][3] = y+h/2.f;
37 m[2][3] = depth/2.f;
38
39 m[0][0] = w/2.f;
40 m[1][1] = h/2.f;
41 m[2][2] = depth/2.f;
42 return m;
43}
44
45Vec3f barycentric(Vec3i *pts, Vec3i P) {
46 Vec3f u =
47 Vec3f(pts[2].x-pts[0].x, pts[1].x-pts[0].x, pts[0].x-P.x)^
48 Vec3f(pts[2].y-pts[0].y, pts[1].y-pts[0].y, pts[0].y-P.y)
49 ;
50 if (std::abs(u.z)<1) return Vec3f(-1,1,1);
51 return Vec3f(1.f-(u.x+u.y)/u.z, u.y/u.z, u.x/u.z);
52}
53void triangle(Vec3i t0, Vec3i t1, Vec3i t2,
54 Vec2i uv0, Vec2i uv1, Vec2i uv2,
55 TGAImage &image, float intensity, int *zbuffer) {
56 // Compute bounding box of the triangle
57 Vec3i bboxmin(image.get_width() - 1, image.get_height() - 1, 0);
58 Vec3i bboxmax(0, 0, 0);
59 Vec3i clamp(image.get_width() - 1, image.get_height() - 1, 0);
60 bboxmin.x = std::max(0, std::min(bboxmin.x, std::min(t0.x, std::min(t1.x, t2.x))));
61 bboxmin.y = std::max(0, std::min(bboxmin.y, std::min(t0.y, std::min(t1.y, t2.y))));
62 bboxmax.x = std::min(clamp.x, std::max(t0.x, std::max(t1.x, t2.x)));
63 bboxmax.y = std::min(clamp.y, std::max(t0.y, std::max(t1.y, t2.y)));
64 Vec3i pts[3] = {t0, t1, t2};
65 Vec3i P;
66 for (P.x = bboxmin.x; P.x <= bboxmax.x; P.x++) {
67 for (P.y = bboxmin.y; P.y <= bboxmax.y; P.y++) {
68 Vec3f bc_screen = barycentric(pts, P);
69 if (bc_screen.x < 0 || bc_screen.y < 0 || bc_screen.z < 0) continue; // P is outside of triangle
70 P.z = bc_screen.x * t0.z + bc_screen.y * t1.z + bc_screen.z * t2.z;
71 Vec2i uvP;
72 uvP.x = bc_screen.x * uv0.x + bc_screen.y * uv1.x + bc_screen.z * uv2.x;
73 uvP.y = bc_screen.x * uv0.y + bc_screen.y * uv1.y + bc_screen.z * uv2.y;
74 int idx = P.x + P.y * image.get_width();
75 if (zbuffer[idx] < P.z) {
76 zbuffer[idx] = P.z;
77 TGAColor color = model->diffuse(uvP);
78 image.set(P.x, P.y,
79 TGAColor(color.r * intensity, color.g * intensity, color.b * intensity));
80 }
81 }
82 }
83}
84
85int main(int argc, char** argv) {
86 model = new Model("../object/african_head.obj");
87 zBuffer = new int[width*height];
88
89 for (int i=width*height; i--; zBuffer[i] = -std::numeric_limits<float>::max());
90
91 { // draw the model
92 Matrix Projection = Matrix::identity(4);
93 Matrix ViewPort = viewport(width/8, height/8, width*3/4, height*3/4);
94 Projection[3][2] = -1.f/camera.z;
95
96 TGAImage image(width, height, TGAImage::RGB);
97 for (int i=0; i<model->nfaces(); i++) {
98 std::vector<int> face = model->face(i);
99 Vec3i screen_coords[3];
100 Vec3f world_coords[3];
101 for (int j=0; j<3; j++) {
102 Vec3f v = model->vert(face[j]);
103 // 视角矩阵*投影矩阵*坐标
104 screen_coords[j] = m2v(ViewPort*Projection*v2m(v));
105 world_coords[j] = v;
106 }
107 // 计算法向量并且标准化
108 Vec3f n = (world_coords[2]-world_coords[0])^(world_coords[1]-world_coords[0]).normalize();
109 // 计算光照
110 float intensity = n*light_dir;
111 if (intensity>0) {
112 Vec2i uv[3];
113 for (int k=0; k<3; k++) {
114 uv[k] = model->uv(i, k);
115 }
116 // 绘制三角形
117 triangle(screen_coords[0], screen_coords[1], screen_coords[2],
118 uv[0], uv[1], uv[2], image, intensity, zBuffer);
119 }
120 }
121
122 image.flip_vertically();
123 image.write_tga_file("output.tga");
124 }
125
126 { // 输出zbuffer
127 TGAImage zbimage(width, height, TGAImage::GRAYSCALE);
128 for (int i=0; i<width; i++) {
129 for (int j=0; j<height; j++) {
130 zbimage.set(i, j, TGAColor(zBuffer[i+j*width], 1));
131 }
132 }
133 zbimage.flip_vertically();
134 zbimage.write_tga_file("zbuffer.tga");
135 }
136 delete model;
137 delete [] zBuffer;
138 return 0;
139}
能看到这个地方的朋友简直太牛逼了,这一章就稍微有点简单了。
在初中我们就学过,物体的运动是相对的。
摄像机向左移动,其实就是物体向右移动。我们可以让摄像机保持不动,让物体运动(平移)。
旋转其实也是一样的,假设摄像机绕着垂直的y轴顺时针旋转了45度,相当于物体逆时针旋转了45度。
图形学中我们知道,一个变换就代表了一个矩阵。并且在线性代数中我们知道,一个矩阵A乘上另一个矩阵B之后,想要变回原来的矩阵A,只需要再乘上矩阵B的逆。也就是说,要反变换,只需要乘上对应变换的逆即可。
我们想,需要定义什么量才可以确保摄像机在同一时间拍摄的画面是一模一样的?(这里只考虑摄像机的位置、方向,摄像机镜头、焦距、ISO等信息默认相等。)
很显然可以想到的是摄像机的位置,我们将其定义为cameraPos
。
并且拍摄的方向也需要定义,我们就叫他gazeDirection
。
大家应该都玩过Rainbow Six围攻或者是PUBG吧,他们都有一个共同的特点:可以歪头射击。即使是在同一个摄像机位置,同一个注视方向,也不能确保拍摄画面的唯一性。因此,我们定义一个「向上向量」,即viewUp
。
拓展一下,「向上向量」的很多好处:
当使用欧拉角定义摄像机旋转时,万向节锁是一个常见问题,它会导致摄像机失去一个自由度的旋转。使用向上向量和观察向量可以防止这个问题,因为它们定义了一个明确的摄像机方向和旋转。
有了向上向量,我们可以方便地使用叉积计算摄像机的右向量,这对于某些计算和操作非常有用。
ok,完事之后,我们开始写代码。
在上一关我们得到了一个相机的基本定义:位置、看向的方向以及向上向量。
但是「看向的方向」这个量不太直接,我们想要更直接的也就是摄像机想要看向哪里,于是相机的代码中,定义相机的三要素就是:位置(cameraPos
),看向的位置(lookAt
)以及向上向量(viewUp
)。
阅读下面代码之前需要知道我们注视的方向是 -z
轴。
xxxxxxxxxx
181Matrix lookAt(Vec3f cameraPos, Vec3f lookAt, Vec3f viewUp){
2 //计算出z,根据z和up算出x,再算出y
3 Vec3f gazeDirection = (cameraPos - lookAt).normalize(); // -z 轴
4 Vec3f horizon = (viewUp ^ gazeDirection).normalize(); // 与相机水平的轴
5 Vec3f vertical = (gazeDirection ^ horizon).normalize(); //
6
7 Matrix rotation = Matrix::identity(4);
8 Matrix translation = Matrix::identity(4);
9 for (int i = 0; i < 3; i++) {
10 rotation[i][3] = - lookAt[i];
11 rotation[0][i] = horizon[i];
12 rotation[1][i] = vertical[i];
13 rotation[2][i] = gazeDirection[i];
14 }
15 //这样乘法的效果是先平移物体,再旋转
16 Matrix res = rotation*translation;
17 return res;
18}
首先继续优化 geometry 类,相当于重写一个自己的向量类。接着将当前main函数的一系列关于光栅化三角形的代码整合到新的类中。
由于本章的每一关内容都很多,尤其是重写模版向量类,因此我将内容较多的关卡提高了标题层次。
不懂c++模版类的读者可以阅读 附件1 ,不看也行,但是确保你对C++的模版特性有所了解。
本文我一步一步带大家实现以下功能:
向量 (vec)
有通用的模板定义和2D、3D的特化版本。
通用构造函数,将每个元素初始化为T类型的默认值。
2D和3D向量的构造函数可以接受特定的初始化值。
提供了索引运算符来获取或设置特定元素的值。
3D向量有norm
函数,返回向量的模长。
3D向量有normalize
函数,可以规范化向量。
重载了输出运算符,方便向量的打印。
运算符重载:向量的点乘、加法、减法、标量乘法和标量除法。
embed
和proj
函数用于扩展或投影向量到不同维度。
3D向量之间的外积运算。
矩阵 (mat)
可以获取或设置矩阵的行。
获取矩阵的某一列。
设置矩阵的某一列。
获取单位矩阵。
计算矩阵的行列式。
获取矩阵的子矩阵。
计算矩阵的余子式。
计算伴随矩阵。
计算逆矩阵的转置。
运算符重载:矩阵和向量的乘法、两个矩阵的乘法、矩阵的标量除法。
重载了输出运算符,方便矩阵的打印。
其他功能
使用typedef定义了常用的类型,如Vec2f
, Vec3i
, Matrix
等。
在geometry.cpp中,提供了从3D和2D的float向量到int向量的转换,以及相反的转换。
这一关我们构建Vec2i和Vec2f类,以及实现他们的加、减、点积和叉积操作。
我这里直接创建了一个新的cpp项目,名为MyMathLib。在项目中,创建 geometry.h
头文件和 geometry.cpp
源代码文件。提醒一下,其实在写类模版的时候尽量都把内容写在头文件里即可,这里只是暂时分开写,我们马上就会发现这种写法的维护难度很大。
在头文件中定义 Vec2 模版类,让他既支持整形,也支持浮点数。
xxxxxxxxxx
281// .h file
2
3
4
5// geometry.h
6
7
8
9
10template <typename T>
11struct Vec2 {
12 T x, y;
13
14 Vec2();
15 Vec2(T x, T y);
16
17 Vec2<T> operator+(const Vec2<T>& v) const;
18 Vec2<T> operator-(const Vec2<T>& v) const;
19 T dot(const Vec2<T>& v) const;
20 T cross(const Vec2<T>& v) const;
21};
22
23typedef Vec2<float> Vec2f;
24typedef Vec2<int> Vec2i;
25
26
27
28//MYMATHLIB_GEOMETRY_H
源代码文件实现构造函数、加法、减法、点积和叉积,然后在最后实现外部模板实例化。
注意:一般情况下,我们都直接把所有的实现(即函数体)都放在头文件中,这里只是稍微拓展一下可以使用外部模板实例化将类的模版的实现放在.cpp中。
首先,我们需要理解C++中的模板是什么。模板不是实际的函数或类,而是编译器使用的蓝图,用于生成函数或类的特定版本。这就是为什么我们通常会看到模板的定义直接在头文件中:当模板在某个源文件中使用时,编译器需要看到完整的模板定义,以便为特定的类型生成正确的代码。
为什么要实现外部模板实例化?模板的定义通常直接出现在头文件中。但有时,为了组织或其他原因,会把模板类的定义从其声明中分离出来(就像常规的非模板类那样),我目前也是这样做的。但这样做引发了一个问题,当链接器尝试链接对象文件时,如果它没有为特定的模板类型实例找到定义,就会出错。这是因为编译器只为那些它确实看到的模板类型生成代码。
对于模板类,如果模板类的所有成员函数都在类声明中定义(即在头文件中定义),那么当模板类用于特定类型时,编译器可以立即为该类型生成模板类的实例。但是,如果模板类的某些成员函数在类声明之外定义(例如,在.cpp
文件中),那么你可能需要使用外部模板实例化来确保为所需的类型生成正确的模板实例。
xxxxxxxxxx
371// geometry.cpp
2
3
4// 构造函数
5template <typename T>
6Vec2<T>::Vec2() : x(0), y(0) {}
7
8template <typename T>
9Vec2<T>::Vec2(T x, T y) : x(x), y(y) {}
10
11// 加法
12template <typename T>
13Vec2<T> Vec2<T>::operator+(const Vec2<T>& v) const {
14 return Vec2<T>(x + v.x, y + v.y);
15}
16
17// 减法
18template <typename T>
19Vec2<T> Vec2<T>::operator-(const Vec2<T>& v) const {
20 return Vec2<T>(x - v.x, y - v.y);
21}
22
23// 点积
24template <typename T>
25T Vec2<T>::dot(const Vec2<T>& v) const {
26 return x * v.x + y * v.y;
27}
28
29// 叉积
30template <typename T>
31T Vec2<T>::cross(const Vec2<T>& v) const {
32 return x * v.y - y * v.x;
33}
34
35template class Vec2<int>;
36template class Vec2<float>;
37template class Vec2<double>;
调用测试一下。
xxxxxxxxxx
331// main.cpp
2
3
4
5int main() {
6 // 使用浮点数向量
7 Vec2f v1(1.0f, 2.0f);
8 Vec2f v2(2.0f, 3.0f);
9
10 Vec2f sum = v1 + v2;
11 std::cout << "v1 + v2 = (" << sum.x << ", " << sum.y << ")\n";
12
13 float dotProduct = v1.dot(v2);
14 std::cout << "v1 . v2 = " << dotProduct << "\n";
15
16 float crossProduct = v1.cross(v2);
17 std::cout << "v1 x v2 = " << crossProduct << "\n";
18
19 // 使用整数向量
20 Vec2i v3(1, 2);
21 Vec2i v4(2, 3);
22
23 Vec2i sumInt = v3 + v4;
24 std::cout << "v3 + v4 = (" << sumInt.x << ", " << sumInt.y << ")\n";
25
26 int dotProductInt = v3.dot(v4);
27 std::cout << "v3 . v4 = " << dotProductInt << "\n";
28
29 int crossProductInt = v3.cross(v4);
30 std::cout << "v3 x v4 = " << crossProductInt << "\n";
31
32 return 0;
33}
结果:
v1 + v2 = (3, 5) v1 . v2 = 8 v1 x v2 = -1 v3 + v4 = (3, 5) v3 . v4 = 8 v3 x v4 = -1
Vec3其实和Vec2基本一致,只需修改一下计算代码即可,这里就不一一展示了。大部分就是将Vec2改成Vec3,计算时增加一个维度的考虑,比方说叉积。
xxxxxxxxxx
81template <typename T>
2Vec3<T> Vec3<T>::cross(const Vec3<T> &v) const {
3 return Vec3<T>(
4 y * v.z - z * v.y,
5 z * v.x - x * v.z,
6 x * v.y - y * v.x
7 );
8}
如果我还想添加Vec4,岂不是又要写一大堆,不简洁!对于多种不同大小的向量进行明确实例化是非常繁琐的。
这里我是用的是 ...
折叠表达式(C++17)递归构造。目前头文件大致结构是这样的:
xxxxxxxxxx
141template <typename T, int N>
2struct Vec {
3 T values[N];
4
5 // 构造函数
6 Vec() = default; // 默认构造函数
7 template<typename... Args> Vec(Args... args);
8
9 // ... 操作声明(例如加减点积等) ...
10};
11
12// ... 实现 ...
13
14// 为 Vec2、Vec3、Vec4 等提供类型别名
这里说一下构造函数,如果是隐式构造的,那么默认会使用Vec()。为了代码健壮性,其实可以在带可变长参数的构造函数前加 explicit
关键词。
xxxxxxxxxx
11template<typename... Args> explicit Vec(Args... args);
读者可能感觉到了,我在这里直接将 .cpp 的操作挪过来头文件里边来实现了,这是因为如果这个时候要分离写的话,代码冗余量会很大。因此我们全部写在头文件里面,省事优雅。下面是当前完整的 geometry.h 代码。
xxxxxxxxxx
1121
2
3
4// geometry.h
5
6
7
8
9template <typename T, int N>
10struct Vec {
11 T values[N];
12
13 // 构造函数
14 Vec() = default; // 默认构造函数
15 template<typename... Args> explicit Vec(Args... args);
16
17 void print() const;
18 T& operator[](int index);
19 const T& operator[](int index) const;
20
21 Vec<T, N> operator+(const Vec<T, N>& other) const;
22 Vec<T, N> operator-(const Vec<T, N>& other) const;
23 T dot(const Vec<T, N>& other) const;
24
25 // 叉积仅对3D向量有效
26 template<int M = N>
27 typename std::enable_if<M == 3, Vec<T, 3>>::type cross(const Vec<T, 3>& other) const;
28};
29
30template <typename T, int N>
31template<typename... Args>
32Vec<T, N>::Vec(Args... args) : values{args...} {
33 static_assert(sizeof...(args) == N, "Wrong number of arguments");
34}
35
36// 打印Vec
37template <typename T, int N>
38void Vec<T, N>::print() const {
39 std::cout << "(";
40 for(int i = 0; i < N; i++) {
41 std::cout << values[i] << (i < N - 1 ? ", " : ")\n");
42 }
43}
44
45// 非常量的Vec访问,可以称为左值
46template <typename T, int N>
47T& Vec<T, N>::operator[](int index) {
48 return values[index];
49}
50
51// 常量Vec访问
52template <typename T, int N>
53const T& Vec<T, N>::operator[](int index) const {
54 return values[index];
55}
56
57// 实现加法运算
58template <typename T, int N>
59Vec<T, N> Vec<T, N>::operator+(const Vec<T, N>& other) const {
60 Vec<T, N> result;
61 for(int i = 0; i < N; i++) {
62 result[i] = values[i] + other[i];
63 }
64 return result;
65}
66
67// 实现减法运算
68template <typename T, int N>
69Vec<T, N> Vec<T, N>::operator-(const Vec<T, N>& other) const {
70 Vec<T, N> result;
71 for(int i = 0; i < N; i++) {
72 result[i] = values[i] - other[i];
73 }
74 return result;
75}
76
77// 实现点积运算
78template <typename T, int N>
79T Vec<T, N>::dot(const Vec<T, N>& other) const {
80 T sum = 0;
81 for(int i = 0; i < N; i++) {
82 sum += values[i] * other[i];
83 }
84 return sum;
85}
86
87// 实现了Vec3的叉积运算
88template <typename T, int N>
89template<int M>
90typename std::enable_if<M == 3, Vec<T, 3>>::type Vec<T, N>::cross(const Vec<T, 3>& other) const {
91 return Vec<T, 3>(
92 values[1] * other[2] - values[2] * other[1],
93 values[2] * other[0] - values[0] * other[2],
94 values[0] * other[1] - values[1] * other[0]
95 );
96}
97
98// 为 Vec2、Vec3、Vec4 等提供类型别名
99using Vec2i = Vec<int, 2>;
100using Vec3i = Vec<int, 3>;
101using Vec4i = Vec<int, 4>;
102
103using Vec2f = Vec<float, 2>;
104using Vec3f = Vec<float, 3>;
105using Vec4f = Vec<float, 4>;
106
107using Vec2d = Vec<double, 2>;
108using Vec3d = Vec<double, 3>;
109using Vec4d = Vec<double, 4>;
110
111
112//MYMATHLIB_GEOMETRY_H
测试:
xxxxxxxxxx
161int main() {
2 // 使用整数向量测试
3 Vec3i v3(1, 2, 3);
4 Vec3i v4(2, 3, 4);
5
6 Vec3i sumInt = v3 + v4;
7 sumInt.print();
8
9 int dotProductInt = v3.dot(v4);
10 std::cout << "v3 \\dot v4 = " << dotProductInt << "\n";
11
12 Vec3i crossProduct = v3.cross(v4);
13 std::cout << "v3 x v4 = "; crossProduct.print();
14
15 return 0;
16}
(3, 5, 7) v3 \dot v4 = 20 v3 x v4 = (-1, 2, -1)
先总结一下目前完成的内容:
通过两个模版参数 T 和 N,定义了一个向量。
有默认构造函数与可变参数的构造函数。
功能有:打印向量、通过索引访问向量元素、向量加法、向量减法、向量点积和三维向量叉积。
提供了大量常用的向量别名。
目前来说已经基本可以用了,但是还有很多需要完善,我们继续看需要完成的内容!
增加标量与向量的乘/除法
计算向量的模
向量单位化
重载输出运算符
另外,可以在声明运算操作中使用 [[nodiscard]]
标签,提醒编译器注意检查返回值是否得到使用,然后使用该库的用户就可以在编辑器中得到提醒,例如下面。
xxxxxxxxxx
11[[nodiscard]] Vec<T, N> normalize() const;// 将向量单位化
当前功能的声明:
xxxxxxxxxx
71[[nodiscard]] Vec<T, N> operator*(T scalar) const;// 向量与常数乘法
2[[nodiscard]] Vec<T, N> operator/(T scalar) const;// 向量与常数除法
3[[nodiscard]] double magnitude() const;// 向量模长
4[[nodiscard]] Vec<T, N> normalize() const;// 向量单位化
5// 流传输功能
6template <typename U, int M>
7friend std::ostream& operator<<(std::ostream& os, const Vec<U, N>& vec);
对应的实现:
xxxxxxxxxx
601...
2// 流传输功能
3template <typename U, int M>
4std::ostream& operator<<(std::ostream& os, const Vec<U, M>& vec) {
5 os << "(";
6 for(int i = 0; i < M; i++) {
7 os << vec[i];
8 if (i < M - 1) {
9 os << ", ";
10 }
11 }
12 os << ")";
13 return os;
14}
15
16// 实现标量与向量的乘
17template <typename T, int N>
18Vec<T, N> Vec<T, N>::operator*(T scalar) const {
19 Vec<T, N> result;
20 for(int i = 0; i < N; i++) {
21 result[i] = values[i] * scalar;
22 }
23 return result;
24}
25
26// 实现标量与向量的除法
27template <typename T, int N>
28Vec<T, N> Vec<T, N>::operator/(T scalar) const {
29 Vec<T, N> result;
30 for(int i = 0; i < N; i++) {
31 result[i] = values[i] / scalar;
32 }
33 return result;
34}
35
36// 实现求模长
37template <typename T, int N>
38double Vec<T, N>::magnitude() const {
39 T sum = 0;
40 for(int i = 0; i < N; i++) {
41 sum += values[i] * values[i];
42 }
43 return std::sqrt(sum);
44}
45
46// 单位化向量
47template <typename T, int N>
48Vec<T, N> Vec<T, N>::normalize() const {
49 T mag = magnitude();
50 if(mag == 0) {
51 // 不能单位化一个零向量,此处可以抛出异常或返回原向量
52 // 为简化,此处返回原向量
53 return *this;
54 }
55 Vec<T, N> result;
56 for(int i = 0; i < N; i++) {
57 result[i] = values[i] / mag;
58 }
59 return result;
60}
可以在这里链接🔗中获取当前的向量库代码。
有了上面构建向量模版的经验,我们可以照葫芦画瓢写出一个矩阵模版。矩阵的构造、访问元素、加法、乘法等操作都一一实现即可。
这里读者应该给自己几个小时,独立写出代码。
当我作为库的使用者创建一个矩阵时,我会想这样创建:
xxxxxxxxxx
41Matrix<int, 2, 2> mat = {
2 {1, 2},
3 {3, 4}
4};
构造函数可以使用两层嵌套的 std::initializer_list
。其中,std::initializer_list
是一个C++11中引入的模板类,它表示编译时确定的值列表。先遍历行,再遍历列。
xxxxxxxxxx
181Matrix(const std::initializer_list<std::initializer_list<T>>& list) {
2 int r = 0;
3 for (const auto& rowList : list) {
4 int c = 0;
5 for (const auto& val : rowList) {
6 values[r][c] = val;
7 c++;
8 }
9 r++;
10 }
11}
12// BTW:奇技淫巧压缩代码
13Matrix(const std::initializer_list< std::initializer_list<T> >& list) {
14 T* target = &values[0][0];
15 for (const auto& rowList : list) {
16 target = std::copy(rowList.begin(), rowList.end(), target);
17 }
18}
这里重点说一下矩阵的乘法。
xxxxxxxxxx
221template <typename T, int Rows, int Cols>
2struct Matrix {
3 T values[Rows][Cols];
4
5 ...
6
7 // 矩阵与矩阵的乘法
8 template<int NewCols>
9 Matrix<T, Rows, NewCols> operator*(const Matrix<T, Cols, NewCols>& other) const {
10 Matrix<T, Rows, NewCols> result;
11 for (int i = 0; i < Rows; i++) {
12 for (int j = 0; j < NewCols; j++) {
13 T sum = 0;
14 for (int k = 0; k < Cols; k++) {
15 sum += values[i][k] * other(k, j);
16 }
17 result(i, j) = sum;
18 }
19 }
20 return result;
21 }
22};
一个 Rows x Cols
的矩阵A和一个 Cols x NewCols
的矩阵B相乘,那么结果将是一个 Rows x NewCols
的矩阵。举个例子:
xxxxxxxxxx
31Matrix<int, 3, 2> matA = { /* 初始化 */ };
2Matrix<int, 2, 4> matB = { /* 初始化 */ };
3Matrix<int, 3, 4> result = matA * matB; // 这里的乘法使用的就是上述函数,NewCols 在这里为4
下面是其他的一些操作。
xxxxxxxxxx
421// 打印矩阵函数
2void print() const {
3 for (int i = 0; i < Rows; i++) {
4 for (int j = 0; j < Cols; j++) {
5 std::cout << values[i][j];
6 if (j < Cols - 1) {
7 std::cout << "\t"; // 在列之间添加制表符,以美化输出
8 }
9 }
10 std::cout << std::endl; // 打印换行,进入下一行
11 }
12}
13
14// 访问矩阵元素
15T& operator()(int row, int col) {
16 return values[row][col];
17}
18const T& operator()(int row, int col) const {
19 return values[row][col];
20}
21
22// 矩阵加法
23Matrix operator+(const Matrix& other) const {
24 Matrix result;
25 for (int i = 0; i < Rows; i++) {
26 for (int j = 0; j < Cols; j++) {
27 result(i, j) = values[i][j] + other(i, j);
28 }
29 }
30 return result;
31}
32
33// 矩阵与标量的乘法
34Matrix operator*(T scalar) const {
35 Matrix result;
36 for (int i = 0; i < Rows; i++) {
37 for (int j = 0; j < Cols; j++) {
38 result(i, j) = values[i][j] * scalar;
39 }
40 }
41 return result;
42}
总结一下目前的工作:
构建了矩阵类的模版结构
提供默认和可传参的构造函数
打印矩阵函数
访问矩阵操作符()
矩阵加法+
矩阵与标量的乘法*
矩阵与矩阵的乘法*
添加了完整的注释供大家参考,可以在这个链接🔗中找到当前的数学库。
添加单位矩阵identity
xxxxxxxxxx
131// 添加单位矩阵功能
2static Matrix<T, Rows, Cols> identity();
3...
4// 实现
5template <typename T, int Rows, int Cols>
6Matrix<T, Rows, Cols> Matrix<T, Rows, Cols>::identity() {
7 static_assert(Rows == Cols, "Identity matrix can only be created for square matrices.");
8 Matrix<T, Rows, Cols> mat = {}; // Initialize all elements to zero
9 for (int i = 0; i < Rows; ++i) {
10 mat(i, i) = 1;
11 }
12 return mat;
13}
插入列
xxxxxxxxxx
91void set_col(size_t idx, const Vec<T, Rows>& v) const;
2...
3template<typename T, int Rows, int Cols>
4void Matrix<T, Rows, Cols>::set_col(size_t idx, const Vec<T, Rows>& v) const{
5 assert(idx < Cols);// 编译器先判断需要设置的行是否合理
6 for (int i = 0; i < Rows; i++) {
7 values[i][idx] = v[i];
8 }
9}
插入列
xxxxxxxxxx
101void set_row(size_t idx, const Vec<T, Rows>& v);
2...
3// 添加插入行向量到矩阵的功能
4template<typename T, int Rows, int Cols>
5void Matrix<T, Rows, Cols>::set_row(size_t idx, const Vec<T, Rows>& v){
6 assert(idx < Cols);// 编译器先判断需要设置的行是否合理
7 for (size_t j = 0; j < Rows; j++) {
8 values[idx][j] = v[j];
9 }
10}
测试:
xxxxxxxxxx
61Matrix4f m = Matrix4f::identity();
2const Vec4f vec4F(2,2,2,2);
3m.set_col(1,vec4F);
4m.set_row(3, vec4F);
5m.print();
6return 0;
输出:
1 2 0 0 0 2 0 0 0 2 1 0 2 2 2 2
重载 [][]
现在我如果要取用 Matrix 的 mat 对象的数值,我们是这样的
xxxxxxxxxx
11mat.values[][]
但是我想直接
xxxxxxxxxx
11mat[][]
此时我们需要使用代理对象的设计模式:
xxxxxxxxxx
221template <typename T, int Rows, int Cols>
2struct Matrix {
3 T values[Rows][Cols];
4
5 // ... 其他成员函数和数据 ...
6
7 // 代理对象
8 struct RowProxy {
9 T* row;
10 T& operator[](int col) {
11 return row[col];
12 }
13 };
14
15 RowProxy operator[](int row) {
16 return RowProxy{values[row]};
17 }
18
19 RowProxy operator[](int row) const {
20 return RowProxy{values[row]};
21 }
22};
浏览我们目前的main函数,既有矩阵变换函数,也有视角变换函数,还有三角形重心坐标光栅化三角形的函数,更有视角变换矩阵等,真的有些乱。我们将这些方法打包到一个新的类里面,这个类称为:our_gl。
最终main函数如下:
xxxxxxxxxx
631
2
3
4
5
6
7
8
9Model *model = NULL;
10const int width = 800;
11const int height = 800;
12
13Vec3f light_dir(1,1,1);
14Vec3f eye(0,-1,3);
15Vec3f center(0,0,0);
16Vec3f up(0,1,0);
17
18struct GouraudShader : public IShader {
19 Vec3f varying_intensity; // written by vertex shader, read by fragment shader
20
21 virtual Vec4f vertex(int iface, int nthvert) {
22 Vec4f gl_Vertex = embed<4>(model->vert(iface, nthvert)); // read the vertex from .obj file
23 gl_Vertex = Viewport*Projection*ModelView*gl_Vertex; // transform it to screen coordinates
24 varying_intensity[nthvert] = std::max(0.f, model->normal(iface, nthvert)*light_dir); // get diffuse lighting intensity
25 return gl_Vertex;
26 }
27
28 virtual bool fragment(Vec3f bar, TGAColor &color) {
29 float intensity = varying_intensity*bar; // interpolate intensity for the current pixel
30 color = TGAColor(255, 255, 255)*intensity; // well duh
31 return false; // no, we do not discard this pixel
32 }
33};
34
35int main(int argc, char** argv) {
36
37 model = new Model("../object/african_head/african_head.obj");
38
39 lookat(eye, center, up);
40 viewport(width/8, height/8, width*3/4, height*3/4);
41 projection(-1.f/(eye-center).norm());
42 light_dir.normalize();
43
44 TGAImage image (width, height, TGAImage::RGB);
45 TGAImage zbuffer(width, height, TGAImage::GRAYSCALE);
46
47 GouraudShader shader;
48 for (int i=0; i<model->nfaces(); i++) {
49 Vec4f screen_coords[3];
50 for (int j=0; j<3; j++) {
51 screen_coords[j] = shader.vertex(i, j);
52 }
53 triangle(screen_coords, shader, image, zbuffer);
54 }
55
56 image. flip_vertically(); // to place the origin in the bottom left corner of the image
57 zbuffer.flip_vertically();
58 image. write_tga_file("output.tga");
59 zbuffer.write_tga_file("zbuffer.tga");
60
61 delete model;
62 return 0;
63}
其中,顶点着色和片元着色是可编程的。可以参考当前的项目代码链接🔗。
🎬 开场白
接下来开始解读这个main函数。首先,代码导入了一堆头文件,为了让我们的程序能够处理3D模型、向量计算和图像生成。
xxxxxxxxxx
61
2
3
4
5
6
🌍 全局变量来啦
接着,全局变量闪亮登场!有了宽度、高度、光照方向、观察点等等,这简直是个小型的“宇宙”。
xxxxxxxxxx
71Model *model = NULL;
2const int width = 800;
3const int height = 800;
4Vec3f light_dir(1,1,1);
5Vec3f eye(0,-1,3);
6Vec3f center(0,0,0);
7Vec3f up(0,1,0);
🎭 GouraudShader 诞生
然后,我们有一个名为 GouraudShader
的类,这家伙是渲染的明星!它的职责是处理顶点和片段(像素)。
xxxxxxxxxx
31struct GouraudShader : public IShader {
2 // ...
3}
🎸 主舞台 main 函数
最后,main()
函数,这是我们的主舞台。所有的预设、加载、渲染都在这里完成。
xxxxxxxxxx
31int main(int argc, char** argv) {
2 //...
3}
🎥 Action!动作!
加载模型: new Model("../object/african_head/african_head.obj");
这里,我们召唤了一个来自非洲的神秘头颅!
视角设置: 使用 lookat
, viewport
, 和 projection
函数,我们调整了观察点、视口和投影。这些都是电影导演级别的设置!
初始化画布: TGAImage image (width, height, TGAImage::RGB);
这里我们预备了一张画布,准备大展身手!
渲染循环: 嗯,这里有一个循环,负责画出那个非洲头颅。用了 GouraudShader
,它会逐个面片地渲染模型。
图片翻转和保存: 最后,不要忘了翻转图像,并保存为 .tga
格式。现在你就可以拿这个图跟朋友炫耀了!
这个角色是渲染的灵魂,让我们细致入微地来看一下它的表演。
🕺GouraudShader的组成
变量:varying_intensity
这个变量是一个3D向量(Vec3f类型),用来存储每个顶点的光照强度。这里的“varying”意味着这个变量会在顶点着色器和片段着色器之间“变化”(实际上是插值)。
方法:vertex
这个函数负责处理每个顶点。它做了以下几件事:
获取模型顶点: Vec4f gl_Vertex = embed<4>(model->vert(iface, nthvert));
- 从3D模型中提取出一个顶点。
坐标转换: gl_Vertex = Viewport*Projection*ModelView*gl_Vertex;
- 使用各种矩阵变换将这个顶点从模型空间转换到屏幕空间。
光照计算: varying_intensity[nthvert] = std::max(0.f, model->normal(iface, nthvert)*light_dir);
- 根据光照方向计算这个顶点的光照强度。
方法:fragment
这个函数负责处理每个像素(片段):
插值计算: float intensity = varying_intensity*bar;
- 这里使用bar来进行插值,得到当前像素的光照强度。
颜色设置: color = TGAColor(255, 255, 255)*intensity;
- 根据光照强度设置像素的颜色。
像素保留: return false;
- 表示这个像素不会被丢弃,将出现在最终的图像中。
🎭角色分析
这个GouraudShader
类扮演了一个全能艺人的角色:
化妆师:通过vertex
函数,对每个顶点进行"化妆",也就是坐标变换和光照计算。
导演:通过fragment
函数,决定哪些像素应该用什么颜色来"演绎",以及哪些像素应该被"剪辑"掉(这里没有剪辑,所有像素都保留)。
灯光师:通过计算光照强度,控制场景的"明暗",使得模型更加逼真。
OK,我们重新化妆一下,修改片元着色器(fragment)。
xxxxxxxxxx
91float intensity = varying_intensity*bar;// 通过插值计算得到当前像素的光照强度。
2if (intensity>.85) intensity = 1;
3else if (intensity>.60) intensity = .80;
4else if (intensity>.45) intensity = .60;
5else if (intensity>.30) intensity = .45;
6else if (intensity>.15) intensity = .30;
7else intensity = 0;
8color = TGAColor(155, 155, 0)*intensity;
9return false;
根据光照强度对像素进行了“分级”。每个级别都有一个特定的光照强度,就像你在照片编辑软件里手动设置不同级别的亮度。
这里将颜色设置为一个黄色(155, 155, 0),然后用上面的 intensity
来调节这个颜色。结果是一种不同深浅的黄色。
着色器代码就像艺术家的调色板,你永远不知道接下来会画出什么样的图像!以下是一些有趣的着色器代码片段给大伙参考参考:
xxxxxxxxxx
71float t = varying_intensity*bar;
2color = TGAColor(
3 128 + 127 * std::sin(t),
4 128 + 127 * std::sin(t + 2.f/3.f * 3.14159f),
5 128 + 127 * std::sin(t + 4.f/3.f * 3.14159f)
6);
7return false;
xxxxxxxxxx
101float t = varying_intensity*bar;
2float noise = rand() % 100 / 100.0;
3if (noise > 0.9) {
4 color = TGAColor(255, 255, 255);
5} else if (noise < 0.1) {
6 color = TGAColor(0, 0, 0);
7} else {
8 color = TGAColor(155, 155, 155) * t;
9}
10return false;
xxxxxxxxxx
71float intensity = varying_intensity * bar;
2color = TGAColor(
3 255 * intensity,
4 (int)(160 * std::sqrt(intensity)),
5 0
6);
7return false;
xxxxxxxxxx
71float noise = rand() % 100 / 100.0;
2if (noise > 0.98) {
3 color = TGAColor(255, 255, 255);
4} else {
5 color = TGAColor(0, 0, 0);
6}
7return false;
在上一节我们把玩了GouraudShader
,现在我介绍一个更强的选手,Shader
,他不仅能够处理光照,还支持纹理贴图!
xxxxxxxxxx
181struct Shader : public IShader {
2 Vec3f varying_intensity; // written by vertex shader, read by fragment shader
3 mat<2,3,float> varying_uv; // same as above
4
5 Vec4f vertex(int iface, int nthvert) override {
6 varying_uv.set_col(nthvert, model->uv(iface, nthvert));
7 varying_intensity[nthvert] = std::max(0.f, model->normal(iface, nthvert)*light_dir); // get diffuse lighting intensity
8 Vec4f gl_Vertex = embed<4>(model->vert(iface, nthvert)); // read the vertex from .obj file
9 return Viewport*Projection*ModelView*gl_Vertex; // transform it to screen coordinates
10 }
11
12 bool fragment(Vec3f bar, TGAColor &color) override {
13 float intensity = varying_intensity*bar; // interpolate intensity for the current pixel
14 Vec2f uv = varying_uv*bar; // interpolate uv for the current pixel
15 color = model->diffuse(uv)*intensity; // well duh
16 return false; // no, we do not discard this pixel
17 }
18};
varying_intensity:这个角色没变,依然是顶点着色器计算出的光照强度。
varying_uv:新角色登场!这家伙用来存储每个顶点的纹理坐标(u,v)。
这个函数的流程与之前的大同小异,但多了一个关键步骤:
xxxxxxxxxx
11varying_uv.set_col(nthvert, model->uv(iface, nthvert));
这里,它从模型中获取每个顶点的纹理坐标(UV坐标)并存储下来。这些坐标将被用于后面的片段着色器中进行纹理贴图。
在这个函数里,除了处理光照之外,我们还添加了纹理:
xxxxxxxxxx
21float intensity = varying_intensity*bar; // 同样是计算当前像素的光照强度
2Vec2f uv = varying_uv*bar; // 新功能:计算当前像素的纹理坐标
这里,bar
用来进行插值,得到当前像素点的光照强度和纹理坐标。
xxxxxxxxxx
11color = model->diffuse(uv)*intensity; // 结合纹理和光照来计算最终颜色
接着,最精彩的部分来了。我们将之前计算的 intensity
和从 uv
贴图中获取的颜色相乘,得到的就是一个非常真实的颜色了。
纹理贴图:它能给3D模型穿上“衣服”,使模型看起来更逼真。
漫反射光照:它依然做好了基础的光照工作,让模型不会看起来像个平面。
代码复用:由于这个类继承了IShader
,你可以很容易地在不同的渲染任务中复用这段代码。
法线贴图是一种用于3D计算机图形的技术,用于使3D模型的表面看起来更加详细,而无需使用更多的多边形。
简而言之,你使用一张纹理来存储有关如何微妙调整模型表面上的法线向量的信息,从而改变光与模型表面的相互作用方式。
用于法线贴图的纹理通常看起来像一种奇怪、抽象的蓝色混合物。每个像素的RGB值代表一个3D向量的X、Y、Z分量,这将用于在光照计算期间调整3D模型的表面法线。这与仅依赖模型几何形状计算得出的法线(每个顶点的法线)有所不同。
全局坐标系:在这里,法线是在全局(世界坐标)系统中表示的。
Darboux(切线空间)坐标系:在这里,法线是相对于对象本身的表面表示的。Z向量垂直于物体的表面,而X和Y与物体的表面相切。
通常,Darboux坐标系中的纹理看起来更加“有机”或“弯曲”,因为它是相对于物体表面的。全局坐标系中的纹理可能看起来更“统一”或“笔直”。因此,Darboux坐标系(切线空间)通常被认为更好,原因是它是对象相对的,使其在复杂的3D场景中具有更高的灵活性和通用性。
xxxxxxxxxx
311struct Shader : public IShader {
2 mat<2,3,float> varying_uv; // same as above
3 mat<4,4,float> uniform_M; // Projection*ModelView
4 mat<4,4,float> uniform_MIT; // (Projection*ModelView).invert_transpose()
5
6 virtual Vec4f vertex(int iface, int nthvert) {
7 varying_uv.set_col(nthvert, model->uv(iface, nthvert));
8 Vec4f gl_Vertex = embed<4>(model->vert(iface, nthvert)); // read the vertex from .obj file
9 return Viewport*Projection*ModelView*gl_Vertex; // transform it to screen coordinates
10 }
11
12 virtual bool fragment(Vec3f bar, TGAColor &color) {
13 Vec2f uv = varying_uv*bar; // interpolate uv for the current pixel
14 Vec3f n = proj<3>(uniform_MIT*embed<4>(model->normal(uv))).normalize();
15 Vec3f l = proj<3>(uniform_M *embed<4>(light_dir )).normalize();
16 float intensity = std::max(0.f, n*l);
17 color = model->diffuse(uv)*intensity; // well duh
18 return false; // no, we do not discard this pixel
19 }
20};
21[...]
22 Shader shader;
23 shader.uniform_M = Projection*ModelView;
24 shader.uniform_MIT = (Projection*ModelView).invert_transpose();
25 for (int i=0; i<model->nfaces(); i++) {
26 Vec4f screen_coords[3];
27 for (int j=0; j<3; j++) {
28 screen_coords[j] = shader.vertex(i, j);
29 }
30 triangle(screen_coords, shader, image, zbuffer);
31 }
首先,“Uniform”是GLSL(图形库着色器语言)中的一个保留关键字。这个关键字让你能够将常量(不会在渲染过程中改变的值)传递到着色器中。这里我们的渲染器也保留GLSL的名字。
就像给了演员一个剧本,告诉他们:"别乱改,按这个演!"
在上面这段代码中,光照强度的计算与之前基本相同,但有一个例外:它不是从每个顶点插值得到法线向量,而是从法线贴图纹理中获取这些信息。
换句话说,以前是依赖演员的自然演技(顶点法线),现在我们有了特效化妆师(法线贴图纹理)来让演员更出彩!
简而言之,上面这段代码就是将业余戏剧社升级到好莱坞级别的制作!
Phong模型包含了三项漫反射 (Diffuse Reflection)、镜面反射 (Specular Reflection)和环境反射 (Ambient Reflection)。
xxxxxxxxxx
251struct Blinn_Phong_Shader : public IShader {
2 mat<2,3,float> varying_uv; // same as above
3 mat<4,4,float> uniform_M; // Projection*ModelView
4 mat<4,4,float> uniform_MIT; // (Projection*ModelView).invert_transpose()
5
6 Vec4f vertex(int iface, int nthvert) override {
7 varying_uv.set_col(nthvert, model->uv(iface, nthvert));
8 Vec4f gl_Vertex = embed<4>(model->vert(iface, nthvert)); // read the vertex from .obj file
9 return Viewport*Projection*ModelView*gl_Vertex; // transform it to screen coordinates
10 }
11 bool fragment(Vec3f bar, TGAColor &color) override {
12 Vec2f uv = varying_uv*bar;
13 Vec3f n = proj<3>(uniform_MIT*embed<4>(model->normal(uv))).normalize(); // normal
14 Vec3f l = proj<3>(uniform_M *embed<4>(light_dir )).normalize(); // light direction
15 Vec3f v = Vec3f(0, 0, -1); // simplified view direction
16 Vec3f h = (l + v).normalize(); // halfway vector
17
18 float spec = pow(std::max(0.f, n*h), model->specular(uv));
19 float diff = std::max(0.f, n*l);
20 TGAColor c = model->diffuse(uv);
21 color = c;
22 for (int i=0; i<3; i++) color[i] = std::min<float>(5 + c[i]*(diff + .6*spec), 255);
23 return false;
24 }
25};
接下来,我们将会讨论阴影。
需要注意的是,这里我们谈论的是硬阴影,软阴影的实现又是另外一回事了。
上面两张图片就是本章要实现的内容。读者可能会想,右边的图片拍摄角度是不是有问题。实际上,右边这张图的拍摄位置是光源所在的位置。至于为什么,我们就在本章详细探讨。你可能会看到上图有一些瑕疵,这正是 Z-fighting 现象。
回到我们上一章完成的进度。根据我们的常识,在光线照射不到的地方(图中高亮人物脖子的一侧),应该与能照射到的地方有比较明显的光照分界。目前我们的渲染器输出的效果是左图,而正常来说应该像右边的图片那样。
为了解决这个问题,就要搬出图形学大名鼎鼎的 two-pass 方法(two-pass rendering)了。这个方法基本思想是先从光源处渲染一副有深度信息的图片,这张照片记录了从光源视角看到的深度信息。接下来再从主相机视角渲染图像,通过上一 Pass 的深度信息判断当前的渲染像素点时候直接被光照射。
xxxxxxxxxx
171{ // rendering the shadow buffer
2 TGAImage depth(width, height, TGAImage::RGB);
3 lookat(light_dir, center, up);
4 viewport(width/8, height/8, width*3/4, height*3/4);
5 projection(0);
6
7 DepthShader depthshader;
8 Vec4f screen_coords[3];
9 for (int i=0; i<model->nfaces(); i++) {
10 for (int j=0; j<3; j++) {
11 screen_coords[j] = depthshader.vertex(i, j);
12 }
13 triangle(screen_coords, depthshader, depth, shadowbuffer);
14 }
15 depth.flip_vertically(); // to place the origin in the bottom left corner of the image
16 depth.write_tga_file("depth.tga");
17}
xxxxxxxxxx
171{ // rendering the frame buffer
2 TGAImage frame(width, height, TGAImage::RGB);
3 lookat(eye, center, up);
4 viewport(width/8, height/8, width*3/4, height*3/4);
5 projection(-1.f/(eye-center).norm());
6
7 Shader shader(ModelView, (Projection*ModelView).invert_transpose(), M*(Viewport*Projection*ModelView).invert());
8 Vec4f screen_coords[3];
9 for (int i=0; i<model->nfaces(); i++) {
10 for (int j=0; j<3; j++) {
11 screen_coords[j] = shader.vertex(i, j);
12 }
13 triangle(screen_coords, shader, frame, zbuffer);
14 }
15 frame.flip_vertically(); // to place the origin in the bottom left corner of the image
16 frame.write_tga_file("framebuffer.tga");
17}
效果非常好~该有的阴影都有了。但是我们注意这只怪物的手,阴影非常奇怪。
奇怪的手臂阴影,这种现象我们称为阴影痤疮(Shadow Acne)。当渲染的物体与其阴影深度映射几乎重合时,可能会出现阴影斑点或噪声。
怎么解决呢?可以考虑提高“阈值”,让物体没那么容易被相邻的部位遮挡住自己。具体到写代码上,就是稍微减小对应点的深度值。一点点小小的魔法,就可以解决这个烦人的问题了。
xxxxxxxxxx
11float shadow = .3+.7*(shadowbuffer[idx]<sb_p[2]+43.34); // magic coeff to avoid z-fighting
项目的代码可以还是继续提供给读者们解读,链接🔗。
由于我比较懒,不想写太详细解读了,读者自己应该可以读懂。
上一讲我们实现了 Phong 光照模型,他的组成有三项分别是环境光、高光以及漫反射。还讲了一种渲染策略,Two-Pass渲染。这里,我们介绍一种新的全局光照模拟技术,环境光遮蔽(Ambient Occlusion, AO)。
但是,Phong模型只考虑了物体与特定光源之间的直接互动。在物体的小凹陷或接近的物体之间的接触区域,经常会出现微小的阴影。这些阴影往往与任何特定的光源无关,而是由于环境光被周围的几何体部分遮挡所造成的。Phong模型无法捕获这种效果,而AO可以。
巧合的是,AO并不直接依赖于场景中的光源位置或属性。这使得它可以与任何光照模型(如Phong模型)结合使用,并为渲染效果增添额外的真实感。
读者读到这里可能会有很多疑惑,对这些名词概念的层级把握不清楚,这里给读者梳理一下。
光照模型
Phong模型
环境光
漫反射光
镜面反射光
Blinn-Phong模型
Lambert模型
Cook-Torrance模型
Oren-Nayar模型
全局光照模拟技术
环境光遮蔽 (AO)
光线追踪 (Ray Tracing)
光子映射 (Photon Mapping)
辐射度缓存 (Radiance Caching)
Final Gathering
渲染策略
Two-Pass渲染
Two-Pass阴影映射
多Pass渲染
延迟渲染 (Deferred Rendering)
前向渲染 (Forward Rendering)
后处理效果
色调映射 (Tone Mapping)
抗锯齿技术 (如 MSAA, FXAA, TAA)
深度模糊 (Depth of Field)
动态模糊 (Motion Blur)
纹理技术
传统纹理映射
法线贴图 (Normal Mapping)
抛物线映射 (Parallax Mapping)
物理基础渲染 (Physically-Based Rendering, PBR) 的材质纹理(如 Albedo, Roughness, Metallic)
环境光遮蔽的基本思想是评估一个给定的表面点在多大程度上被其周围的几何体遮挡。一个被其他物体严重遮挡的点会接收到更少的环境光,因此看起来会更暗。
当你在场景中使用Phong模型和环境光遮蔽时,通常的方法是先计算Phong模型的环境反射组成部分,然后使用环境光遮蔽来调整这个值。具体来说,你会将环境光遮蔽值乘以Phong模型的环境光分量,从而在需要的地方减少环境光。
计算方式有很多,最简单的是屏幕空间技术(如SSAO,Screen Space Ambient Occlusion)。但是在介绍这个方法之前,我们不妨先自行思考一下我们如何实现。
想象一下你正在拍摄一个物体,而这个物体上方有一个半透明的伞,伞的下半部分可以发出均匀的光。现在,为了知道物体的哪些部分更容易被这个光照亮,你决定在伞的内侧随机选择一些点,然后看看从这些点发出的光线能不能照到物体。
它采用一种“暴力”的方法:随机选择很多点,并从每一个点观察物体。
为了记录物体上哪些部分被光照到了,我们用一个图片来记录。每一次从伞的一个点看物体,都会产生一个新的图片。
最后,我们把所有的图片混合在一起,得到一个平均的图片。这个图片会告诉我们,物体的哪些部分通常更容易被光照到。
但是,这种方法也有缺点。比如,如果物体的两个手臂在最终的图片中使用了相同的位置,那么这两个手臂上的光就会被计算两次,这会导致最终的效果不准确。
全局照明非常昂贵,需要为很多点计算可见性。为了找到一个在计算时间和渲染质量之间的平衡,我们尝试使用SSAO。
在这里我们将SSAO用作一个单独的效果,只计算环境遮挡而不计算其他光照。
ZShader
这个着色器主要用于渲染z-buffer,只关心深度,不关心颜色。
xxxxxxxxxx
141struct ZShader : public IShader {
2 mat<4,3,float> varying_tri;
3
4 Vec4f vertex(int iface, int nthvert) override {
5 Vec4f gl_Vertex = Projection*ModelView*embed<4>(model->vert(iface, nthvert));
6 varying_tri.set_col(nthvert, gl_Vertex);
7 return gl_Vertex;
8 }
9
10 bool fragment(Vec3f gl_FragCoord, Vec3f bar, TGAColor &color) override {
11 color = TGAColor(0, 0, 0);
12 return false;
13 }
14};
Max_elevation_angle
估算一个像素点与其周围环境的最大仰角,这是评估遮挡程度的关键函数。
xxxxxxxxxx
121float max_elevation_angle(float *zbuffer, Vec2f p, Vec2f dir) {
2 float maxangle = 0;
3 for (float t=0.; t<1000.; t+=1.) {
4 Vec2f cur = p + dir*t;
5 if (cur.x>=width || cur.y>=height || cur.x<0 || cur.y<0) return maxangle;
6 float distance = (p-cur).norm();
7 if (distance < 1.f) continue;
8 float elevation = zbuffer[int(cur.x)+int(cur.y)*width]-zbuffer[int(p.x)+int(p.y)*width];
9 maxangle = std::max(maxangle, atanf(elevation/distance));
10 }
11 return maxangle;
12}
环境光遮蔽的计算
对于每个像素,使用8个方向的射线来评估其环境遮挡程度。
xxxxxxxxxx
121for (int x=0; x<width; x++) {
2 for (int y=0; y<height; y++) {
3 if (zbuffer[x+y*width] < -1e5) continue;
4 float total = 0;
5 for (float a=0; a<M_PI*2-1e-4; a += M_PI/4) {
6 total += M_PI/2 - max_elevation_angle(zbuffer, Vec2f(x, y), Vec2f(cos(a), sin(a)));
7 }
8 total /= (M_PI/2)*8;
9 total = pow(total, 100.f);
10 frame.set(x, y, TGAColor(total*255, total*255, total*255));
11 }
12}
项目完整代码,链接🔗。
第一关:为什么需要模版类?
第二关:「函数模版」
第三关:「类模版」
第四关:「多模板参数」与「非类型参数」
第五关:「模板特化」
第六关:「类型推断」
1. auto & decltype 2. 模板中的基本类型推断3. 自动构造模版类型4. 尾返回类型
第七关:「变量模板」
第八关:「模板类型别名」
第九关:模板的SFINAE原则
第十关:模板与友元
第十一关:折叠表达式
第十二关:模板概念 - C++20
第十三关: std::enable_if
和 SFINAE
第十四关:类模板偏特化
第十五关:constexpr
和模板
第十六关:模板中的嵌套类型
第十七关:模板参数包与展开
第十八关:Lambda 表达式与模板
第十九关:模板递归
第二十关:带有模板的继承
在没有模板之前,如果你想为不同的数据类型编写相同的功能,你可能需要为每种数据类型写一个函数或类。这会导致大量的重复代码。
用专业的话来说就是,函数模板和类模板在 C++ 中是用来支持泛型编程的工具。泛型编程是一种编写与类型无关的代码的方法。这就意味着,通过使用模板,你可以创建一个能够适应任何数据类型的函数或类,而不需要为每种数据类型都重新编写代码。
例如一个函数,它的任务是交换两个整数的值。后来,你又想交换两个浮点数。没有模板,你可能需要为每种数据类型编写单独的函数。
解决上面提到的问题,非常简单。
xxxxxxxxxx
131// 模版函数
2template <typename T>
3void swap(T &a, T &b) {
4 T temp = a;
5 a = b;
6 b = temp;
7}
8// 调用方法
9int x = 5, y = 10;
10swap(x, y);
11
12double m = 5.5, n = 10.5;
13swap(m, n);
template <typename T>
声明了一个模板函数。此处的 T
可以被认为是一个占位符,它在编译时会被实际的数据类型替换。
类模版跟函数模版差不多。下面的例子是一个用于存储任意类型的数组的类。
xxxxxxxxxx
201// 模版类
2template <typename T>
3class Array {
4private:
5 T *data;
6 int size;
7public:
8 Array(int s) : size(s) {
9 data = new T[size];
10 }
11 ~Array() {
12 delete[] data;
13 }
14 T& operator[](int index) { // 实现索引获取元素
15 return data[index];
16 }
17};
18// 如何调用?
19Array<int> intArray(10);
20Array<double> doubleArray(10);
可以为一个模板定义多个参数。同时,参数可以是上面所说的 typename T
非类型参数,也可以是类型参数,像下面代码中的 int SIZE
。
xxxxxxxxxx
121// 多模板参数、非类型参数
2template <typename T, int SIZE>
3class FixedArray {
4private:
5 T data[SIZE];
6public:
7 T& operator[](int index) {
8 return data[index];
9 }
10}
11// 使用方式
12FixedArray<int, 10> intArray;
有时候,希望某个模板对某个特定类型有一个不同的实现。这时你可以使用模板特化。假如现在有下面的模版。
xxxxxxxxxx
71template <typename T>
2class Printer {
3public:
4 void print(T value) {
5 std::cout << "General print: " << value << std::endl;
6 }
7};
但我希望对于 int
类型有一个特殊的输出。
xxxxxxxxxx
71template <>
2class Printer<int> {
3public:
4 void print(int value) {
5 std::cout << "Special print for int: " << value << std::endl;
6 }
7};
在 C++11 中引入了很多特性,其中一个与类型推断相关的特性是“auto”关键字。除了刚才说的“auto”,C++11还引入了“decltype”关键词,可以判断一个表达式的类型。
xxxxxxxxxx
51auto x = 42; // x 的类型被推断为 int
2auto y = 3.14; // y 的类型被推断为 double
3
4int num = 5;
5decltype(num) y = 10; // y 的类型被推断为 int
此外,函数模板的类型推断在 C++ 中已经存在了一段时间,但 C++11 增强了这一特性。函数模板可以自动推断类型参数。
xxxxxxxxxx
81template <typename T>
2void show(T value) {
3 std::cout << value << std::endl;
4}
5
6// 调用
7show(5); // 5
8show(3.14); // 3.14
在 C++17 之后,类型推断就更加强大了。在 C++17 之前,类模板的类型参数不能自动推断。但是从 C++17 开始,我们可以通过模板参数的自动类型推断来构造类模板的对象。
xxxxxxxxxx
191template <typename T>
2class MyClass {
3 T data;
4public:
5 MyClass(T d) : data(d) {}
6 void display() {
7 std::cout << data << std::endl;
8 }
9};
10
11int main() {
12 // C++17 之前的方式
13 MyClass<int> obj1(10);
14 obj1.display();
15
16 // C++17 之后的方式
17 MyClass obj2(10); // 自动推断为 MyClass<int>
18 obj2.display();
19}
C++11 引入了尾返回类型,使得函数的返回类型可以基于其参数进行推断,这对于模板特别有用。下面代码的 ->
用于指定函数的尾返回类型。此时,auto
告诉编译器函数返回类型将由其后的表达式来决定,也就是刚刚说的 ->
。
xxxxxxxxxx
91template <typename T1, typename T2>
2auto add(T1 x, T2 y) -> decltype(x + y) {
3 return x + y;
4}
5
6int main() {
7 auto result = add(5, 3.14); // 结果的类型推断为 double
8 std::cout << result << std::endl;
9}
C++14 引入了变量模板,它允许你为模板定义静态数据成员。它与函数和类的模板类似,但是用于变量。
我们定义了一个名为 pi
的变量模板,它为每种类型 T
提供了 π 的近似值。你可以像使用其他模板那样使用变量模板,但需要指定模板参数来获取相应的变量实例。
xxxxxxxxxx
71template <typename T>
2constexpr T pi = T(3.1415926535897932385);
3
4int main() {
5 std::cout << pi<int> << std::endl; // 输出 3
6 std::cout << pi<double> << std::endl; // 输出 3.14159...
7}
一般这个「变量模版」非常适用于那些需要为不同类型提供不同值或配置的情况。同时使用的时候注意以下事项:
变量模板通常与 constexpr
一起使用,以确保它们在编译时是常数。
变量模板的实例化方式与函数或类模板相似。当你第一次为特定的类型使用变量模板时,编译器将为该类型创建一个实例。
「模板类型别名」为已存在的模板类型定义了一个新的、更简短的名称。
在 C++11 之前,如果你想为复杂的模板类型创建别名,这往往是非常麻烦的。C++11 引入了 using
关键字来创建模板类型别名,这提供了一个更清晰、更简洁的方式来定义这些别名。
这里以 第三关 的例子说明创建别名的最简单实践。
xxxxxxxxxx
21template <typename T>
2using MyArray = Array<T>;
这里再举一个简单、常用的例子为常见的向量类型提供别名。
xxxxxxxxxx
61using Vec3f = Vec3<float>;
2using Vec3d = Vec3<double>;
3using Vec4f = Vec4<float>;
4using Vec4d = Vec4<double>;
5
6Vec3f position;
值得注意的是,你也可以用old school的方法,即typedef。上下两段代码是完全一致的。
xxxxxxxxxx
41typedef Vec2<float> Vec2f;
2typedef Vec2<int> Vec2i;
3typedef Vec3<float> Vec3f;
4typedef Vec3<int> Vec3i;
他们的区别在于,typedef
使用旧的 C/C++ 语法,而using
是 C++11 引入的新语法,用于定义类型别名。对于简单的类型别名,这两种方法之间的差异可能不明显。但是,当涉及到更复杂的类型,如函数指针或模板类型,using
的语法往往更为简洁和直观。
这里拓展一下,
using
和typedef
两者一个主要的区别是,using
可以为模板提供别名。xxxxxxxxxx
21template <typename T>
2using Vec2Ptr = Vec2<T>*;
SFINAE 原则是 C++ 模板中的一个特性。SFINAE是“Substitution Failure Is Not An Error”(替换失败不是错误)的缩写。当试图用给定的模板参数替换模板时,如果发生错误,则该特殊化不被考虑。
想象一下你正在为一个魔法展示准备一套卡片。每张卡片上都有一个指令,例如“变成兔子”或“飞起来”。但有一张卡片的指令是“让猪飞起来”。显然,这是一个不可能的任务。
在通常情况下,魔术师会看到这张卡片并说:“这个指令有问题,展示失败了!”。但在 SFINAE 的世界里,魔术师会说:“好吧,这张卡片不工作,让我试试下一张”。
换句话说,SFINAE 就像是编译器的一个内置魔术师。当你尝试用一个不合适的类型进行模板替换时,而不是直接报错,编译器会悄悄地“忽略”那个模板,并尝试其他的选项。
直到没有选项合适(No matching)或者很多合适选项(Ambiguous),编译器就会报出错误。
一个简单的场景:我们希望写一个函数 printValue
,该函数可以打印整数或字符串。但是,如果我们尝试使用其他类型,这个函数就不应该存在。
xxxxxxxxxx
241
2
3
4// 1. 对于整数类型
5template <typename T>
6typename std::enable_if<std::is_integral<T>::value>::type
7printValue(const T& val) {
8 std::cout << "Integer: " << val << std::endl;
9}
10
11// 2. 对于字符串类型
12template <typename T>
13typename std::enable_if<std::is_same<T, std::string>::value>::type
14printValue(const T& val) {
15 std::cout << "String: " << val << std::endl;
16}
17
18int main() {
19 printValue(42); // 输出: Integer: 42
20 printValue(std::string("Hello")); // 输出: String: Hello
21
22 // printValue(3.14); // 这一行会引起编译错误,因为没有适合double类型的printValue版本
23 return 0;
24}
这一长串代码确实有点丑陋了,我们将代码拆开详细看看。
xxxxxxxxxx
61// 节选自上面的代码
2template <typename T>
3typename std::enable_if<std::is_integral<T>::value>::type
4printValue(const T& val) {
5 std::cout << "Integer: " << val << std::endl;
6}
模板声明:
xxxxxxxxxx
11template <typename T>
声明了一个模板函数,其中 T
是一个待定的类型。你可以为 T
提供任何类型,比如 int
、double
、std::string
等,但是函数的实际行为取决于你提供的类型。
返回类型:
xxxxxxxxxx
11typename std::enable_if<std::is_integral<T>::value>::type
这段代码使用了两个主要的模板工具:std::enable_if
和 std::is_integral
。
std::is_integral<T>::value
是一个类型特性,检查 T
是否是整数类型。如果是,它返回 true
;否则返回 false
。
std::enable_if
是一个模板,它有一个嵌套的 type
成员,但这个成员只在给定的布尔表达式为 true
时存在。在这里,它检查前面的 std::is_integral<T>::value
是否为 true
。
结合起来,这意味着:
如果 T
是整数类型,函数的返回类型将是 void
(因为 std::enable_if
的默认类型是 void
)。
如果 T
不是整数类型,由于 type
成员不存在,SFINAE 将阻止此函数模板被实例化,因此该版本的 printValue
函数将不可用。
如果我想让当函数传入int类型时输出double类型,可以这样做:
xxxxxxxxxx
121template <typename T>
2typename std::enable_if<std::is_same<T, int>::value, double>::type
3printValue(const T& val) {
4 std::cout << "Integer: " << val << std::endl;
5 return static_cast<double>(val);
6}
7
8int main() {
9 double result = printValue(42);
10 std::cout << "Returned value: " << result << std::endl;
11 // print 42.0
12}
关键部分是 typename std::enable_if<std::is_same<T, int>::value, double>::type
,这会检查 T
是否与 int
相同。如果是,它将产生类型 double
。如果不是,该版本的 printValue
函数将由于 SFINAE 而不被考虑。
有朋友可能会说,为什么不用多态呢?写这坨代码实在是太难看了,我用多态写那叫一个简洁:
xxxxxxxxxx
81double printValue(int val) {
2 std::cout << "Integer: " << val << std::endl;
3 return static_cast<double>(val);
4}
5
6void printValue(double val) {
7 std::cout << "Double: " << val << std::endl;
8}
以下是一些常见的解释:
泛型编程: 使用模板,你可以为各种类型编写通用的代码,而不仅仅是那些你预先知道的类型。
类型约束: 通过 SFINAE 和其他模板技巧,你可以对哪些类型可以用于你的泛型代码施加更精细的约束。例如,你可能想要一个函数,它只接受具有某些成员函数的对象。
编译时优化: 由于模板在编译时实例化,编译器可以为每个特定的类型生成优化过的代码,这可能会导致更高的执行效率。
灵活性: 模板提供了更多的灵活性,例如模板元编程、模板特化等,允许更复杂和高效的编程技术。
类型透明性: 当使用模板时,原始类型信息在使用模板函数或类的地方保持不变。这与多态不同,其中类型信息可能会丢失,特别是在使用继承和虚函数时。
随着进一步学习以及项目的接触,我们可以更加体会到这种编程方式的优缺点。
模板类或函数可以声明为另一个类或函数的友元。
xxxxxxxxxx
141template <typename T>
2class Container {
3private:
4 T data;
5public:
6 Container(T d) : data(d) {}
7 template <typename U>
8 friend bool operator==(const Container<U>&, const Container<U>&);
9};
10
11template <typename T>
12bool operator==(const Container<T>& lhs, const Container<T>& rhs) {
13 return lhs.data == rhs.data;
14}
C++17中的折叠表达式可以简化某些变长模板参数的操作。
例如,要计算所有给定参数的总和:
xxxxxxxxxx
41template<typename... Args>
2auto sum(Args... args) {
3 return (... + args);
4}
C++20引入了模板的概念,允许你为模板参数指定更明确的约束。只有满足给定概念的类型才可以作为print
函数的参数。
比如说,
xxxxxxxxxx
71template <typename T>
2concept Arithmetic = std::is_arithmetic_v<T>;
3
4template <Arithmetic T>
5T add(T a, T b) {
6 return a + b;
7}
这里是其他的一些特性:
std::is_integral<T>
:检查 T
是否是整数类型。
std::is_floating_point<T>
:检查 T
是否是浮点数类型。
std::is_array<T>
:检查 T
是否是数组。
std::is_pointer<T>
:检查 T
是否是指针。
std::is_reference<T>
:检查 T
是否是引用。
std::is_class<T>
:检查 T
是否是类或结构体类型。
std::is_function<T>
:检查 T
是否是函数。
另外还可以通过其他方法检查“一个类型是否可以被输出流输出”。也就是在下面代码中,我们定义了一个Printable
的conecpt,要满足这个概念,类型 T
必须满足 requires
表达式中的要求。
xxxxxxxxxx
91template <typename T>
2concept Printable = requires(T t) {
3 { std::cout << t } -> std::same_as<std::ostream&>;
4};
5
6template <Printable T>
7void print(T value) {
8 std::cout << value;
9}
其中, requires
表达式是与概念 (concepts) 相关的一种新特性,用于描述一个类型必须满足的要求。
xxxxxxxxxx
11requires ( 参数 ) { 要求列表 }
在这里,我们要求类型 T
必须支持一个操作,即:当你尝试将 t
输出到 std::cout
时,结果的类型必须是 std::ostream&
。在 requires
表达式中,->
符号被用于指定一个表达式的预期返回类型。
另外注意,requires
表达式是在编译阶段处理的。
std::enable_if
和 SFINAE上面我们已经有所提及,当我们希望根据某种条件来决定是否生成模板函数或类时,std::enable_if
非常有用。
例如,假设你有一个函数,你只希望当传入的类型是整数时,它才存在:
xxxxxxxxxx
51template <typename T>
2typename std::enable_if<std::is_integral<T>::value, T>::type
3functionOnlyForIntegers(T value) {
4 return value * 2;
5}
现在我们从头开始梳理一遍类模板。假设我们有以下基本模板。
xxxxxxxxxx
61template <typename T1, typename T2>
2class MyPair {
3 T1 first;
4 T2 second;
5 // ... 其他成员函数 ...
6};
接下来,对类模板偏特化。假设我们想为第二个模板参数是指针类型的所有情况提供特化。这里的"偏"意味着我们不是为两个特定的类型提供特化,而是只为一个类型(这里是 T2)提供。
xxxxxxxxxx
61template <typename T1, typename T2>
2class MyPair<T1, T2*> {
3 T1 first;
4 T2* second;
5 // ... 其他成员函数 ...
6};
需要注意的是,函数模板不支持偏特化,但可以通过重载来达到类似的效果。
constexpr
和模板constexpr
是 C++11 引入的关键字,它用于声明常量表达式,这些表达式在编译时就可以计算出结果。使用constexpr
与模板一起可以在编译时生成高效的代码。譬如下面的例子。
xxxxxxxxxx
41constexpr int factorial(int n) {
2 return (n <= 1) ? 1 : n * factorial(n - 1);
3}
4constexpr int value = factorial(5); // 120
那么结合 constexpr
和模板的例子是啥样的?当 constexpr
与模板结合使用时,你可以为各种类型创建编译时函数或实体,它们将针对给定的类型进行优化,并在编译时生成结果。
xxxxxxxxxx
71template <typename T>
2constexpr T square(const T& value) {
3 return value * value;
4}
5
6constexpr int int_val = square(5); // 25
7constexpr double double_val = square(5.0); // 25.0
两者结合的优势很大,我这里列出两点:
性能:结合 constexpr
和模板,生成的代码是在编译时优化的,这可以消除运行时计算的需要,从而提高性能。
泛型:模板使你可以为多种类型编写代码,而 constexpr
确保了对每种类型的高效实现。
一个模板可以在其内部定义另一个模板类:
xxxxxxxxxx
91template <typename T>
2class Outer {
3 T data;
4public:
5 template <typename U>
6 class Inner {
7 U innerData;
8 };
9};
接下来,让我们给 Outer
和 Inner
类添加一些成员函数,使它们更具功能性。
xxxxxxxxxx
171template <typename T>
2class Outer {
3 T data;
4public:
5 Outer(T d) : data(d) {}
6
7 T getOuterData() const { return data; }
8
9 template <typename U>
10 class Inner {
11 U innerData;
12 public:
13 Inner(U d) : innerData(d) {}
14
15 U getInnerData() const { return innerData; }
16 };
17};
使用示例:
xxxxxxxxxx
71Outer<int> outerInstance(10);
2std::cout << "Outer data: " << outerInstance.getOuterData() << std::endl;
3// Outputs: Outer data: 10
4
5Outer<int>::Inner<double> innerInstance(5.5);
6std::cout << "Inner data: " << innerInstance.getInnerData() << std::endl;
7// Outputs: Inner data: 5.5
进一步添加功能,在 Outer
类中定义一个函数,该函数接受一个 Inner
对象并与之交互。
xxxxxxxxxx
291template <typename T>
2class Outer {
3 T data;
4public:
5 Outer(T d) : data(d) {}
6
7 T getOuterData() const { return data; }
8
9 // ---- template ----
10 template <typename U>
11 class Inner {
12 U innerData;
13 public:
14 Inner(U d) : innerData(d) {}
15
16 U getInnerData() const { return innerData; }
17 };
18 // ---- -------- ----
19
20 template <typename U>
21 void printCombinedData(const Inner<U>& inner) {
22 std::cout << "Combined data: " << data << " and " << inner.getInnerData() << std::endl;
23 }
24};
25
26// 使用:
27Outer<int> outerInstance(10);
28Outer<int>::Inner<double> innerInstance(5.5);
29outerInstance.printCombinedData(innerInstance); // Outputs: Combined data: 10 and 5.5
总之需要知道,外部类完全可以访问其内部类及其成员,但它需要拥有内部类的对象实例才能访问内部类的非静态成员。
当使用变长模板参数时,你可以使用模板参数包。使用...
修饰的参数被称为参数包。
xxxxxxxxxx
91template <typename... Args>
2void printValues(Args... args) {
3 (std::cout << ... << args); // 展开参数
4}
5
6int main() {
7 printValues(1, 2, 3, "hello", 'c');
8 //Same As : std::cout << 1 << 2 << 3 << "hello" << 'c';
9}
如果要用多态来实现上面的效果,将会变得比较复杂。需要为每一种要输出的类型创建一个公共的基类并实现虚函数。然后为每种具体的类型实现一个子类。下面是用多态来实现的,可以看出模版参数包的优越性了吧。
xxxxxxxxxx
511
2
3
4class Printable {
5public:
6 virtual ~Printable() {}
7 virtual void print() const = 0;
8};
9
10class PrintInt : public Printable {
11 int value;
12public:
13 PrintInt(int v) : value(v) {}
14 void print() const override {
15 std::cout << value;
16 }
17};
18
19class PrintString : public Printable {
20 std::string value;
21public:
22 PrintString(const std::string& v) : value(v) {}
23 void print() const override {
24 std::cout << value;
25 }
26};
27
28class PrintChar : public Printable {
29 char value;
30public:
31 PrintChar(char v) : value(v) {}
32 void print() const override {
33 std::cout << value;
34 }
35};
36
37void printValues(const std::vector<Printable*>& values) {
38 for (const auto& val : values) {
39 val->print();
40 }
41}
42
43int main() {
44 std::vector<Printable*> values = {new PrintInt(1), new PrintInt(2), new PrintInt(3), new PrintString("hello"), new PrintChar('c')};
45 printValues(values);
46
47 // Cleaning up
48 for (auto ptr : values) {
49 delete ptr;
50 }
51}
还记得 十一关 讲解的折叠表达式吗?折叠表达式是 C++17 引入的,是一种新的、更简洁的方式来展开参数包,并对其应用特定的运算。在 C++17 之前,当需要在模板中使用参数包的时候,通常需要使用某种机制对其进行展开。在 C++11 和 C++14 中,展开参数包通常涉及到递归的模板技巧。例如,
xxxxxxxxxx
151template <typename T>
2void printValues(T value) {
3 std::cout << value << std::endl;
4}
5template <typename First, typename... Rest>
6void printValues(First first, Rest... rest) {
7 std::cout << first << ", ";
8 printValues(rest...); // 展开剩余的参数
9}
10// 使用
11int main() {
12 printValues(1, 2, 3); // 输出: 1, 2, 3
13 printValues("a", "b", "c"); // 输出: a, b, c
14 return 0;
15}
而使用了折叠表达式,就不用涉及递归输出了,上下两则代码完全一致。
xxxxxxxxxx
91template <typename... Args>
2void printValues(Args... args) {
3 (std::cout << ... << args);
4}
5// 使用
6int main() {
7 printValues(1, 2, 3, "hello", 'c'); // 输出:123helloc
8 return 0;
9}
xxxxxxxxxx
21auto lambda = []<typename T>(T value) { return value * 2; };
2auto result = lambda(5); // result为10
进一步添加“概念”,以确保类型是可计算的。这里直接使用了std::is_arithmetic_v
。
xxxxxxxxxx
141
2
3
4int main() {
5 auto genericLambda = [](auto x) {
6 static_assert(std::is_arithmetic_v<decltype(x)>, "Type must be arithmetic!");
7 return x * x;
8 };
9
10 std::cout << genericLambda(5) << std::endl; // 输出:25
11 std::cout << genericLambda(5.5) << std::endl; // 输出:30.25
12
13 // genericLambda("hello"); // 编译错误:Type must be arithmetic!
14}
模板递归是一种非常强大的技巧,但也需要谨慎使用,因为它可能导致编译时间增加和代码膨胀。
在前面我们已经见识到了模版的强大。例如,计算阶乘或斐波那契数列,直接在编译期间就可以完成计算,减少运行时的计算量。
xxxxxxxxxx
41constexpr int factorial(int n) {
2 return (n <= 1) ? 1 : n * factorial(n - 1);
3}
4constexpr int value = factorial(5); // 120
类模板可以继承自其他类模板。下面是一个最简单的例子,我们逐渐完善他。
xxxxxxxxxx
51template <typename T>
2class Base {};
3
4template <typename T>
5class Derived : public Base<T> {};
可以创建一个模板基类,使得不同的子类可以以不同的方式特化或使用这个基类。
xxxxxxxxxx
191template <typename T>
2class Base {
3public:
4 T value;
5 Base(T val) : value(val) {}
6 void show() { std::cout << value << std::endl; }
7};
8
9class Derived : public Base<int> {
10public:
11 Derived(int v) : Base(v) {}
12 void display() { std::cout << "Derived: " << value << std::endl; }
13};
14
15int main() {
16 Derived d(10);
17 d.show();
18 d.display();
19}
可以使子类是模板,而基类不是。这样,就可以为基类定义一组行为,而子类则为这些行为提供具体的实现。
xxxxxxxxxx
211class Base {
2public:
3 virtual void show() const = 0;
4};
5
6template <typename T>
7class Derived : public Base {
8 T value;
9public:
10 Derived(T v) : value(v) {}
11 void show() const override {
12 std::cout << "Value: " << value << std::endl;
13 }
14};
15
16int main() {
17 Derived<int> d1(5);
18 Derived<double> d2(3.14);
19 d1.show();
20 d2.show();
21}
子类和基类都可以是模板,这样你可以创建高度灵活和可重用的设计。
xxxxxxxxxx
231template <typename T>
2class Base {
3public:
4 T value;
5 Base(T val) : value(val) {}
6 virtual void show() const {
7 std::cout << "Base: " << value << std::endl;
8 }
9};
10
11template <typename T>
12class Derived : public Base<T> {
13public:
14 Derived(T v) : Base<T>(v) {}
15 void show() const override {
16 std::cout << "Derived: " << this->value << std::endl;
17 }
18};
19
20int main() {
21 Derived<int> d(10);
22 d.show();
23}
std::type_trait
的工具集<type_traits>
头文件提供了一组用于类型检查和修改的模板,可以在编译时获取和操作类型的信息。
xxxxxxxxxx
11static_assert(std::is_same<std::remove_const<const int>::type, int>::value);
以下是 std::type_traits
中一些常用的工具:
基础类型检查:
std::is_integral<T>
: 检查T是否是一个整数类型。
std::is_floating_point<T>
: 检查T是否是一个浮点类型。
std::is_arithmetic<T>
: 检查T是否是算术类型(整数或浮点数)。
std::is_pointer<T>
: 检查T是否是指针。
std::is_reference<T>
: 检查T是否是引用。
std::is_array<T>
: 检查T是否是数组。
std::is_enum<T>
: 检查T是否是枚举类型。
类型关系检查:
std::is_same<T, U>
: 检查两个类型是否完全相同。
std::is_base_of<Base, Derived>
: 检查Base
是否是Derived
的基类。
std::is_convertible<T, U>
: 检查类型T是否可以被隐式转换为U。
类型修改器:
std::remove_reference<T>
: 去除引用,得到裸类型。
std::add_pointer<T>
: 为类型T添加一个指针。
std::remove_pointer<T>
: 去除指针。
std::remove_const<T>
: 去除常量限定符。
std::add_const<T>
: 添加常量限定符。
其他:
std::underlying_type<T>
: 对于枚举类型T,得到对应的底层类型。
std::result_of<F(Args...)>
: 对于函数类型F,返回它使用参数Args...
调用时的返回类型。
辅助类型:
对于上述的每个特性检查,都有一个对应的_v
后缀的变量模板,如std::is_integral_v<T>
,它直接返回bool值,这使得代码更简洁。
xxxxxxxxxx
21static_assert(std::is_same<std::remove_const<const int>::type, int>::value);
2static_assert(std::is_integral_v<int>);
尽管模板提供了一种静态多态性形式,但它们也可以与虚函数和动态多态性结合使用。
xxxxxxxxxx
551
2
3
4class Base {
5public:
6 virtual void print() const {
7 std::cout << "Base class." << std::endl;
8 }
9
10 virtual ~Base() {}
11};
12
13class Derived1 : public Base {
14public:
15 void print() const override {
16 std::cout << "Derived1 class." << std::endl;
17 }
18};
19
20class Derived2 : public Base {
21public:
22 void print() const override {
23 std::cout << "Derived2 class." << std::endl;
24 }
25};
26
27template <typename T>
28class Container {
29private:
30 std::vector<T*> elements;
31
32public:
33 void add(T* elem) {
34 elements.push_back(elem);
35 }
36
37 void printAll() const {
38 for (auto& elem : elements) {
39 elem->print();
40 }
41 }
42};
43
44int main() {
45 Container<Base> cont;
46 Derived1 d1;
47 Derived2 d2;
48
49 cont.add(&d1);
50 cont.add(&d2);
51
52 cont.printAll(); // Outputs: Derived1 class. Derived2 class.
53
54 return 0;
55}
本文使用的模型数据由 Vidar Rapp 提供。