当前位置:   article > 正文

【深圳大学计算机图形学】实验四 带纹理的OBJ文件读取和显示_trimesh保存texture

trimesh保存texture

目录

实验目的与要求

实验过程及内容

实验4.1

实验四

实验结论

实验代码

实验4.1——main.cpp

实验4.1——MeshPainter.cpp

实验4.1——TriMesh.cpp

实验四——main.cpp

实验四——TriMesh.cpp


实验目的与要求

  1. 了解三维曲面和纹理映基本知识
  2. 了解从图片文件载入纹理数据基本步骤
  3. 掌握三维曲面绘制过程中纹理坐标和几何坐标的使用
  4. 在程序中读取带纹理的obj文件,载入相应的纹理图片文件,将带纹理的模型显示在程序窗口中。

实验过程及内容

实验4.1

1.更改标题栏名称。

2.在MeshPainter.cpp更改代码,将纹理坐标传入着色器。

object.tLocation = glGetAttribLocation(object.program, "vTexture");:获取顶点着色器中纹理坐标的属性位置。

glEnableVertexAttribArray(object.tLocation);:启用顶点属性数组,使能用于存储纹理坐标数据的顶点属性数组。

glVertexAttribPointer(object.tLocation, 2, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET((points.size() + colors.size() + normals.size()) * sizeof(glm::vec3)));:指定纹理坐标的属性指针。这一行代码说明了纹理坐标是一个包含两个浮点数的向量,数据类型是GL_FLOAT,步长为0(因为纹理坐标是紧密排列的),偏移量根据之前顶点、颜色和法向量数组的大小计算而来。

3.运行代码,发现圆柱体已经成功贴上了纹理,如下图所示。

4.补全generateDisk函数生成圆盘。

cleanData(): 首先,清空之前的模型数据,确保数据的干净。

计算每个切片的弧度 step,step 等于 2π 除以切片数目,用于后续计算各个顶点的坐标。

通过一个循环生成下表面的顶点坐标、法向量和颜色。循环中,通过极坐标系的转换,计算每个切片上的顶点坐标 (x, y, z),其中 x 和 y 分别为极坐标的变换,而 z 为 0,表示圆盘在 xy 平面上。

将生成的下表面的顶点坐标、法向量和颜色加入到相应的数组中。

添加中心点的顶点坐标、法向量和颜色,用于构成圆盘的中心。

通过另一个循环生成三角面片,每个矩形由两个三角形面片构成。循环中,生成每个三角形面片的顶点索引,并映射 UV 坐标到三角形的每个顶点,这里采用了一个简单的映射方式。

添加纹理坐标到 vertex_textures 数组中,其中 (x, y) 是通过将极坐标映射到 UV 坐标的 0-1 范围内得到的。

存储对应的三角形面片的每个顶点的纹理坐标的下标。

将三角面片的每个顶点的法向量的下标设为与顶点坐标的下标相同,颜色的下标也相同。

最后,通过调用 storeFacesPoints() 存储面片的顶点坐标。

这个函数的目的是创建一个表示圆盘的三维模型,包括顶点坐标、法向量、颜色和纹理坐标,以及构成圆盘的三角形面片的顶点索引。

5.补全generateCone生成圆锥。

准备模型数据: 在函数一开始,通过 cleanData() 清空之前的模型数据,确保从头开始生成新的模型。

计算切片弧度: 根据用户指定的切片数量 num_division,计算每个切片的弧度 step,用于后续生成顶点坐标。

生成底部顶点: 使用循环遍历每个切片,计算底部圆形上的顶点坐标 (x, y, z),并将其添加到模型的顶点数组 vertex_positions 中。同时,计算并添加法向量和颜色,这里法向量使用 (x, y, 0),颜色采用法向量作为颜色。

生成圆锥尖端顶点: 添加圆锥尖端的顶点坐标 (0, 0, height),法向量为 (0, 0, 1),颜色为 (0, 0, 1)。

生成圆锥侧面三角面片: 使用循环遍历每个切片,生成连接底部和尖端的侧面三角面片。每个三角面片包括底部中心点、当前切片点和下一个切片点。将这些面片添加到模型的面片数组 faces 中。

添加纹理坐标: 为每个侧面三角面片的三个顶点添加纹理坐标。底部中心点的纹理坐标为 (0.5, 1),当前切片点和下一个切片点的纹理坐标根据简单映射计算。

存储纹理坐标和法向量索引: 将每个侧面三角面片的纹理坐标的下标存储在 texture_index 中,法向量的下标与顶点坐标的下标相同,存储在 normal_index 中。

存储面片的颜色索引: 面片的颜色索引与顶点坐标的下标相同,存储在 color_index 中。

存储面片的顶点坐标: 调用 storeFacesPoints() 函数将面片的顶点坐标存储在模型中,以便后续渲染。

总体而言,这个函数通过遍历切片,生成底部圆形和圆锥尖端的顶点,然后连接它们形成侧面三角面片,完成了圆锥体的模型生成。

6.创建圆盘、圆锥对象并贴图。

首先,创建了一个 TriMesh 类的实例,代表圆盘对象,命名为 disk,并创建了另一个实例代表圆锥对象,命名为 cone。

然后,通过调用 generateDisk 方法,生成了圆盘的几何形状。该方法接受两个参数,分别是分段数和半径,用于计算顶点坐标、法向量、颜色和纹理坐标等信息。

接下来,通过一系列方法设置了每个对象的变换属性,包括平移、旋转和缩放。对于圆盘,平移、旋转和缩放都设置为零或单位值,而对于圆锥,进行了一些不同的平移。

然后,通过一系列方法设置了每个对象的材质属性。这包括环境光、漫反射、镜面反射和高光系数等。这些属性会影响对象在渲染时的外观。

最后,通过调用 painter->addMesh 方法,将每个对象添加到一个绘制器中,同时指定了纹理和着色器。这个过程中,还将每个对象添加到一个对象列表中(meshList)。

7.运行代码,结果如下图所示。

实验四

1.首先需要理解obj文件的格式。

OBJ 文件(Wavefront .obj)是一种常用的文本格式,用于存储三维模型的几何信息。这种文件格式由 Wavefront Technologies 创建,主要包含了模型的顶点坐标、法线、纹理坐标以及模型的面信息。

以下是 OBJ 文件的主要组成部分:

顶点(Vertices):

以 'v' 开头,后跟三个浮点数,表示模型的顶点坐标。

例如:v 1.0 2.0 3.0

法线(Normals):

以 'vn' 开头,后跟三个浮点数,表示模型的法线方向。

例如:vn 0.0 1.0 0.0

纹理坐标(Texture Coordinates):

以 'vt' 开头,后跟两个浮点数,表示纹理坐标的 U 和 V 分量。

例如:vt 0.5 0.5

面(Faces):

以 'f' 开头,后跟一组顶点、法线和纹理坐标的索引,定义了模型的面。

例如:f 1/1/1 2/2/2 3/3/3

材质库和使用材质(Material Libraries and Usage):

以 'mtllib' 开头,指定了外部材质库文件的路径。

使用 'usemtl' 指令来为模型的一部分指定材质。

对象(Objects):

以 'o' 开头,定义了一个新的对象。

组(Groups):

以 'g' 开头,定义了一个组,可以包含多个面。

注释(Comments):

以 '#' 开头,用于添加注释。

比如以下例子,这表示一个具有一个法线和一个纹理坐标的三角形。在一个实际的 OBJ 文件中,这些元素会按照一定的规则和结构进行组织。 OBJ 文件是一种通用的三维模型文件格式,由于其简单的文本表示,易于阅读和编辑,因此被广泛应用。

2. 补全TriMesh.cpp的storeFacesPoints函数。

这段代码主要用于根据每个三角面片的顶点下标将数据存储到用于传递给 GPU 的容器中。具体解释如下:

faces[i].x, faces[i].y, faces[i].z 表示第 i 个三角面片的顶点下标。

vertex_positions[...] 获取对应顶点下标的坐标。

类似地,vertex_colors[...] 获取对应颜色下标的颜色。

如果模型包含法向量,则从 vertex_normals[...] 获取法向量。

如果模型包含纹理坐标,则从 vertex_textures[...] 获取纹理坐标。

这样,通过遍历每个面片,将顶点坐标、颜色、法向量和纹理坐标按顺序存储在相应的容器(例如 points、colors、normals、textures)中,以便后续传递给 GPU。

3.补全TriMesh.cpp的readObj函数。

这段代码用于解析OBJ文件中的顶点信息(v)、法向量信息(vn)、纹理坐标信息(vt)和面信息(f)。具体解释如下:

当类型为 "v" 时,表示读取到一个顶点,将其坐标存储在 vertex_positions 中。

当类型为 "vn" 时,表示读取到一个法向量,将其存储在 vertex_normals 中。你可以选择将其存储在 vertex_colors 中,根据需要取消注释。

当类型为 "vt" 时,表示读取到一个纹理坐标,将其存储在 vertex_textures 中。

当类型为 "f" 时,表示读取到一个面,将其顶点、纹理坐标和法向量的索引信息存储在 faces、texture_index 和 normal_index 中。

在读取完obj内的数据后,用法向量的值赋予vertex_color和color_index并调用storeFacesPoints函数存储数据。

4.补全init函数。

这段代码用于创建并加载桌子和娃娃的三维模型。具体解释如下:

创建桌子对象 TriMesh* table = new TriMesh(); 和娃娃对象 TriMesh* wawa = new TriMesh();。

设置是否进行模型归一化,setNormalize(true); 表示进行模型归一化。

通过 readObj 方法读取桌子和娃娃的OBJ文件,分别为 table.obj 和 wawa.obj。

设置桌子和娃娃的变换属性,包括平移、旋转和缩放。

将桌子和娃娃添加到 Painter 中,使用指定的纹理和着色器。

将桌子和娃娃对象添加到对象列表 meshList 中,以便在程序结束时释放这些数据。

5.运行代码,如下图所示。

实验结论

通过此次实验,了解了obj文件的格式,学会了如何读入obj文件并生成图形。

OBJ 文件(Wavefront .obj)是一种常用的文本格式,用于存储三维模型的几何信息。这种文件格式由 Wavefront Technologies 创建,主要包含了模型的顶点坐标、法线、纹理坐标以及模型的面信息。

值得注意的是在obj文件中索引下标是从1开始的,所以需要在传入的时候减1。

实验代码

实验4.1——main.cpp

  1. #include "Angel.h"
  2. #include "TriMesh.h"
  3. #include "Camera.h"
  4. #include "MeshPainter.h"
  5. #include <vector>
  6. #include <string>
  7. int WIDTH = 600;
  8. int HEIGHT = 600;
  9. int mainWindow;
  10. Camera* camera = new Camera();
  11. Light* light = new Light();
  12. MeshPainter *painter = new MeshPainter();
  13. // 这个用来回收和删除我们创建的物体对象
  14. std::vector<TriMesh *> meshList;
  15. void init()
  16. {
  17. std::string vshader, fshader;
  18. // 读取着色器并使用
  19. vshader = "shaders/vshader.glsl";
  20. fshader = "shaders/fshader.glsl";
  21. // 设置光源位置
  22. light->setTranslation(glm::vec3(0.0, 0.0, 2.0));
  23. light->setAmbient(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 环境光
  24. light->setDiffuse(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 漫反射
  25. light->setSpecular(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 镜面反射
  26. light->setAttenuation(1.0, 0.045, 0.0075); // 衰减系数
  27. openGLObject mesh_object;
  28. TriMesh* cylinder = new TriMesh();
  29. // 创建圆柱体
  30. cylinder->generateCylinder(100, 0.1, 0.3);
  31. // 设置物体的旋转位移
  32. cylinder->setTranslation(glm::vec3(-0.5, 0.0, 0.0));
  33. cylinder->setRotation(glm::vec3(90.0, 0.0, 0.0));
  34. cylinder->setScale(glm::vec3(1.0, 1.0, 1.0));
  35. // 设置材质(不过本次实验中不会用到光照,感兴趣的图像结合ppt的扩展内容将着色器进行修改)
  36. cylinder->setAmbient(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 环境光
  37. cylinder->setDiffuse(glm::vec4(0.7, 0.7, 0.7, 1.0)); // 漫反射
  38. cylinder->setSpecular(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 镜面反射
  39. cylinder->setShininess(1.0); //高光系数
  40. // 加到painter中
  41. painter->addMesh(cylinder, "mesh_a", "./assets/cylinder10.jpg", vshader, fshader); // 指定纹理与着色器
  42. // 我们创建的这个加入一个容器内,为了程序结束时将这些数据释放
  43. meshList.push_back(cylinder);
  44. // @TODO: Task2 生成圆盘、圆锥并贴图
  45. // 创建圆盘对象
  46. TriMesh* disk = new TriMesh();
  47. // 生成圆盘并贴图
  48. disk->generateDisk(100, 0.1);
  49. // 设置物体的变换属性
  50. disk->setTranslation(glm::vec3(0.0, 0.0, 0.0)); // 平移
  51. disk->setRotation(glm::vec3(0.0, 0.0, 0.0)); // 旋转
  52. disk->setScale(glm::vec3(2.0, 2.0, 1.0)); // 缩放
  53. // 设置材质属性
  54. disk->setAmbient(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 环境光
  55. disk->setDiffuse(glm::vec4(0.7, 0.7, 0.7, 1.0)); // 漫反射
  56. disk->setSpecular(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 镜面反射
  57. disk->setShininess(1.0); // 高光系数
  58. // 将圆盘添加到Painter中,指定纹理与着色器
  59. painter->addMesh(disk, "mesh_b", "./assets/disk.jpg", vshader, fshader);
  60. // 将圆盘对象添加到对象列表
  61. meshList.push_back(disk);
  62. // 创建圆锥对象
  63. TriMesh* cone = new TriMesh();
  64. // 生成圆锥并贴图
  65. cone->generateCone(100, 0.1, 0.5);
  66. // 设置圆锥的变换属性
  67. cone->setTranslation(glm::vec3(0.5, -0.2, 0.0)); // 平移
  68. cone->setRotation(glm::vec3(-90.0, 0.0, 0.0)); // 旋转
  69. cone->setScale(glm::vec3(1.5, 1.0, 0.7)); // 缩放
  70. // 设置圆锥的材质属性
  71. cone->setAmbient(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 环境光
  72. cone->setDiffuse(glm::vec4(0.7, 0.7, 0.7, 1.0)); // 漫反射
  73. cone->setSpecular(glm::vec4(0.2, 0.2, 0.2, 1.0)); // 镜面反射
  74. cone->setShininess(1.0); // 高光系数
  75. // 将圆锥添加到Painter中,指定纹理与着色器
  76. painter->addMesh(cone, "mesh_c", "./assets/cone.jpg", vshader, fshader);
  77. // 将圆锥对象添加到对象列表
  78. meshList.push_back(cone);
  79. glClearColor(1.0, 1.0, 1.0, 1.0);
  80. // glClearColor(0.0, 0.0, 0.0, 1.0);
  81. }
  82. void display()
  83. {
  84. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  85. painter->drawMeshes(light, camera);
  86. }
  87. void printHelp()
  88. {
  89. std::cout << "================================================" << std::endl;
  90. std::cout << "Use mouse to controll the light position (drag)." << std::endl;
  91. std::cout << "================================================" << std::endl << std::endl;
  92. std::cout << "Keyboard Usage" << std::endl;
  93. std::cout <<
  94. "[Window]" << std::endl <<
  95. "ESC: Exit" << std::endl <<
  96. "h: Print help message" << std::endl <<
  97. std::endl <<
  98. "[Camera]" << std::endl <<
  99. "SPACE: Reset camera parameters" << std::endl <<
  100. "u/U: Increase/Decrease the rotate angle" << std::endl <<
  101. "i/I: Increase/Decrease the up angle" << std::endl <<
  102. "o/O: Increase/Decrease the camera radius" << std::endl << std::endl;
  103. }
  104. // 键盘响应函数
  105. void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode)
  106. {
  107. float tmp;
  108. glm::vec4 ambient;
  109. if (action == GLFW_PRESS) {
  110. switch (key)
  111. {
  112. case GLFW_KEY_ESCAPE: exit(EXIT_SUCCESS); break;
  113. case GLFW_KEY_H: printHelp(); break;
  114. default:
  115. camera->keyboard(key, action, mode);
  116. break;
  117. }
  118. }
  119. }
  120. // 重新设置窗口
  121. void reshape(GLsizei w, GLsizei h)
  122. {
  123. glViewport(0, 0, w, h);
  124. }
  125. void cleanData() {
  126. // 释放内存
  127. delete camera;
  128. camera = NULL;
  129. delete light;
  130. light = NULL;
  131. painter->cleanMeshes();
  132. delete painter;
  133. painter = NULL;
  134. for (int i=0; i<meshList.size(); i++) {
  135. delete meshList[i];
  136. }
  137. meshList.clear();
  138. }
  139. void framebuffer_size_callback(GLFWwindow* window, int width, int height);
  140. int main(int argc, char **argv)
  141. {
  142. // 初始化GLFW库,必须是应用程序调用的第一个GLFW函数
  143. glfwInit();
  144. // 配置GLFW
  145. glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
  146. glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
  147. glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
  148. #ifdef __APPLE__
  149. glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
  150. #endif
  151. // 配置窗口属性
  152. GLFWwindow* window = glfwCreateWindow(600, 600, "2021150047_hyf_实验4.1", NULL, NULL);
  153. if (window == NULL)
  154. {
  155. std::cout << "Failed to create GLFW window" << std::endl;
  156. glfwTerminate();
  157. return -1;
  158. }
  159. glfwMakeContextCurrent(window);
  160. glfwSetKeyCallback(window, key_callback);
  161. glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
  162. // 调用任何OpenGL的函数之前初始化GLAD
  163. // ---------------------------------------
  164. if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
  165. {
  166. std::cout << "Failed to initialize GLAD" << std::endl;
  167. return -1;
  168. }
  169. // Init mesh, shaders, buffer
  170. init();
  171. // 输出帮助信息
  172. printHelp();
  173. // 启用深度测试
  174. glEnable(GL_DEPTH_TEST);
  175. while (!glfwWindowShouldClose(window))
  176. {
  177. display();
  178. //reshape();
  179. // 交换颜色缓冲 以及 检查有没有触发什么事件(比如键盘输入、鼠标移动等)
  180. // -------------------------------------------------------------------------------
  181. glfwSwapBuffers(window);
  182. glfwPollEvents();
  183. }
  184. cleanData();
  185. return 0;
  186. }
  187. // 每当窗口改变大小,GLFW会调用这个函数并填充相应的参数供你处理。
  188. // ---------------------------------------------------------------------------------------------
  189. void framebuffer_size_callback(GLFWwindow * window, int width, int height)
  190. {
  191. // make sure the viewport matches the new window dimensions; note that width and
  192. // height will be significantly larger than specified on retina displays.
  193. glViewport(0, 0, width, height);
  194. }

实验4.1——MeshPainter.cpp

  1. #include "MeshPainter.h"
  2. #define STB_IMAGE_IMPLEMENTATION
  3. #include "stb_image.h"
  4. MeshPainter::MeshPainter() {};
  5. MeshPainter::~MeshPainter() {};
  6. std::vector<std::string> MeshPainter::getMeshNames() { return mesh_names; };
  7. std::vector<TriMesh*> MeshPainter::getMeshes() { return meshes; };
  8. std::vector<openGLObject> MeshPainter::getOpenGLObj() { return opengl_objects; };
  9. void MeshPainter::bindObjectAndData(TriMesh* mesh, openGLObject& object, const std::string& texture_image, const std::string& vshader, const std::string& fshader) {
  10. // 初始化各种对象
  11. std::vector<glm::vec3> points = mesh->getPoints();
  12. std::vector<glm::vec3> normals = mesh->getNormals();
  13. std::vector<glm::vec3> colors = mesh->getColors();
  14. std::vector<glm::vec2> textures = mesh->getTextures();
  15. // 创建顶点数组对象
  16. glGenVertexArrays(1, &object.vao); // 分配1个顶点数组对象
  17. glBindVertexArray(object.vao); // 绑定顶点数组对象
  18. // 创建并初始化顶点缓存对象
  19. glGenBuffers(1, &object.vbo);
  20. glBindBuffer(GL_ARRAY_BUFFER, object.vbo);
  21. glBufferData(GL_ARRAY_BUFFER,
  22. points.size() * sizeof(glm::vec3) +
  23. colors.size() * sizeof(glm::vec3) +
  24. normals.size() * sizeof(glm::vec3) +
  25. textures.size() * sizeof(glm::vec2),
  26. NULL, GL_STATIC_DRAW);
  27. // 绑定顶点数据
  28. glBufferSubData(GL_ARRAY_BUFFER, 0, points.size() * sizeof(glm::vec3), points.data());
  29. // 绑定颜色数据
  30. glBufferSubData(GL_ARRAY_BUFFER, points.size() * sizeof(glm::vec3), colors.size() * sizeof(glm::vec3), colors.data());
  31. // 绑定法向量数据
  32. glBufferSubData(GL_ARRAY_BUFFER, (points.size() + colors.size()) * sizeof(glm::vec3), normals.size() * sizeof(glm::vec3), normals.data());
  33. // 绑定纹理数据
  34. glBufferSubData(GL_ARRAY_BUFFER, (points.size() + normals.size() + colors.size()) * sizeof(glm::vec3), textures.size() * sizeof(glm::vec2), textures.data());
  35. object.vshader = vshader;
  36. object.fshader = fshader;
  37. object.program = InitShader(object.vshader.c_str(), object.fshader.c_str());
  38. // 将顶点传入着色器
  39. object.pLocation = glGetAttribLocation(object.program, "vPosition");
  40. glEnableVertexAttribArray(object.pLocation);
  41. glVertexAttribPointer(object.pLocation, 3, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0));
  42. // 将颜色传入着色器
  43. object.cLocation = glGetAttribLocation(object.program, "vColor");
  44. glEnableVertexAttribArray(object.cLocation);
  45. glVertexAttribPointer(object.cLocation, 3, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(points.size() * sizeof(glm::vec3)));
  46. // 将法向量传入着色器
  47. object.nLocation = glGetAttribLocation(object.program, "vNormal");
  48. glEnableVertexAttribArray(object.nLocation);
  49. glVertexAttribPointer(object.nLocation, 3,
  50. GL_FLOAT, GL_FALSE, 0,
  51. BUFFER_OFFSET((points.size() + colors.size()) * sizeof(glm::vec3)));
  52. // @TODO: Task1 将纹理坐标传入着色器
  53. // 获取顶点着色器中纹理坐标的位置
  54. object.tLocation = glGetAttribLocation(object.program, "vTexture");
  55. // 启用顶点属性数组,用于存储纹理坐标数据
  56. glEnableVertexAttribArray(object.tLocation);
  57. // 指定纹理坐标的属性指针,传递到顶点着色器中
  58. glVertexAttribPointer(object.tLocation, 2, GL_FLOAT, GL_FALSE, 0,
  59. BUFFER_OFFSET((points.size() + colors.size() + normals.size()) * sizeof(glm::vec3)));
  60. // 获得矩阵位置
  61. object.modelLocation = glGetUniformLocation(object.program, "model");
  62. object.viewLocation = glGetUniformLocation(object.program, "view");
  63. object.projectionLocation = glGetUniformLocation(object.program, "projection");
  64. object.shadowLocation = glGetUniformLocation(object.program, "isShadow");
  65. // 读取纹理图片数
  66. object.texture_image = texture_image;
  67. // 创建纹理的缓存对象
  68. glGenTextures(1, &object.texture);
  69. // 调用stb_image生成纹理
  70. load_texture_STBImage(object.texture_image, object.texture);
  71. // Clean up
  72. glUseProgram(0);
  73. glBindVertexArray(0);
  74. };
  75. void MeshPainter::bindLightAndMaterial(TriMesh* mesh, openGLObject& object, Light* light, Camera* camera) {
  76. // 传递材质、光源等数据给着色器
  77. // 传递相机的位置
  78. glUniform3fv(glGetUniformLocation(object.program, "eye_position"), 1, &camera->eye[0]);
  79. // 传递物体的材质
  80. glm::vec4 meshAmbient = mesh->getAmbient();
  81. glm::vec4 meshDiffuse = mesh->getDiffuse();
  82. glm::vec4 meshSpecular = mesh->getSpecular();
  83. float meshShininess = mesh->getShininess();
  84. glUniform4fv(glGetUniformLocation(object.program, "material.ambient"), 1, &meshAmbient[0]);
  85. glUniform4fv(glGetUniformLocation(object.program, "material.diffuse"), 1, &meshDiffuse[0]);
  86. glUniform4fv(glGetUniformLocation(object.program, "material.specular"), 1, &meshSpecular[0]);
  87. glUniform1f(glGetUniformLocation(object.program, "material.shininess"), meshShininess);
  88. // 传递光源信息
  89. glm::vec4 lightAmbient = light->getAmbient();
  90. glm::vec4 lightDiffuse = light->getDiffuse();
  91. glm::vec4 lightSpecular = light->getSpecular();
  92. glm::vec3 lightPosition = light->getTranslation();
  93. glUniform4fv(glGetUniformLocation(object.program, "light.ambient"), 1, &lightAmbient[0]);
  94. glUniform4fv(glGetUniformLocation(object.program, "light.diffuse"), 1, &lightDiffuse[0]);
  95. glUniform4fv(glGetUniformLocation(object.program, "light.specular"), 1, &lightSpecular[0]);
  96. glUniform3fv(glGetUniformLocation(object.program, "light.position"), 1, &lightPosition[0]);
  97. glUniform1f(glGetUniformLocation(object.program, "light.constant"), light->getConstant());
  98. glUniform1f(glGetUniformLocation(object.program, "light.linear"), light->getLinear());
  99. glUniform1f(glGetUniformLocation(object.program, "light.quadratic"), light->getQuadratic());
  100. }
  101. void MeshPainter::addMesh(TriMesh* mesh, const std::string& name, const std::string& texture_image, const std::string& vshader, const std::string& fshader) {
  102. mesh_names.push_back(name);
  103. meshes.push_back(mesh);
  104. openGLObject object;
  105. // 绑定openGL对象,并传递顶点属性的数据
  106. bindObjectAndData(mesh, object, texture_image, vshader, fshader);
  107. opengl_objects.push_back(object);
  108. };
  109. void MeshPainter::drawMesh(TriMesh* mesh, openGLObject& object, Light* light, Camera* camera) {
  110. // 相机矩阵计算
  111. camera->updateCamera();
  112. camera->viewMatrix = camera->getViewMatrix();
  113. camera->projMatrix = camera->getProjectionMatrix(false);
  114. glBindVertexArray(object.vao);
  115. glUseProgram(object.program);
  116. // 物体的变换矩阵
  117. glm::mat4 modelMatrix = mesh->getModelMatrix();
  118. // 传递矩阵
  119. glUniformMatrix4fv(object.modelLocation, 1, GL_FALSE, &modelMatrix[0][0]);
  120. glUniformMatrix4fv(object.viewLocation, 1, GL_FALSE, &camera->viewMatrix[0][0]);
  121. glUniformMatrix4fv(object.projectionLocation, 1, GL_FALSE, &camera->projMatrix[0][0]);
  122. // 将着色器 isShadow 设置为0,表示正常绘制的颜色,如果是1着表示阴影
  123. glUniform1i(object.shadowLocation, 0);
  124. glActiveTexture(GL_TEXTURE0);
  125. glBindTexture(GL_TEXTURE_2D, object.texture);// 该语句必须,否则将只使用同一个纹理进行绘制
  126. // 传递纹理数据 将生成的纹理传给shader
  127. glUniform1i(glGetUniformLocation(object.program, "texture"), 0);
  128. // 将材质和光源数据传递给着色器
  129. bindLightAndMaterial(mesh, object, light, camera);
  130. // 绘制
  131. glDrawArrays(GL_TRIANGLES, 0, mesh->getPoints().size());
  132. glBindVertexArray(0);
  133. glUseProgram(0);
  134. };
  135. void MeshPainter::drawMeshes(Light* light, Camera* camera) {
  136. for (int i = 0; i < meshes.size(); i++)
  137. {
  138. drawMesh(meshes[i], opengl_objects[i], light, camera);
  139. }
  140. };
  141. void MeshPainter::cleanMeshes() {
  142. // 将数据都清空释放
  143. mesh_names.clear();
  144. for (int i = 0; i < meshes.size(); i++)
  145. {
  146. meshes[i]->cleanData();
  147. delete meshes[i];
  148. meshes[i] = NULL;
  149. glDeleteVertexArrays(1, &opengl_objects[i].vao);
  150. glDeleteBuffers(1, &opengl_objects[i].vbo);
  151. glDeleteProgram(opengl_objects[i].program);
  152. }
  153. meshes.clear();
  154. opengl_objects.clear();
  155. };
  156. void MeshPainter::load_texture_STBImage(const std::string& file_name, GLuint& texture) {
  157. // 读取纹理图片,并将其传递给着色器
  158. int width, height, channels = 0;
  159. unsigned char* pixels = NULL;
  160. // 读取图片的时候先翻转一下图片,如果不设置的话显示出来是反过来的图片
  161. stbi_set_flip_vertically_on_load(true);
  162. // 读取图片数据
  163. pixels = stbi_load(file_name.c_str(), &width, &height, &channels, 0);
  164. // 调整行对齐格式
  165. if (width * channels % 4 != 0)
  166. glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
  167. GLenum format = GL_RGB;
  168. // 设置通道格式
  169. switch (channels)
  170. {
  171. case 1:
  172. format = GL_RED;
  173. break;
  174. case 3:
  175. format = GL_RGB;
  176. break;
  177. case 4:
  178. format = GL_RGBA;
  179. break;
  180. default:
  181. format = GL_RGB;
  182. break;
  183. }
  184. // 绑定纹理对象
  185. glBindTexture(GL_TEXTURE_2D, texture);
  186. // 指定纹理的放大,缩小滤波,使用线性方式,即当图片放大的时候插值方式
  187. // 将图片的rgb数据上传给opengl
  188. glTexImage2D(
  189. GL_TEXTURE_2D, // 指定目标纹理,这个值必须是GL_TEXTURE_2D
  190. 0, // 执行细节级别,0是最基本的图像级别,n表示第N级贴图细化级别
  191. format, // 纹理数据的颜色格式(GPU显存)
  192. width, // 宽度。早期的显卡不支持不规则的纹理,则宽度和高度必须是2^n
  193. height, // 高度。早期的显卡不支持不规则的纹理,则宽度和高度必须是2^n
  194. 0, // 指定边框的宽度。必须为0
  195. format, // 像素数据的颜色格式(CPU内存)
  196. GL_UNSIGNED_BYTE, // 指定像素数据的数据类型
  197. pixels // 指定内存中指向图像数据的指针
  198. );
  199. // 生成多级渐远纹理,多消耗1/3的显存,较小分辨率时获得更好的效果
  200. // glGenerateMipmap(GL_TEXTURE_2D);
  201. // 指定插值方法
  202. glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
  203. glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
  204. // 恢复初始对齐格式
  205. glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
  206. // 释放图形内存
  207. stbi_image_free(pixels);
  208. };

实验4.1——TriMesh.cpp

  1. #include "TriMesh.h"
  2. // 一些基础颜色
  3. const glm::vec3 basic_colors[8] = {
  4. glm::vec3(1.0, 1.0, 1.0), // White
  5. glm::vec3(1.0, 1.0, 0.0), // Yellow
  6. glm::vec3(0.0, 1.0, 0.0), // Green
  7. glm::vec3(0.0, 1.0, 1.0), // Cyan
  8. glm::vec3(1.0, 0.0, 1.0), // Magenta
  9. glm::vec3(1.0, 0.0, 0.0), // Red
  10. glm::vec3(0.0, 0.0, 0.0), // Black
  11. glm::vec3(0.0, 0.0, 1.0) // Blue
  12. };
  13. // 立方体的各个点
  14. const glm::vec3 cube_vertices[8] = {
  15. glm::vec3(-0.5, -0.5, -0.5),
  16. glm::vec3(0.5, -0.5, -0.5),
  17. glm::vec3(-0.5, 0.5, -0.5),
  18. glm::vec3(0.5, 0.5, -0.5),
  19. glm::vec3(-0.5, -0.5, 0.5),
  20. glm::vec3(0.5, -0.5, 0.5),
  21. glm::vec3(-0.5, 0.5, 0.5),
  22. glm::vec3(0.5, 0.5, 0.5)};
  23. // 三角形的点
  24. const glm::vec3 triangle_vertices[3] = {
  25. glm::vec3(-0.5, -0.5, 0.0),
  26. glm::vec3(0.5, -0.5, 0.0),
  27. glm::vec3(0.0, 0.5, 0.0)};
  28. // 正方形平面
  29. const glm::vec3 square_vertices[4] = {
  30. glm::vec3(-0.5, -0.5, 0.0),
  31. glm::vec3(0.5, -0.5, 0.0),
  32. glm::vec3(0.5, 0.5, 0.0),
  33. glm::vec3(-0.5, 0.5, 0.0),
  34. };
  35. TriMesh::TriMesh()
  36. {
  37. scale = glm::vec3(1.0);
  38. rotation = glm::vec3(0.0);
  39. translation = glm::vec3(0.0);
  40. }
  41. TriMesh::~TriMesh()
  42. {
  43. }
  44. std::vector<glm::vec3> TriMesh::getVertexPositions()
  45. {
  46. return vertex_positions;
  47. }
  48. std::vector<glm::vec3> TriMesh::getVertexColors()
  49. {
  50. return vertex_colors;
  51. }
  52. std::vector<glm::vec3> TriMesh::getVertexNormals()
  53. {
  54. return vertex_normals;
  55. }
  56. std::vector<glm::vec2> TriMesh::getVertexTextures()
  57. {
  58. return vertex_textures;
  59. }
  60. std::vector<vec3i> TriMesh::getFaces()
  61. {
  62. return faces;
  63. }
  64. std::vector<glm::vec3> TriMesh::getPoints()
  65. {
  66. return points;
  67. }
  68. std::vector<glm::vec3> TriMesh::getColors()
  69. {
  70. return colors;
  71. }
  72. std::vector<glm::vec3> TriMesh::getNormals()
  73. {
  74. return normals;
  75. }
  76. std::vector<glm::vec2> TriMesh::getTextures()
  77. {
  78. return textures;
  79. }
  80. void TriMesh::computeTriangleNormals()
  81. {
  82. face_normals.resize(faces.size());
  83. for (size_t i = 0; i < faces.size(); i++)
  84. {
  85. auto &face = faces[i];
  86. glm::vec3 v01 = vertex_positions[face.y] - vertex_positions[face.x];
  87. glm::vec3 v02 = vertex_positions[face.z] - vertex_positions[face.x];
  88. face_normals[i] = normalize(cross(v01, v02));
  89. }
  90. }
  91. void TriMesh::computeVertexNormals()
  92. {
  93. // 计算面片的法向量
  94. if (face_normals.size() == 0 && faces.size() > 0)
  95. {
  96. computeTriangleNormals();
  97. }
  98. // 初始化法向量为0
  99. vertex_normals.resize(vertex_positions.size(), glm::vec3(0, 0, 0));
  100. for (size_t i = 0; i < faces.size(); i++)
  101. {
  102. auto &face = faces[i];
  103. vertex_normals[face.x] += face_normals[i];
  104. vertex_normals[face.y] += face_normals[i];
  105. vertex_normals[face.z] += face_normals[i];
  106. }
  107. for (size_t i = 0; i < vertex_normals.size(); i++)
  108. {
  109. vertex_normals[i] = normalize(vertex_normals[i]);
  110. }
  111. // 球心在原点的球法向量为坐标
  112. // for (int i = 0; i < vertex_positions.size(); i++)
  113. // vertex_normals.push_back(vertex_positions[i] - vec3(0.0, 0.0, 0.0));
  114. }
  115. glm::vec3 TriMesh::getTranslation()
  116. {
  117. return translation;
  118. }
  119. glm::vec3 TriMesh::getRotation()
  120. {
  121. return rotation;
  122. }
  123. glm::vec3 TriMesh::getScale()
  124. {
  125. return scale;
  126. }
  127. glm::mat4 TriMesh::getModelMatrix()
  128. {
  129. glm::mat4 model = glm::mat4(1.0f);
  130. glm::vec3 trans = getTranslation();
  131. model = glm::translate(model, getTranslation());
  132. model = glm::rotate(model, glm::radians(getRotation()[2]), glm::vec3(0.0, 0.0, 1.0));
  133. model = glm::rotate(model, glm::radians(getRotation()[1]), glm::vec3(0.0, 1.0, 0.0));
  134. model = glm::rotate(model, glm::radians(getRotation()[0]), glm::vec3(1.0, 0.0, 0.0));
  135. model = glm::scale(model, getScale());
  136. return model;
  137. }
  138. void TriMesh::setTranslation(glm::vec3 translation)
  139. {
  140. this->translation = translation;
  141. }
  142. void TriMesh::setRotation(glm::vec3 rotation)
  143. {
  144. this->rotation = rotation;
  145. }
  146. void TriMesh::setScale(glm::vec3 scale)
  147. {
  148. this->scale = scale;
  149. }
  150. glm::vec4 TriMesh::getAmbient() { return ambient; };
  151. glm::vec4 TriMesh::getDiffuse() { return diffuse; };
  152. glm::vec4 TriMesh::getSpecular() { return specular; };
  153. float TriMesh::getShininess() { return shininess; };
  154. void TriMesh::setAmbient(glm::vec4 _ambient) { ambient = _ambient; };
  155. void TriMesh::setDiffuse(glm::vec4 _diffuse) { diffuse = _diffuse; };
  156. void TriMesh::setSpecular(glm::vec4 _specular) { specular = _specular; };
  157. void TriMesh::setShininess(float _shininess) { shininess = _shininess; };
  158. void TriMesh::cleanData()
  159. {
  160. vertex_positions.clear();
  161. vertex_colors.clear();
  162. vertex_normals.clear();
  163. vertex_textures.clear();
  164. faces.clear();
  165. normal_index.clear();
  166. color_index.clear();
  167. texture_index.clear();
  168. face_normals.clear();
  169. points.clear();
  170. colors.clear();
  171. normals.clear();
  172. textures.clear();
  173. }
  174. void TriMesh::storeFacesPoints()
  175. {
  176. // 计算法向量
  177. if (vertex_normals.size() == 0)
  178. computeVertexNormals();
  179. // 根据每个三角面片的顶点下标存储要传入GPU的数据
  180. for (int i = 0; i < faces.size(); i++)
  181. {
  182. // 坐标
  183. points.push_back(vertex_positions[faces[i].x]);
  184. points.push_back(vertex_positions[faces[i].y]);
  185. points.push_back(vertex_positions[faces[i].z]);
  186. // 颜色
  187. colors.push_back(vertex_colors[color_index[i].x]);
  188. colors.push_back(vertex_colors[color_index[i].y]);
  189. colors.push_back(vertex_colors[color_index[i].z]);
  190. // 法向量
  191. if (vertex_normals.size() != 0)
  192. {
  193. normals.push_back(vertex_normals[normal_index[i].x]);
  194. normals.push_back(vertex_normals[normal_index[i].y]);
  195. normals.push_back(vertex_normals[normal_index[i].z]);
  196. }
  197. // 纹理
  198. if (vertex_textures.size() != 0)
  199. {
  200. textures.push_back(vertex_textures[texture_index[i].x]);
  201. textures.push_back(vertex_textures[texture_index[i].y]);
  202. textures.push_back(vertex_textures[texture_index[i].z]);
  203. }
  204. }
  205. }
  206. // 立方体生成12个三角形的顶点索引
  207. void TriMesh::generateCube()
  208. {
  209. // 创建顶点前要先把那些vector清空
  210. cleanData();
  211. for (int i = 0; i < 8; i++)
  212. {
  213. vertex_positions.push_back(cube_vertices[i]);
  214. vertex_colors.push_back(basic_colors[i]);
  215. }
  216. // 每个三角面片的顶点下标
  217. faces.push_back(vec3i(0, 3, 1));
  218. faces.push_back(vec3i(0, 2, 3));
  219. faces.push_back(vec3i(1, 5, 4));
  220. faces.push_back(vec3i(1, 4, 0));
  221. faces.push_back(vec3i(4, 2, 0));
  222. faces.push_back(vec3i(4, 6, 2));
  223. faces.push_back(vec3i(5, 6, 4));
  224. faces.push_back(vec3i(5, 7, 6));
  225. faces.push_back(vec3i(2, 6, 7));
  226. faces.push_back(vec3i(2, 7, 3));
  227. faces.push_back(vec3i(1, 7, 5));
  228. faces.push_back(vec3i(1, 3, 7));
  229. // faces.push_back(vec3i(0, 1, 3));
  230. // faces.push_back(vec3i(0, 3, 2));
  231. // faces.push_back(vec3i(1, 4, 5));
  232. // faces.push_back(vec3i(1, 0, 4));
  233. // faces.push_back(vec3i(4, 0, 2));
  234. // faces.push_back(vec3i(4, 2, 6));
  235. // faces.push_back(vec3i(5, 6, 4));
  236. // faces.push_back(vec3i(5, 7, 6));
  237. // faces.push_back(vec3i(2, 6, 7));
  238. // faces.push_back(vec3i(2, 7, 3));
  239. // faces.push_back(vec3i(1, 7, 5));
  240. // faces.push_back(vec3i(1, 3, 7));
  241. // 顶点纹理坐标,这里是每个面都用一个正方形图片的情况
  242. vertex_textures.push_back(glm::vec2(0, 0));
  243. vertex_textures.push_back(glm::vec2(1, 0));
  244. vertex_textures.push_back(glm::vec2(0, 1));
  245. vertex_textures.push_back(glm::vec2(1, 1));
  246. vertex_textures.push_back(glm::vec2(0, 0));
  247. vertex_textures.push_back(glm::vec2(1, 0));
  248. vertex_textures.push_back(glm::vec2(0, 1));
  249. vertex_textures.push_back(glm::vec2(1, 1));
  250. normal_index = faces;
  251. color_index = faces;
  252. texture_index = faces;
  253. storeFacesPoints();
  254. normals.clear();
  255. // 正方形的法向量不能靠之前顶点法向量的方法直接计算,因为每个四边形平面是正交的,不是连续曲面
  256. for (int i = 0; i < faces.size(); i++)
  257. {
  258. normals.push_back( face_normals[i] );
  259. normals.push_back( face_normals[i] );
  260. normals.push_back( face_normals[i] );
  261. }
  262. }
  263. void TriMesh::generateTriangle(glm::vec3 color)
  264. {
  265. // 创建顶点前要先把那些vector清空
  266. cleanData();
  267. for (int i = 0; i < 3; i++)
  268. {
  269. vertex_positions.push_back(triangle_vertices[i]);
  270. vertex_colors.push_back(color);
  271. }
  272. // 每个三角面片的顶点下标
  273. faces.push_back(vec3i(0, 1, 2));
  274. // 顶点纹理坐标
  275. vertex_textures.push_back(glm::vec2(0, 0));
  276. vertex_textures.push_back(glm::vec2(1, 0));
  277. vertex_textures.push_back(glm::vec2(0.5, 1));
  278. normal_index = faces;
  279. color_index = faces;
  280. texture_index = faces;
  281. storeFacesPoints();
  282. }
  283. void TriMesh::generateSquare(glm::vec3 color)
  284. {
  285. // 创建顶点前要先把那些vector清空
  286. cleanData();
  287. for (int i = 0; i < 4; i++)
  288. {
  289. vertex_positions.push_back(square_vertices[i]);
  290. vertex_colors.push_back(color);
  291. }
  292. // 每个三角面片的顶点下标
  293. faces.push_back(vec3i(0, 1, 2));
  294. faces.push_back(vec3i(0, 2, 3));
  295. // 顶点纹理坐标
  296. vertex_textures.push_back(glm::vec2(0, 0));
  297. vertex_textures.push_back(glm::vec2(1, 0));
  298. vertex_textures.push_back(glm::vec2(1, 1));
  299. vertex_textures.push_back(glm::vec2(0, 1));
  300. normal_index = faces;
  301. color_index = faces;
  302. texture_index = faces;
  303. storeFacesPoints();
  304. }
  305. void TriMesh::generateCylinder(int num_division, float radius, float height)
  306. {
  307. cleanData();
  308. int num_samples = num_division;
  309. float step = 2 * M_PI / num_samples; // 每个切片的弧度
  310. // 按cos和sin生成x,y坐标,z为负,即得到下表面顶点坐标
  311. // 顶点, 纹理
  312. float z = -height;
  313. for (int i = 0; i < num_samples; i++)
  314. {
  315. float r_r_r = i * step;
  316. float x = radius * cos(r_r_r);
  317. float y = radius * sin(r_r_r);
  318. // 添加顶点坐标
  319. vertex_positions.push_back(glm::vec3(x, y, z));
  320. vertex_normals.push_back( normalize(glm::vec3(x, y, 0)));
  321. // 这里颜色和法向量一样
  322. vertex_colors.push_back( normalize(glm::vec3(x, y, 0)));
  323. }
  324. // 按cos和sin生成x,y坐标,z为正,即得到上表面顶点坐标
  325. z = height;
  326. for (int i = 0; i < num_samples; i++)
  327. {
  328. float r_r_r = i * step;
  329. float x = radius * cos(r_r_r);
  330. float y = radius * sin(r_r_r);
  331. vertex_positions.push_back(glm::vec3(x, y, z));
  332. vertex_normals.push_back( normalize(glm::vec3(x, y, 0)));
  333. vertex_colors.push_back( normalize(glm::vec3(x, y, 0)));
  334. }
  335. // 面片生成三角面片,每个矩形由两个三角形面片构成
  336. for (int i = 0; i < num_samples; i++)
  337. {
  338. // 面片1
  339. faces.push_back(vec3i(i, (i + 1) % num_samples, (i) + num_samples));
  340. // 面片2
  341. faces.push_back(vec3i((i) + num_samples, (i + 1) % num_samples, (i + num_samples + 1) % (num_samples) + num_samples));
  342. // 面片1对应的顶点的纹理坐标
  343. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 0.0));
  344. vertex_textures.push_back(glm::vec2(1.0 * (i+1) / num_samples, 0.0));
  345. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 1.0));
  346. // 对应的三角面片的纹理坐标的下标
  347. texture_index.push_back( vec3i( 6*i, 6*i+1, 6*i+2 ) );
  348. // 面片2对应的顶点的纹理坐标
  349. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 1.0));
  350. vertex_textures.push_back(glm::vec2(1.0 * (i+1) / num_samples, 0.0));
  351. vertex_textures.push_back(glm::vec2(1.0 * (i+1) / num_samples, 1.0));
  352. // 对应的三角面片的纹理坐标的下标
  353. texture_index.push_back( vec3i( 6*i+3, 6*i+4, 6*i+5 ) );
  354. }
  355. // 三角面片的每个顶点的法向量的下标,这里和顶点坐标的下标 faces是一致的,所以我们用faces就行
  356. normal_index = faces;
  357. // 三角面片的每个顶点的颜色的下标
  358. color_index = faces;
  359. storeFacesPoints();
  360. }
  361. void TriMesh::generateDisk(int num_division, float radius)
  362. {
  363. cleanData(); // 清空之前的数据
  364. // @TODO: Task2 在此添加代码生成圆盘
  365. int num_samples = num_division;
  366. float step = 2 * M_PI / num_samples; // 计算每个切片的弧度
  367. // 生成下表面的顶点坐标,法向量和颜色
  368. float z = 0;
  369. for (int i = 0; i < num_samples; i++)
  370. {
  371. float theta = i * step;
  372. float x = radius * cos(theta);
  373. float y = radius * sin(theta);
  374. // 添加顶点坐标
  375. vertex_positions.push_back(glm::vec3(x, y, z));
  376. // 添加法向量
  377. vertex_normals.push_back(glm::vec3(0, 0, 1));
  378. // 使用法向量生成颜色,你也可以根据需要自定义颜色生成方式
  379. vertex_colors.push_back(glm::vec3(0, 0, 1));
  380. }
  381. // 中心点
  382. vertex_positions.push_back(glm::vec3(0, 0, 0));
  383. vertex_normals.push_back(glm::vec3(0, 0, 1));
  384. vertex_colors.push_back(glm::vec3(0, 0, 1));
  385. // 生成三角面片,每个矩形由两个三角形面片构成
  386. for (int i = 0; i < num_samples; i++)
  387. {
  388. // 面片1
  389. faces.push_back(vec3i(i, (i + 1) % num_samples, num_samples));
  390. // 将0-360度映射到UV坐标的0-1
  391. for (int j = 0; j < 2; j++)
  392. {
  393. float theta = (i + j) * step;
  394. float x = cos(theta) / 2.0 + 0.5;
  395. float y = sin(theta) / 2.0 + 0.5;
  396. // 添加纹理坐标
  397. vertex_textures.push_back(glm::vec2(x, y));
  398. }
  399. // 中心点的纹理坐标
  400. vertex_textures.push_back(glm::vec2(0.5, 0.5));
  401. // 对应的三角面片的每个顶点的纹理坐标的下标
  402. texture_index.push_back(vec3i(3 * i, 3 * i + 1, 3 * i + 2));
  403. }
  404. // 三角面片的每个顶点的法向量的下标,这里和顶点坐标的下标 faces 是一致的,所以我们用 faces 就行
  405. normal_index = faces;
  406. // 三角面片的每个顶点的颜色的下标
  407. color_index = faces;
  408. // 存储面片顶点坐标
  409. storeFacesPoints();
  410. }
  411. void TriMesh::generateCone(int num_division, float radius, float height)
  412. {
  413. // 清空之前的模型数据
  414. cleanData();
  415. // 计算每个切片的弧度 step
  416. int num_samples = num_division;
  417. float step = 2 * M_PI / num_samples;
  418. // 生成圆锥底部的顶点坐标、法向量和颜色
  419. float z = 0;
  420. for (int i = 0; i < num_samples; i++)
  421. {
  422. float r_r_r = i * step;
  423. float x = radius * cos(r_r_r);
  424. float y = radius * sin(r_r_r);
  425. // 添加底部顶点坐标
  426. vertex_positions.push_back(glm::vec3(x, y, z));
  427. // 计算法向量并添加
  428. vertex_normals.push_back(normalize(glm::vec3(x, y, 0)));
  429. // 添加颜色,这里采用法向量作为颜色
  430. vertex_colors.push_back(normalize(glm::vec3(x, y, 0)));
  431. }
  432. // 添加圆锥尖端的顶点坐标、法向量和颜色
  433. vertex_positions.push_back(glm::vec3(0, 0, height));
  434. vertex_normals.push_back(glm::vec3(0, 0, 1));
  435. vertex_colors.push_back(glm::vec3(0, 0, 1));
  436. // 生成圆锥侧面的三角面片
  437. for (int i = 0; i < num_samples; i++)
  438. {
  439. // 三角面片
  440. faces.push_back(vec3i(num_samples, (i) % (num_samples), (i + 1) % (num_samples)));
  441. // 添加纹理坐标,这里采用简单的映射方式
  442. vertex_textures.push_back(glm::vec2(0.5, 1 - 0));
  443. vertex_textures.push_back(glm::vec2(1.0 * (i) / num_samples, 1 - 1));
  444. vertex_textures.push_back(glm::vec2(1.0 * (i + 1) / num_samples, 1 - 1));
  445. // 存储三角面片的每个顶点的纹理坐标的下标
  446. texture_index.push_back(vec3i(3 * i, 3 * i + 1, 3 * i + 2));
  447. }
  448. // 三角面片的每个顶点的法向量的下标,与顶点坐标的下标 faces 一致
  449. normal_index = faces;
  450. // 三角面片的每个顶点的颜色的下标,与顶点坐标的下标 faces 一致
  451. color_index = faces;
  452. // 存储面片的顶点坐标
  453. storeFacesPoints();
  454. }
  455. void TriMesh::readOff(const std::string &filename)
  456. {
  457. // fin打开文件读取文件信息
  458. if (filename.empty())
  459. {
  460. return;
  461. }
  462. std::ifstream fin;
  463. fin.open(filename);
  464. if (!fin)
  465. {
  466. printf("File on error\n");
  467. return;
  468. }
  469. else
  470. {
  471. printf("File open success\n");
  472. cleanData();
  473. int nVertices, nFaces, nEdges;
  474. // 读取OFF字符串
  475. std::string str;
  476. fin >> str;
  477. // 读取文件中顶点数、面片数、边数
  478. fin >> nVertices >> nFaces >> nEdges;
  479. // 根据顶点数,循环读取每个顶点坐标
  480. for (int i = 0; i < nVertices; i++)
  481. {
  482. glm::vec3 tmp_node;
  483. fin >> tmp_node.x >> tmp_node.y >> tmp_node.z;
  484. vertex_positions.push_back(tmp_node);
  485. vertex_colors.push_back(tmp_node);
  486. }
  487. // 根据面片数,循环读取每个面片信息,并用构建的vec3i结构体保存
  488. for (int i = 0; i < nFaces; i++)
  489. {
  490. int num, a, b, c;
  491. // num记录此面片由几个顶点构成,a、b、c为构成该面片顶点序号
  492. fin >> num >> a >> b >> c;
  493. faces.push_back(vec3i(a, b, c));
  494. }
  495. }
  496. fin.close();
  497. normal_index = faces;
  498. color_index = faces;
  499. texture_index = faces;
  500. storeFacesPoints();
  501. };
  502. // Light
  503. glm::mat4 Light::getShadowProjectionMatrix()
  504. {
  505. // 这里只实现了Y=0平面上的阴影投影矩阵,其他情况自己补充
  506. float lx, ly, lz;
  507. glm::mat4 modelMatrix = this->getModelMatrix();
  508. glm::vec4 light_position = modelMatrix * glm::vec4(this->translation, 1.0);
  509. lx = light_position[0];
  510. ly = light_position[1];
  511. lz = light_position[2];
  512. return glm::mat4(
  513. -ly, 0.0, 0.0, 0.0,
  514. lx, 0.0, lz, 1.0,
  515. 0.0, 0.0, -ly, 0.0,
  516. 0.0, 0.0, 0.0, -ly);
  517. }
  518. // 设置衰减系数的参数
  519. void Light::setAttenuation(float _constant, float _linear, float _quadratic)
  520. {
  521. constant = _constant;
  522. linear = _linear;
  523. quadratic = _quadratic;
  524. }
  525. float Light::getConstant() { return constant; };
  526. float Light::getLinear() { return linear; };
  527. float Light::getQuadratic() { return quadratic; };

实验四——main.cpp

  1. #include "Angel.h"
  2. #include "TriMesh.h"
  3. #include "Camera.h"
  4. #include "MeshPainter.h"
  5. #include <vector>
  6. #include <string>
  7. int WIDTH = 600;
  8. int HEIGHT = 600;
  9. int mainWindow;
  10. Camera* camera = new Camera();
  11. Light* light = new Light();
  12. MeshPainter* painter = new MeshPainter();
  13. // 这个用来回收和删除我们创建的物体对象
  14. std::vector<TriMesh*> meshList;
  15. void init()
  16. {
  17. std::string vshader, fshader;
  18. // 读取着色器并使用
  19. #ifdef __APPLE__ // for MacOS
  20. vshader = "shaders/vshader_mac.glsl";
  21. fshader = "shaders/fshader_mac.glsl";
  22. #else // for Windows
  23. vshader = "shaders/vshader_win.glsl";
  24. fshader = "shaders/fshader_win.glsl";
  25. #endif
  26. // 设置光源位置
  27. light->setTranslation(glm::vec3(0.0, 0.0, 2.0));
  28. light->setAmbient(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 环境光
  29. light->setDiffuse(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 漫反射
  30. light->setSpecular(glm::vec4(1.0, 1.0, 1.0, 1.0)); // 镜面反射
  31. light->setAttenuation(1.0, 0.045, 0.0075); // 衰减系数
  32. // @TODO: Task2 读取桌子模型
  33. TriMesh* table = new TriMesh();
  34. table->setNormalize(true);
  35. table->readObj("./assets/table.obj");
  36. // 设置物体的旋转位移
  37. table->setTranslation(glm::vec3(-0.7, 0.0, 0.0));
  38. table->setRotation(glm::vec3(-90.0, 0.0, 0.0));
  39. table->setScale(glm::vec3(2.0, 2.0, 2.0));
  40. // 加到painter中
  41. painter->addMesh(table, "mesh_a", "./assets/table.png", vshader, fshader); // 指定纹理与着色器
  42. // 加入一个容器内,为了程序结束时将这些数据释放
  43. meshList.push_back(table);
  44. // @TODO: Task2 读取娃娃模型
  45. TriMesh* wawa = new TriMesh();
  46. wawa->setNormalize(true);
  47. wawa->readObj("./assets/wawa.obj");
  48. // 设置物体的旋转位移
  49. wawa->setTranslation(glm::vec3(0.7, 0.0, 0.0));
  50. wawa->setRotation(glm::vec3(-90.0, 0.0, 0.0));
  51. wawa->setScale(glm::vec3(2.0, 2.0, 2.0));
  52. // 加到painter中
  53. painter->addMesh(wawa, "mesh_b", "./assets/wawa.png", vshader, fshader); // 指定纹理与着色器
  54. // 加入一个容器内,为了程序结束时将这些数据释放
  55. meshList.push_back(wawa);
  56. glClearColor(1.0, 1.0, 1.0, 1.0);
  57. // glClearColor(0.0, 0.0, 0.0, 1.0);
  58. }
  59. void display()
  60. {
  61. // #ifdef __APPLE__ // 解决 macOS 10.15 显示画面缩小问题
  62. // glViewport(0, 0, WIDTH * 2, HEIGHT * 2);
  63. // #endif
  64. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  65. painter->drawMeshes(light, camera);
  66. //glutSwapBuffers();
  67. }
  68. void printHelp()
  69. {
  70. std::cout << "================================================" << std::endl;
  71. std::cout << "Use mouse to controll the light position (drag)." << std::endl;
  72. std::cout << "================================================" << std::endl << std::endl;
  73. std::cout << "Keyboard Usage" << std::endl;
  74. std::cout <<
  75. "[Window]" << std::endl <<
  76. "ESC: Exit" << std::endl <<
  77. "h: Print help message" << std::endl <<
  78. std::endl <<
  79. "[Camera]" << std::endl <<
  80. "SPACE: Reset camera parameters" << std::endl <<
  81. "u/U: Increase/Decrease the rotate angle" << std::endl <<
  82. "i/I: Increase/Decrease the up angle" << std::endl <<
  83. "o/O: Increase/Decrease the camera radius" << std::endl << std::endl;
  84. }
  85. // 键盘响应函数
  86. void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode)
  87. {
  88. float tmp;
  89. glm::vec4 ambient;
  90. if (action == GLFW_PRESS) {
  91. switch (key)
  92. {
  93. case GLFW_KEY_ESCAPE: exit(EXIT_SUCCESS); break;
  94. case GLFW_KEY_H: printHelp(); break;
  95. default:
  96. camera->keyboard(key, action, mode);
  97. break;
  98. }
  99. }
  100. }
  101. void cleanData() {
  102. // 释放内存
  103. delete camera;
  104. camera = NULL;
  105. delete light;
  106. light = NULL;
  107. painter->cleanMeshes();
  108. delete painter;
  109. painter = NULL;
  110. for (int i = 0; i < meshList.size(); i++) {
  111. delete meshList[i];
  112. }
  113. meshList.clear();
  114. }
  115. void framebuffer_size_callback(GLFWwindow* window, int width, int height);
  116. int main(int argc, char** argv)
  117. {
  118. // 初始化GLFW库,必须是应用程序调用的第一个GLFW函数
  119. glfwInit();
  120. // 配置GLFW
  121. glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
  122. glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
  123. glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
  124. #ifdef __APPLE__
  125. glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
  126. #endif
  127. //设置字符格式
  128. #pragma execution_character_set("utf-8");
  129. // 配置窗口属性
  130. GLFWwindow* window = glfwCreateWindow(600, 600, "2021150047_hyf_实验四", NULL, NULL);
  131. if (window == NULL)
  132. {
  133. std::cout << "Failed to create GLFW window" << std::endl;
  134. glfwTerminate();
  135. return -1;
  136. }
  137. glfwMakeContextCurrent(window);
  138. glfwSetKeyCallback(window, key_callback);
  139. glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
  140. // 调用任何OpenGL的函数之前初始化GLAD
  141. // ---------------------------------------
  142. if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
  143. {
  144. std::cout << "Failed to initialize GLAD" << std::endl;
  145. return -1;
  146. }
  147. // Init mesh, shaders, buffer
  148. init();
  149. // 输出帮助信息
  150. printHelp();
  151. // 启用深度测试
  152. glEnable(GL_DEPTH_TEST);
  153. while (!glfwWindowShouldClose(window))
  154. {
  155. display();
  156. //reshape();
  157. // 交换颜色缓冲 以及 检查有没有触发什么事件(比如键盘输入、鼠标移动等)
  158. // -------------------------------------------------------------------------------
  159. glfwSwapBuffers(window);
  160. glfwPollEvents();
  161. }
  162. cleanData();
  163. return 0;
  164. }
  165. // 每当窗口改变大小,GLFW会调用这个函数并填充相应的参数供你处理。
  166. // ---------------------------------------------------------------------------------------------
  167. void framebuffer_size_callback(GLFWwindow* window, int width, int height)
  168. {
  169. // make sure the viewport matches the new window dimensions; note that width and
  170. // height will be significantly larger than specified on retina displays.
  171. glViewport(0, 0, width, height);
  172. }

实验四——TriMesh.cpp

  1. #include "TriMesh.h"
  2. // 一些基础颜色
  3. const glm::vec3 basic_colors[8] = {
  4. glm::vec3(1.0, 1.0, 1.0), // White
  5. glm::vec3(1.0, 1.0, 0.0), // Yellow
  6. glm::vec3(0.0, 1.0, 0.0), // Green
  7. glm::vec3(0.0, 1.0, 1.0), // Cyan
  8. glm::vec3(1.0, 0.0, 1.0), // Magenta
  9. glm::vec3(1.0, 0.0, 0.0), // Red
  10. glm::vec3(0.0, 0.0, 0.0), // Black
  11. glm::vec3(0.0, 0.0, 1.0) // Blue
  12. };
  13. // 立方体的各个点
  14. const glm::vec3 cube_vertices[8] = {
  15. glm::vec3(-0.5, -0.5, -0.5),
  16. glm::vec3(0.5, -0.5, -0.5),
  17. glm::vec3(-0.5, 0.5, -0.5),
  18. glm::vec3(0.5, 0.5, -0.5),
  19. glm::vec3(-0.5, -0.5, 0.5),
  20. glm::vec3(0.5, -0.5, 0.5),
  21. glm::vec3(-0.5, 0.5, 0.5),
  22. glm::vec3(0.5, 0.5, 0.5) };
  23. // 三角形的点
  24. const glm::vec3 triangle_vertices[3] = {
  25. glm::vec3(-0.5, -0.5, 0.0),
  26. glm::vec3(0.5, -0.5, 0.0),
  27. glm::vec3(0.0, 0.5, 0.0) };
  28. // 正方形平面
  29. const glm::vec3 square_vertices[4] = {
  30. glm::vec3(-0.5, -0.5, 0.0),
  31. glm::vec3(0.5, -0.5, 0.0),
  32. glm::vec3(0.5, 0.5, 0.0),
  33. glm::vec3(-0.5, 0.5, 0.0),
  34. };
  35. TriMesh::TriMesh()
  36. {
  37. do_normalize_size = true;
  38. diagonal_length = 1.0;
  39. }
  40. TriMesh::~TriMesh()
  41. {
  42. }
  43. std::vector<glm::vec3> TriMesh::getVertexPositions()
  44. {
  45. return vertex_positions;
  46. }
  47. std::vector<glm::vec3> TriMesh::getVertexColors()
  48. {
  49. return vertex_colors;
  50. }
  51. std::vector<glm::vec3> TriMesh::getVertexNormals()
  52. {
  53. return vertex_normals;
  54. }
  55. std::vector<glm::vec2> TriMesh::getVertexTextures()
  56. {
  57. return vertex_textures;
  58. }
  59. std::vector<vec3i> TriMesh::getFaces()
  60. {
  61. return faces;
  62. }
  63. std::vector<glm::vec3> TriMesh::getPoints()
  64. {
  65. return points;
  66. }
  67. std::vector<glm::vec3> TriMesh::getColors()
  68. {
  69. return colors;
  70. }
  71. std::vector<glm::vec3> TriMesh::getNormals()
  72. {
  73. return normals;
  74. }
  75. std::vector<glm::vec2> TriMesh::getTextures()
  76. {
  77. return textures;
  78. }
  79. void TriMesh::computeTriangleNormals()
  80. {
  81. face_normals.resize(faces.size());
  82. for (size_t i = 0; i < faces.size(); i++)
  83. {
  84. auto& face = faces[i];
  85. glm::vec3 v01 = vertex_positions[face.y] - vertex_positions[face.x];
  86. glm::vec3 v02 = vertex_positions[face.z] - vertex_positions[face.x];
  87. face_normals[i] = normalize(cross(v01, v02));
  88. }
  89. }
  90. void TriMesh::computeVertexNormals()
  91. {
  92. // 计算面片的法向量
  93. if (face_normals.size() == 0 && faces.size() > 0)
  94. {
  95. computeTriangleNormals();
  96. }
  97. // 初始化法向量为0
  98. vertex_normals.resize(vertex_positions.size(), glm::vec3(0, 0, 0));
  99. for (size_t i = 0; i < faces.size(); i++)
  100. {
  101. auto& face = faces[i];
  102. vertex_normals[face.x] += face_normals[i];
  103. vertex_normals[face.y] += face_normals[i];
  104. vertex_normals[face.z] += face_normals[i];
  105. }
  106. for (size_t i = 0; i < vertex_normals.size(); i++)
  107. {
  108. vertex_normals[i] = normalize(vertex_normals[i]);
  109. }
  110. // 球心在原点的球法向量为坐标
  111. // for (int i = 0; i < vertex_positions.size(); i++)
  112. // vertex_normals.push_back(vertex_positions[i] - vec3(0.0, 0.0, 0.0));
  113. }
  114. void TriMesh::setNormalize(bool do_norm) { do_normalize_size = do_norm; }
  115. bool TriMesh::getNormalize() { return do_normalize_size; }
  116. float TriMesh::getDiagonalLength() { return diagonal_length; }
  117. glm::vec3 TriMesh::getTranslation()
  118. {
  119. return translation;
  120. }
  121. glm::vec3 TriMesh::getRotation()
  122. {
  123. return rotation;
  124. }
  125. glm::vec3 TriMesh::getScale()
  126. {
  127. return scale;
  128. }
  129. glm::mat4 TriMesh::getModelMatrix()
  130. {
  131. glm::mat4 model = glm::mat4(1.0f);
  132. glm::vec3 trans = getTranslation();
  133. model = glm::translate(model, getTranslation());
  134. model = glm::rotate(model, glm::radians(getRotation()[2]), glm::vec3(0.0, 0.0, 1.0));
  135. model = glm::rotate(model, glm::radians(getRotation()[1]), glm::vec3(0.0, 1.0, 0.0));
  136. model = glm::rotate(model, glm::radians(getRotation()[0]), glm::vec3(1.0, 0.0, 0.0));
  137. model = glm::scale(model, getScale());
  138. return model;
  139. }
  140. void TriMesh::setTranslation(glm::vec3 translation)
  141. {
  142. this->translation = translation;
  143. }
  144. void TriMesh::setRotation(glm::vec3 rotation)
  145. {
  146. this->rotation = rotation;
  147. }
  148. void TriMesh::setScale(glm::vec3 scale)
  149. {
  150. this->scale = scale;
  151. }
  152. glm::vec4 TriMesh::getAmbient() { return ambient; };
  153. glm::vec4 TriMesh::getDiffuse() { return diffuse; };
  154. glm::vec4 TriMesh::getSpecular() { return specular; };
  155. float TriMesh::getShininess() { return shininess; };
  156. void TriMesh::setAmbient(glm::vec4 _ambient) { ambient = _ambient; };
  157. void TriMesh::setDiffuse(glm::vec4 _diffuse) { diffuse = _diffuse; };
  158. void TriMesh::setSpecular(glm::vec4 _specular) { specular = _specular; };
  159. void TriMesh::setShininess(float _shininess) { shininess = _shininess; };
  160. void TriMesh::cleanData()
  161. {
  162. vertex_positions.clear();
  163. vertex_colors.clear();
  164. vertex_normals.clear();
  165. vertex_textures.clear();
  166. faces.clear();
  167. normal_index.clear();
  168. color_index.clear();
  169. texture_index.clear();
  170. face_normals.clear();
  171. points.clear();
  172. colors.clear();
  173. normals.clear();
  174. textures.clear();
  175. }
  176. void TriMesh::storeFacesPoints()
  177. {
  178. // 将读取的顶点根据三角面片上的顶点下标逐个加入
  179. // 要传递给GPU的points等容器内
  180. // 看是否归一化物体大小,是的话,这里将物体顶点缩放到对角线长度为1的包围盒内
  181. if (do_normalize_size) {
  182. // 记录物体包围盒大小,可以用于大小的归一化
  183. // 先获得包围盒的对角顶点
  184. float max_x = -FLT_MAX;
  185. float max_y = -FLT_MAX;
  186. float max_z = -FLT_MAX;
  187. float min_x = FLT_MAX;
  188. float min_y = FLT_MAX;
  189. float min_z = FLT_MAX;
  190. for (int i = 0; i < vertex_positions.size(); i++) {
  191. auto& position = vertex_positions[i];
  192. if (position.x > max_x) max_x = position.x;
  193. if (position.y > max_y) max_y = position.y;
  194. if (position.z > max_z) max_z = position.z;
  195. if (position.x < min_x) min_x = position.x;
  196. if (position.y < min_y) min_y = position.y;
  197. if (position.z < min_z) min_z = position.z;
  198. }
  199. up_corner = glm::vec3(max_x, max_y, max_z);
  200. down_corner = glm::vec3(min_x, min_y, min_z);
  201. center = glm::vec3((min_x + max_x) / 2.0, (min_y + max_y) / 2.0, (min_z + max_z) / 2.0);
  202. diagonal_length = length(up_corner - down_corner);
  203. for (int i = 0; i < vertex_positions.size(); i++) {
  204. vertex_positions[i] = (vertex_positions[i] - center) / diagonal_length;
  205. }
  206. }
  207. // 计算法向量
  208. if (vertex_normals.size() == 0)
  209. computeVertexNormals();
  210. // @TODO Task1 根据每个三角面片的顶点下标存储要传入GPU的数据
  211. for (int i = 0; i < faces.size(); i++)
  212. {
  213. // 坐标
  214. points.push_back(vertex_positions[faces[i].x]);
  215. points.push_back(vertex_positions[faces[i].y]);
  216. points.push_back(vertex_positions[faces[i].z]);
  217. // 颜色
  218. colors.push_back(vertex_colors[color_index[i].x]);
  219. colors.push_back(vertex_colors[color_index[i].y]);
  220. colors.push_back(vertex_colors[color_index[i].z]);
  221. // 法向量
  222. if (vertex_normals.size() != 0)
  223. {
  224. normals.push_back(vertex_normals[normal_index[i].x]);
  225. normals.push_back(vertex_normals[normal_index[i].y]);
  226. normals.push_back(vertex_normals[normal_index[i].z]);
  227. }
  228. // 纹理
  229. if (vertex_textures.size() != 0)
  230. {
  231. textures.push_back(vertex_textures[texture_index[i].x]);
  232. textures.push_back(vertex_textures[texture_index[i].y]);
  233. textures.push_back(vertex_textures[texture_index[i].z]);
  234. }
  235. }
  236. }
  237. // 立方体生成12个三角形的顶点索引
  238. void TriMesh::generateCube()
  239. {
  240. // 创建顶点前要先把那些vector清空
  241. cleanData();
  242. for (int i = 0; i < 8; i++)
  243. {
  244. vertex_positions.push_back(cube_vertices[i]);
  245. vertex_colors.push_back(basic_colors[i]);
  246. }
  247. // 每个三角面片的顶点下标
  248. faces.push_back(vec3i(0, 1, 3));
  249. faces.push_back(vec3i(0, 3, 2));
  250. faces.push_back(vec3i(1, 4, 5));
  251. faces.push_back(vec3i(1, 0, 4));
  252. faces.push_back(vec3i(4, 0, 2));
  253. faces.push_back(vec3i(4, 2, 6));
  254. faces.push_back(vec3i(5, 6, 4));
  255. faces.push_back(vec3i(5, 7, 6));
  256. faces.push_back(vec3i(2, 6, 7));
  257. faces.push_back(vec3i(2, 7, 3));
  258. faces.push_back(vec3i(1, 5, 7));
  259. faces.push_back(vec3i(1, 7, 3));
  260. // 顶点纹理坐标,这里是每个面都用一个正方形图片的情况
  261. vertex_textures.push_back(glm::vec2(0, 0));
  262. vertex_textures.push_back(glm::vec2(1, 0));
  263. vertex_textures.push_back(glm::vec2(0, 1));
  264. vertex_textures.push_back(glm::vec2(1, 1));
  265. vertex_textures.push_back(glm::vec2(0, 0));
  266. vertex_textures.push_back(glm::vec2(1, 0));
  267. vertex_textures.push_back(glm::vec2(0, 1));
  268. vertex_textures.push_back(glm::vec2(1, 1));
  269. normal_index = faces;
  270. color_index = faces;
  271. texture_index = faces;
  272. storeFacesPoints();
  273. }
  274. void TriMesh::generateTriangle(glm::vec3 color)
  275. {
  276. // 创建顶点前要先把那些vector清空
  277. cleanData();
  278. for (int i = 0; i < 3; i++)
  279. {
  280. vertex_positions.push_back(triangle_vertices[i]);
  281. vertex_colors.push_back(color);
  282. }
  283. // 每个三角面片的顶点下标
  284. faces.push_back(vec3i(0, 1, 2));
  285. // 顶点纹理坐标
  286. vertex_textures.push_back(glm::vec2(0, 0));
  287. vertex_textures.push_back(glm::vec2(1, 0));
  288. vertex_textures.push_back(glm::vec2(0.5, 1));
  289. normal_index = faces;
  290. color_index = faces;
  291. texture_index = faces;
  292. storeFacesPoints();
  293. }
  294. void TriMesh::generateSquare(glm::vec3 color)
  295. {
  296. // 创建顶点前要先把那些vector清空
  297. cleanData();
  298. for (int i = 0; i < 4; i++)
  299. {
  300. vertex_positions.push_back(square_vertices[i]);
  301. vertex_colors.push_back(color);
  302. }
  303. // 每个三角面片的顶点下标
  304. faces.push_back(vec3i(0, 1, 2));
  305. faces.push_back(vec3i(0, 2, 3));
  306. // 顶点纹理坐标
  307. vertex_textures.push_back(glm::vec2(0, 0));
  308. vertex_textures.push_back(glm::vec2(1, 0));
  309. vertex_textures.push_back(glm::vec2(1, 1));
  310. vertex_textures.push_back(glm::vec2(0, 1));
  311. normal_index = faces;
  312. color_index = faces;
  313. texture_index = faces;
  314. storeFacesPoints();
  315. }
  316. void TriMesh::generateCylinder(int num_division, float radius, float height)
  317. {
  318. cleanData();
  319. int num_samples = num_division;
  320. float step = 2 * M_PI / num_samples; // 每个切片的弧度
  321. // 按cos和sin生成x,y坐标,z为负,即得到下表面顶点坐标
  322. // 顶点, 纹理
  323. float z = -height;
  324. for (int i = 0; i < num_samples; i++)
  325. {
  326. float r_r_r = i * step;
  327. float x = radius * cos(r_r_r);
  328. float y = radius * sin(r_r_r);
  329. // 添加顶点坐标
  330. vertex_positions.push_back(glm::vec3(x, y, z));
  331. vertex_normals.push_back(normalize(glm::vec3(x, y, 0)));
  332. // 这里颜色和法向量一样
  333. vertex_colors.push_back(normalize(glm::vec3(x, y, 0)));
  334. }
  335. // 按cos和sin生成x,y坐标,z为正,即得到上表面顶点坐标
  336. z = height;
  337. for (int i = 0; i < num_samples; i++)
  338. {
  339. float r_r_r = i * step;
  340. float x = radius * cos(r_r_r);
  341. float y = radius * sin(r_r_r);
  342. vertex_positions.push_back(glm::vec3(x, y, z));
  343. vertex_normals.push_back(normalize(glm::vec3(x, y, 0)));
  344. vertex_colors.push_back(normalize(glm::vec3(x, y, 0)));
  345. }
  346. // 面片生成三角面片,每个矩形由两个三角形面片构成
  347. for (int i = 0; i < num_samples; i++)
  348. {
  349. // 面片1
  350. faces.push_back(vec3i(i, (i + 1) % num_samples, (i)+num_samples));
  351. // 面片2
  352. faces.push_back(vec3i((i)+num_samples, (i + 1) % num_samples, (i + num_samples + 1) % (num_samples)+num_samples));
  353. // 面片1对应的顶点的纹理坐标
  354. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 0.0));
  355. vertex_textures.push_back(glm::vec2(1.0 * (i + 1) / num_samples, 0.0));
  356. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 1.0));
  357. // 对应的三角面片的纹理坐标的下标
  358. texture_index.push_back(vec3i(6 * i, 6 * i + 1, 6 * i + 2));
  359. // 面片2对应的顶点的纹理坐标
  360. vertex_textures.push_back(glm::vec2(1.0 * i / num_samples, 1.0));
  361. vertex_textures.push_back(glm::vec2(1.0 * (i + 1) / num_samples, 0.0));
  362. vertex_textures.push_back(glm::vec2(1.0 * (i + 1) / num_samples, 1.0));
  363. // 对应的三角面片的纹理坐标的下标
  364. texture_index.push_back(vec3i(6 * i + 3, 6 * i + 4, 6 * i + 5));
  365. }
  366. // 三角面片的每个顶点的法向量的下标,这里和顶点坐标的下标 faces是一致的,所以我们用faces就行
  367. normal_index = faces;
  368. // 三角面片的每个顶点的颜色的下标
  369. color_index = faces;
  370. storeFacesPoints();
  371. }
  372. void TriMesh::generateDisk(int num_division, float radius)
  373. {
  374. cleanData(); // 清空之前的数据
  375. // @TODO: Task2 在此添加代码生成圆盘
  376. int num_samples = num_division;
  377. float step = 2 * M_PI / num_samples; // 计算每个切片的弧度
  378. // 生成下表面的顶点坐标,法向量和颜色
  379. float z = 0;
  380. for (int i = 0; i < num_samples; i++)
  381. {
  382. float theta = i * step;
  383. float x = radius * cos(theta);
  384. float y = radius * sin(theta);
  385. // 添加顶点坐标
  386. vertex_positions.push_back(glm::vec3(x, y, z));
  387. // 添加法向量
  388. vertex_normals.push_back(glm::vec3(0, 0, 1));
  389. // 使用法向量生成颜色,你也可以根据需要自定义颜色生成方式
  390. vertex_colors.push_back(glm::vec3(0, 0, 1));
  391. }
  392. // 中心点
  393. vertex_positions.push_back(glm::vec3(0, 0, 0));
  394. vertex_normals.push_back(glm::vec3(0, 0, 1));
  395. vertex_colors.push_back(glm::vec3(0, 0, 1));
  396. // 生成三角面片,每个矩形由两个三角形面片构成
  397. for (int i = 0; i < num_samples; i++)
  398. {
  399. // 面片1
  400. faces.push_back(vec3i(i, (i + 1) % num_samples, num_samples));
  401. // 将0-360度映射到UV坐标的0-1
  402. for (int j = 0; j < 2; j++)
  403. {
  404. float theta = (i + j) * step;
  405. float x = cos(theta) / 2.0 + 0.5;
  406. float y = sin(theta) / 2.0 + 0.5;
  407. // 添加纹理坐标
  408. vertex_textures.push_back(glm::vec2(x, y));
  409. }
  410. // 中心点的纹理坐标
  411. vertex_textures.push_back(glm::vec2(0.5, 0.5));
  412. // 对应的三角面片的每个顶点的纹理坐标的下标
  413. texture_index.push_back(vec3i(3 * i, 3 * i + 1, 3 * i + 2));
  414. }
  415. // 三角面片的每个顶点的法向量的下标,这里和顶点坐标的下标 faces 是一致的,所以我们用 faces 就行
  416. normal_index = faces;
  417. // 三角面片的每个顶点的颜色的下标
  418. color_index = faces;
  419. // 存储面片顶点坐标
  420. storeFacesPoints();
  421. }
  422. void TriMesh::generateCone(int num_division, float radius, float height)
  423. {
  424. // 清空之前的模型数据
  425. cleanData();
  426. // 计算每个切片的弧度 step
  427. int num_samples = num_division;
  428. float step = 2 * M_PI / num_samples;
  429. // 生成圆锥底部的顶点坐标、法向量和颜色
  430. float z = 0;
  431. for (int i = 0; i < num_samples; i++)
  432. {
  433. float r_r_r = i * step;
  434. float x = radius * cos(r_r_r);
  435. float y = radius * sin(r_r_r);
  436. // 添加底部顶点坐标
  437. vertex_positions.push_back(glm::vec3(x, y, z));
  438. // 计算法向量并添加
  439. vertex_normals.push_back(normalize(glm::vec3(x, y, 0)));
  440. // 添加颜色,这里采用法向量作为颜色
  441. vertex_colors.push_back(normalize(glm::vec3(x, y, 0)));
  442. }
  443. // 添加圆锥尖端的顶点坐标、法向量和颜色
  444. vertex_positions.push_back(glm::vec3(0, 0, height));
  445. vertex_normals.push_back(glm::vec3(0, 0, 1));
  446. vertex_colors.push_back(glm::vec3(0, 0, 1));
  447. // 生成圆锥侧面的三角面片
  448. for (int i = 0; i < num_samples; i++)
  449. {
  450. // 三角面片
  451. faces.push_back(vec3i(num_samples, (i) % (num_samples), (i + 1) % (num_samples)));
  452. // 添加纹理坐标,这里采用简单的映射方式
  453. vertex_textures.push_back(glm::vec2(0.5, 1 - 0));
  454. vertex_textures.push_back(glm::vec2(1.0 * (i) / num_samples, 1 - 1));
  455. vertex_textures.push_back(glm::vec2(1.0 * (i + 1) / num_samples, 1 - 1));
  456. // 存储三角面片的每个顶点的纹理坐标的下标
  457. texture_index.push_back(vec3i(3 * i, 3 * i + 1, 3 * i + 2));
  458. }
  459. // 三角面片的每个顶点的法向量的下标,与顶点坐标的下标 faces 一致
  460. normal_index = faces;
  461. // 三角面片的每个顶点的颜色的下标,与顶点坐标的下标 faces 一致
  462. color_index = faces;
  463. // 存储面片的顶点坐标
  464. storeFacesPoints();
  465. }
  466. void TriMesh::readOff(const std::string& filename)
  467. {
  468. // fin打开文件读取文件信息
  469. if (filename.empty())
  470. {
  471. return;
  472. }
  473. std::ifstream fin;
  474. fin.open(filename);
  475. if (!fin)
  476. {
  477. printf("File on error\n");
  478. return;
  479. }
  480. else
  481. {
  482. printf("File open success\n");
  483. cleanData();
  484. int nVertices, nFaces, nEdges;
  485. // 读取OFF字符串
  486. std::string str;
  487. fin >> str;
  488. // 读取文件中顶点数、面片数、边数
  489. fin >> nVertices >> nFaces >> nEdges;
  490. // 根据顶点数,循环读取每个顶点坐标
  491. for (int i = 0; i < nVertices; i++)
  492. {
  493. glm::vec3 tmp_node;
  494. fin >> tmp_node.x >> tmp_node.y >> tmp_node.z;
  495. vertex_positions.push_back(tmp_node);
  496. vertex_colors.push_back(tmp_node);
  497. }
  498. // 根据面片数,循环读取每个面片信息,并用构建的vec3i结构体保存
  499. for (int i = 0; i < nFaces; i++)
  500. {
  501. int num, a, b, c;
  502. // num记录此面片由几个顶点构成,a、b、c为构成该面片顶点序号
  503. fin >> num >> a >> b >> c;
  504. faces.push_back(vec3i(a, b, c));
  505. }
  506. }
  507. fin.close();
  508. normal_index = faces;
  509. color_index = faces;
  510. texture_index = faces;
  511. storeFacesPoints();
  512. };
  513. void TriMesh::readObj(const std::string& filename)
  514. {
  515. std::ifstream fin(filename);
  516. std::string line;
  517. if (!fin)
  518. {
  519. std::cout << "ERROR: cannot open the file: " << filename << std::endl;
  520. exit(0); // 退出程序
  521. }
  522. cleanData();
  523. while (std::getline(fin, line))
  524. {
  525. std::istringstream sin(line);
  526. std::string type;
  527. GLfloat _x, _y, _z;
  528. int a0, b0, c0;
  529. int a1, b1, c1;
  530. int a2, b2, c2;
  531. char slash;
  532. sin >> type;
  533. // @TODO: Task2 读取obj文件,记录里面的这些数据,可以参考readOff的写法
  534. // vertex_positions
  535. // vertex_normals
  536. // vertex_textures
  537. // faces
  538. // normal_index
  539. // texture_index
  540. // 其中vertex_color和color_index可以用法向量的数值赋值
  541. // 解析OBJ文件中的顶点信息
  542. if (type == "v")
  543. {
  544. sin >> _x >> _y >> _z;
  545. // 存储顶点坐标
  546. vertex_positions.push_back(glm::vec3(_x, _y, _z));
  547. }
  548. // 解析OBJ文件中的法向量信息
  549. if (type == "vn")
  550. {
  551. sin >> _x >> _y >> _z;
  552. // 存储法向量
  553. vertex_normals.push_back(glm::vec3(_x, _y, _z));
  554. // 可选择存储颜色信息
  555. // vertex_colors.push_back(glm::vec3(_x, _y, _z));
  556. }
  557. // 解析OBJ文件中的纹理坐标信息
  558. if (type == "vt")
  559. {
  560. sin >> _x >> _y >> _z;
  561. // 存储纹理坐标
  562. vertex_textures.push_back(glm::vec2(_x, _y));
  563. }
  564. // 解析OBJ文件中的面信息
  565. if (type == "f")
  566. {
  567. sin >> a0 >> slash >> b0 >> slash >> c0;
  568. sin >> a1 >> slash >> b1 >> slash >> c1;
  569. sin >> a2 >> slash >> b2 >> slash >> c2;
  570. // 可选择解析四边形面信息
  571. // sin >> a3 >> slash >> b3 >> slash >> c3;
  572. // 存储面的顶点、纹理坐标和法向量的索引信息
  573. faces.push_back(vec3i(a0 - 1, a1 - 1, a2 - 1));
  574. texture_index.push_back(vec3i(b0 - 1, b1 - 1, b2 - 1));
  575. normal_index.push_back(vec3i(c0 - 1, c1 - 1, c2 - 1));
  576. }
  577. }
  578. vertex_colors = vertex_normals;
  579. color_index = normal_index;
  580. storeFacesPoints();
  581. }
  582. // Light
  583. glm::mat4 Light::getShadowProjectionMatrix()
  584. {
  585. // 这里只实现了Y=0平面上的阴影投影矩阵,其他情况自己补充
  586. float lx, ly, lz;
  587. glm::mat4 modelMatrix = this->getModelMatrix();
  588. glm::vec4 light_position = modelMatrix * glm::vec4(this->translation, 1.0);
  589. lx = light_position[0];
  590. ly = light_position[1];
  591. lz = light_position[2];
  592. return glm::mat4(
  593. -ly, 0.0, 0.0, 0.0,
  594. lx, 0.0, lz, 1.0,
  595. 0.0, 0.0, -ly, 0.0,
  596. 0.0, 0.0, 0.0, -ly);
  597. }
  598. // 设置衰减系数的参数
  599. void Light::setAttenuation(float _constant, float _linear, float _quadratic)
  600. {
  601. constant = _constant;
  602. linear = _linear;
  603. quadratic = _quadratic;
  604. }
  605. float Light::getConstant() { return constant; };
  606. float Light::getLinear() { return linear; };
  607. float Light::getQuadratic() { return quadratic; };

(by 归忆)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/800457
推荐阅读
相关标签
  

闽ICP备14008679号