You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

204 lines
6.5 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. #include <windows.h>
  2. #include "glew.h"
  3. #include "Glm/glm.hpp"
  4. #include "Glm/ext.hpp"
  5. #include <stdio.h>
  6. #include "misc.h"
  7. #include "model.h"
  8. #include "timer.h"
  9. #include "frustum.h"
  10. #pragma comment(lib,"opengl32.lib")
  11. #pragma comment(lib, "glew32.lib")
  12. /**
  13. * @hwnd ϢĴ
  14. * @msg Ϣ
  15. */
  16. LRESULT CALLBACK GLWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) {
  17. switch (msg) {
  18. case WM_CLOSE:
  19. PostQuitMessage(0);
  20. return 0;
  21. }
  22. return DefWindowProc(hwnd, msg, wParam, lParam);//������Ϣ����windowĬ�ϴ�������
  23. }
  24. /**
  25. * @hinstance Ӧóʵ
  26. * @hPrevInstance һӦóʽʵ
  27. * @IpCmdLine еIJ
  28. * @ShowCmd ôʾ
  29. */
  30. INT WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
  31. {
  32. /*ע�ᴰ��*/
  33. WNDCLASSEX wndclass;
  34. wndclass.cbClsExtra = 0; //�������͵Ķ����ռ䣬���ﲻ��Ҫ
  35. wndclass.cbSize = sizeof(WNDCLASSEX); //����ʵ��ռ�õ��ڴ�
  36. wndclass.cbWndExtra = 0; //���ڵĶ����ռ䣬���ﲻ��Ҫ
  37. wndclass.hbrBackground = NULL; //���ڱ���
  38. wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); //������������
  39. wndclass.hIcon = NULL; //Ӧ�ó���exe�ļ���ʾͼ��
  40. wndclass.hIconSm = NULL; //Ӧ�ó�������ʱ���Ͻ�ͼ��
  41. wndclass.hInstance = hinstance; //��Ӧ�ó���ʵ��
  42. wndclass.lpfnWndProc = GLWindowProc; //�����û������˴��ڣ��������ᱻ����
  43. wndclass.lpszClassName = L"GLWindow";//��������
  44. wndclass.lpszMenuName = NULL;//�˵�����
  45. wndclass.style = CS_VREDRAW | CS_HREDRAW;//���ڸ���ʱ���ػ淽ʽ������ʹ�ô�ֱ�ػ���ˮƽ�ػ�
  46. ATOM atom = RegisterClassEx(&wndclass);
  47. if (!atom) {
  48. MessageBox(NULL, L"Register failed", L"Error", MB_OK);
  49. return 0;
  50. }
  51. /*��������*/
  52. int windowWidth = 800;
  53. int windowHeight = 600;
  54. RECT rect;
  55. rect.left = 0;
  56. rect.right = windowWidth;
  57. rect.bottom = windowHeight;
  58. rect.top = 0;
  59. AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, false);
  60. //��������һ��Ҫ�͸ղ�ע�ᴰ�ڵı���һ��
  61. HWND hwnd = CreateWindowEx(NULL, L"GLWindow", L"OpenGL Window", WS_OVERLAPPEDWINDOW, 100, 100, windowWidth, windowHeight, NULL, NULL, hinstance, NULL);
  62. //������Ⱦ����
  63. HDC dc = GetDC(hwnd);//��ȡ�豸������
  64. PIXELFORMATDESCRIPTOR pfd;
  65. memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
  66. pfd.nVersion = 1;
  67. pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
  68. pfd.cColorBits = 32; //��ɫ������ÿ������Ϊ32����4ͨ��RGBA
  69. pfd.cDepthBits = 24; //���Ȼ�����ÿ�����ش�С��24���ر�ʾһ��������
  70. pfd.cStencilBits = 8; //�ɰ建����ÿ����Ϊ8����
  71. pfd.iPixelType = PFD_TYPE_RGBA; //������������ΪRGBA
  72. pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER; //��ʾ������������������
  73. //�������ظ�ʽ
  74. int pixelFormat = ChoosePixelFormat(dc, &pfd);
  75. SetPixelFormat(dc, pixelFormat, &pfd);
  76. //����OpenGL��Ⱦ����
  77. HGLRC rc = wglCreateContext(dc);
  78. wglMakeCurrent(dc, rc);//����OpenGL��Ⱦ������Ч
  79. /*glew��ʼ��*/
  80. glewInit();
  81. /*����program*/
  82. GLuint program = CreateGPUProgram("res/shader/PointSprite.vs", "res/shader/PointSprite.fs");
  83. GLuint posLocation, texcoordLocation, normalLocation, MLocation, VLocation, PLocation, NMLocation, textureLocation;
  84. posLocation = glGetAttribLocation(program, "pos");
  85. texcoordLocation = glGetAttribLocation(program, "texcoord");
  86. normalLocation = glGetAttribLocation(program, "normal");
  87. MLocation = glGetUniformLocation(program, "M");
  88. VLocation = glGetUniformLocation(program, "V");
  89. PLocation = glGetUniformLocation(program, "P");
  90. NMLocation = glGetUniformLocation(program, "NM");
  91. textureLocation = glGetUniformLocation(program, "U_MainTexture");
  92. /*load model*/
  93. unsigned int *indexes = nullptr;
  94. int vertexCount = 0, indexCount = 0;
  95. Timer t;
  96. t.Start();
  97. VertexData* vertexes = LoadObjModel("res/model/Quad.obj", &indexes, vertexCount, indexCount);
  98. printf("load model cost %fs %d\n", t.GetPassedTime(), t.GetPassedTickers());
  99. if (vertexes == nullptr) {
  100. printf("load obj model fail\n");
  101. }
  102. vertexes[0].position[0] = 0.0f;
  103. vertexes[0].position[1] = 0.0f;
  104. /*����vbo*/
  105. GLuint vbo = CreateBufferObject(GL_ARRAY_BUFFER, sizeof(VertexData) * vertexCount, GL_STATIC_DRAW, vertexes);
  106. /*����IBO*/
  107. GLuint ibo = CreateBufferObject(GL_ELEMENT_ARRAY_BUFFER, sizeof(unsigned int) * indexCount, GL_STATIC_DRAW, indexes);
  108. /*��������*/
  109. GLuint mainTexture = CreateTextureFromFile("res/image/stone.jpg");
  110. GLuint secondTexture = CreateTextureFromDds("res/image/camera.dds");
  111. glClearColor(0.1f, 0.4f, 0.7f, 1.0f);
  112. glEnable(GL_DEPTH_TEST);
  113. glEnable(GL_POINT_SPRITE);
  114. glEnable(GL_PROGRAM_POINT_SIZE);
  115. glViewport(0,0, windowWidth, windowHeight);
  116. //����һ����λ������һ��ͶӰ���󣬺����������ݵ�shader
  117. float identify[] = {
  118. 1,0,0,0,
  119. 0,1,0,0,
  120. 0,0,1,0,
  121. 0,0,0,1
  122. };
  123. glm::mat4 model = glm::translate(-1.0f, 0.0f, -3.0f)*glm::rotate(-20.0f, 0.0f, 1.0f, 0.0f);
  124. glm::mat4 projection = glm::perspective(45.0f, (float)windowWidth / (float)windowHeight, 0.1f, 1000.0f);
  125. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  126. Frustum frustum;
  127. frustum.Init();
  128. frustum.InitPerspective(45.0f, (float)windowWidth / (float)windowHeight, 0.1f, 4.0f);
  129. /*��ʾ����*/
  130. ShowWindow(hwnd, SW_SHOW);
  131. UpdateWindow(hwnd);
  132. /*�����������û�����*/
  133. MSG msg;
  134. auto what = [&]()->void {
  135. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  136. glUseProgram(program);
  137. glUniformMatrix4fv(MLocation, 1, GL_FALSE, glm::value_ptr(model));
  138. glUniformMatrix4fv(VLocation, 1, GL_FALSE, identify);
  139. glUniformMatrix4fv(PLocation, 1, GL_FALSE, glm::value_ptr(projection));
  140. glUniformMatrix4fv(NMLocation, 1, GL_FALSE, glm::value_ptr(normalMatrix));
  141. glBindTexture(GL_TEXTURE_2D, secondTexture);
  142. glUniform1i(textureLocation, 0);
  143. glBindBuffer(GL_ARRAY_BUFFER, vbo);
  144. glEnableVertexAttribArray(posLocation);
  145. glVertexAttribPointer(posLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)0);
  146. glEnableVertexAttribArray(texcoordLocation);
  147. glVertexAttribPointer(texcoordLocation, 2, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 3));
  148. glEnableVertexAttribArray(normalLocation);
  149. glVertexAttribPointer(normalLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 5));
  150. glBindBuffer(GL_ARRAY_BUFFER, 0);
  151. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo);
  152. glDrawElements(GL_POINTS, 1, GL_UNSIGNED_INT, 0);
  153. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
  154. glUseProgram(0);
  155. };
  156. while (true) {
  157. if (PeekMessage(&msg, NULL, NULL, NULL, PM_REMOVE)) {
  158. if (msg.message == WM_QUIT) {
  159. break;
  160. }
  161. TranslateMessage(&msg);
  162. DispatchMessage(&msg);
  163. }
  164. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  165. frustum.Draw(glm::value_ptr(model), identify, glm::value_ptr(projection));
  166. what();
  167. SwapBuffers(dc);
  168. }
  169. return 0;
  170. }