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.

195 lines
6.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 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/test.vs", "res/shader/test.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/Sphere.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. /*����vbo*/
  103. GLuint vbo = CreateBufferObject(GL_ARRAY_BUFFER, sizeof(VertexData) * vertexCount, GL_STATIC_DRAW, vertexes);
  104. /*����IBO*/
  105. GLuint ibo = CreateBufferObject(GL_ELEMENT_ARRAY_BUFFER, sizeof(unsigned int) * indexCount, GL_STATIC_DRAW, indexes);
  106. /*��������*/
  107. GLuint mainTexture = CreateTextureFromFile("res/image/stone.jpg");
  108. glClearColor(0.1f, 0.1f, 0.1f, 1.0f);
  109. glEnable(GL_DEPTH_TEST);
  110. glViewport(0,0, windowWidth, windowHeight);
  111. //����һ����λ������һ��ͶӰ���󣬺����������ݵ�shader
  112. float identify[] = {
  113. 1,0,0,0,
  114. 0,1,0,0,
  115. 0,0,1,0,
  116. 0,0,0,1
  117. };
  118. glm::mat4 model = glm::translate(0.0f, 0.0f, -3.0f);
  119. glm::mat4 projection = glm::perspective(45.0f, (float)windowWidth / (float)windowHeight, 0.1f, 1000.0f);
  120. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  121. /*��ʾ����*/
  122. ShowWindow(hwnd, SW_SHOW);
  123. UpdateWindow(hwnd);
  124. /*�����������û�����*/
  125. MSG msg;
  126. auto what = [&]()->void {
  127. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  128. glUseProgram(program);
  129. glUniformMatrix4fv(MLocation, 1, GL_FALSE, glm::value_ptr(model));
  130. glUniformMatrix4fv(VLocation, 1, GL_FALSE, identify);
  131. glUniformMatrix4fv(PLocation, 1, GL_FALSE, glm::value_ptr(projection));
  132. glUniformMatrix4fv(NMLocation, 1, GL_FALSE, glm::value_ptr(normalMatrix));
  133. glBindTexture(GL_TEXTURE_2D, mainTexture);
  134. glUniform1i(textureLocation, 0);
  135. glBindBuffer(GL_ARRAY_BUFFER, vbo);
  136. glEnableVertexAttribArray(posLocation);
  137. glVertexAttribPointer(posLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)0);
  138. glEnableVertexAttribArray(texcoordLocation);
  139. glVertexAttribPointer(texcoordLocation, 2, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 3));
  140. glEnableVertexAttribArray(normalLocation);
  141. glVertexAttribPointer(normalLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 5));
  142. glBindBuffer(GL_ARRAY_BUFFER, 0);
  143. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo);
  144. glDrawElements(GL_TRIANGLES, indexCount, GL_UNSIGNED_INT, 0);
  145. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
  146. glUseProgram(0);
  147. };
  148. while (true) {
  149. if (PeekMessage(&msg, NULL, NULL, NULL, PM_REMOVE)) {
  150. if (msg.message == WM_QUIT) {
  151. break;
  152. }
  153. TranslateMessage(&msg);
  154. DispatchMessage(&msg);
  155. }
  156. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  157. what();
  158. SwapBuffers(dc);
  159. }
  160. return 0;
  161. }